/* Importando a fonte padrão */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --cor-fundo: #00071A;
    --cor-destaque: #DE9D2F;
    --cor-texto: #FDF4E5;
    --cor-texto-escuro: #00071A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    overflow-x: hidden;
}

/* HEADER */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    z-index: 10;
}

.logo img {
    height: 52px;
}

/* --- NAVEGAÇÃO PRINCIPAL --- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav ul a:hover,
.main-nav ul a.active {
    color: var(--cor-destaque);
}

/* --- O DROPDOWN (MBAs) --- */
.dropdown-container {
    position: relative;
    padding-bottom: 10px; 
    margin-bottom: -10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #00071A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--cor-destaque);
    border-radius: 4px;
    width: max-content;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 15px !important;
    font-weight: 500 !important;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.has-dropdown::after {
    content: "▾";
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
}

/* --- BOTÃO DO HEADER --- */
.btn-header {
    background-color: var(--cor-texto);
    color: var(--cor-texto-escuro);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-header:hover {
    background-color: var(--cor-destaque);
    color: #FFFFFF;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 8% 40px 8%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 7, 26, 1) 0%, rgba(0, 7, 26, 0.85) 45%, rgba(0, 7, 26, 0.2) 100%);
}

.hero-content {
    max-width: 680px;
}

.pre-title {
    color: var(--cor-destaque);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--cor-destaque);
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 32px;
    color: #d1d5db;
    max-width: 520px;
}

/* BOTÕES DO HERO */
.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.btn {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    text-align: center;
}

.btn-white {
    background-color: var(--cor-texto);
    color: var(--cor-texto-escuro);
}

.btn-primary {
    background-color: var(--cor-destaque);
    color: var(--cor-texto-escuro);
}

.btn:hover {
    filter: brightness(0.9);
}

/* ÍCONES SOCIAIS */
.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.social-icons a {
    color: var(--cor-texto);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--cor-destaque);
}

/* ESTATÍSTICAS */
.hero-stats-container {
    width: 100%;
    max-width: 600px;
}

.hero-stats-line {
    width: 100%;
    height: 1px;
    background-color: rgba(253, 244, 229, 0.15);
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--cor-texto);
}

.stat-item p {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
}

