/* DESIGN SYSTEM: Variáveis Oficiais */
:root {
    --cor-texto: #424241;
    --cor-amarelo: #FEDD00;
    --cor-vermelho: #FE0100;
    --cor-preto: #000000;
    --cor-branco: #FFFFFF;
    --cor-fundo-base: #F9F9FB;
    --cor-borda: #E6E6E6;
    --cor-whatsapp: #25D366;
    --cor-destaque-planos: #F26522;
    --cor-verde: #10B981;
    
    --fonte-titulo: 'Sora', system-ui, sans-serif;
    --fonte-texto: 'Inter', system-ui, sans-serif;
    --altura-header: 100px;
}

body.dark-mode {
    --cor-texto: #F5F5F5;
    --cor-branco: #1E1E1E;
    --cor-fundo-base: #121212;
    --cor-borda: #333333;
    --cor-preto: #FFFFFF;
}

/* RESET E BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--fonte-texto); color: var(--cor-texto); background-color: var(--cor-fundo-base); line-height: 1.6; -webkit-font-smoothing: antialiased; transition: background 0.3s, color 0.3s; overflow-x: hidden;}

h1, h2, h3, h4 { font-family: var(--fonte-titulo); font-weight: 700; line-height: 1.2; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-amarelo { color: var(--cor-amarelo); }

/* SEÇÕES GENÉRICAS E GLOW EFEITOS */
.secao-branca { background-color: var(--cor-branco); padding: 80px 0; position: relative; overflow: hidden; }
.secao-cinza { background-color: var(--cor-fundo-base); padding: 80px 0; position: relative; overflow: hidden; }
.secao-ancora { scroll-margin-top: var(--altura-header); }
.titulo-secao { font-size: 36px; margin-bottom: 40px; color: var(--cor-preto);}

.relative-z { position: relative; z-index: 2; }
.glow-blob { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; opacity: 0.5; }
.blob-hero { top: -150px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(254, 221, 0, 0.4) 0%, rgba(255,255,255,0) 70%); }
.blob-categorias { top: 50%; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(242, 101, 34, 0.15) 0%, rgba(255,255,255,0) 70%); transform: translateY(-50%); }
.blob-footer { bottom: -150px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(254, 221, 0, 0.3) 0%, rgba(255,255,255,0) 70%); }
body.dark-mode .glow-blob { opacity: 0.2; }

/* CABEÇALHO E MENU DROPDOWN */
.header-fixo { position: fixed; top: 0; width: 100%; height: var(--altura-header); background: var(--cor-branco); display: flex; justify-content: space-between; align-items: center; padding: 0 5%; z-index: 1000; border-bottom: 1px solid var(--cor-borda); transition: background 0.3s; }
.logo-img {
    height: 150px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
}
.logo-texto { font-family: var(--fonte-titulo); font-weight: 800; font-size: 20px; color: var(--cor-texto); }
.logo { display: flex; align-items: center; text-decoration: none; }
.menu-principal ul { list-style: none; display: flex; gap: 32px; }
.menu-principal a { text-decoration: none; color: var(--cor-texto); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.menu-principal a:hover { color: var(--cor-vermelho); }
.header-actions { display: flex; gap: 16px; align-items: center; }
.btn-icone { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--cor-texto); transition: 0.2s; }
.btn-icone:hover { color: var(--cor-amarelo); }

.dropdown { position: relative; }
.link-dropdown { display: flex; align-items: center; gap: 6px; }
.icone-seta { transition: transform 0.3s ease; }

