html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Isso evita que o header fixo cubra o título da seção */
}

/* ==========================================
   CONFIGURAÇÕES GERAIS E RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #070707;
    color: white;
    overflow-x: hidden;
}

/* ==========================================
   HEADER (MENU)
   ========================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 7, 0); 
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0px 50px;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    
}

#header.scrolled {
    background: rgba(7, 7, 7, 0.6); 
    backdrop-filter: blur(10px);   
}

#logo {
    height: 220px; /* Aumentamos para compensar o espaço vazio do PNG */
    width: auto;
    display: block;
    
    /* Remove qualquer bordinha residual e foca no conteúdo */
    border: none !important;
    background: transparent !important;
    
    /* Tira o excesso de espaço transparente se houver */
    object-fit: contain; 
    margin-left: -0px; /* Ajusta o alinhamento para a esquerda */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #b6b5b5;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #808080; 
    text-shadow: 0 0 5px rgba(161, 161, 161, 0.5); 
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn-consultor {
    background-color: transparent;
    display: inline-block;
    text-decoration: none;
    color: #7CFF00;
    border: 1px solid #7CFF00;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-style: italic;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-consultor:hover {
    background-color: #7CFF00; 
    color: #000; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(124, 255, 0, 0.3); 
}

.btn-simular {
    background-color: #7CFF00;
    color: black;
    padding: 18px 45px;
    border-radius: 899px;
    font-weight: 800;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 18px;
    height: 64px; /* Altura fixa para alinhar com bloco-atendimento */
    transition: all 0.3s ease;
    
}

.btn-simular:hover {
    transform: scale(1.05) translateY(-3px);
    filter: brightness(1.2);
}

/* ==========================================
   HERO SECTION (BANNER PRINCIPAL)
   ========================================== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding-top: 180px;
}

.subtitulo-principal {
    color: #7CFF00;
    font-size: 11px;
    font-weight: 800;
    border: 1px solid rgba(124, 255, 0, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    margin-top: 30px;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #7CFF00;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px #7CFF00;
    animation: pulsar 1.5s infinite ease-in-out;
}

@keyframes pulsar {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.titulo-principal {
    font-size: 65px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.1;
    margin-top: 30px;
}

.texto-verde {
    color: #7CFF00;
    font-size: 80px;
    font-style: italic;
    font-weight: 800;
}

.frase-final {
    margin-top: 30px;
    margin-bottom: 20px;
    max-width: 850px;
    color: #b6b5b5;
    font-size: 16px;
    line-height: 1.5;
}

.txt-frasefinal {
    color: #ffffff;
    font-size: 15px;
    font-style: italic;
    font-weight: 800;
}

/* ==========================================
   RESULTADOS E STATS
   ========================================== */
.lista-resultados {
    display: flex;
    list-style: none;
    margin-top: 50px;
}

.lista-resultados li {
    padding: 0 40px;
    border-left: 2px solid #7CFF00;
    text-align: left;
    margin: 20px;
}

.lista-resultados li:first-child { border-left: none; }

.lista-resultados li strong {
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin-top: 20px;
}

.lista-resultados li span {
    font-size: 11px;
    color: #b6b5b5;
}

/* Container que alinha Botão e Stats */
.container-cta-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 50px;
    width: 100%;
}

.bloco-atendimento {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 64px;
    margin-top: 10px;
}

.circulo-dez-k {
    width: 50px;
    height: 50px;
    background-color: #1a1f24;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.circulo-dez-k span {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.texto-estrelas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.estrelas-neon {
    color: #7CFF00;
    font-size: 16px;
    letter-spacing: 2px;
}

