/* Variáveis de Cores */
:root {
    --color-dark: #000000;
    --color-bg-dark: #121212; /* Fundo escuro para seções */
    --color-primary-blue: #007bff; /* Base IA */
    --color-primary-orange: #ff9900; /* Base Conexão Quente */
    --color-text-light: #ffffff;
    --color-accent: #ffd700; /* Amarelo para destaques */
}

/* ======================================
   BASE RESET & ESTRUTURA (VERSÃO FINAL)
   ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    background-color: #000000;
    -webkit-text-size-adjust: 100%; 
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-light);
    background-color: #000000; 
    line-height: 1.6;
    display: flex; 
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}


main {
    flex: 1;
    display: block;
    width: 100%;
    margin-bottom: 0 !important; 
}


main > section:last-child {
   margin-bottom: 0 !important;
    padding-bottom: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* ======================================
   HEADER E NAVEGAÇÃO
   ====================================== */
.main-header {
    background-color: var(--color-bg-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo-link {
    display: inline-block;
    height: 60px;
    margin-right: 20px;
}

.header-logo {
    height: 100%;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    padding: 10px 12px; 
    font-weight: 700;
    transition: color 0.3s;
    white-space: nowrap; 
    font-size: 0.95rem;
}

.main-nav ul li a:hover {
    color: var(--color-primary-orange);
}

.main-nav .cta-link {
   border-radius: 5px;
    padding: 8px 18px;   
    font-weight: 700;
    text-decoration: none;
    display: inline-flex; 
    align-items: center;
    white-space: nowrap;
}

/* 1. Botão ENTRAR (Penúltimo item da lista) */
.main-nav ul li:nth-last-child(2) .cta-link {
    background-color: var(--color-primary-orange);
    color: var(--color-dark);
}

/* 2. Botão INSCREVA-SE (Último item da lista) */
.main-nav ul li:last-child .cta-link {
    background-color: #ffffff; 
    color: #000000;           
    margin-left: 5px;          
}

/* Efeito de hover para o botão branco */
.main-nav ul li:last-child .cta-link:hover {
    background-color: #f0f0f0;
}

/* ======================================
   SEÇÃO 1: Inicio (HERO)
   ====================================== */
.hero-manifesto {
    position: relative;
    height: 100vh; 
    width: 100%; /* Garante que ocupa a largura total */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px; 
    overflow: hidden; /* Isso aqui é vital, mas às vezes o conteúdo vaza antes de ser cortado */
    box-sizing: border-box;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.manifesto-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
}

.hero-content {
    position: relative; 
    z-index: 10;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    font-weight: 900;
    /* Destaque das palavras principais */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--color-primary-orange);
    color: var(--color-dark);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1em;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

.slogan {
    margin-top: 15px;
    font-size: 1em;
    font-weight: 700;
    color: var(--color-primary-blue);
}

/* ======================================
   AJUSTES PARA TELAS DE CELULAR (HERO)
   ====================================== */
@media (max-width: 768px) {
    /* 1. Trava o container principal para não vazar */
    .hero-manifesto {
        height: auto; 
        min-height: 80vh; /* Melhor usar min-height para conteúdo não cortar */
        display: flex;
        align-items: center;
        justify-content: center;/* Remove padding que pode empurrar o conteúdo */
    }

    /* 2. Garante que o conteúdo interno respeite os limites */
    .hero-content {
        padding: 40px 20px;
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem; 
        line-height: 1.2;
        margin-bottom: 15px;
        word-wrap: break-word; /* Força quebra de palavras se necessário */
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /* 3. Força o vídeo a preencher sem criar barras de rolagem */
    .video-container, 
    .manifesto-video {
        width: 100% !important;
        height: 100% !important;
        left: 0;
        object-fit: cover;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .slogan {
        font-size: 0.9rem;
        margin-top: 10px;
    }
}

/* Ajuste para celulares muito pequenos */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
}
/* ======================================
   CONTROLE DE ÁUDIO
   ====================================== */
.audio-toggle-btn {
    position: absolute;
    bottom: 30px; /* Distância da parte inferior */
    right: 30px;  /* Distância da lateral direita */
    
    /* REMOVIDO: transform: translateX(50%); */
    
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--color-text-light);
    border: 2px solid var(--color-primary-orange);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s, border-color 0.3s;
}

.audio-toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: var(--color-accent);
}

/* Adicionando media query para o mobile, garantindo que não fique colado na borda */
@media (max-width: 600px) {
    .audio-toggle-btn {
        bottom: 15px;
        right: 15px;
    }
}

/* ======================================
   SEÇÃO 2: Como começar
   ====================================== */

/* Container principal da seção */
.challenge-section {
    background-color: var(--color-bg-dark);
    padding: 100px 0;
    text-align: center;
}

/* Título com a linha azul central */
.section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--color-text-light);
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--color-primary-blue);
}

