* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f4f4;
}

/* --- NAV BAR GLASSMORPHISM --- */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; 
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(1px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: max-width 0.8s ease, background 0.5s ease, padding 0.5s ease;
    z-index: 1000;
}

.glass-nav.scrolled {
    max-width: 400px; 
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.371);
    justify-content: center;
}

/* --- CONTAINER DA LOGO --- */
.logo {
    display: flex;
    align-items: center;
    height: 100%; 
    max-width: 400px; 
    transition: all 0.5s ease;
    overflow: hidden;
}

/* NOVA REGRA: Agora focamos no SVG e não no img */
.logo svg {
    width: 100%; 
    max-height: 100px; /* Mantém a proporção elegante na barra */
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.glass-nav.scrolled .logo {
    max-width: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: none; 
    display: none; 
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fd3c01;
}

/* --- HERO SECTION & VIDEO (LAYOUT MINIMALISTA) --- */
.hero {
    position: relative;
    height: 100vh; /* Deixe apenas o 100vh normal aqui */
    width: 100%;
    display: flex;
    align-items: flex-end; 
    padding: 0 5% 40px 5%; 
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: contain;
    filter: brightness(0.6); 
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
}

/* --- BLOCO PRINCIPAL --- */
.hero-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 65%;
    text-align: left;
}

.hero-left h1 {
    /* FONTE MENOR: Reduzi de 4.5rem para 3.8rem */
    font-size: 3.8rem; 
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-right {
    flex: 1;
    max-width: 35%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-right p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* --- BOTÕES DO HERO --- */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: white;
    color: #1a2a3a;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-icon {
    background-color: white;
    color: #1a2a3a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}


/* --- LINHA DE RODAPÉ DO HERO --- */
.hero-footer {
    display: flex;
    /* Alinha o 'Scroll Down' à direita já que os clientes saíram da esquerda */
    justify-content: flex-end; 
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}

.scroll-down-text {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* --- FEEDBACK DE CLIQUE (Ativa só no instante do toque no mobile) --- */
.btn-primary:active, .btn-icon:active {
    background-color: #fe3d03 !important; 
    color: white !important;
}

.scroll-down-text:active {
    color: #fe3d03 !important;
}

/* --- EFEITO HOVER (Bloqueado para celular, funciona SÓ no mouse) --- */
@media (hover: hover) {
    .btn-primary:hover, .btn-icon:hover {
        background-color: #fe3d03; 
        color: white;
    }
    
    .scroll-down-text:hover {
        color: #fe3d03;
    }
}

/* --- CONTROLE DA SETA DO HERO --- */
.seta-mobile {
    display: none;
}

/* --- RESPONSIVIDADE (CELULARES) --- */
@media (max-width: 900px) {
    .hero {
        padding-bottom: 30px; /* Menos espaçamento no celular para aproveitar a tela */
    }
    .hero-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .hero-left, .hero-right {
        max-width: 100%;
    }
    .hero-left h1 {
        font-size: 2.4rem; /* Fonte ainda menor no mobile */
    }

    .hero-right p {
        display: none;
    }

    /* Inversão da seta no Hero */
    .seta-desktop {
        display: none !important;
    }

    .seta-mobile {
        display: inline-block !important;
    }

    .sobre-mobile {
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        
        /* 120px é o espaço perfeito para a Navbar não cobrir suas letras */
        padding: 120px 20px 40px 20px; 
        
        /* Removemos as margens negativas que cobriam o botão */
        margin: 0; 
        
        position: relative;
        z-index: 2; /* Fica na ordem certa sem bloquear os cliques do Hero */
    }

}

/* --- SEÇÃO SOBRE NÓS --- */
.sobre-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden; 
    background-color: #fff;
}

/* 1. Montanhas (Voltamos ao cover padrão!) */
.sobre-bg-montanhas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background-size: cover; /* Corrigido! */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* 2. Onda Branca */
.sobre-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    z-index: 2; 
    pointer-events: none; 
}

.sobre-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 3. Container Principal (Textos e Avião) */
.sobre-container {
    position: relative;
    z-index: 4; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Textos */
.sobre-texto {
    flex: 1;
    max-width: 480px;
    padding-right: 20px;
}

.sobre-texto h2 {
    font-size: 5.5rem;
    color: #1a2a3a;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -2px;
}

.sobre-texto p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* --- SETA ANIMADA NA SEÇÃO SOBRE --- */
.seta-sobre {
    display: inline-block;
    margin-top: 10px;
    animation: bounce-sobre 2s infinite;
    cursor: pointer;
}

.seta-sobre svg {
    transition: stroke 0.3s ease;
}

.seta-sobre:hover svg {
    stroke: #fe3d03; 
}

@keyframes bounce-sobre {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* Avião */
.sobre-aviao-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aviao-img {
    position: absolute;
    left: -400px; 
    width: 160%; 
    max-width: 1200px;
    transform: rotate(-5deg);
    filter: drop-shadow(-20px 30px 20px rgba(0,0,0,0.4));
    animation: vooSuave 6s ease-in-out infinite alternate;
}

@keyframes vooSuave {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-20px) rotate(-3deg); }
}

/* --- LUZES DE FUNDO (GLOW ORBS) --- */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); 
    z-index: 3; 
    pointer-events: none; 
}

