/* -------------------------------------------------------------
   ROBERTO OSHIRO - SENADOR
   Global Premium CSS Stylesheet
   ------------------------------------------------------------- */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0A192F;         /* Azul Marinho Profundo (Confiança, Seriedade) */
    --secondary: #172A45;       /* Azul Marinho Secundário */
    --accent: #D4AF37;          /* Dourado Nobre (Liberdade Econômica, Prosperidade) */
    --accent-hover: #F3C63F;    /* Dourado Hover */
    --light-bg: #F4F6F9;        /* Fundo Claro Moderno */
    --white: #FFFFFF;
    --dark-text: #1E293B;       /* Texto Escuro (Slate 800) */
    --light-text: #64748B;      /* Texto Secundário (Slate 500) */
    --border-color: #E2E8F0;    /* Linha de borda sutil */
    --success: #10B981;         /* Verde Sucesso */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(10, 25, 47, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(10, 25, 47, 0.15);
}

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* HEADER & NAVEGAÇÃO */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-sub {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0.25rem;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-item a:hover {
    color: var(--accent);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item.active a {
    color: var(--accent);
}

.nav-cta {
    background-color: var(--accent);
    color: var(--primary) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 6px;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* HERO SECTION (PÁGINA INICIAL) */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 9rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 4px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-text h1 span {
    color: var(--accent);
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 5px;
}

.hero-suplentes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: -0.5rem;
    margin-bottom: 1.75rem;
}

.suplente-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suplente-item strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.suplente-item em {
    color: var(--accent);
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}

.hero-quote {
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: fadeIn 1s ease-out;
}

.hero-image-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    bottom: 5%;
    border-radius: 50% 50% 0 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212,175,55,0) 70%);
    z-index: 1;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

/* SEÇÕES GENÉRICAS */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-bg-white {
    background-color: var(--white);
}

.section-bg-gray {
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--light-text);
    font-size: 1.05rem;
}

/* SOBRE O CANDIDATO (HOME & PAG SOBRE) */
.about-section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content p {
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-size: 1.05rem;
}

.about-highlight {
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-img-container:hover img {
    transform: scale(1.03);
}

/* TIMELINE DE ATUAÇÃO E EXPERIÊNCIA */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 3px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 70px;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--accent);
    border: 5px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
    z-index: 2;
}

.timeline-content {
    background-color: var(--white);
    padding: 1.75rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.4);
}

.timeline-content h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* CARDS DE ATUAÇÕES / PILARES */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card-premium {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transition: var(--transition);
}

.card-premium:hover::before {
    background-color: var(--accent);
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 25, 47, 0.05);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card-premium h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

/* LISTAS PERSONALIZADAS */
.premium-list {
    list-style: none;
}

.premium-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.85rem;
    font-size: 1rem;
    color: var(--dark-text);
}

.premium-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: 1rem;
    transition: var(--transition);
}

.premium-list li:hover::before {
    color: var(--primary);
    transform: scale(1.1);
}

/* 5 PILARES - HOME & PROPOSTAS */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.pilar-box {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pilar-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.pilar-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(10, 25, 47, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.pilar-box:hover .pilar-num {
    color: rgba(212, 175, 55, 0.3);
}

.pilar-icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.pilar-box:hover .pilar-icon-wrapper {
    color: var(--accent);
    transform: scale(1.1);
}

.pilar-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pilar-box p {
    font-size: 0.88rem;
    color: var(--light-text);
    line-height: 1.5;
}

/* BANNER DE FRASES DE IMPACTO (PARALLAX-LIKE) */
.impact-banner {
    background: linear-gradient(rgba(10, 25, 47, 0.92), rgba(10, 25, 47, 0.92)), url('../ROBERTOSEMFUNDOw.png') no-repeat center center / cover;
    background-attachment: fixed;
    padding: 6rem 2rem;
    color: var(--white);
    text-align: center;
}

.impact-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.25;
}

.impact-banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* GALERIA DE BANDEIRAS (PROPOSTAS) */
.defesas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.defesa-card-premium {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.defesa-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.defesa-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.defesa-card-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.defesa-card-header h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin: 0;
}

.defesa-card-body {
    padding: 2rem 1.5rem;
}

/* GALERIA DE VÍDEOS */
.videos-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.video-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspect Ratio 16:9 */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* DEMAIS ELEMENTOS DE FORMULÁRIOS & CONTATO */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info-panel {
    background-color: var(--primary);
    color: var(--white);
    padding: 3.5rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.05);
    top: -50px;
    right: -50px;
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item span {
    font-size: 1.05rem;
    font-weight: 550;
}

.contact-form-panel {
    background-color: var(--white);
    padding: 3.5rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-form-panel p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    color: var(--dark-text);
    background-color: var(--light-bg);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.08);
}

