/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f4f6f8;
    color: #5a5d63;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 1. BARRA DE NAVEGAÇÃO (Topo Absoluto) --- */
.navbar {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* Altura fixa */
    background-color: #ffffff; 
    z-index: 1000; 
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    display: flex;
    align-items: center;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    position: relative; 
    width: 150px;       
    height: 50px;       
    display: flex;
    align-items: center;
}

.logo img {
    height: 260px; 
    width: auto; 
    position: absolute; /* Vaza da barra */
    top: px;         
    left: 0;
    z-index: 1001;
    display: block;
}

/* Links do Menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; 
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #19202e; 
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #bf983a; 
}

/* Botão do Menu */
.nav-btn {
    background-color: #bf983a;
    padding: 10px 25px;
    border-radius: 4px;
    color: #ffffff !important; 
    transition: transform 0.2s ease, background 0.3s;
}

.nav-btn:hover {
    background-color: #d1a845;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(191, 152, 58, 0.3);
}

/* --- 2. BARRA DE TIMER (Abaixo da Navbar) --- */
.top-bar {
    position: fixed;
    top: 90px; /* Começa onde a Navbar termina */
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #ff3333; /* Vermelho vivo */
    color: #f4f6f8;
    z-index: 999;
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.top-bar p {
    margin: 0;
    color: #ffffff; /* Texto do aviso em branco */
}

/* Configuração dos Números do Timer */
.mini-countdown {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 1px;
}

/* AQUI ESTÁ A COR VERMELHA NOS NÚMEROS */
.mini-countdown span {
    color: #19202e; /* Fundo Azul Escuro */
    font-size: 1.8rem;
    vertical-align: middle;
}

/* --- HERO SECTION --- */
.hero {
    background-color: #19202e;
    color: #f4f6f8;
    text-align: center;
    
    /* Padding Top = 90px (Navbar) + 40px (Timer) + 50px (Respiro) = 180px 
       Isso garante que o título não fique escondido.
    */
    padding: 210px 0 80px 0;
}

.hero-content {
    margin-bottom: 40px;
}

.tagline {
    color: #bf983a;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.highlight {
    color: #bf983a;
    font-style: italic;
}

.hero .subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #7f8288;
}

/* Placeholder do Vídeo */
.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9; 
    margin: 0 auto;
    background: #000;
    border: 4px solid #bf983a; 
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden; 
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* BOTÃO CTA */
.btn-cta {
    display: inline-block;
    background-color: #bf983a;
    color: #ffffff;
    padding: 15px 40px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 152, 58, 0.3);
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: #d1a845;
    box-shadow: 0 4px 20px rgba(191, 152, 58, 0.5);
}

/* -- SEÇÃO AUTOR -- */
.autor {
    padding: 80px 0;
    background: #ffffff;
    color: #19202e;
}

.autor .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.autor-text h2 {
    color: #19202e;
    margin-bottom: 20px;
}

.autor-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 10px 10px 0px #19202e;
}

