/* --- RESET & VARS --- */
:root {
    --primary: #4147f5;        /* Azul Move Fit */
    --primary-dark: #2a2eb8;   /* Azul mais escuro para hover */
    --bg-dark: #0a0a0a;        /* Fundo principal */
    --bg-darker: #050505;      /* Fundo secundário */
    --bg-card: #111111;        /* Fundo de cards */
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --font: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font); }
html { scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--text-white); overflow-x: hidden; }

/* --- UTILITÁRIOS --- */
.text-primary { color: var(--primary) !important; }
.bg-darker { background-color: var(--bg-darker); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; text-transform: uppercase; font-style: italic; margin-bottom: 10px; font-weight: 800; }
.section-header p { color: var(--text-gray); font-size: 1.1rem; }
.w-full { width: 100%; }

/* --- EFEITO NEON DISCRETO --- */
.text-neon {
    /* Mantém a cor base */
    color: var(--primary);
    /*
       Cria 3 camadas de brilho:
       1. 0px 0px 8px: Um brilho 'apertado' perto da letra.
       2. 0px 0px 20px: Um brilho médio para expandir a luz.
       3. 0px 0px 40px: Um brilho distante e suave para criar a atmosfera.
       Usamos a própria cor primária para o brilho.
    */
    text-shadow:
        0 0 0px var(--primary),
        0 0 5   px var(--primary),
        0 0 0px var(--primary);
}

/* --- BOTÕES --- */
.btn-primary, .btn-outline, .btn-nav, .btn-plan {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 35px; border-radius: 6px; font-weight: 700; text-transform: uppercase;
    text-decoration: none; transition: 0.3s; font-size: 0.9rem; letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary); color: #fff; border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(65, 71, 245, 0.4);
}
.btn-primary:hover {
    background: transparent; color: var(--primary); box-shadow: 0 0 10px rgba(65, 71, 245, 0.2);
}

.btn-outline {
    background: transparent; color: #fff; border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--bg-dark); }

.btn-nav { padding: 10px 25px; font-size: 0.8rem; border-radius: 50px; }


/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 25px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transition: 0.4s;
}
.navbar.scrolled {
    padding: 15px 5%; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo-text { font-size: 1.8rem; font-weight: 900; font-style: italic; letter-spacing: -1px; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-gray); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.menu-toggle { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
/* Cor do botão "Matricule-se" na navbar */
.btn-nav { color: var(--text-white); }

/* --- HERO SECTION (Cabeçalho) --- */
.hero { 
    height: 100vh; 
    position: relative; 
    display: flex; align-items: center; 
    overflow: hidden; 
    /* Espaço extra embaixo para o conteúdo não bater na faixa */
    padding-bottom: 50px; 
}

/* Fundo do Hero - Correção do "Preto Sólido" */
.hero-bg { 
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0; 
    z-index: 0; 
}
.hero-bg img, .hero-bg video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Garante que preenche tudo */
    object-position: center; /* Centraliza a imagem */
}

/* Overlay para escurecer o fundo (imagem ou vídeo) */
.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Escurece o fundo para o texto se destacar */
    z-index: 1; /* Fica acima do vídeo/imagem, mas abaixo do conteúdo */
}

/* Conteúdo do Hero */
.hero-content { position: relative; z-index: 2; width: 100%; }

.badge {
    background:rgba(65, 71, 245, 0.15); color: var(--text-white); 
    border: 1px solid var(--primary);
    padding: 6px 14px; border-radius: 4px; display: inline-block; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 25px;
    backdrop-filter: blur(5px); /* Efeito vidro */
}

.hero h1 {
    /* Ajuste de tamanho para não quebrar muito */
    font-size: clamp(2.8rem, 5.5vw, 5rem); 
    line-height: 1.1; font-weight: 900;
    font-style: italic; margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5); /* Sombra para leitura */
}

.text-stroke { 
    -webkit-text-stroke: 1px #fff; 
    color: transparent; 
}