/* O Segredo do Alinhamento: Removendo o padding vertical para a moldura tocar o card */
.challenge-grid-wrapper {
    position: relative;
    padding: 0 80px; 
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    justify-content: center;
}

/* Moldura Esquerda */
.challenge-grid-wrapper::before {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;    
    bottom: -20px; 
    width: 100px;
    border-left: 3px solid var(--color-primary-orange);
    border-top: 3px solid var(--color-primary-orange);
    border-bottom: 3px solid var(--color-primary-orange);
    pointer-events: none;
    z-index: 1;
}

/* Moldura Direita */
.challenge-grid-wrapper::after {
    content: "";
    position: absolute;
    right: 20px;
    top: -20px;
    bottom: -20px;
    width: 100px;
    border-right: 3px solid var(--color-primary-orange);
    border-top: 3px solid var(--color-primary-orange);
    border-bottom: 3px solid var(--color-primary-orange);
    pointer-events: none;
    z-index: 1;
}

/* Grid de Cards */
.platform-features-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 50px; 
    flex-wrap: wrap;
    width: 100%;
}

/* Card Individual */
.feature-card {
    background-color: #1e1e1e;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}

/* ============================================================
   SEÇÃO: COMO COMEÇAR (UNIFICADO E SEGURO)
   ============================================================ */
/* Media Query para responsividade da seção Como Começar (Seguindo padrão Equipe) */
@media (max-width: 768px) {
    
    /* 1. O Trilho: Igual ao .carrossel-track da equipe */
    .platform-features-grid {
     display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        
        /* GARANTE QUE COMECE DO CARD 01 */
        justify-content: flex-start !important; 
        align-items: stretch !important;
        
        /* Padding lateral para o card não colar na borda da tela */
        padding: 20px 30px 40px 30px !important; 
        gap: 20px !important;
        
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
    }

    /* 2. Os Cards: Definimos largura para eles "transbordarem" e permitirem o scroll */
    .feature-card {
        flex: 0 0 280px; /* Largura fixa para garantir o scroll lateral */
        scroll-snap-align: center;
        background: #111;
        border: 2px solid #f39c12; /* Borda amarela apenas nos cards */
        border-radius: 15px;
        padding: 30px 20px;
        list-style: none;
    }

    /* 3. O Botão: Forçamos ele a ficar centralizado abaixo do trilho */
    .btn-comecar {
        display: block;
        width: 80%;
        max-width: 300px;
        margin: 30px auto 0 auto; /* Centraliza e dá distância do carrossel */
        text-align: center;
    }

    /* 4. Limpeza: Removemos as bordas amarelas da seção que entortam o layout */
    .challenge-grid-wrapper {
        border: none !important;
        background: none !important;
        padding: 0 !important;
    }

    .challenge-grid-wrapper::before,
    .challenge-grid-wrapper::after {
        display: none !important;
    }

    /* Esconde a barra de rolagem para ficar visualmente limpo */
    .platform-features-grid::-webkit-scrollbar {
        display: none;
    }
}
/* ======================================
   SEÇÃO 3: Sobre a KI
   ====================================== */
.about-section {
    /* Fundo com um gradiente sutil para alternar o visual */
    background: linear-gradient(180deg, #1c1c1c 0%, #121212 100%);
    padding: 100px 0;
}

.about-content {
   display: flex;
    align-items: flex-start; 
    gap: 60px;
    text-align: left;
}

.about-text {
    flex: 1; 
    min-width: 0;
}

.about-image {
   flex: 0 0 400px; 
    text-align: center;
    margin-top: 0;
}

.about-text .section-title {
    border-bottom: 3px solid var(--color-primary-orange);
    margin-bottom: 10px; 
    padding-bottom: 5px; 
}

.about-text .subtitle {
    display: block;
    font-size: 1.3em;
    color: #007bff; 
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 25px;
    text-align: justify;
}

.pillar-item p {
    font-size: 0.85rem; 
    line-height: 1.4;
    text-align: left; 
}

.pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 15px; 
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px !important;
    align-items: stretch;
}

.pillar-item {
    padding: 20px; 
    min-height: 180px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 8px !important;
    
    /* MOLDURA AMARELA COMPLETA EM TODOS OS LADOS */
    border: 2px solid var(--color-primary-orange) !important; 
    
    background-color: #1e1e1e !important; 
    transition: transform 0.3s ease;
    box-sizing: border-box; 
}

.pillar-item h4 {
    color: var(--color-accent);
    font-size: 1.1rem; /* Ajuste para não quebrar linha em títulos longos */
    margin-bottom: 10px;
}

.pillar-item:hover {
    transform: translateY(-5px);
    background-color: #333 !important;
}

.pillar-item .icon {
   font-size: 1.5em;
    color: var(--color-primary-blue);
    margin-bottom: 15px;
    display: block;
}

/* Botão Terciário (link para Metodoki) */
.btn-tertiary {
   background-color: var(--color-primary-blue);
    color: var(--color-text-light);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s;
    
    /* AJUSTE DE PROXIMIDADE */
    display: inline-block !important; 
    margin-top: 10px !important; /* REDUZIDO: de 50px para 10px * /* Valor alto para garantir o respiro nítido */
}


.btn-tertiary:hover {
    background-color: #0060c4;
}

/* button Começar agora */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 50px; 
    position: relative;
    z-index: 10; 
}