/* BOTÃO HAMBÚRGUER */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--cor-texto);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
    .site-header {
        padding: 15px 5%;
    }

    .logo img {
        height: 42px;
    }

    .menu-toggle {
        display: block;
    }

    /* Gaveta do menu mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background-color: #00071A;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 40px 30px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
    }

    .main-nav ul a {
        font-size: 16px;
    }

    /* --- CONTROLE DO DROPDOWN NO MOBILE --- */
    .dropdown-container {
        width: 100%;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .dropdown-container > a {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    /* Garante que o menu comece OBRIGATORIAMENTE FECHADO no mobile */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background-color: rgba(255, 255, 255, 0.03) !important;
        border: none !important;
        border-left: 2px solid var(--cor-destaque) !important;
        border-radius: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        margin-top: 10px;
        display: none !important; /* Força o fechamento inicial */
    }

    /* Só abre quando a classe .open-sub for injetada via toque */
    .dropdown-container.open-sub .dropdown-menu {
        display: flex !important;
    }

    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px !important;
        white-space: normal !important;
    }

    .btn-header {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 5% 25px 5%;
        text-align: left;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .pre-title {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }

    .social-icons {
        margin-bottom: 20px;
        justify-content: flex-start;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 20px;
    }

    .stat-item p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats-line {
        margin-bottom: 15px;
    }
}



        /* --- SEÇÃO DE PROVA SOCIAL --- */
        
        .social-proof-section {
            position: relative;
            background: radial-gradient(ellipse at bottom center, #001538 0%, var(--cor-fundo) 70%);
            padding: 100px 8% 180px 8%; 
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            overflow: hidden;
            z-index: 1;
        }

        /* --- ESTRELAS PISCANTES (FIXAS E PRÓXIMAS À CURVA) --- */
        .social-proof-section::before,
        .social-proof-section::after {
            content: '';
            position: absolute;
            bottom: 130px; /* Ancoradas logo acima do brilho da curva */
            left: 50%;
            width: 2px;
            height: 2px;
            border-radius: 50%;
            background: transparent;
            z-index: 1;
        }

        /* Grupo 1: Estrelas distribuídas à esquerda e direita, piscando em 4s */
        .social-proof-section::before {
            box-shadow:
                -700px 20px 2px rgba(255,255,255,1),
                -450px 10px 1px rgba(255,255,255,0.7),
                -150px -10px 2px rgba(255,255,255,0.9),
                150px 0px 1px rgba(255,255,255,0.6),
                350px 15px 2px rgba(255,255,255,1),
                600px 25px 1px rgba(255,255,255,0.8);
            animation: twinkle-fade 4s infinite alternate ease-in-out;
        }

        /* Grupo 2: Mais estrelas intercaladas, piscando invertido em 3s */
        .social-proof-section::after {
            box-shadow:
                -580px 30px 1.5px rgba(255,255,255,0.8),
                -280px 5px 1px rgba(255,255,255,0.6),
                -50px -15px 2px rgba(255,255,255,1),
                250px -5px 1px rgba(255,255,255,0.7),
                500px 20px 2px rgba(255,255,255,0.9),
                750px 35px 1.5px rgba(255,255,255,0.6);
            animation: twinkle-fade 3s infinite alternate-reverse ease-in-out;
        }

        /* A mágica: apenas acende e apaga, sem aumentar de tamanho */
        @keyframes twinkle-fade {
            0% { opacity: 0.1; }
            100% { opacity: 1; }
        }

        /* --- CONTEÚDO DOS TEXTOS --- */
        .proof-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .proof-title {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 60px;
            letter-spacing: -1.5px;
            color: #FFFFFF;
        }

        .proof-title span {
            color: var(--cor-destaque);
        }

        .stat-kicker {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 110px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 15px;
            color: #FFFFFF;
            letter-spacing: -4px;
        }

        .stat-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 440px;
            margin: 0 auto 60px auto;
            line-height: 1.5;
        }

        /* --- CARROSSEL DE TEXTOS (Substituindo Logos) --- */
        .marquee-container {
            width: 100%;
            max-width: 1200px; /* Aumentado para acomodar a linha de texto maior */
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            z-index: 2;
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }

        .marquee-content {
            display: flex;
            gap: 30px; /* Gap ajustado para harmonizar com os bullets */
            align-items: center;
            width: max-content;
            animation: scroll-text 45s linear infinite; /* Tempo ajustado para a largura da string */
        }

        /* Estilização das palavras */
        .marquee-content span {
            font-size: 18px;
            font-weight: 600;
            color: #FFFFFF;
            opacity: 0.75; /* Menos transparência e mais destaque */
            white-space: nowrap;
            transition: opacity 0.3s, color 0.3s;
        }

        /* Estilização do bullet point separador */
        .marquee-content span.dot {
            color: var(--cor-destaque);
            opacity: 1;
            font-size: 20px;
        }

        /* Efeito hover interativo */
        .marquee-content span:hover:not(.dot) {
            opacity: 1;
            color: var(--cor-destaque);
        }

        @keyframes scroll-text {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } 
        }

        /* --- A CURVA E O CONTRASTE DE LUZ --- */
        .bottom-glow-curve {
            position: absolute;
            bottom: -400px;
            left: 50%;
            transform: translateX(-50%);
            width: 150%;
            height: 500px;
            background-color: var(--cor-fundo); 
            border-top: 1px solid rgba(222, 157, 47, 0.8); 
            border-radius: 50%;
            box-shadow: 0px -25px 80px 0px rgba(222, 157, 47, 0.15); 
            z-index: 1; 
            pointer-events: none;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .proof-title { font-size: 32px; }
            .stat-number { font-size: 90px; }
            .bottom-glow-curve { width: 200%; }
        }








/* --- SEÇÃO DE MBAs (3 COLUNAS) --- */
.mbas-section {
    background-color: var(--cor-fundo);
    padding: 40px 5% 120px 5%;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.section-header .highlight {
    color: var(--cor-destaque);
}

.section-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container Flexbox adaptado para 3 colunas */
.mbas-container {
    display: flex;
    gap: 24px;
    max-width: 1250px;
    margin: 0 auto;
}

.mba-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.column-header {
    margin-bottom: 24px;
    min-height: 80px; /* Aumentado para acomodar os novos descritivos maiores */
}

.category-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--cor-destaque);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Cartões de Curso otimizados para 3 colunas */
.mba-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    transition: transform 0.3s, border-color 0.3s;
}