.hero p { 
    max-width: 550px; 
    color: #e0e0e0; /* Texto mais claro */
    font-size: 1.1rem; margin-bottom: 40px; 
    text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
}

.hero-btns { display: flex; gap: 20px; }

/* --- MARQUEE (Faixa Reta Sólida no Rodapé) --- */
.marquee-container {
    position: absolute;
    bottom: 0; /* Cola no chão do header */
    left: 0;
    width: 100%;
    height: 50px; /* Altura fixa e fina */
    background: var(--primary); /* Fundo AZUL SÓLIDO */
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    gap: 0; /* Gap zero, vamos usar padding nos spans */
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content span {
    font-weight: 800;
    font-style: italic;
    font-size: 1rem; /* Fonte pequena e discreta */
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    padding: 0 30px; /* Espaço entre as palavras */
    display: flex; align-items: center;
}

/* Bolinha separadora (opcional, se quiser usar no HTML trocando o "•") */
.marquee-content span::after {
    content: "•";
    margin-left: 30px;
    opacity: 0.5;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Ajuste se o texto for duplicado apenas uma vez */
}

/* --- MEDIA QUERY HERO MOBILE (COMPLETO) --- */
@media (max-width: 768px) {
    
    /* 1. Ajuste do Container Principal */
    .hero {
        align-items: flex-start !important; /* Destrava o conteúdo do centro vertical */
        justify-content: center;
        height: 100vh;
        overflow: hidden;
    }

    /* 2. Ocultação de Elementos (Badge e Parágrafo) */
    .badge, 
    .hero p {
        display: none !important;
    }

    /* 3. Posicionamento do Conteúdo (Títulos e Botões) */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 20px;
        /* Empurra o texto para a altura do peito/tronco da modelo */
        margin-top: 40vh !important; 
        z-index: 5;
    }

    /* 4. Ajuste da Imagem (Moça para a Direita/Esquerda) */
    .hero-bg img {
        /* 73% horizontal mantém a posição que você definiu como ideal */
        object-position: 73% center !important; 
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }
    /* Garante que o vídeo esteja centralizado no mobile */
    .hero-bg video { /* Ajusta a posição horizontal do vídeo no mobile */
        object-position: 73% center !important;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* 5. Estilização do Título */
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 30px;
        text-align: center;
    }

    /* 6. Botões (Layout e Efeito Imersivo) */
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 280px;
        padding: 16px;
        font-size: 0.95rem;
    }

    /* O NOVO BOTÃO IMERSIVO */
    .btn-primary {
        position: relative;
        overflow: hidden;
        background: var(--primary);
        border: none;
        box-shadow: 0 4px 15px rgba(65, 71, 245, 0.4);
        animation: pulse-blue 2s infinite; /* Efeito de atenção */
        z-index: 1;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: 0.6s;
        z-index: -1;
    }

    .btn-primary:hover::before {
        left: 100%;
    }
}

/* --- ANIMAÇÃO DO BOTÃO (Pode ficar fora ou dentro do media) --- */
@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0px rgba(65, 71, 245, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(65, 71, 245, 0); }
    100% { box-shadow: 0 0 0 0px rgba(65, 71, 245, 0); }
}


/* --- STATS --- */
.stats-section { padding: 60px 0; border-bottom: 1px solid #222; margin-top: 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h2 { font-size: 3rem; font-weight: 900; color: var(--text-white); }
.stat-item p { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }

/* --- DIFERENCIAIS --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
    background: var(--bg-card); padding: 40px 30px; border-radius: 12px;
    border: 1px solid #222; transition: 0.3s; position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.feature-card .icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 15px; text-transform: uppercase; font-style: italic; font-weight: 800; }
.feature-card p { color: var(--text-gray); line-height: 1.6; }

/* --- MODALIDADES (GALLERY) --- */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; height: 500px;
}
.gallery-item {
    position: relative; overflow: hidden; border-radius: 12px; height: 100%; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.item-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, var(--primary) 0%, transparent 80%);
    display: flex; align-items: flex-end; padding: 30px; opacity: 0.8; transition: 0.3s;
}
.gallery-item:hover .item-overlay { opacity: 1; }
.item-overlay h3 { font-size: 1.8rem; font-weight: 900; font-style: italic; text-transform: uppercase; }