.btn-comecar {
    background-color: var(--color-primary-orange); 
    color: #000; 
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px; 
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Efeito ao passar o mouse */
.btn-comecar:hover {
    background-color: transparent;
    color: var(--color-primary-orange);
    transform: scale(1.05); 
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.4); 
}

/* Imagem responsiva */
.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ======================================
   RESPONSIVIDADE: SOBRE A KI
   ====================================== */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px; 
    }

    .about-content {
        flex-direction: column;
        gap: 25px;
        text-align: center; 
    }

    .about-image {
        display: none; 
    }

    .about-text p {
        text-align: center; 
        font-size: 1rem;
    }

    .about-text .subtitle {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    /* Ajuste do Grid de Pilares (Missão, Visão, Valores) */
    .pillars-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px;
        margin-top: 20px;
    }

    .pillar-item {
        min-height: auto; 
        padding: 25px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      
    }

    .pillar-item p, 
    .pillar-item span, 
    .pillar-item li {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Botão Começar agora (Mobile) */
    .btn-comecar {
        width: 100%; 
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .btn.btn-tertiary {
        display: flex;         
        align-items: center;   
        justify-content: center; 
        text-align: center;    
        
        width: 100%;           
        min-height: 55px;      
        padding: 12px 20px;    
        
        box-sizing: border-box; 
}

   

}


/* ======================================
   SEÇÃO 5: PLanos Criadores
   ====================================== */

.why-ki-section {
    position: relative;
    /* Fundo com gradiente sutil para criar profundidade e contraste */
    background: linear-gradient(135deg, #0b0b0b 0%, #151515 50%, #0b0b0b 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden; 
}

/* Efeito Futurista/Digital no Fundo (Textura Sutil) */
.why-ki-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Simula uma grade digital ou ruído de IA. Idealmente, usaria uma pequena imagem SVG de fundo */
    background-image: radial-gradient(circle, rgba(0, 123, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.why-ki-section .container {
    position: relative; 
    z-index: 1;
}

.why-ki-section .section-title {
    /* Destaque em cor Azul (Inteligência Artificial/Metodologia) */
    border-bottom: 3px solid var(--color-primary-blue); 
    margin-bottom: 10px;
}

.why-ki-section .subtitle {
    display: block;
    font-size: 1.1em;
    color: var(--color-primary-orange);
    margin-bottom: 50px;
}

.why-ki-content {
    display: flex;
    align-items: flex-start; 
    gap: 40px;
    margin-bottom: 30px;    
    padding-bottom: 0;
}

.ki-text {
   flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ki-text p {
    font-size: 1.15em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.ki-text strong {
    color: var(--color-accent);
}

.ki-visualization {
    flex: 0 0 350px;
}

.ki-sphere {
    max-width: 100%;
    height: auto;
    /* Sombra azul/laranja sutil para linkar ao logo */
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.5), 0 0 15px rgba(255, 153, 0, 0.3);
    border-radius: 5px;
}


/* PLANOS BOTÃO CONHEÇA 
/* --- Ajustes Globais da Modal --- */
.planos-modal-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.planos-modal-overlay.active {
    opacity: 1;
}

.planos-modal-content {
    background: #0a0a0a;
    border: 1px solid #f39c12;
    border-radius: 20px;
    padding: 60px 25px 40px;
    width: 95%;
    max-width: 1380px; 
    max-height: 92vh;
    overflow-y: auto; /* Mantém o scroll interno */
    position: relative; /* Essencial para o X se posicionar aqui */
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* --- Grid e Cards --- */
.planos-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
}

.plano-card {
    background: #151515;
    border: 1px solid #333;
    padding: 35px 25px;
    border-radius: 15px;
    flex: 1;
    min-width: 270px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animação suave */
    position: relative;
}

/* EFEITO DE PROFUNDIDADE AMARRELO (HOVER) */
.plano-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #f39c12;
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.2);
    background: #1c1c1c;
}

/* --- Alinhamento de Textos e Emojis --- */
.emoji-top {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
    display: block;
}

.plano-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-align: center;
}

.preco {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #f39c12;
    text-align: center;
}

/* --- Lista de Tópicos (Sem Linhas e Alinhada) --- */
.lista-recursos {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.lista-recursos li {
    display: flex;
    align-items: flex-start; 
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.4;
    border: none; 
}

.lista-recursos li::before {
    content: "✔";
    color: #f39c12;
    font-weight: bold;
}

/* Títulos de Seção (Inteligência / Social) */
.titulo-sessao {
    display: block;
    color: #f39c12;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin: 20px 0 10px 0;
    letter-spacing: 1px;
}

/* --- Rodapé do Card --- */
.taxa-venda {
    font-size: 0.9rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.btn-close-modal {
    position: absolute; 
    top: 15px;
    right: 20px;
    background: #222; 
    border: 1px solid #f39c12; 
    color: #fff;
    font-size: 24px;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001; 
    transition: all 0.2s ease;
}

.btn-close-modal:hover {
    background: #f39c12;
    color: #000;
    transform: rotate(90deg); 
}


.btn-selecionar {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    width: 100%;
}

.btn-selecionar:hover {
    background-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Selo Recomendado */
.selo-destaque {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- Botão Principal (Abre a Modal) --- */
.btn-tertiary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px; 
    border: 2px solid transparent;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
    outline: none;
    margin-top: 20px;
}

/* Efeito de brilho e escala ao passar o mouse */
.btn-tertiary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
    background: linear-gradient(135deg, #0088ff 0%, #0066cc 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Efeito de clique */
.btn-tertiary:active {
    transform: translateY(0) scale(0.98);
}

/* Reflexo de luz passando pelo botão (Animação secreta) */
.btn-tertiary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.btn-tertiary:hover::after {
    left: 120%;
}

/* Responsividade */
@media (max-width: 1100px) {
    .planos-grid { flex-wrap: wrap; }
    .plano-card { min-width: 45%; margin-bottom: 20px; }
}

@media (max-width: 650px) {
    .plano-card { min-width: 100%; }
}


@media (max-width: 900px) {
    /* 1. SEÇÃO SOBRE (Manter alinhamento à esquerda conforme a imagem) */
    .about-section .section-title {
        text-align: left;
        display: block;
        border-bottom: 3px solid var(--color-primary-orange);
        padding-bottom: 5px;
    }

    .about-text p {
        text-align: left;
    }

    /* 2. SEÇÃO WHY-KI / CREATORS (Centralizar este especificamente) */
    .why-ki-section {
        padding: 60px 20px;
    }

    .why-ki-section .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: none; /* Remove a borda azul/padrão */
    }

    /* Linha amarela apenas para a seção centralizada */
    .why-ki-section .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background-color: var(--color-primary-orange);
        margin-top: 15px;
    }

    .why-ki-section .subtitle, 
    .why-ki-section .ki-text p {
        text-align: center;
    }

    /* 3. AJUSTE DA IMAGEM QUE QUEBROU O TEXTO (Efeito Lado a Lado) */
    /* Se a imagem está "empurrando" o texto para o lado no mobile, forçamos a coluna */
    .why-ki-content, .about-content {
        display: flex;
        flex-direction: column !important;
        align-items: center;
    }

    /* Garante que a imagem não flutue ao lado do texto no mobile */
    .ki-visualization, .about-image {
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
        order: -1; /* Imagem em cima do texto */
    }
}
/* ======================================
   SEÇÃO 6: Trilha Inteligente
   ====================================== */
.platform-section {
    background-color: var(--color-bg-dark); 
    padding: 40px 0 100px 0; 
    text-align: center;
}

.platform-section .section-title {
    border-bottom: 3px solid var(--color-primary-orange); 
    margin-top: 0;
    margin-bottom: 20px;
}

.intro-text {
    text-align: center;
    max-width: 800px; 
    margin: 10px auto 40px auto; 
    line-height: 1.6;
    color: #ddd;
}

.plan-list li {
    text-align: left; 
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-footer {
    text-align: justify; 
    hyphens: auto; 
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 15px;
}

.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 5px solid var(--color-primary-orange);
    transition: background-color 0.3s;
}

.feature-card:hover {
    background-color: #333333;
}

.feature-card .icon {
    font-size: 3em;
    color: var(--color-primary-orange); 
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--color-accent);
    font-size: 1.6em;
    margin-bottom: 10px;
}

.feature-card p {
    color: #b0b0b0;
    font-size: 1em;
}

.platform-visual {
    margin: 60px auto;
    max-width: 600px;
}

.responsive-mockup {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.3); 
    border: 1px solid var(--color-primary-orange);
}

.large-btn {
    padding: 18px 40px;
    font-size: 1.2em;
}

   .cta-section {
    background-color: var(--color-bg-light); /* Fundo Claro */
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    color: var(--color-text-dark); /* Título Escuro */
    /* Destaque em cor quente */
    border-bottom: 3px solid var(--color-primary-orange); 
    margin-bottom: 10px;
}

.cta-slogan {
    font-size: 1.3em;
    color: var(--color-text-dark);
    margin-bottom: 40px;
}

/* Estilos do Formulário */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-text-light); /* Fundo Branco para o formulário */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--color-text-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    color: var(--color-text-dark);
    background-color: #ffffff;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--color-primary-blue);
    outline: none;
}