.mba-card:hover {
    transform: translateY(-5px);
    border-color: rgba(222, 157, 47, 0.4);
}

.card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
}

.card-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.card-features li i {
    color: var(--cor-destaque);
    font-size: 12px;
    margin-top: 3px;
}

.btn-card {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border: 1px solid var(--cor-destaque);
    color: var(--cor-destaque);
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-card:hover {
    background: var(--cor-destaque);
    color: var(--cor-fundo);
}

/* --- RESPONSIVIDADE DA SEÇÃO DE MBAs --- */
        @media (max-width: 1024px) {
            .mbas-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            .mba-column {
                flex: 1 1 calc(50% - 20px);
                min-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .mbas-section {
                padding: 30px 5% 80px 5%; /* Reduz um pouco o padding vertical no mobile */
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-header h2 { 
                font-size: 28px; /* Reduz proporcionalmente para não estourar a tela do celular */
                letter-spacing: -0.5px;
            }

            .section-header p {
                font-size: 14px;
            }

            .mbas-container {
                flex-direction: column;
                gap: 30px; /* Espaçamento confortável entre um card e outro */
            }

            .mba-column {
                flex: 1 1 100%;
                width: 100%;
            }

            /* Reseta a altura fixa no mobile para os títulos fluírem naturalmente sem espaços vazios */
            .column-header {
                min-height: auto; 
                margin-bottom: 16px;
            }

            .mba-card {
                padding: 22px; /* Deixa o respiro interno do card mais adequado para telas menores */
            }

            .card-content h4 {
                font-size: 18px;
            }
        }


        /* --- SEÇÃO DE CALL TO ACTION (CTA) --- */
        .cta-section {
            background-color: var(--cor-fundo);
            /* Reduzimos o padding superior de 120px para 60px para aproximar dos cards de MBAs */
            padding: 60px 5% 140px 5%; 
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            overflow: hidden; /* Garante que o efeito de luz não vaze da seção */
        }

        /* O efeito de Glow/Blur no fundo (Intensidade Aumentada) */
        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 500px;
            /* Aumentei a opacidade do dourado de 0.08 para 0.20 para ficar bem visível */
            background: radial-gradient(circle, rgba(222, 157, 47, 0.20) 0%, transparent 65%);
            filter: blur(70px); /* Aumentei o blur para deixar o esfumaçado mais espalhado */
            z-index: 0;
            pointer-events: none;
        }

        .cta-container {
            max-width: 800px;
            position: relative;
            z-index: 2; /* Garante que o texto e o botão fiquem acima da luz */
        }

        .cta-section h2 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.15;
            color: #FFFFFF;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .cta-section h2 .highlight {
            color: var(--cor-destaque);
        }

        .cta-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto 40px auto;
            line-height: 1.6;
        }

        /* Botão Sólido Branco/Off-White */
        .btn-cta-solid {
            display: inline-block;
            background-color: var(--cor-texto);
            color: #00071A;
            padding: 16px 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            border-radius: 6px;
            transition: transform 0.3s, filter 0.3s;
        }

        .btn-cta-solid:hover {
            transform: translateY(-3px);
            filter: brightness(0.9);
        }

        /* Responsividade para o CTA */
        @media (max-width: 992px) {
            .cta-section h2 {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 32px;
            }
            .cta-section p {
                font-size: 15px;
                padding: 0 15px;
            }
            .cta-section {
                padding: 60px 5% 100px 5%;
            }
            /* Reduz um pouco o tamanho da luz no mobile */
            .cta-section::before {
                width: 100%;
                height: 400px;
            }
        }