.orb-azul {
    top: -10%;
    left: -20%;
    width: 600px;
    height: 600px;
    background-color: #00009f;
    opacity: 0.15; 
}

.orb-laranja {
    bottom: -20%;
    right: 0%;
    width: 700px;
    height: 700px;
    background-color: #fe3d03;
    opacity: 0.15;
}

/* --- SOBRE NÓS MOBILE (ESTILO EDITORIAL / REVISTA) --- */

/* Esconde no computador */
.sobre-mobile {
    display: none;
}

@media (max-width: 900px) {
    /* Esconde a versão com montanhas no celular */
    .sobre-section {
        display: none !important;
    }

    /* Revela a nova versão */
    .sobre-mobile {
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        padding: 80px 20px 40px 20px;
    }

    /* A caixa superior com as linhas */
    .sobre-linhas-topo {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(0,0,0,0.15); /* A linha horizontal do topo */
        position: relative;
        margin-bottom: 60px;
    }

    /* A linha vertical cortando o meio */
    .sobre-linhas-topo::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background-color: rgba(0,0,0,0.15);
    }

    .coluna-texto {
        padding: 20px 10px 0 10px;
    }

    .coluna-texto.esq { text-align: left; }
    .coluna-texto.dir { text-align: right; }

    /* Os pequenos subtítulos */
    .sobre-label {
        display: block;
        font-size: 0.75rem;
        font-weight: 800;
        color: #1a2a3a;
        margin-bottom: 25px;
    }

    /* Os textos principais bem grossos */
    .coluna-texto p {
        font-size: 1.15rem;
        font-weight: 900; /* Peso máximo para ficar "chunky" igual a foto */
        color: #1a2a3a;
        line-height: 1.1;
        margin: 0;
    }

    /* --- O CENTRO (CÍRCULO + AVIÃO) --- */
    .sobre-centro-mobile {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 60px;
        height: 280px; /* Garante espaço para a imagem vazar */
    }

    .circulo-laranja {
        width: 250px;
        height: 250px;
        background-color: #fe3d03; /* O seu laranja Aspire */
        border-radius: 50%;
        position: absolute;
        z-index: 1;
    }

    .aviao-sobre-mobile {
        position: absolute;
        z-index: 2;
        width: 125%; /* Força o avião a ser maior que a tela para ele sair pelas bordas e vazar do círculo */
        max-width: 450px;
        transform: rotate(-10deg) translateX(-70px) translateY(16px); /* Dá uma leve inclinada e ajusta para a esquerda */
        filter: drop-shadow(0 25px 25px rgba(0,0,0,0.4)); /* Sombra forte para descolar do círculo */
    }

    /* O texto do rodapé */
    .sobre-texto-baixo {
        text-align: center;
        padding: 0 10px;
    }

    .sobre-texto-baixo p {
        font-size: 0.85rem;
        font-weight: 600;
        color: #1a2a3a;
        line-height: 1.4;
    }
}

/* --- SEÇÃO DIFERENCIAIS (DESIGN COM MAPA) --- */
.diferenciais-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #fdfdfd; /* Fundo levemente off-white */
    padding: 100px 0 100px 40px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* O fundo do mapa múndi */
.dif-bg-mapa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Deixa o mapa bem suave, como marca d'água */
    pointer-events: none;
    z-index: 0;
}