.contact-form .large-btn {
    /* O botão primário já tem estilos quentes e escuros, o que funciona perfeitamente aqui */
    width: 100%;
    margin-top: 10px;
}




@media (max-width: 768px) {
    /* 1. Força o container a ignorar qualquer limite de largura lateral */
    .platform-section .container {
        display: block !important; /* Remove o flex/grid do container pai */
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    /* 2. O Grid vira um trilho horizontal absoluto */
    .platform-features-grid {
      display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        
        /* 1. Remova o width: 100% se estiver usando paddings largos */
        /* 2. Use este padding para criar o respiro nas laterais */
        padding: 20px 10% 50px 10% !important; 
        
        gap: 20px !important;
        
        /* 3. Garante que o padding não empurre a largura total */
        box-sizing: border-box !important; 
        
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
    }

    /* 3. O Card: 80% da tela + Snap Center */
    .feature-card {
      /* O card deve ser ligeiramente menor que 100% para mostrar que tem outro vindo */
        flex: 0 0 80vw !important; 
        scroll-snap-align: center !important;
    }

    /* 4. Esconde a barra de rolagem */
    .platform-features-grid::-webkit-scrollbar {
        display: none !important;
    }
    .platform-features-grid {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    /* 5. Ajustes de texto */
    .feature-card h3 {
        font-size: 1.3rem !important;
        text-align: center;
    }
    .plan-list li {
        font-size: 0.85rem !important;
    }
}
/* ======================================
   RODAPÉ
   ====================================== */
.main-footer {
    background-color: #000000;
    color: #999;
    padding: 15px 0;
    width: 100%;
    flex-shrink: 0;
    margin: 0; 
    border-top: 1px solid #111;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-img {
    height: 80px; 
    width: auto;
    margin-bottom: 5px; 
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-nav ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: var(--color-primary-orange);
}

.copyright {
    margin-top: 5px;
    width: 100%;
    text-align: center;
}

.ki-text {
    max-width: 600px; 
    margin-bottom: 30px;
}

.ki-text p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6; 
    text-align: justify; 
    margin-bottom: 20px; 
}


.ki-text p {
    text-align-last: left; 
}


.ki-visualization {
    flex: 1; 
    display: flex;
    justify-content: flex-end; 
}

.ki-sphere {
    width: 100%; 
    max-width: 450px; 
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(243, 156, 18, 0.15); 

}
/* Media Query para Rodapé no Mobile */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 5px;
        margin: 10px 0;
    }
}