.submenu { display: none !important; position: absolute; top: 100%; left: 0; background-color: var(--cor-branco); min-width: 240px; padding: 12px 0; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid var(--cor-borda); flex-direction: column; margin-top: 25px; z-index: 1050; }
.submenu.mostrar { display: flex !important; }
.submenu li { list-style: none; }
.submenu li a { display: block; padding: 12px 24px; font-size: 14px; color: var(--cor-texto); font-weight: 500; transition: background 0.2s ease, color 0.2s ease; }
.submenu li a:hover { background-color: rgba(242, 101, 34, 0.05); color: var(--cor-destaque-planos); }
body.dark-mode .submenu { background-color: var(--cor-fundo-base); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* BOTÕES GERAIS */
.btn { font-family: var(--fonte-texto); font-weight: 600; text-decoration: none; padding: 16px 32px; border-radius: 12px; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
.btn-primario { background-color: var(--cor-whatsapp); color: white; }
.btn-sm { padding: 10px 20px; border-radius: 8px; }
.btn-link { background: none; border: none; color: var(--cor-whatsapp); font-weight: 600; cursor: pointer; padding: 0; font-size: 16px; margin-top: 16px; display: inline-flex; align-items: center; }

/* FAIXA INFINITA CORRIGIDA (Vermelho e Amarelo Travados) */
.faixa-infinita { margin-top: var(--altura-header); background-color: var(--cor-vermelho) !important; color: var(--cor-amarelo) !important; padding: 10px 0; overflow: hidden; display: flex; white-space: nowrap; }
.faixa-conteudo { display: flex; flex-shrink: 0; animation: rolarFaixa 25s linear infinite; }
.faixa-conteudo span { padding-right: 20px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
@keyframes rolarFaixa { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* HERO SECTION (Textos Brancos Travados) */
.secao-hero { padding: 140px 0 100px 0; background-color: var(--cor-preto); background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero-overlay-gradiente { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.1) 100%); z-index: 1; }
.hero-container { display: block; width: 100%; }
.hero-content { max-width: 650px; }
.badge { background: var(--cor-amarelo); color: #000; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; margin-bottom: 20px; text-transform: uppercase; }

.texto-branco { color: #FFFFFF !important; }
.secao-hero h1 { font-size: 48px; margin-bottom: 20px; letter-spacing: -1px; }
.subheadline.texto-branco { font-size: 20px; margin-bottom: 24px; opacity: 0.9; }

/* LOGO INLINE NO TEXTO */
.logo-inline {
    height: 42px;
    width: auto;
    vertical-align: middle; 
    margin-right: 0px;
    position: relative;
    top: -2px; 
}
.lista-check { list-style: none; margin-bottom: 24px; }
.lista-check li { margin-bottom: 10px; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.icone-check { color: var(--cor-whatsapp); font-size: 18px; }

.bg-glass { font-size: 14px; font-weight: 600; margin-bottom: 32px; padding: 8px 16px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: #FFFFFF !important; }
.botoes-grupo { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-secundario-glass { font-family: var(--fonte-texto); font-weight: 600; text-decoration: none; padding: 16px 32px; border-radius: 12px; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease; background-color: rgba(255, 255, 255, 0.1); color: #FFFFFF !important; border: 1px solid rgba(255, 255, 255, 0.3); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.btn-secundario-glass:hover { background-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,0.1); }

/* SELO DE PARCERIA (CNH BRASIL) */
.selo-parceria {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.selo-texto {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.selo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* GRIDS E CARDS GENÉRICOS */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 32px; }
.grid-servicos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card-servico { background: var(--cor-branco); padding: 40px 32px; border-radius: 24px; border: 1px solid var(--cor-borda); box-shadow: 0 4px 12px rgba(0,0,0,0.03); transition: transform 0.2s; }
.card-servico:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.icone-servico { font-size: 48px; color: var(--cor-destaque-planos); margin-bottom: 16px; display: block; }
.card-servico h3 { margin-bottom: 12px; font-size: 20px; }

/* LINHA DO TEMPO CONECTADA (Marcadores Internos) */
.timeline-jornada { position: relative; max-width: 900px; margin: 40px auto 0 auto; padding: 20px 0; }
.linha-central { position: absolute; width: 4px; background-color: var(--cor-destaque-planos); top: 0; bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 4px; opacity: 0.4; }
.passo-jornada { display: flex; justify-content: flex-start; align-items: center; width: 100%; margin-bottom: 50px; position: relative; z-index: 2; }
.passo-jornada:last-child { margin-bottom: 0; }
.passo-jornada.esquerda { justify-content: flex-end; }
.passo-jornada::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; background-color: var(--cor-destaque-planos); border-radius: 50%; z-index: 3; border: 4px solid var(--cor-fundo-base); }
.passo-conteudo { width: 45%; background: var(--cor-branco); padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--cor-borda); transition: transform 0.3s ease, border-color 0.3s ease; }
.passo-jornada:hover .passo-conteudo { transform: translateY(-5px); border-color: var(--cor-destaque-planos); }
.passo-cabecalho { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.passo-marcador { width: 48px; height: 48px; background: var(--cor-destaque-planos); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--fonte-titulo); font-size: 20px; font-weight: 700; flex-shrink: 0; }
.passo-cabecalho h3 { margin: 0; font-size: 20px; color: var(--cor-preto); }
.passo-conteudo p { color: var(--cor-texto); font-size: 15px; line-height: 1.6; }
body.dark-mode .passo-jornada::before { border-color: var(--cor-fundo-base); }

/* ESCOLHA SUA CATEGORIA (CARDS RIGIDOS) */
.subtitulo-laranja { color: var(--cor-destaque-planos); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.planos-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; width: 100%; }
.plano-card { background: var(--cor-branco); border-radius: 16px; padding: 40px 30px; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid var(--cor-borda); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.icone-plano { font-size: 56px; color: var(--cor-destaque-planos); margin-bottom: 16px; display: block; }
.destaque-plano { border: 2px solid var(--cor-destaque-planos); box-shadow: 0 15px 40px rgba(242, 101, 34, 0.15); }
.plano-titulo { font-size: 24px; color: #7B194B; margin-bottom: 5px; } 
body.dark-mode .plano-titulo { color: var(--cor-branco); }
.plano-sub { color: #888; font-size: 14px; margin-bottom: 30px; }
.plano-lista { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.plano-lista li { margin-bottom: 15px; font-size: 14px; color: var(--cor-texto); display: flex; align-items: center; gap: 8px;}
.icone-check-plano { color: var(--cor-destaque-planos); font-size: 16px; }
.btn-plano { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; border-radius: 8px; font-weight: 700; transition: 0.3s; border: none; cursor: pointer; width: 100%; font-size: 16px;}
.btn-plano.outline { border: 2px solid var(--cor-destaque-planos); color: var(--cor-destaque-planos); background: transparent; }
.btn-plano.outline:hover { background: var(--cor-destaque-planos); color: white; }
.btn-plano.solid { background: var(--cor-destaque-planos); color: white; }
.btn-plano.solid:hover { background: #D9531E; }
.ribbon { position: absolute; top: 25px; right: -35px; background: var(--cor-destaque-planos); color: white; padding: 5px 40px; transform: rotate(45deg); font-size: 12px; font-weight: bold; }

/* AVALIAÇÕES GOOGLE */
.google-header-container { margin-bottom: 40px; }
.google-titulo { font-size: 24px; font-weight: 800; margin-bottom: 5px; color: var(--cor-preto); }
.google-estrelas { font-size: 30px; letter-spacing: 5px; margin-bottom: 5px; color: #FBBC05; }
.google-base { font-size: 14px; color: #555; margin-bottom: 10px; }
.google-logo { font-size: 32px; font-family: sans-serif; letter-spacing: -1px; }

/* CARROSSEL SUAVE E CONTÍNUO (INFINITE MARQUEE) */
.carrossel-estatico-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carrossel-trilho {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: rolagem-continua 35s linear infinite;
}

.carrossel-trilho:hover {
    animation-play-state: paused;
}

.card-depoimento {
    width: 350px;
    background: var(--cor-fundo-base);
    border: 1px solid var(--cor-borda);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-depoimento:hover {
    transform: translateY(-5px);
    border-color: var(--cor-amarelo);
}

.card-depoimento .estrelas {
    color: #FBBC05;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.card-depoimento .texto-depoimento {
    color: var(--cor-texto);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
}

@keyframes rolagem-continua {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FAQ ACCORDION */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cor-borda); }
.faq-pergunta { width: 100%; background: none; border: none; padding: 25px 0; text-align: left; font-size: 16px; font-weight: 600; color: var(--cor-texto); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-pergunta:hover { color: var(--cor-destaque-planos); }
.faq-icone { color: var(--cor-destaque-planos); font-size: 20px; transition: transform 0.3s; }
.faq-resposta { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-resposta p { padding-bottom: 25px; font-size: 15px; }
.faq-item.ativo .faq-resposta { max-height: 200px; }
.faq-item.ativo .faq-icone { transform: rotate(45deg); }

/* FOOTER & EXTRAS */
.footer-corporativo { background: var(--cor-branco); padding-top: 60px; border-top: 1px solid var(--cor-borda); position: relative; overflow: hidden; }

body.dark-mode .footer-corporativo {
    background-color: #0f0f0f;
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-col h3 { color: #ffffff; }
body.dark-mode .footer-col p,
body.dark-mode .footer-infos { color: #cccccc !important; }
.links-sociais-footer a { text-decoration: none !important; }
body.dark-mode .footer-infos li { color: #cccccc; }
body.dark-mode .footer-links a { color: #bbbbbb; }
body.dark-mode .footer-links a:hover { color: var(--cor-destaque-planos); }
body.dark-mode .footer-bottom {
    background-color: #0a0a0a;
    border-top-color: rgba(255, 255, 255, 0.1);
    color: #888888;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 18px; margin-bottom: 20px; color: var(--cor-preto); }

.links-sociais-footer { display: flex; gap: 15px; }
.links-sociais-footer a { color: var(--cor-texto); font-size: 24px; transition: 0.3s; }
.links-sociais-footer a:hover { color: var(--cor-destaque-planos); transform: translateY(-3px); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #666; text-decoration: none; font-size: 14px; transition: 0.2s; }
.footer-links a:hover { color: var(--cor-destaque-planos); padding-left: 5px; }

.footer-bottom { border-top: 1px solid var(--cor-borda); padding: 20px 0; font-size: 13px; color: #888; background-color: var(--cor-fundo-base); }
.disclaimer-bottom { text-align: center; max-width: 800px; margin: 15px auto 0; font-size: 11px; opacity: 0.7; }

.links-footer { display: flex; justify-content: center; gap: 24px; margin: 20px 0; flex-wrap: wrap; }
.links-footer a { color: var(--cor-texto); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: 0.2s;}
.links-footer a:hover { color: var(--cor-destaque-planos); }
.disclaimer { color: #888; font-size: 12px; margin-top: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn-flutuante-wa { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: var(--cor-whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; color: white; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); border: none; cursor: pointer; z-index: 1000; transition: transform 0.3s; }
.btn-flutuante-wa:hover { transform: scale(1.1); }

/* ANIMAÇÕES NO SCROLL */
.animar-fade { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.animar-fade.visivel { opacity: 1; transform: translateY(0); }

/* MENU MOBILE (HAMBÚRGUER) */
.menu-mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--cor-texto);
    cursor: pointer;
    transition: color 0.3s;
}

/* BANNER DICA (APLICATIVO) */
.banner-dica {
    background: linear-gradient(135deg, var(--cor-fundo-base), #ffffff);
    border-left: 5px solid var(--cor-amarelo);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto 40px auto;
    max-width: 900px;
}

body.dark-mode .banner-dica {
    background: linear-gradient(135deg, var(--cor-fundo-base), rgba(255, 255, 255, 0.05));
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* SEÇÃO: PROVA VISUAL DE SUCESSO */
.prova-visual-container { padding-bottom: 20px; }
.prova-visual-foto-showcase { display: flex; justify-content: center; align-items: center; width: 100%; }
.prova-visual-card {
    max-width: 600px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 10px solid #fff;
}
.prova-visual-imagem { width: 100%; height: auto; display: block; }

/* CORREÇÃO DE BARRA INFERIOR INDEVIDA NAS IMAGENS */
.div-recorte-base { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.img-carro { width: 100%; height: 100%; object-fit: cover; min-height: 350px; margin-bottom: -15px !important; position: relative; z-index: 1; }
.img-instrutor { width: 100%; height: 100%; object-fit: cover; min-height: 350px; margin-bottom: -15px !important; position: relative; z-index: 1; }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   MOBILE RESPONSIVO (UNIFICADO)
   ========================================== */
@media (max-width: 992px) {
    .secao-hero { padding: 100px 0 60px 0; }
    .hero-content { margin: 0 auto; text-align: center; }
    .hero-overlay-gradiente { background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.4) 100%); }
    .lista-check li { justify-content: center; }
    .botoes-grupo { justify-content: center; }
    .menu-principal { display: none; } 
    .secao-hero h1 { font-size: 36px; }
    .btn { width: 100%; }
    .grid-2, .planos-container { grid-template-columns: 1fr; }
    .blob-hero { left: 50%; transform: translateX(-50%); width: 300px; height: 300px; }

    /* Responsivo da Jornada / Timeline */
    .linha-central { left: 20px; transform: none; }
    .passo-jornada, .passo-jornada.esquerda, .passo-jornada.direita { justify-content: flex-end; margin-bottom: 30px; }
    .passo-jornada::before { left: 20px; transform: translate(-50%, -50%); }
    .passo-conteudo { width: calc(100% - 50px); }

    /* Força o texto "Geração Colibri" a aparecer do lado do ícone sem quebrar */
    .logo-texto {
        display: inline-block !important;
        font-size: 15px !important;
        font-weight: 700;
        white-space: nowrap;
    }
    .logo { display: flex; align-items: center; gap: 6px; }
    .logo-img { height: 50px !important; width: auto; }
    
    .header-actions .btn-primario { display: none; }
    .menu-mobile-btn { display: block; }

    /* Reorganiza o Header para o Menu Hambúrguer ficar na extrema direita */
    .header-fixo { justify-content: space-between; gap: 10px; }
    .header-fixo .logo { order: 1; }
    .header-fixo .header-actions {
        order: 2;
        margin-left: auto !important;
        margin-right: 15px;
    }
    .header-fixo .menu-mobile-btn { order: 3; }

    /* Transforma o Menu numa gaveta oculta */
    .menu-principal {
        display: flex;
        position: absolute;
        top: var(--altura-header);
        left: 0;
        width: 100%;
        background-color: var(--cor-branco);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .menu-principal.ativo { max-height: 600px; padding: 20px 0; }
    .menu-principal ul { flex-direction: column; align-items: center; gap: 15px; width: 100%; }

    .submenu {
        position: relative;
        top: 0;
        min-width: 100%;
        box-shadow: none;
        border: none;
        background-color: rgba(0,0,0,0.03);
        margin-top: 10px;
        border-radius: 8px;
    }

    body.dark-mode .menu-principal { background-color: var(--cor-fundo-base); }
    body.dark-mode .submenu { background-color: rgba(255,255,255,0.05); }
    
    /* Responsivo dos cards de depoimento */
    .card-depoimento { width: 280px; padding: 20px; }
    .carrossel-trilho { gap: 15px; animation-duration: 55s; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}