/* FEEDBACKS E ALERTAS */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

/* LEADS DASHBOARD (MOSTRAR LEADS SALVOS - COMPONENTE PREMIUM) */
.leads-container {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.leads-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.leads-count {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.leads-list {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--light-bg);
}

.lead-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    transition: var(--transition);
}

.lead-row:last-child {
    border-bottom: none;
}

.lead-row:hover {
    background-color: var(--white);
}

.lead-name {
    font-weight: 700;
    color: var(--primary);
}

.lead-email {
    color: var(--light-text);
}

.lead-phone {
    font-family: monospace;
    color: var(--dark-text);
}

/* FOOTER */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 2rem 2.5rem;
    border-top: 3px solid var(--accent);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-brand .sub {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: none;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    color: var(--white);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* RESPONSIVIDADE (MEDIA QUERIES) */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .pilares-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-item a {
        font-size: 1.15rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h1 span {
        font-size: 1.8rem;
    }

    .tags-container,
    .hero-ctas {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
    }

    .about-section-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline::before {
        left: 21px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 10px;
    }

    .pilares-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pilares-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CARROSSEL DE VÍDEOS PREMIUM (DINÂMICO)
   ========================================================================== */

.video-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 45px;
}

.video-carousel-track-container {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.video-carousel-track-container:active {
    cursor: grabbing;
}

.video-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    gap: 2rem;
}

.video-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    user-select: none;
}

@media (min-width: 768px) {
    .video-carousel-slide {
        flex: 0 0 calc(50% - 1rem); /* 2 itens */
    }
}

@media (min-width: 1024px) {
    .video-carousel-slide {
        flex: 0 0 calc(33.333% - 1.333rem); /* 3 itens */
    }
}

/* Botões de Navegação */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.carousel-nav-btn:hover {
    background-color: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn.prev {
    left: -10px;
}

.carousel-nav-btn.next {
    right: -10px;
}

.carousel-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background-color: var(--light-bg);
    color: var(--light-text);
}

/* Indicadores de Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--accent);
    transform: scale(1.1);
    width: 24px;
    border-radius: 5px;
}

/* Lazy Load de Vídeo e Miniaturas */
.yt-lazy-load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
}

.yt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.yt-lazy-load:hover .yt-thumb {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.25);
    transition: var(--transition);
}

.play-btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.yt-lazy-load:hover .play-btn-circle {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Card Genérico de Mídia */
.generic-media-card {
    transition: var(--transition);
}

.generic-media-card:hover {
    filter: brightness(1.1);
}

/* Link Wrapper do Card de Vídeo */
.video-card-link-wrapper {
    transition: var(--transition);
}

.video-card-link-wrapper:hover h4 {
    color: var(--accent) !important;
}

.video-card-link-wrapper:hover .yt-thumb {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.video-card-link-wrapper:hover .play-btn-circle {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Efeitos de Hover para os botões das Redes Sociais */
.social-hover-card {
    transition: var(--transition);
}

.social-hover-card:hover .social-icon-wrapper {
    transform: scale(1.15) translateY(-5px);
}

.social-hover-card:hover span {
    color: var(--accent);
}