/* ======================================
   SEÇÃO EXTRA: EQUIPE (NEON)
   ====================================== */
   
.carrossel-capa {
    background-color: var(--color-bg-dark); 
    padding: 80px 0;
    text-align: center;
    position: relative; 
    overflow: hidden; 
}


.carrossel-capa h2 {
    color: var(--color-text-light);
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    
    text-shadow: 0 0 5px var(--color-primary-orange), 0 0 10px var(--color-primary-blue);
}

.carrossel-capa .intro {
    font-size: 1.2em;
    color: #a0a0a0;
    margin-bottom: 50px;
}

/* Container do Carrossel */
.carrossel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
/* Container do Carrossel */
.carrossel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: scroll; 
    overflow-y: hidden;
    scroll-snap-type: x mandatory; 

    scrollbar-width: none; 
    -ms-overflow-style: none;
}

/* Esconde a barra de rolagem no Webkit (Chrome/Safari) */
.carrossel-container::-webkit-scrollbar {
    display: none;
}

/* Trilha do Carrossel (Horizontal Scrolling) */
.carrossel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding-bottom: 20px;
    /* ESSENCIAL: Garante que todos os cards fiquem na mesma linha */
    white-space: nowrap; 
    /* Efeito de fade nas laterais (Pode ser removido se causar problemas visuais) */
    mask-image: none;
    -webkit-mask-image: none;
}