/* -- EQUIPE -- */
.equipe {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.equipe h2 {
    color: #19202e;
    margin-bottom: 10px;
}

.intro-equipe {
    color: #7f8288;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}

.slider-wrapper {
    position: relative;
    max-width: 1000px; /* Limita a largura para as setas não ficarem muito longe */
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.arrow-btn {
    background-color: #19202e; 
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    
    /* Centraliza o ícone */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Garante que o botão não encolha */
    flex-shrink: 0; 
}

.arrow-btn:hover {
    background-color: #bf983a;
    transform: scale(1.1);
}

.prof-card {
    flex: 0 0 auto;
    width: 280px;
    background: #f4f6f8;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.prof-card:hover {
    transform: translateY(-5px);
    border-color: #bf983a;
}

.prof-img img {
    width: 100%; 
    height: 300px;
    border-radius: 10px; 
    border: none; 
    object-fit: cover; 
    object-position: top center; 
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.prof-card a img {
    filter: invert(1);
    width: 24px;
    height: auto;
    margin-top: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.prof-card a img:hover {
    transform: scale(1.2);
}

.prof-card h3 {
    color: #19202e;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.prof-card p {
    color: #7f8288;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* -- MÉTODO (CARDS) -- */
.metodo {
    padding: 80px 0;
    background-color: #19202e;
    color: #f4f6f8;
    text-align: center;
}

.metodo h2 {
    margin-bottom: 50px;
    font-size: 2rem;
    color: #ffffff;
}

.cards-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    border: 1px solid #7f8288;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #bf983a;
}

.card h3 {
    color: #bf983a;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-bottom: 2px solid #7f8288;
    display: inline-block;
    padding-bottom: 5px;
}

/* -- OFERTA FORMATADA -- */
.oferta {
    padding: 80px 0;
    text-align: center;
    background: #f4f6f8;
}

.box-preco {
    background: #ffffff;
    padding: 50px 30px;
    max-width: 500px;
    margin: 30px auto;
    
    border: 2px solid #19202e;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
}

.de-preco { 
    color: #ff3333; /* Vermelho vivo */
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.preco-destaque {
    font-size: 3.5rem;
    font-weight: 900;
    color: #67b434; 
    line-height: 1;
    letter-spacing: -1px;
}

.preco-destaque .small-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a5d63;
    display: block; 
    margin-bottom: 5px;
}

.acesso-badge {
    background-color: rgba(191, 152, 58, 0.15);
    color: #bf983a; 
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
}

.selos-container {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    margin-top: 15px;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.selo-item {
    display: flex;
    flex-direction: column; /* Ícone em cima, texto embaixo */
    align-items: center;
    text-align: center;
    max-width: 100px;
}

.selo-item img {
    width: 35px; /* Tamanho controlado do ícone */
    height: 35px;
    object-fit: contain;
    margin-bottom: 8px;
    
}

.selo-item span {
    font-size: 0.75rem; /* Texto pequeno e discreto */
    color: #7f8288;
    font-weight: 600;
    line-height: 1.2;
}

.oferta .btn-cta {
    background-color: #19202e;
    color: #ffffff;
    width: 100%;       
    padding: 20px;     
    font-size: 1.2rem;
    border-radius: 8px;
    animation: pulsar 2s infinite;
}

.oferta .btn-cta:hover {
    animation: none;
    background-color: #bf983a;
    transform: scale(1.02);
}

/* --- DEPOIMENTOS (PRINTS) --- */
.depoimentos {
    padding: 80px 0;
    background-color: #f4f6f8; 
    text-align: center;
}

.depoimentos h2 {
    color: #19202e;
    margin-bottom: 10px;
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    scroll-behavior: smooth;
    scrollbar-width: none; 
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

/* O cartão do Print */
.review-card {
    flex: 0 0 auto;
    width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: #fff;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px; 
    object-fit: cover;
    object-position: top;
}

/* -- FAQ -- */
.faq {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-left: 5px solid #bf983a; /* Detalhe dourado na esquerda */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden; /* Garante que nada vaze */
}

/* O Título (Pergunta) que será clicado */
.faq-question {
    color: #19202e;
    font-size: 1.1rem;
    padding: 20px;
    cursor: pointer; /* Mãozinha de clique */
    margin: 0;
    display: flex;
    justify-content: space-between; /* Empurra o ícone para a direita */
    align-items: center;
    background-color: #fff;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

/* O Ícone de "+" criado via CSS */
.faq-question::after {
    content: '+'; /* O símbolo */
    font-size: 1.5rem;
    color: #bf983a;
    font-weight: bold;
    transition: transform 0.3s ease; /* Animação de girar */
}

/* A Resposta (Escondida por padrão) */
.faq-answer {
    max-height: 0; /* Altura zero = invisível */
    overflow: hidden;
    transition: max-height 0.3s ease; /* Animação suave ao abrir */
    padding: 0 20px; /* Padding lateral apenas */
}

.faq-answer p {
    margin: 20px 0; /* Espaço do texto quando aparecer */
    color: #5a5d63;
    font-size: 0.95rem;
}

/* --- ESTADO ATIVO (QUANDO ABERTO) --- */

.faq-item.active .faq-question::after {
    transform: rotate(45deg); 
}

.faq-item.active .faq-question {
    color: #bf983a;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Um valor alto o suficiente para caber o texto */
}

/* -- FOOTER -- */
footer {
    background: #19202e;
    color: #7f8288;
    text-align: center;
    padding: 60px 20px;
    font-size: 0.9rem;
}

.social-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.insta-btn {
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    text-decoration: none; 
    color: #f4f6f8; 
    background-color: rgba(255,255,255,0.05);
    padding: 12px 28px; 
    border: 1px solid #7f8288;
    border-radius: 50px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
}

.insta-btn img {
    width: 22px; 
    height: 22px; 
    display: block; 
    transition: all 0.3s ease;
}

.insta-btn:hover {
    background-color: #bf983a;
    color: #ffffff;
    border-color: #bf983a;
    transform: translateY(-5px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); 
}

.insta-btn:hover img {
    filter: none;
}

/* Botão do Zap */
.btn-whatsapp {
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    z-index: 1000; 
    width: 60px; 
    height: 60px;
    border-radius: 50%; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    transition: all 0.3s ease;
}

.btn-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Animações */
@keyframes pulsar {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(191, 152, 58, 0.7);
    }
    
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(191, 152, 58, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(191, 152, 58, 0);
    }
}