.txt-bahia {
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    margin-top: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ==========================================
   QUEM SOMOS (CARD COM EFEITO NEON)
   ========================================== */
.container-central-quemsomos {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background-color: #070707;
}

.card-trinity {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 40px;
    padding: 60px 40px;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease; /* Transição suave */
    cursor: pointer;
}

.card-trinity:hover {
    border-color: #7CFF00;
    box-shadow: 0 0 30px rgba(124, 255, 0, 0.15);
    transform: translateY(-5px);
}

.text-quemsomos {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.text-proposito {
    max-width: 1000px;
    font-size: 17px;
    line-height: 1.8;
    color: #b6b5b5;
    font-weight: 400; 
    letter-spacing: 0.5px;
}

.texto-frasequemsomos {
    color: #7CFF00;
    font-size: 18px;
    font-style: italic;
    font-weight: 800;
}

.seta-decorativa {
    position: absolute;
    right: 10px;
    bottom: -5px;
    opacity: 0.3;
    z-index: 1;
    transition: 0.4s;
}

.card-trinity:hover .seta-decorativa {
    opacity: 0.8;
    transform: scale(1.1);
}

.seta-decorativa svg {
    stroke: #7bff00f0;
    width: 120px;
    height: auto;
}

/* ==========================================
   SERVIÇOS
   ========================================== */
.titulo-servicos {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin-bottom: 40px;
    margin-top: 20px;
    letter-spacing: 3px;
    text-align: center;
}

.lista-servicos {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    gap: 30px;
}

/* --- ESTILO DOS CARDS DE SERVIÇOS --- */
.servicos-section {
    padding: 80px 40px;
    background-color: #070707;
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Faz a mágica de quebrar linha sozinho */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-servico {
    background-color: #111;
    border: 1px solid #222; /* Borda padrão quase invisível */
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease; /* Faz o verde 'acender' suavemente */
}

.card-servico.destaque {
    border: 1px solid #7CFF00; /* Borda verde como na imagem */
}

.card-servico h3 {
    font-size: 22px;
    margin: 20px 0 15px;
    line-height: 1.2;
}

.card-servico p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

.icon-verde {
    font-size: 30px;
    color: #7CFF00;
}

.card-servico:hover {
    border-color: #7CFF00; /* A borda só fica verde aqui */
    box-shadow: 0 0 15px rgba(124, 255, 0, 0.2); /* Efeito de brilho opcional */
}

/* --- ESTILO DO CARD WIDE (QUEM SOMOS) --- */
.card-trinity-wide {
    background-color: #0d0d0d;
    border-radius: 40px;
    padding: 60px;
    max-width: 1100px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border: 1px solid #1a1a1a;
}

.text-performance {
    font-style: italic;
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-proposito-wide {
    font-size: 18px;
    color: #b6b5b5;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tags-container {
    display: flex;
    gap: 15px;
}

.tag {
    background: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #333;
}

.seta-grafico {
    opacity: 0.2;
}

/* Container do ícone */
.icon-verde {
    margin-bottom: 25px;
    display: block;
}

/* Estilo do SVG: Fica verde neon e vazado */
.card-servico svg {
    width: 45px;
    height: 45px;
    color: #7CFF00; /* O verde da Trinity */
    stroke: #7CFF00; 
    transition: all 0.3s ease;
}

/* Títulos e Textos dos Cards */
.card-servico h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.card-servico p {
    font-size: 14px;
    color: #b6b5b5; /* Cinza suave da referência */
    line-height: 1.6;
   
}

/* Efeito de Hover: Quando passa o mouse, o ícone brilha levemente */
.card-servico:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(124, 255, 0, 0.6));
}

/* --- CONTAINER DOS CARDS (O PAI DE TODOS) --- */
.grid-servicos {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Garante que no celular eles fiquem um embaixo do outro */
}

/* Estilo do Título igual à referência */
.titulo-servicos {
    font-style: italic;
    font-size: 45px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.titulo-servicos span {
    color: #7CFF00; /* Verde Trinity */
}

/* Linha verde abaixo do título */
.linha-decorativa {
    width: 60px;
    height: 4px;
    background-color: #7CFF00;
    margin: 0 auto 50px auto;
    border-radius: 10px;
}

/* --- AJUSTE DOS CARDS INDIVIDUAIS --- */
.card-servico {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 40px 30px;
    border-radius: 25px;
    transition: 0.3s;
}

/* Garante que os ícones SVG não fiquem gigantes */
.card-servico:hover {
    border-color: #7CFF00;
    transform: translateY(-5px);
}

.localidades-section {
    background-color: #000; /* Fundo preto para destacar */
    padding: 60px 0;
    border-top: 1px solid #1a1a1a; /* Linha sutil de separação */
}

.container-localidades {
    display: flex;
    justify-content: space-around; /* Distribui igualmente */
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap; /* Para funcionar no celular */
}

.localidade-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    margin: 20px 0;
}

.pin-icon svg {
    width: 25px;
    height: 25px;
    margin-bottom: 15px;
}

.localidade-item p {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-style: italic; /* O detalhe importante da imagem */
    letter-spacing: 2px; /* Dá um ar mais profissional */
    font-size: 12px;
}

/*ULTIMA SEÇÃO */

.cta-final-section {
    background-color: #0d0d0d;
    padding: 100px 20px;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* Badge Superior */
.badge-jornada {
    border: 1px solid #7CFF00;
    color: #7CFF00;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Título de Impacto */
.titulo-final {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.titulo-final .texto-verde {
    color: #7CFF00;
}

/* Descrição */
.descricao-final {
    max-width: 650px;
    margin: 0 auto 50px auto;
    font-size: 20px;
    color: #b3b3b3;
    line-height: 1.6;
}

/* Botão WhatsApp */
.container-contato-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #7CFF00;
    color: black;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    background-color: #6ee600;
}

/* Texto de Localidades Lateral */
.texto-consultoria {
    text-align: left;
}

.texto-consultoria strong {
    display: block;
    font-size: 18px;
    font-style: italic;
}

.texto-consultoria span {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

/*FOOTER*/

.footer-trinity {
    background-color: #000;
    padding: 60px 20px 30px 20px;
    border-top: 1px solid #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logo Footer */
.footer-logo {
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    letter-spacing: -1px;
}

/* Valores Centrais */
.footer-valores {
    color: #4d4d4d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

/* Ícones Sociais Circulares */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #333;
    color: #7CFF00; /* Verde Trinity no hover */
}

/* Linha de Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 50px;
    font-size: 10px;
    color: #333;
    letter-spacing: 1px;
    border-top: 1px solid #0d0d0d;
    padding-top: 20px;
}

/* ==========================================
   RECONSTRUÇÃO MOBILE - TRINITY OFICIAL
   ========================================== */
@media (max-width: 768px) {
    
    /* 1. Header: Resolve o Logo 'Marcado' e Espremido */
    #header {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 5px 15px !important;
        background: rgba(7, 7, 7, 0.9) !important; /* Fundo mais visível no mobile */
        backdrop-filter: blur(10px);
    }

   #logo {
    height: 120px; /* Aumentamos para compensar o espaço vazio do PNG */
    width: auto;
    display: block;
    margin-left: -10px !important;
    transition: transform 0.3s ease;

    }
    /* Esconde o menu de links no celular para limpar o visual */
    nav {
        display: none !important;
    }

    .btn-simular {
    background-color: #7CFF00;
    color: black !important;
    padding: 18px 45px;
    border-radius: 899px;
    font-weight: 800;
    border: none;
    display: flex !important; /* Isso centraliza */
    justify-content: center !important; 
    align-items: center !important;     
    gap: 10px;
    cursor: pointer;
    font-size: 18px;
    height: 60px;          
    width: 100%;
    text-decoration: none !important; /* Isso tira o sublinhado do link */
    transition: all 0.3s ease;
}


    .btn-consultor {
        font-size: 10px !important;
        padding: 8px 12px !important;
        white-space: nowrap;
    }

    .btn-consultor, .btn-simular, .btn-whatsapp {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform;
    }

    /* 2. Hero Section: Abre espaço para as informações aparecerem */
    .hero {
        padding-top: 160px !important; /* Empurra o conteúdo para baixo do header */
        padding-bottom: 20px !important;
        min-height: auto !important; /* Deixa o conteúdo ditar a altura */
        display: block !important; /* Muda de flex para block para não cortar */
    }

    .subtitulo-principal {
        margin-bottom: 70px !important;
        font-size: 10px !important;
        display: inline-flex !important;
        margin-top: 0px;
    }

    .titulo-principal {
        font-size: 32px !important; /* Diminui para caber na largura do celular */
        line-height: 1.2 !important;
        margin-top: 10px !important;
        padding: 0 10px !important;
        margin-bottom: 50px;
    }

    .texto-verde {
        font-size: 36px !important;
        display: block !important; /* Força o 'Transformam Vidas' para a linha de baixo */
    }

    .frase-final {
        font-size: 14px !important;
        padding: 0 20px !important;
        margin-top: 70px !important;
        
    }

    /* 3. Lista de Resultados: Um embaixo do outro */
    .lista-resultados {
        flex-direction: column !important;
        align-items: center !important;
        margin-top: 40px !important;
        gap: 20px !important;
    }

    .lista-resultados li {
        border-left: none !important;
        border-top: 2px solid #7CFF00 !important; /* Linha sutil superior */
        padding: 15px 0 0 0 !important;
        margin: 0 !important;
        width: 70% !important;
        text-align: center !important;
    }

    /* 4. CTA e Atendimento: Empilhamento correto */
    .container-cta-principal {
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 30px !important;
        padding: 0 20px !important;
    }

    .btn-simular {
        width: 100% !important;
        font-size: 16px !important;
        height: auto !important;
        padding: 20px !important;
    }

    .bloco-atendimento {
        height: auto !important;
        justify-content: center !important;
    }

    .container-central-quemsomos {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background-color: #070707;
    }

    .card-trinity {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 40px;
    padding: 60px 40px;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease; /* Transição suave */
    cursor: pointer;
    }

    .card-trinity:hover {
    border-color: #7CFF00;
    box-shadow: 0 0 30px rgba(124, 255, 0, 0.15);
    transform: translateY(-5px);
    }

    .text-quemsomos {
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    }

    .texto-frasequemsomos {
    color: #7CFF00;
    font-size: 15px;
    font-style: italic;
    font-weight: 800px;
    }

    .seta-decorativa {
    position: absolute;
    right: 10px;
    bottom: -5px;
    opacity: 0.3;
    z-index: 1;
    transition: 0.4s;
    }

    .card-trinity:hover .seta-decorativa {
    opacity: 0.8;
    transform: scale(1.1);
    }

    .seta-decorativa svg {
    stroke: #7bff00f0;
    width: 120px;
    height: auto;
    }


    /* 5. Títulos de Seções */
    .titulo-final {
        font-size: 35px !important;
    }

    /*6. NOSSOS SERVIÇOS*/

    .titulo-servicos {
    font-style: italic;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    }

    .lista-servicos {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    gap: 30px;
}

/* --- ESTILO DOS CARDS DE SERVIÇOS --- */
.servicos-section {
    padding: 80px 40px;
    background-color: #070707;
}

.grid-servicos {
        display: flex !important;
        flex-direction: row !important; /* Força ficar lado a lado */
        flex-wrap: wrap !important;     /* Permite quebrar linha para os próximos 2 */
        justify-content: center !important;
        gap: 10px !important;           /* Espaço reduzido entre os cards */
        padding: 10px !important;
    }

.card-servico {
        /* O SEGREDO: 46% permite que 2 cards caibam na mesma linha com o gap */
        flex: 0 0 46% !important; 
        min-width: 140px !important;    /* Garante que não fiquem finos demais */
        max-width: 180px !important;
        padding: 20px 10px !important;  /* Reduz o respiro interno */
        border-radius: 15px !important;
        text-align: center !important;
        margin: 0 !important;           /* Remove margens que empurram o card */
    }

    .card-servico.destaque {
        border: 1px solid #7CFF00; /* Borda verde como na imagem */
    }

    .card-servico svg {
        width: 30px !important;         /* Ícone menor para o card menor */
        height: 30px !important;
        margin-bottom: 10px !important;
    }
    .card-servico h3 {
        font-size: 14px !important;     /* Título menor */
        margin-bottom: 8px !important;
    }

    .card-servico p {
        color: #888;
        font-size: 14px;
        line-height: 1.6;
    }

    .icon-verde {
        font-size: 30px;
        color: #7CFF00;
    }

    .card-servico p {
        font-size: 11px !important;     /* Descrição menor */
        line-height: 1.3 !important;
    }

    .card-servico:hover {
        border-color: #7CFF00; /* A borda só fica verde aqui */
        box-shadow: 0 0 15px rgba(124, 255, 0, 0.2); /* Efeito de brilho opcional */
    }

    
}

    