/* Card da Equipe */
.capa-card {
    /* Largura do card (300px) + margin-right (20px) = 320px total por item */
    flex: 0 0 300px; 
    margin-right: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    scroll-snap-align: start; 
    /* Sombra Neon Azul inicial */
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.3); 
    transition: box-shadow 0.3s, transform 0.3s;
}

.capa-card:hover {
    /* Sombra Neon Laranja no hover */
    box-shadow: 0 0 20px var(--color-primary-orange), 0 0 30px rgba(255, 153, 0, 0.5); 
    transform: translateY(-5px);
}

.capa-card img {
    width: 100%;
    height: auto;
    display: block;
    /* Imagem dessaturada para o efeito neon */
    filter: grayscale(100%) brightness(80%); 
    transition: filter 0.5s;
}

.capa-card:hover img {
    filter: grayscale(0%) brightness(100%); /* Cor completa no hover */
}

/* Overlay do Card */
.capa-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-text-light);
    padding: 20px;
    text-align: left;
}

.capa-overlay h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: var(--color-accent);
}

.capa-overlay p {
    font-size: 0.9em;
    color: #b0b0b0;
    margin-bottom: 10px;
}

/* Botão do Card */
.btn-capa {
    background-color: var(--color-primary-blue);
    color: var(--color-text-light);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.btn-capa:hover {
    background-color: var(--color-primary-orange);
}
 

/* Setas de Navegação (Neon) */
.seta {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-primary-blue);
    border: 1px solid var(--color-primary-blue);
    padding: 10px 15px;
    cursor: pointer;
    z-index: 100;
    font-size: 1.5em;
    line-height: 1;
    border-radius: 50%;
    /* Efeito de brilho da seta */
    text-shadow: 0 0 5px var(--color-primary-blue);
    transition: all 0.3s;
}