/* --- SEÇÃO CORPO DOCENTE (FUNDO BRANCO) --- */
        .professors-section {
            background-color: #FFFFFF; 
            color: var(--cor-fundo); 
            padding: 100px 5% 120px 5%;
            text-align: center;
            overflow: hidden; 
        }

        .prof-header {
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

        .prof-kicker {
            font-size: 11px;
            font-weight: 800;
            color: var(--cor-destaque);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 15px;
        }

        .prof-header h2 {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--cor-fundo);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .prof-header h2 .highlight {
            color: var(--cor-destaque);
        }

        /* --- WRAPPER DO CARROSSEL E SETAS --- */
        .prof-carousel-wrapper {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }

        .carousel-container {
            position: relative;
            height: 420px; 
            width: 100%;
            margin: 0 auto;
        }

        /* Base do Cartão */
        .prof-card {
            position: absolute;
            left: 50%;
            top: 50%;
            margin-top: -205px; 
            margin-left: -130px; 
            width: 260px;
            height: 410px;
            border-radius: 12px;
            background-color: #FFFFFF;
            box-shadow: 0 15px 35px rgba(0, 7, 26, 0.15);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .prof-photo {
            flex: 1;
            background-size: cover;
            background-position: top center;
            background-color: var(--cor-fundo);
        }

        .prof-badge {
            background-color: #FFFFFF;
            padding: 20px 15px;
            text-align: center;
        }

        .prof-badge h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--cor-fundo);
            margin-bottom: 4px;
        }

        .prof-badge p {
            font-size: 10px;
            font-weight: 700;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }

        /* --- O NOVO BOTÃO 'CONHECER' --- */
        .btn-conhecer {
            width: 100%;
            margin-top: 15px;
            padding: 12px;
            background-color: #f3f4f6; 
            color: #111827; 
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-conhecer:hover {
            background-color: var(--cor-fundo); 
            color: #FFFFFF; 
        }

        /* --- GAVETA DE CURRÍCULO (COM SCROLL) --- */
        .resume-overlay {
            position: absolute;
            bottom: -100%; 
            left: 0;
            width: 100%;
            height: 100%; 
            background-color: #FFFFFF;
            z-index: 10;
            /* Ajuste no padding para dar espaço ao botão de fechar e ao scroll */
            padding: 40px 10px 20px 20px; 
            transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-align: left;
            border-top: 4px solid var(--cor-destaque); 
            display: flex;
            flex-direction: column;
        }

        .prof-card.show-resume .resume-overlay {
            bottom: 0;
        }

        /* Nova área de conteúdo com rolagem */
        .resume-content {
            flex: 1;
            overflow-y: auto; /* Ativa o scroll vertical automático */
            padding-right: 15px; /* Afasta o texto da barra de rolagem */
        }

        /* Estilização da barra de rolagem (Scrollbar) para ficar elegante */
        .resume-content::-webkit-scrollbar {
            width: 4px;
        }
        .resume-content::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05); 
            border-radius: 4px;
        }
        .resume-content::-webkit-scrollbar-thumb {
            background-color: var(--cor-destaque); 
            border-radius: 4px;
        }

        .close-resume {
            position: absolute;
            top: 12px;
            right: 15px;
            background: transparent;
            border: none;
            font-size: 20px;
            color: #9ca3af;
            cursor: pointer;
            transition: 0.2s;
            z-index: 20; /* Garante que o X fique sempre acima do texto que rola */
        }

        .close-resume:hover { color: var(--cor-fundo); }

        .resume-content h5 {
            font-size: 11px;
            font-weight: 800;
            color: var(--cor-destaque);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            margin-top: 15px;
        }
        .resume-content h5:first-child { margin-top: 0; }
        .resume-content p { font-size: 13px; color: #4b5563; margin-bottom: 10px; }
        .resume-content ul { padding-left: 18px; margin-bottom: 0; }
        .resume-content ul li { font-size: 13px; color: #4b5563; line-height: 1.4; margin-bottom: 6px; }

        /* --- POSIÇÕES DA PERSPECTIVA 3D --- */
        .prof-card.active {
            transform: translateX(0) scale(1.1); 
            z-index: 3;
            opacity: 1;
            box-shadow: 0 25px 50px rgba(0, 7, 26, 0.25);
        }
        .prof-card.near-left { transform: translateX(-160px) scale(0.9); z-index: 2; opacity: 0.8; }
        .prof-card.near-right { transform: translateX(160px) scale(0.9); z-index: 2; opacity: 0.8; }
        .prof-card.far-left { transform: translateX(-300px) scale(0.75); z-index: 1; opacity: 0.4; }
        .prof-card.far-right { transform: translateX(300px) scale(0.75); z-index: 1; opacity: 0.4; }

       /* --- CONTROLES E TEXTOS INFERIORES --- */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 45px; 
            /* Fixa a altura do container de controles para que ele não mude de tamanho */
            min-height: 120px; 
        }

        .active-details {
            text-align: center;
            flex: 1; 
            padding: 0 15px; 
            /* Define uma altura fixa para o bloco de texto, 
               assim ele não empurra as setas quando quebra linha */
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .active-name {
            font-size: 20px;
            font-weight: 800;
            color: var(--cor-fundo);
            margin-bottom: 5px;
            /* Se for preciso, limita o nome para não crescer demais */
            line-height: 1.1; 
        }

        .active-role {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 12px;
            text-transform: uppercase;
            /* Impede que a mudança no número de linhas altere a altura total */
            min-height: 35px; 
            display: flex;
            align-items: center;
        }

        .active-linkedin {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            color: #0077b5; 
            text-decoration: none;
            letter-spacing: 1px;
            /* Garante que o link fique sempre na mesma posição em relação ao fundo */
            margin-top: auto; 
        }

        .active-linkedin:hover { text-decoration: underline; }

        .nav-btn {
            background: #FFFFFF;
            border: 1px solid #d1d5db;
            color: var(--cor-fundo);
            width: 45px;
            height: 45px;
            min-width: 45px; /* Garante que a seta não perca o tamanho original */
            flex-shrink: 0; /* A mágica: IMPEDE a seta de ser "esmagada" pelo texto */
            border-radius: 50%;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-btn:hover {
            border-color: var(--cor-destaque);
            color: var(--cor-destaque);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        /* --- SETAS LATERAIS NO DESKTOP --- */
        @media (min-width: 769px) {
            #btn-prev, #btn-next {
                position: absolute;
                top: 210px; /* Alinhado ao meio do carrossel verticalmente */
                transform: translateY(-50%);
                z-index: 10;
                width: 50px;
                height: 50px;
                box-shadow: 0 4px 15px rgba(0, 7, 26, 0.1);
            }
            #btn-prev { left: 10px; }
            #btn-next { right: 10px; }
        }

        /* --- RESPONSIVIDADE MOBILE --- */
        @media (max-width: 768px) {
            .prof-header h2 { font-size: 28px; }
            .carousel-container { height: 380px; }
            
            .prof-card.far-left, .prof-card.far-right { opacity: 0; pointer-events: none; }
            .prof-card.near-left { transform: translateX(-90px) scale(0.85); }
            .prof-card.near-right { transform: translateX(90px) scale(0.85); }
            
            /* Ajustes finos do controle no celular */
            .carousel-controls {
                justify-content: space-between; /* Joga as setas exatamente para as pontas */
                max-width: 420px; /* Mantém tudo alinhadinho no centro */
                margin: 50px auto 0 auto; /* Garante bastante espaço do cartão pra baixo */
                padding: 0 10px;
            }
            #btn-prev, #btn-next { 
                position: static; 
                transform: none; 
            }
        }


        /* --- SEÇÃO DE DEPOIMENTOS (FUNDO CLARO) --- */
        .testimonials-section {
            background-color: #FFFFFF; /* Cinza gelo super claro para separar da seção branca acima */
            padding: 20px 5% 120px 5%;
            position: relative;
            z-index: 2;
        }

        .testimonials-section .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-section .pre-title {
            color: var(--cor-destaque);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }

        .testimonials-section h2 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--cor-fundo); /* Azul escuro */
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .testimonials-section h2 .highlight {
            color: var(--cor-destaque);
        }

        .testimonials-section p {
            font-size: 15px;
            color: #4b5563;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- CONTAINER E TRILHA DO CARROSSEL --- */
        .testimonials-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .testimonials-track {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory; /* Faz o cartão "encaixar" perfeitamente ao rolar */
            padding: 20px 10px; /* Espaço para a sombra não cortar */
            /* Esconde a barra de rolagem nativa */
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .testimonials-track::-webkit-scrollbar {
            display: none;
        }

        /* --- BOTÕES DO CARROSSEL --- */
        .t-nav-btn {
            background-color: #FFFFFF;
            border: 1px solid #e5e7eb;
            color: var(--cor-fundo);
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 50%;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .t-nav-btn:hover {
            border-color: var(--cor-destaque);
            color: var(--cor-destaque);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px rgba(222, 157, 47, 0.1);
        }

        /* --- O CARTÃO DO DEPOIMENTO (LIGHT MODE) --- */
        .testimonial-card {
            min-width: 380px;
            background-color: #FFFFFF;
            border: 1px solid #f3f4f6;
            border-radius: 12px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 15px 35px rgba(0, 7, 26, 0.04); /* Sombra elegante e suave */
            scroll-snap-align: center; /* Ponto de encaixe do scroll */
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .stars {
            color: var(--cor-destaque);
            font-size: 14px;
            margin-bottom: 25px;
            display: flex;
            gap: 4px;
        }

        .testimonial-text {
            font-size: 15px;
            color: #374151; /* Texto mais escuro para fundo branco */
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 35px;
            flex-grow: 1;
        }

        .student-info {
            display: flex;
            align-items: center;
            border-top: 1px solid #f3f4f6; /* Linha divisória cinza clara */
            padding-top: 25px;
            position: relative;
        }

        .student-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            margin-right: 15px;
            border: 2px solid var(--cor-destaque); 
        }

        .student-details h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--cor-fundo); /* Nome em azul escuro */
            margin-bottom: 4px;
        }

        .student-details p {
            font-size: 12px;
            color: #6b7280;
        }

        .linkedin-badge {
            position: absolute;
            right: 0;
            top: 25px;
            color: #0077b5;
            font-size: 20px;
            opacity: 0.9;
        }

        /* --- RESPONSIVIDADE --- */
        @media (max-width: 992px) {
            .testimonials-section h2 { font-size: 34px; }
            .testimonial-card { min-width: 320px; }
        }

        @media (max-width: 768px) {
            /* No celular, esconde os botões e deixa o usuário arrastar com o dedo */
            .t-nav-btn { display: none; }
            .testimonials-wrapper { gap: 0; }
            .testimonial-card { min-width: 85vw; /* Ocupa 85% da tela para o usuário ver a pontinha do próximo card */ }
            .testimonials-section { padding: 80px 5% 100px 5%; }
        }




        /* --- SEÇÃO DE FAQ --- */
        .faq-section {
            background-color: var(--cor-fundo); /* Volta para o Azul/Preto */
            padding: 100px 5% 120px 5%;
            position: relative;
            z-index: 2;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .faq-header p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .faq-container {
            max-width: 800px; /* Mais estreito que o normal para leitura confortável */
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Cada Bloco de Pergunta */
        .faq-item {
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            overflow: hidden; /* Importante para o conteúdo não vazar ao fechar */
            transition: border-color 0.3s, background-color 0.3s;
        }

        .faq-item:hover {
            border-color: rgba(222, 157, 47, 0.3); /* Borda fica dourada suave no hover */
            background-color: rgba(255, 255, 255, 0.04);
        }

        /* O Botão Clicável */
        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 700;
            color: #FFFFFF;
            text-align: left;
            cursor: pointer;
            transition: color 0.3s;
        }

        .faq-item.active .faq-question {
            color: var(--cor-destaque); /* Texto fica dourado quando aberto */
        }

        .faq-question i {
            color: var(--cor-destaque);
            font-size: 14px;
            transition: transform 0.4s ease;
        }

        /* Gira a setinha quando a aba está aberta */
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* O Corpo da Resposta (Inicialmente Fechado) */
        .faq-answer {
            max-height: 0;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
        }

        .faq-answer p {
            padding: 0 30px 30px 30px; /* Usa padding só em baixo e lados para não dar pulo no JS */
            margin: 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* A Classe que abre o FAQ (Controlada pelo JS) */
        .faq-item.active .faq-answer {
            max-height: 500px; /* Um valor alto o suficiente para caber o texto */
            opacity: 1;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .faq-header h2 { font-size: 32px; }
            .faq-question { padding: 20px; font-size: 15px; }
            .faq-answer p { padding: 0 20px 25px 20px; font-size: 14px; }
        }















        /* --- ENVELOPE MESTRE (FAQ + CTA) --- */
        .faq-cta-wrapper {
            position: relative;
            background-color: var(--cor-fundo); /* O fundo escuro centralizado aqui */
            overflow: hidden; /* Evita que as luzes gerem barra de rolagem horizontal */
        }

        /* 1. Resetando o fundo das seções originais para a luz aparecer */
        .faq-section,
        .cta-section {
            background-color: transparent !important; 
        }

        /* 2. Removendo o blur antigo do CTA (se ele ainda estiver no seu CSS, pode apagar o bloco original do .cta-section::before) */
        .cta-section::before {
            display: none; 
        }

        /* --- BOLHAS DE LUZ (GLOW/BLUR) --- */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            /* A mágica do esfumaçado super difuso */
            filter: blur(120px); 
            z-index: 0;
            pointer-events: none; /* Garante que não bloqueie os cliques no FAQ ou Botão */
        }

        /* Luz 1: Perto do título do FAQ */
        .orb-top-left {
            width: 600px;
            height: 600px;
            background: rgba(222, 157, 47, 0.12); /* Dourado com baixa opacidade */
            top: -150px;
            left: -200px;
        }

        /* Luz 2: Abaixo e à direita, perto do botão do CTA */
        .orb-bottom-right {
            width: 800px;
            height: 800px;
            background: rgba(222, 157, 47, 0.15); /* Dourado um pouco mais forte */
            bottom: -200px;
            right: -300px;
        }

        /* Luz 3: Fina e espalhada conectando o meio das duas seções */
        .orb-center {
            width: 1000px;
            height: 300px;
            background: rgba(0, 119, 181, 0.08); /* Toque hiper sutil de azul (estilo reflexo) */
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
        }










        /* --- SEÇÃO DE CALL TO ACTION FINAL (ASSIMÉTRICO) --- */
        .cta-final-section {
            background-color: transparent; /* Recebe a luz dourada do wrapper */
            padding: 80px 5% 0 5%; /* IMPORTANTE: Padding inferior ZERO para a imagem grudar no footer */
            position: relative;
            z-index: 2;
        }

        .cta-final-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: flex-end; /* Força a imagem a alinhar perfeitamente na linha de baixo */
            justify-content: space-between;
            gap: 40px;
        }

        /* Lado Esquerdo (Textos e Botão) */
        .cta-final-content {
            flex: 1;
            padding-bottom: 100px; /* Dá respiro para o texto ficar centralizado visualmente */
        }

        .cta-final-content h2 {
            font-size: 46px;
            font-weight: 800;
            line-height: 1.15;
            color: #FFFFFF;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .cta-final-content h2 .highlight {
            color: var(--cor-destaque);
        }

        .cta-final-content p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 480px;
            margin-bottom: 35px;
            line-height: 1.6;
        }

        /* Botão Sólido Off-White */
        .btn-cta-solid {
            display: inline-block;
            background-color: var(--cor-texto);
            color: #00071A;
            padding: 18px 45px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
        }

        .btn-cta-solid:hover {
            transform: translateY(-3px);
            filter: brightness(0.9);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Lado Direito (A Imagem) */
        .cta-final-image {
            flex: 1;
            max-width: 450px;
            display: flex;
            justify-content: flex-end;
        }

        .cta-final-image img {
            width: 100%;
            height: auto;
            display: block; /* Remove o mini-espaço extra nativo das imagens no navegador */
            object-fit: contain;
            object-position: bottom;
        }

        /* --- RESPONSIVIDADE DO CTA FINAL --- */
        @media (max-width: 992px) {
            .cta-final-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0;
            }
            .cta-final-content {
                padding-bottom: 40px; /* Reduz espaço no celular */
            }
            .cta-final-content p {
                margin: 0 auto 35px auto; /* Centraliza o parágrafo */
            }
            .cta-final-image {
                max-width: 350px;
            }
        }




        /* --- RODAPÉ INSTITUCIONAL (FOOTER) --- */
        .site-footer {
            background-color: #000412; /* Um tom de azul quase preto, um pouco mais escuro que o var(--cor-fundo) para separar bem */
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* --- TOPO DO FOOTER (4 COLUNAS) --- */
        .footer-top {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 5%;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
        }

        .brand-col {
            flex: 2; /* A coluna da logo ocupa mais espaço */
            padding-right: 40px;
        }

        .footer-logo {
            height: 35px;
            margin-bottom: 20px;
            /* Se a sua logo original for escura, descomente a linha abaixo para forçar branco: */
            /* filter: brightness(0) invert(1); */
        }

        .brand-col p {
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 300px;
        }

        .business-school {
            font-size: 10px;
            font-weight: 800;
            color: var(--cor-destaque);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .footer-col h4 {
            font-size: 11px;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 15px;
        }

        .footer-col ul a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--cor-destaque);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            transition: color 0.3s, transform 0.3s;
        }

        .social-links a:hover {
            color: var(--cor-destaque);
            transform: translateY(-2px);
        }

        /* --- MEIO DO FOOTER (MEC + QR CODE) --- */
        .footer-middle {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 40px 5%;
        }

        /* O Segredo do Alinhamento: Flexbox separando os itens */
        .footer-middle-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between; /* Joga um pra cada lado */
            align-items: center; /* Centraliza verticalmente */
            gap: 20px;
        }

        .mec-info h4 {
            font-size: 11px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .mec-info p {
            margin: 0;
            font-size: 14px;
            color: #FFFFFF;
        }

        /* --- ESTILOS DOS BOTÕES DO E-MEC --- */
        .mec-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 220px;
        }

        .mec-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.8);
            padding: 10px 16px;
            border-radius: 6px;
            font-size: 11px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mec-btn i {
            font-size: 10px;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .mec-btn:hover {
            border-color: var(--cor-destaque);
            color: var(--cor-destaque);
            background-color: rgba(255, 255, 255, 0.03);
        }

        .mec-btn:hover i {
            opacity: 1;
        }

        /* --- Ajuste no media query do mobile existente (apenas para garantir o alinhamento) --- */
        @media (max-width: 768px) {
            .mec-links {
                width: 100%;
            }
            .mec-btn {
                width: 100%;
            }
        }
        
        /* Responsividade para o celular (empilha um em cima do outro) */
        @media (max-width: 768px) {
            .footer-middle-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 25px;
            }
        }
        /* --- BASE DO FOOTER (COPYRIGHT) --- */
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* --- ESTILO DO LINK DO DESENVOLVEDOR --- */
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--cor-destaque); /* Fica dourado ao passar o mouse */
        }

        .footer-bottom p {
            margin: 0;
        }

        /* --- RESPONSIVIDADE DO FOOTER --- */
        @media (max-width: 768px) {
            /* Topo do Footer */
            .footer-top {
                flex-direction: column;
                gap: 40px;
                padding: 60px 5%;
                align-items: center; /* Centraliza as colunas transversalmente */
            }

            .brand-col {
                padding-right: 0;
                display: flex;
                flex-direction: column;
                align-items: center; /* Centraliza logo e texto */
                text-align: center;
            }

            .brand-col p {
                max-width: 100%; /* Permite que o texto ocupe toda a largura no mobile */
            }

            .footer-col {
                text-align: center; /* Centraliza os títulos e links */
                width: 100%; /* Garante que a coluna ocupe 100% para o text-align funcionar bem */
            }

            .social-links {
                justify-content: center; /* Centraliza os ícones de redes sociais */
            }

            /* Meio do Footer (MEC) */
            .footer-middle-content {
                flex-direction: column;
                align-items: center; /* Centraliza verticalmente e horizontalmente no mobile */
                text-align: center;
                gap: 25px;
            }

            .mec-info {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            /* Base do Footer */
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                padding: 30px 5% 50px 5%; /* Adiciona um respiro extra embaixo no mobile */
            }
        }





