/* --- PLANOS --- */
.pricing-wrapper { align-items: center; }
.price-card {
    background: var(--bg-card); border: 1px solid #222; padding: 40px 30px;
    border-radius: 12px; text-align: center; transition: 0.3s; position: relative;
}
.price-card:hover { border-color: #444; transform: scale(1.02); }

.price-card.featured {
    background: #0f0f13; border: 2px solid var(--primary); transform: scale(1.1); z-index: 2;
    box-shadow: 0 0 40px rgba(65, 71, 245, 0.2);
}
.price-card.featured:hover { transform: scale(1.12); }

.popular-tag {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff; padding: 5px 15px;
    font-size: 0.8rem; font-weight: 800; border-radius: 20px;
}

.card-header h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 15px; font-weight: 800; font-style: italic; }
.price { font-size: 3rem; font-weight: 900; color: #fff; }
.price span { font-size: 1rem; color: var(--text-gray); font-weight: 600; }
.sub-price { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 20px; }

.price-card ul { list-style: none; margin: 30px 0; text-align: left; }
.price-card ul li { margin-bottom: 15px; color: var(--text-gray); display: flex; align-items: center; gap: 10px; }
.price-card ul li i { color: var(--primary); }
.price-card ul li.disabled { color: #444; text-decoration: line-through; }
.price-card ul li.disabled i { color: #444; }

.btn-plan {
    width: 100%; background: transparent; border: 1px solid #444; color: #fff;
}
.btn-plan:hover { background: #fff; color: #000; border-color: #fff; }

/* --- FOOTER --- */
footer { background: #080808; padding: 80px 0 20px; border-top: 1px solid #222; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand p { color: var(--text-gray); margin: 20px 0; max-width: 300px; }
.socials a { color: #fff; font-size: 1.2rem; margin-right: 15px; transition: 0.3s; }
.socials a:hover { color: var(--primary); }
.footer-links h4, .footer-contact h4 { color: #fff; margin-bottom: 20px; text-transform: uppercase; }
.footer-links a { display: block; color: var(--text-gray); text-decoration: none; margin-bottom: 10px; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact p { color: var(--text-gray); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.copy { text-align: center; border-top: 1px solid #222; padding-top: 20px; color: #444; font-size: 0.9rem; }

/* --- MODAL --- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
    background: #111; border: 2px solid var(--primary); padding: 40px;
    border-radius: 12px; text-align: center; width: 90%; max-width: 400px; position: relative;
    transform: scale(0.8); transition: 0.3s;
}
.modal-overlay.active .modal-box { transform: scale(1); }
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; color: #666; }
.close-btn:hover { color: var(--primary); }
.whatsapp-link {
    display: block; background: #25D366; color: #fff; padding: 15px; border-radius: 8px;
    text-decoration: none; font-weight: 700; margin-top: 20px; transition: 0.3s;
}
.whatsapp-link:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured { transform: scale(1); margin: 20px 0; }
    .hero h1 { font-size: 4rem; }
}
@media (max-width: 768px) {
    .navbar { padding: 15px; }
    .nav-links, .btn-nav { display: none; }
    .menu-toggle { display: block; }
    
    .hero-content { text-align: center; padding-top: 50px; }
    .hero-btns { justify-content: center; flex-direction: column; }
    .hero h1 { font-size: 2.8rem; }
    .text-stroke { -webkit-text-stroke: 1px var(--primary); }

    
    .grid-4, .grid-3, .gallery-grid, .footer-content { grid-template-columns: 1fr; }
    .gallery-grid { height: auto; }
    .gallery-item { height: 250px; }

    /* Ajuste da faixa no mobile */
    .marquee-container { padding: 10px 0; }
    .marquee-content span { font-size: 0.9rem; }
}