.seta.prev {
    left: 20px;
}

.seta.next {
    right: 20px;
}

.seta:hover {
    color: var(--color-primary-orange);
    border-color: var(--color-primary-orange);
    text-shadow: 0 0 5px var(--color-primary-orange);
}

/* ======================================
   ESTILOS DOS MODAIS 
   ====================================== */
.modal-equipe {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo escuro para pop-up */
}

.modal-conteudo {
    background-color: #1e1e1e;
    margin: 10% auto; 
    padding: 30px;
    /* Borda Neon do Modal */
    border: 1px solid var(--color-primary-orange); 
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    color: var(--color-text-light);
}

.modal-conteudo h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
}

.modal-conteudo strong {
    color: var(--color-primary-blue);
}

.fechar {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.fechar:hover,
.fechar:focus {
    color: var(--color-primary-orange);
    text-decoration: none;
    cursor: pointer;
}

/* Media Query para responsividade da seção Equipe */
@media (max-width: 768px) {
    .carrossel-track {
        /* Permite scroll horizontal manual no mobile se a largura exceder */
        overflow-x: scroll;
        padding-left: 20px;
    }
    .seta {
        /* Esconde as setas de navegação no mobile, confiando no scroll por toque */
        display: none !important;
    }
}
 
/* ======================================
   ESTILOS GERAIS DO MODAL KI.CONECTA
   ====================================== */
.ki-modal {
    position: fixed;
    z-index: 3000; /* Alto z-index para garantir que fique acima de tudo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Fundo escuro semitransparente */
    background-color: rgba(0, 0, 0, 0.9); 
    padding-top: 50px;
}

.ki-modal-content {
    background-color: var(--color-bg-dark); /* Fundo do modal escuro */
    margin: 5% auto; /* Centraliza verticalmente */
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    /* Borda sutil neon */
    border: 2px solid var(--color-primary-blue);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5); 
    overflow: hidden; /* Importante para o header com imagem */
}