/* --- SEÇÃO QUEM SOMOS (SOBRE A VELOX) --- */
.about-section {
    padding: 160px 5% 80px 5%;
    background-color: #F8F9FA; /* Fundo gelo clarinho */
    color: var(--cor-fundo); /* Muda a cor base para escuro nessa seção */
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Caixa com fundo azul para destacar a logo */
.about-image {
    flex: 1;
    background-color: var(--cor-fundo); /* Azul escuro da Velox */
    border-radius: 12px;
    padding: 70px 40px; /* Dá respiro para a logo dentro da caixa */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 7, 26, 0.15); /* Sombra suave */
}

.about-image img {
    width: 100%;
    max-width: 260px; /* Não deixa a logo crescer demais */
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05); /* Pequeno efeito de destaque ao passar o mouse */
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--cor-fundo); /* Título escuro */
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563; /* Texto num cinza elegante (não preto puro) para melhor leitura */
    margin-bottom: 20px;
}

.about-content p strong {
    color: var(--cor-destaque); /* Mantém o nome VELOX em dourado */
}

/* Responsividade da Seção Sobre */
@media (max-width: 992px) {
    .about-container {
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 130px 5% 60px 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 35px;
    }

    .about-image {
        width: 100%;
        padding: 50px 20px;
    }

    .about-content h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }
}