.diferenciais-header {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 40px auto;
}
.diferenciais-header h2 { font-size: 3rem; color: #1a2a3a; font-weight: 700; letter-spacing: -1px; }

/* --- CABEÇALHO COM TÍTULO E AVISO DE ARRASTE --- */
.cabecalho-diferenciais {
    display: flex;
    justify-content: space-between; /* Joga o título para a esquerda e o aviso para a direita */
    align-items: center; /* Alinha ambos perfeitamente pelo centro vertical */
    margin-bottom: 40px; /* O espaço entre o título e a linha do carrossel */
    padding: 0 5%; /* Mantendo o mesmo respiro lateral do seu layout */
}

.cabecalho-diferenciais h2 {
    margin: 0;
    /* Coloque aqui o tamanho/cor da sua fonte atual do "Por que a Aspire" */
}

/* O Estilo do Aviso */
.aviso-arrastar {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fe3d03; /* O Laranja da Aspire */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animação sutil para a seta chamar a atenção */
.aviso-arrastar svg {
    animation: deslizarSeta 1.5s infinite alternate ease-in-out;
}

/* --- CONTROLES DO CARROSSEL (SETAS) --- */
.controles-carrossel {
    display: flex;
    align-items: center;
    gap: 15px;
}

.botoes-setas {
    display: flex;
    gap: 10px;
}

.btn-seta {
    background-color: transparent;
    border: 2px solid #fe3d03; /* Borda laranja */
    color: #fe3d03;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-seta svg {
    width: 22px;
    height: 22px;
}

/* Efeito Hover nas Setas */
@media (hover: hover) {
    .btn-seta:hover {
        background-color: #fe3d03;
        color: white;
    }
}

/* Efeito de clique no mobile (caso usem lá) */
.btn-seta:active {
    background-color: #fe3d03 !important;
    color: white !important;
}

/* Esconde as setas no mobile, já que arrastar com o dedo é muito melhor lá */
@media (max-width: 900px) {
    .botoes-setas {
        display: none;
    }
}

@keyframes deslizarSeta {
    from { transform: translateX(0); }
    to { transform: translateX(8px); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    /* No celular, fica melhor esconder o aviso (já que arrastar no touch é natural) 
       ou colocar o aviso abaixo do título */
    .cabecalho-diferenciais {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* --- ESTRUTURA DO CARROSSEL --- */
.carousel-container {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: auto; 
    overflow-y: hidden; 
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.carousel-container::-webkit-scrollbar { display: none; }

.carousel-track {
    position: relative;
    display: flex;
    min-height: 550px; 
    gap: 80px; /* Reduzi o gap para as rotas conectarem melhor */
    padding: 40px; 
    width: max-content;
}

/* --- CONTAINER QUE TRAVA A MATEMÁTICA DA LINHA --- */
.trilha-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2500px; /* Trava no tamanho exato do novo viewBox */
    height: 500px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.linhas-rotas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.linhas-rotas path {
    animation: vooTracejado 60s linear infinite;
}

@keyframes vooTracejado {
    from { stroke-dashoffset: 2000; }
    to { stroke-dashoffset: 0; }
}

/* --- ÍCONES PERFEITAMENTE CRAVADOS --- */
.icone-trilha {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px; 
    height: 50px;
    z-index: 1; 
    color: #fe3d03; 
    
    /* A coordenada em CSS é idêntica ao d="..." da Rota Principal no HTML */
    offset-path: path("M -50,400 C 100,400 100,100 250,100 C 450,100 500,400 750,400 C 1000,400 1050,100 1250,100 C 1500,100 1550,400 1750,400 C 2000,400 2050,100 2250,100 C 2350,100 2400,400 2500,400");
    
    /* Garante que o meio exato da caixa cole na linha */
    offset-anchor: 50% 0%; 
    
    /* SE FOR AVIÃO: mude para 'auto' para ele inclinar nas descidas.
       SE FOR BÚSSOLA/PIN: deixe '0deg' para ficar sempre reto. */
    offset-rotate: 0deg; 
}

/* Posições exatas nas curvas da nova rota */
.pos-1 { offset-distance: 12%; } 
.pos-2 { offset-distance: 35%; } 
.pos-3 { offset-distance: 55%; } 
.pos-4 { offset-distance: 76%; } 
.pos-5 { offset-distance: 98%; } 



@media (max-width: 900px) {
    .trilha-container { display: none; } /* Limpa o sistema no celular */
}

/* --- OS ITENS (NÚMEROS E TEXTOS) --- */
.dif-item {
    position: relative;
    z-index: 2; /* Fica na frente das linhas */
    display: flex;
    align-items: center; 
    gap: 20px; 
    height: max-content;
}

.dif-item.alto { align-self: flex-start; margin-top: 20px; }
.dif-item.baixo { align-self: flex-end; margin-bottom: 20px; }

/* A tipografia igual a imagem da IA */
.dif-numero {
    font-size: 14rem; 
    font-weight: 800; /* Mais grosso */
    line-height: 0.8;
    color: #010180; /* Azul escuro da Aspire */
    letter-spacing: -5px;
}

.dif-conteudo { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    width: 250px; 
}

/* Os ícones agora são menores e ficam logo acima do título */
.dif-icone { 
    width: 28px; 
    height: 28px; 
    margin-bottom: 12px; 
}

.dif-conteudo h3 { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: #1a2a3a; 
    margin-bottom: 8px; 
}

.dif-conteudo p { 
    font-size: 0.9rem; 
    color: #666; 
    line-height: 1.5; 
}

/* --- A LINHA E O ÔNIBUS CONTINUAM IGUAIS --- */
.dif-linha-fundo {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    height: 4px;
    background-color: rgba(1, 1, 128, 0.1); 
    border-radius: 2px;
    z-index: 3;
}

.dif-progresso {
    width: 25%; 
    height: 100%;
    background: linear-gradient(90deg, #010180 0%, #fe3d03 100%); 
    border-radius: 2px;
    transition: width 0.1s ease-out; 
}

.dif-caminhao {
    position: absolute;
    top: -162px; /* O valor que você já tinha ajustado perfeitamente! */
    left: 25%; 
    width: 150px; 
    height: auto;
    transform: translateX(-100%); 
    transition: left 0.1s ease-out; 
    z-index: 4;
}

@media (max-width: 900px) {
    .diferenciais-section { padding: 80px 20px; }
    .carousel-track { flex-direction: column; gap: 50px; width: 100%; padding: 0; }
    .dif-item { width: 100%; transform: none !important; } 
    .dif-numero { font-size: 8rem; }
    .dif-linha-fundo { display: none; } 
    .linhas-rotas { display: none; } /* Esconde as linhas no mobile para não poluir */
}

/* --- DIFERENCIAIS MOBILE (GAVETAS / ACORDEÃO) --- */
/* Esconde a versão mobile por padrão (no desktop) */
.diferenciais-mobile {
    display: none; 
    padding: 80px 20px;
    background-color: #fdfdfd;
}

.diferenciais-header-mobile {
    text-align: center;
    margin-bottom: 40px;
}

.diferenciais-header-mobile h2 {
    font-size: 2.5rem;
    color: #1a2a3a;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.diferenciais-header-mobile p {
    color: #fe3d03;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.acordeao-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acordeao-item {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.acordeao-item.ativo {
    border-color: #fe3d03;
    box-shadow: 0 10px 25px rgba(254, 61, 3, 0.1);
}

.acordeao-cabecalho {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
}

.acordeao-titulo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.acordeao-numero {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(1, 1, 128, 0.15); /* Azul clarinho */
    transition: color 0.3s ease;
}

.acordeao-item.ativo .acordeao-numero {
    color: #fe3d03;
}

.acordeao-titulo h3 {
    font-size: 1.1rem;
    color: #1a2a3a;
    margin: 0;
}

/* O Ícone de + e - */
.acordeao-icone {
    position: relative;
    width: 20px;
    height: 20px;
}

.acordeao-icone::before, .acordeao-icone::after {
    content: '';
    position: absolute;
    background-color: #1a2a3a;
    transition: transform 0.3s ease;
}

/* Linha horizontal */
.acordeao-icone::before {
    top: 9px; left: 0;
    width: 20px; height: 2px;
}

/* Linha vertical */
.acordeao-icone::after {
    top: 0; left: 9px;
    width: 2px; height: 20px;
}

/* Quando ativo, gira a vertical para sumir e virar um sinal de "menos" */
.acordeao-item.ativo .acordeao-icone::after {
    transform: rotate(90deg);
}
.acordeao-item.ativo .acordeao-icone::before {
    background-color: #fe3d03;
}
.acordeao-item.ativo .acordeao-icone::after {
    background-color: #fe3d03;
}

/* O Conteúdo da Gaveta (Animação de altura) */
.acordeao-conteudo {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.acordeao-conteudo p {
    padding: 0 20px 20px 20px; /* Padding apenas em baixo e nas laterais */
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- A MÁGICA DA TROCA DE TELAS --- */
@media (max-width: 900px) {
    /* Esconde a original no celular */
    .diferenciais-section {
        display: none !important;
    }
    /* Mostra as gavetas no celular */
    .diferenciais-mobile {
        display: block;
    }
}

/* --- CONTAINER PRINCIPAL DA GALERIA --- */
.galeria-acordeao {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto; 
    border-radius: 30px; 
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* --- SEÇÃO DE DESTINOS --- */
.destinos-section {
    padding: 80px 20px; 
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.destinos-header {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end; 
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto 30px auto; 
}

.textos-header {
    text-align: left;
}

.textos-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 5px;
}

.textos-header p {
    color: #666;
    margin: 0;
}

.filtros {
    display: flex;
    gap: 15px;
    margin: 0; 
}

.btn-filtro {
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    background: transparent;
    border: 1px solid #999;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filtro.active, .btn-filtro:hover {
    background: #fe3d03;
    color: white;
    border-color: #fe3d03;
}

/* --- O CARD DA GALERIA --- */
.card-destino {
    position: relative;
    flex: 1; 
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-right: 1px solid rgba(255,255,255,0.1); 
}

.card-destino {
    /* ... mantenha tudo o que já tem ... */
    
    /* FORÇA A ACELERAÇÃO DA PLACA DE VÍDEO */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    
    /* AVISA O NAVEGADOR DO QUE VAI SER ANIMADO */
    will-change: flex; 
    
    /* EVITA PISCADAS DURANTE O MOVIMENTO */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-destino:last-child {
    border-right: none;
}

.card-destino .overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

.card-destino:hover, .card-destino.active {
    flex: 4; 
}

.estado-fechado {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.titulo-vertical {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    writing-mode: vertical-rl; 
    transform: rotate(180deg);
}

.card-destino:hover .estado-fechado, 
.card-destino.active .estado-fechado {
    opacity: 0;
    pointer-events: none;
}

.estado-aberto {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.01s ease 0.2s; 
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-destino:hover .estado-aberto,
.card-destino.active .estado-aberto {
    opacity: 1;
}

.info-box {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-box .label {
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.titulo-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.titulo-bottom h3 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
}

.bandeira-icone {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid white; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- RESPONSIVO PARA CELULAR (Galeria) --- */
@media (max-width: 768px) {
    /* Mantém o cabeçalho e os filtros a salvos! */
    .destinos-header {
        flex-direction: column;
        align-items: flex-start; 
        gap: 20px;
    }

    .textos-header h2 {
        font-size: 2rem;
    }

    .galeria-acordeao {
        flex-direction: row;
        flex-wrap: wrap; 
        height: auto;
        gap: 5px; 
        border-radius: 20px;
        background: transparent;
        box-shadow: none;
    }

    .card-destino {
        flex: 1 1 calc(50% - 5px) !important; 
        height: 250px;
        border-radius: 15px; 
        border: none;
    }

    .estado-fechado {
        display: none; 
    }

    /* --- A MÁGICA DA BANDEIRA COMEÇA AQUI --- */
    .estado-aberto {
        opacity: 1; 
        bottom: 15px;
        left: 15px;
        right: 15px;
        top: 15px; /* 1. Estica a caixa imaginária até o teto do card */
        justify-content: flex-end; /* 2. Garante que os textos fiquem presos no rodapé */
        gap: 5px;
    }

    .info-box {
        padding: 5px 10px;
    }

    .info-box .label { font-size: 0.5rem; }
    
    .titulo-bottom {
        display: block; /* 3. Solta o título e a bandeira para não ficarem lado a lado */
    }

    .titulo-bottom h3 { 
        font-size: 1.2rem; /* Deixei pouca coisa menor para caber nomes longos */
        line-height: 1.1;
        margin-top: 5px;
    }

    .bandeira-icone { 
        position: absolute; /* 4. Tira a bandeira do texto e joga ela pro topo livre */
        top: 0;
        left: 0;
        width: 25px; 
        height: 25px; 
    }
}

/* --- SEÇÃO DE SERVIÇOS (TEMA CLARO E COMPACTO) --- */
.secao-servicos {
    background-color: #ffffff; /* Fundo branco */
    padding: 80px 5%; /* Menos respiro geral para não ficar tão solto */
    color: #1a2a3a; /* Texto escuro padrão da Aspire */
}

.container-servicos {
    max-width: 1200px; /* Container um pouco mais estreito */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Menos espaço entre os cards */
}

/* --- ESTRUTURA DO CARD --- */
.card-servico {
    display: flex;
    align-items: center; /* Centraliza a caixa de texto e a foto verticalmente */
    gap: 40px; /* Menos distância entre texto e foto */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Borda cinza bem suave */
    border-radius: 15px; /* Cantos um pouco menos arredondados */
    padding: 30px; /* Card mais enxuto */
    background-color: #010180;
}

.card-servico.invertido {
    flex-direction: row-reverse;
}

/* --- LADO DO TEXTO (ALINHAMENTO CORRIGIDO) --- */
.aviso-mobile-servicos {
    display: none;
}

.servico-conteudo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Alinha o bloco no meio da altura da foto */
    text-align: left; /* Trava tudo à esquerda */
    gap: 15px; /* Menos espaço entre título e parágrafo */
}

.servico-conteudo h3 {
    font-size: 1.8rem; /* Fonte menor */
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.servico-conteudo p {
    font-size: 1rem; /* Parágrafo menor */
    line-height: 1.6;
    color: #ffffff; /* Cinza médio para leitura agradável */
    margin: 0 0 10px 0;
}

/* --- BOTÕES DO SERVIÇO --- */
.servico-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Força os botões a cravarem na esquerda */
    gap: 10px; 
}

.btn-servico {
    background-color: #fe3d03; /* Fundo cinza clarinho */
    color: #ffffff;
    padding: 10px 20px; /* Botão menor */
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-servico-icon {
    background-color: #fe3d03; /* Laranja da Aspire */
    color: white;
    width: 38px; /* Bolinha menor */
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-servico:hover {
    background-color: rgb(255, 255, 255);
    color: #000000;
}

.btn-servico-icon:hover {
    transform: scale(1.05);
}

/* --- LADO DA FOTO --- */
.servico-imagem {
    flex: 1; 
    border-radius: 8px;
    overflow: hidden;
    height: 360px; /* Altura bem reduzida para o card não ficar gigante */
}

.servico-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* --- CONTROLE DE TEXTOS (SERVIÇOS) --- */
.texto-mobile {
    display: none; /* Esconde o texto curto no computador */
}

.texto-desktop {
    display: block; /* Garante que o texto longo apareça no computador */
    line-height: 1.6;
    color: #666;
}

/* --- RESPONSIVIDADE (CELULAR) --- */
/* --- RESPONSIVIDADE DOS SERVIÇOS (CARROSSEL MOBILE EDGE-TO-EDGE) --- */
@media (max-width: 900px) {
    /* 1. Removemos o "muro invisível" da seção principal no celular */
    .secao-servicos {
        padding-left: 0;
        padding-right: 0;
    }

    /* 2. Mostramos e estilizamos o texto de UX */
    .aviso-mobile-servicos {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 5% 20px 5%; /* Alinha com o início do primeiro card */
        color: #333;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .aviso-mobile-servicos svg {
        animation: deslizarSeta 1.5s infinite alternate ease-in-out;
    }

    /* 3. O Trilho do carrossel */
    .container-servicos {
        flex-direction: row; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        gap: 15px; 
        
        /* A grande sacada: O padding de 5% agora está NO carrossel. 
           Isso cria o espaço inicial, mas permite que o card deslize até o limite da tela! */
        padding: 0 5% 20px 5%; 
        
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }
    
    .container-servicos::-webkit-scrollbar {
        display: none;
    }
    
    /* Os Cards (A caixa azul) */
    .card-servico, .card-servico.invertido {
        flex-direction: column; 
        flex: 0 0 85%; 
        scroll-snap-align: center; 
        padding: 15px; /* Reduzimos o respiro interno de 15px para 12px */
        gap: 1px; /* Reduzimos o espaço entre a foto e o bloco de texto */
    }
    
    .servico-imagem {
        width: 100%;
        height: 110px; /* Reduzimos a foto de 160px para 110px. Fica mais como uma "capa" horizontal! */
        order: -1; 
    }

    .servico-conteudo {
        gap: 8px; /* Aproximamos mais o título, o parágrafo e o botão */
    }
    
    .servico-conteudo h3 {
        font-size: 1.15rem; /* Um pouco menor para não quebrar a linha tão fácil */
    }

    /* Esconde o textão no celular */
    .texto-desktop {
        display: none !important; 
    }

    /* Mostra e estiliza o texto curtinho */
    .texto-mobile {
        display: block !important; 
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 5px;
        color: #ffffff; /* Ajustei para branco pois seu fundo do card é escuro */
    }

    .btn-servico {
        padding: 8px 16px; 
        font-size: 0.8rem;
        align-self: flex-start; 
    }

    .texto-desktop {
    display: none;
    }

    .card-servico, .card-servico.invertido {
        height: 75vh; /* O card acaba exatamente onde o botão termina */
    }
}

/* --- SEÇÃO DE CONTATO (TEMA HÍBRIDO: FUNDO BRANCO / FORM ESCURO) --- */
.secao-contato {
    background-color: #ffffff; /* New: White background for the section generally */
    color: #1a2a3a; /* New: Dark text color for base elements on white background */
    padding: 100px 5%;
    position: relative;
}

.container-contato {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start; /* Garante que a coluna da esquerda não estique para baixo desnecessariamente */
}

/* --- LADO ESQUERDO: INFO (ADAPTADO PARA FUNDO BRANCO) --- */
.contato-info {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.contato-info h2 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0 0 50px 0;
    color: #000000; /* New: Dark title color on white background */
}

.ponto-laranja {
    color: #fe3d03;
}

/* A linha laranja vertical mantida */
.com-linha {
    border-left: 3px solid #fe3d03;
    padding-left: 25px;
    margin-bottom: 50px;
}

.info-item h4 {
    font-size: 0.9rem;
    color: rgba(26, 42, 58, 0.6); /* New: Slightly transparent dark heading on white background */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #4a5a6a; /* New: Dark paragraph color for readable text on white background */
}

.mt-40 { margin-top: 40px; }
.mt-15 { margin-top: 15px; }

/* Ícones Sociais (Adaptados para fundo branco) */
/* Ícones Sociais (Adaptados para fundo branco com tamanho cravado) */
.contato-sociais {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    align-items: center; /* Garante que os ícones fiquem na mesma linha imaginária */
}

/* O Segredo do Alinhamento Perfeito: */
.icon-wrapper {
    display: flex; /* O flex centraliza o SVG dentro da tag 'a' */
    justify-content: center;
    align-items: center;
    width: 24px;  /* Tamanho exato da caixa invisível */
    height: 24px; /* Tamanho exato da caixa invisível */
    color: rgba(26, 42, 58, 0.6);
    transition: color 0.3s ease;
}

/* Força os SVGs a ocuparem toda a caixinha invisível, nem mais nem menos */
.icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.icon-wrapper:hover {
    color: #fe3d03;
}

/* --- A LUPA MÁGICA PARA O WHATSAPP --- */
/* Força o desenho do WhatsApp a crescer para preencher o espaço vazio do SVG */
.icone-whatsapp svg {
    color: rgba(26, 42, 58, 0.6);
}

.contato-sociais a {
    color: rgba(26, 42, 58, 0.6); /* New: Transparent dark social icons on white background */
    transition: color 0.3s ease;
}

.contato-sociais a:hover {
    color: #fe3d03; /* New: Orange hover effect for icons on white background */
}

/* --- ESTILO PARA OS LINKS DE TELEFONE E EMAIL --- */
.telefone a, .email a {
    color: #4a5a6a; /* A cor cinza chique que você já usa no texto */
    text-decoration: none; /* Tira o sublinhado */
    transition: color 0.3s ease;
}

.telefone a:hover, .email a:hover {
    color: #fe3d03; /* Laranja da Aspire no hover */
}

/* --- ESTILO PARA OS LINKS DE TELEFONE E EMAIL --- */
.telefone a, .email a {
    color: #4a5a6a; /* A cor original do seu texto */
    text-decoration: none; /* Remove o sublinhado do navegador */
    transition: color 0.3s ease;
}

.telefone a:hover, .email a:hover {
    color: #fe3d03; /* Fica laranja ao passar o mouse */
}

/* --- LADO DIREITO: FORMULÁRIO (MANTIDO ESCURO) --- */
.contato-form-wrapper {
    flex: 1;
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
}

/* As Cantoneiras Laranjas (Brackets) - Mantidas Laranjas sobre o fundo branco */
.contato-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-top: 3px solid #fe3d03;
    border-right: 3px solid #fe3d03;
}

.contato-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid #fe3d03;
    border-left: 3px solid #fe3d03;
}

/* A Caixa Escura do Formulário (Mantida como na referência) */
.form-caixa {
    background-color: #1a1a1a; /* Dark box color maintained from reference */
    padding: 50px 40px;
    width: 100%;
    border-radius: 8px; /* Slightly softer corners for light theme integration */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); /* Softer shadow on white background */
    position: relative;
    z-index: 2;
    color: #ffffff; /* Form internal text remains light within the dark box */
}

.form-caixa h3 {
    font-size: 1.5rem;
    margin: 0 0 40px 0;
    font-weight: 600;
}

/* Estilo dos Inputs (Light on Dark - Mantido) */
.input-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6); /* Light label text maintained for dark box background */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.input-group input, 
.input-group textarea, 
.input-group select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Light border-bottom maintained for dark box */
    color: #ffffff; /* White input text maintained for dark box */
    font-size: 1.1rem;
    padding: 8px 0;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.input-group input:focus, 
.input-group textarea:focus, 
.input-group select:focus {
    outline: none;
    border-bottom-color: #fe3d03; /* Orange focus color maintained */
}

/* Ajuste específico para o Select escuro - Mantido */
.input-group select {
    cursor: pointer;
    appearance: none;
}

.input-group select option {
    background-color: #1a1a1a;
    color: white;
}

/* Botão de Envio Laranja - Mantido */
.btn-enviar {
    background-color: #fe3d03;
    color: white;
    border: none;
    width: 100%;
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-enviar:hover {
    background-color: #e03502;
}

/* --- RESPONSIVIDADE --- */
/* --- RESPONSIVIDADE DO CONTATO (ORDEM INVERTIDA) --- */
@media (max-width: 900px) {
    .container-contato {
        flex-direction: column;
        gap: 0; /* Removemos o gap para controlar o espaço peça por peça */
    }
    
    /* A MÁGICA: Isso "quebra" a coluna da esquerda para podermos misturar os itens */
    .contato-info {
        display: contents; 
    }
    
    /* 1º: Título no topo */
    .contato-info h2 {
        font-size: 3rem;
        order: 1; 
        text-align: center; /* Centralizado para combinar com o formulário */
        margin-bottom: 25px;
    }
    
    /* 2º: O Formulário logo abaixo */
    .contato-form-wrapper {
        order: 2;
        padding: 0;
        width: 100%;
        margin-bottom: 40px;
    }
    
    /* 3º: O bloco de endereço e e-mails descendo */
    .info-bloco {
        order: 3;
        width: 100%;
    }
    
    .com-linha {
        margin-bottom: 20px;
    }
    
    /* 4º: As redes sociais centralizadas lá no final */
    .contato-sociais {
        order: 4;
        margin-top: 10px;
        justify-content: center; 
    }
    
    /* Remove as cantoneiras laranjas que poluem muito o celular */
    .contato-form-wrapper::before,
    .contato-form-wrapper::after {
        display: none; 
    }
    
    .form-caixa {
        padding: 40px 25px;
    }
}

/* --- HACK PARA O AUTOFILL DO NAVEGADOR --- */
/* Força o fundo a continuar escuro e o texto branco quando o navegador preenche sozinho */
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover, 
.input-group input:-webkit-autofill:focus, 
.input-group input:-webkit-autofill:active,
.input-group textarea:-webkit-autofill,
.input-group textarea:-webkit-autofill:hover,
.input-group textarea:-webkit-autofill:focus,
.input-group select:-webkit-autofill,
.input-group select:-webkit-autofill:hover,
.input-group select:-webkit-autofill:focus {
    /* O truque da sombra gigante para cobrir o fundo branco do navegador */
    -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
    
    /* Força a cor da letra a continuar branca */
    -webkit-text-fill-color: #ffffff !important;
    
    /* Mantém o estilo da nossa borda e tira as do navegador */
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Quando foca num campo que foi autopreenchido, a linha inferior ainda tem de ficar Laranja */
.input-group input:-webkit-autofill:focus,
.input-group textarea:-webkit-autofill:focus,
.input-group select:-webkit-autofill:focus {
    border-bottom: 1px solid #fe3d03 !important;
}

/* --- RESPONSIVIDADE DA NAVBAR (CELULAR) --- */
@media (max-width: 768px) {
    .glass-nav {
        padding: 0 15px; 
        height: 60px; 
        width: 90%; 
        justify-content: center; /* Como a logo sumiu, isso centraliza os links na barra inteira */
    }

    .logo {
        display: none; /* O detalhe principal: esconde a logo no mobile! */
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: space-evenly; /* Distribui os links com espaçamento igual entre eles */
        gap: 0; /* Zeramos o gap fixo para o space-evenly fazer a mágica */
    }

    .nav-links a {
        font-size: 0.9rem; 
        font-weight: 400;
    }
}