/* Botão de Fechar */
.ki-modal-close-btn {
    color: var(--color-white);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3010;
    text-shadow: 0 0 5px var(--color-primary-orange);
}

.ki-modal-close-btn:hover {
    color: var(--color-primary-orange);
}

/* ======================================
   ESTILOS ESPECÍFICOS DO CONTEÚDO
   ====================================== */

.modal-header-promo {
    position: relative;
    text-align: center;
    background-color: #2a2a2a;
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
    object-fit: cover;
}

.promo-tag {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary-orange);
    color: var(--color-dark);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 700;
}

.modal-body-content {
    padding: 30px;
    text-align: center;
}

.modal-title-ki {
    color: var(--color-highlight-blue);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.modal-text {
    color: var(--color-text-dim);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.btn-imersao-cta {
    background-color: var(--color-primary-orange);
    color: var(--color-dark);
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    /* Botão de ação com destaque */
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.7); 
}

.btn-imersao-cta:hover {
    background-color: #ffaa33;
    box-shadow: 0 0 15px var(--color-primary-orange);
}

.modal-footer-text {
    margin-top: 20px;
    font-size: 0.9em;
    color: var(--color-text-dim);
}

/* Media Query para telas menores */
@media (max-width: 600px) {
    .ki-modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-title-ki {
        font-size: 1.4em;
    }
}

/* ======================================
   SEÇÃO DE TRILHAS (PLANOS)
   ====================================== */

.platform-features-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Garante que os cards tenham a mesma altura */
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap; /* Ajusta para celular se a tela for pequena */
}

/* Estilo Base do Card */
.feature-card {
    background-color: #1a1a1a; /* Fundo escuro conforme seu site */
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px 30px;
    flex: 1;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

/* Card em Destaque (Trilha Ampliada) */
.feature-card.highlighted {
    border: 2px solid #ffaa00; /* Sua cor principal */
    transform: scale(1.03); /* Leve destaque de tamanho */
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ffaa00;
}

/* Títulos e Ícones */
.feature-card h3 {
    color: #fff;
    font-size: 1.6rem;
    margin: 15px 0;
}

.feature-card .icon {
    font-size: 2.5rem;
    color: #ffaa00;
}

/* Estilização do Preço */
.card-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 20px 0 10px 0;
}

.card-price span {
    display: block;
    font-size: 0.85rem;
    color: #888;
    font-weight: normal;
    margin-top: 5px;
}

/* Lista de Benefícios (Checklist) */
.plan-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left; /* Alinhamento à esquerda para facilitar leitura */
}

.plan-list li {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Rodapé do Card (O "Ideal para...") */
.card-footer {
     margin-top: auto; /* Empurra para o fim do card */
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffaa00;
    font-weight: 600;
    border-top: 1px solid #333;
    text-align: left;
}

/* Ajuste no botão geral da seção */
.large-btn {
    margin-top: 50px;
    display: inline-block;
}

/* Estilo dos Botões Internos do Card */
.btn-rastreio {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: transparent;
    color: #ffaa00;
    border: 2px solid #ffaa00;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

/* Efeito Hover no botão padrão */
.btn-rastreio:hover {
    background-color: rgba(255, 170, 0, 0.1);
    transform: translateY(-2px);
}

/* Botão do Card em Destaque (Preenchido) */
.btn-destaque {
    background-color: #ffaa00;
    color: #1a1a1a;
}

.btn-destaque:hover {
    background-color: #e69900;
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.3);
}

/* Ajuste no Feature Card para o botão ficar embaixo */
.feature-card {
    /* ... (seus estilos anteriores) ... */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Empurra o botão para o fim do card */
}

/* ======================================
   COR DOS LINKS DO SITE
   ====================================== */

.modal-conteudo a {
    color: var(--color-primary-orange) !important;
    text-decoration: none; 
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.modal-conteudo a:hover {
    color: var(--color-text-light) !important;
    border-bottom: 1px solid var(--color-primary-orange);
}



