/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    /* Cores Principais */
    --bg-main: #0A0E18;
    --bg-hero: #0B0F1A;
    --bg-oferta: #0B1020;
    --bg-garantia: #071922;
    --bg-alt: #101524;
    --bg-alt2: #0D121F;
    
    /* Textos */
    --text-white: #FFFFFF;
    --text-grey: #AAB0CC;
    --text-light: #EAEFFF;
    --text-muted: #8A90A8;
    
    /* Destaques */
    --highlight-yellow: #F5B400;
    --highlight-green: #3ED598;
    
    /* Fontes */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Efeitos */
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);
    --transition: 0.3s ease-in-out;
}

/* ==========================================================================
   RESET & GLOBAL
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-grey);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilitários Gerais */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }
.mt-6 { margin-top: 60px; }
.mb-3 { margin-bottom: 30px; }

.bold { font-weight: 700; }
.text-white { color: var(--text-white); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

.section-title {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-white);
}

a {
    text-decoration: none;
}

/* ==========================================================================
   BOTÕES & LINKS
   ========================================================================== */
@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 180, 0, 0.6);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 180, 0, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 180, 0, 0);
        transform: scale(1);
    }
}

.btn-primary {
    display: inline-block;
    background-color: var(--highlight-yellow);
    color: #000000;
    font-family: var(--font-body);
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(245, 180, 0, 0.35);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 16px;
    border: none;
    cursor: pointer;
    animation: pulse-btn 2.5s infinite;
}

.btn-primary:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(245, 180, 0, 0.6);
}

.btn-large {
    font-size: 18px;
    padding: 22px 40px;
}

.link-destaque {
    display: inline-block;
    color: var(--highlight-yellow);
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    line-height: 1.4;
}

.link-destaque:hover {
    color: var(--text-white);
    transform: scale(1.02);
}

/* ==========================================================================
   SEÇÃO 1: HERO
   ========================================================================== */
.hero {
    position: relative;
    background-color: var(--bg-hero);
    background-image: url('../images/hero-identidade.jpg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11,15,26,0.85), rgba(11,15,26,0.75), rgba(11,15,26,0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero .headline {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--highlight-yellow);
}

.hero .subheadline {
    font-size: 24px;
    color: var(--text-grey);
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 40px;
}

.hero .highlight-sub {
    color: var(--highlight-yellow);
    font-weight: 600;
}

.hero .apoio-text p {
    font-size: 18px;
    color: var(--text-white);
}

.hero .highlight-strong {
    color: var(--highlight-yellow);
    font-weight: 700;
    font-size: 22px;
}

/* ==========================================================================
   SEÇÃO 2: IDENTIFICAÇÃO
   ========================================================================== */
.identificacao {
    background-color: var(--bg-main);
    padding: 60px 0;
}

.identificacao .section-title {
    color: var(--highlight-yellow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.abertura-text p {
    font-size: 18px;
    color: var(--text-grey);
}

.transicao-text {
    margin-top: 40px;
    margin-bottom: 50px;
}

.transicao-text p {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.cards-grid {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 25px 20px;
    color: var(--text-light);
    font-size: 15px;
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--highlight-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(245, 180, 0, 0.15);
}

.fechamento-text h3 {
    color: var(--highlight-yellow);
    font-size: 28px;
    line-height: 1.4;
    margin-top: 40px;
}

/* ==========================================================================
   SEÇÃO 3: SOLUÇÃO
   ========================================================================== */
.solucao {
    background-color: var(--bg-alt);
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.layout-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solucao .section-title {
    margin-bottom: 25px;
    color: var(--highlight-yellow);
}

.solucao .main-text p {
    font-size: 17px;
    color: var(--text-grey);
    margin-bottom: 16px;
}

.solucao .destaque-branco {
    color: var(--text-white);
    font-weight: 700;
}

.microcopy {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 18px;
    font-weight: 500;
    opacity: 0.9;
}

.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.glow-effect {
    box-shadow: 0 0 30px rgba(245, 180, 0, 0.1);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-wrapper:hover {
    box-shadow: 0 0 40px rgba(245, 180, 0, 0.3);
}

/* ==========================================================================
   SEÇÃO 4: MÓDULOS E OFERTA INICIAL
   ========================================================================== */
.modulos {
    background-color: var(--bg-main);
    padding: 60px 0;
}

.modulos .section-title {
    color: var(--highlight-yellow);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 70px auto;
    text-align: left;
}

.intro-column p {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 15px;
    line-height: 1.6;
}

.intro-column-right {
    border-left: 1px solid rgba(255,255,255,0.05);
    padding-left: 40px;
}

.module-card {
    text-align: left;
    padding: 30px;
}

.module-tag {
    display: inline-block;
    background: rgba(245, 180, 0, 0.1);
    color: var(--highlight-yellow);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.module-card h4 {
    font-family: var(--font-body);
    font-size: 18px;
    margin-bottom: 10px;
}

.bloco-valor .texto-secundario {
    color: var(--text-grey);
}

.banner-valor {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.banner-right {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 40px;
}

.preco-amarelo {
    color: var(--highlight-yellow);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin: 5px 0;
}

.frase-final-amarela {
    color: var(--highlight-yellow);
    font-size: 26px;
}

/* ==========================================================================
   SEÇÃO 5: ANTES VS DEPOIS
   ========================================================================== */
.comparacao {
    background-color: var(--bg-alt2);
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.comparacao .section-title {
    color: var(--highlight-yellow);
}

.comparacao .subheadline {
    color: var(--text-grey);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
}

.comparacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.col-title {
    font-family: var(--font-body);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-grey);
}

.destaque-amarelo {
    color: var(--highlight-yellow);
}

.card-antes {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card-depois {
    color: var(--text-white);
    border-color: rgba(245, 180, 0, 0.2);
    margin-bottom: 15px;
}

.card-depois:hover {
    border-color: var(--highlight-yellow);
}

.frase-impacto {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 500;
}

/* ==========================================================================
   SEÇÃO 6: PROVA SOCIAL
   ========================================================================== */
.prova-social {
    background-color: var(--bg-main);
    padding: 60px 0;
}

.prova-social .subheadline {
    color: var(--text-grey);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
}

.prova-social .section-title {
    color: var(--highlight-yellow);
}

.testimonial-card {
    padding: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333; /* Placeholder */
    border: 2px solid var(--highlight-yellow);
    box-shadow: 0 0 10px rgba(245, 180, 0, 0.2);
    object-fit: cover;
}

.testimonial-header h5 {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-header span {
    font-size: 13px;
    color: var(--text-grey);
}

.stars {
    color: var(--highlight-yellow);
    margin-bottom: 15px;
    font-size: 18px;
}

.depoimento {
    color: var(--text-light);
    font-size: 15px;
    font-style: italic;
}

/* ==========================================================================
   SEÇÃO 7: OFERTA FINAL & TIMER
   ========================================================================== */
.oferta {
    background: linear-gradient(to bottom, var(--bg-alt), var(--bg-oferta));
    padding: 70px 0;
    border-top: 1px solid rgba(245, 180, 0, 0.05);
}

.oferta .section-title {
    color: var(--highlight-yellow);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subheadline-oferta {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 60px;
    font-family: var(--font-body);
}

.card-oferta {
    background: rgba(11, 16, 32, 0.7);
    border: 1px solid rgba(245, 180, 0, 0.4);
    border-radius: 20px;
    padding: 40px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(245, 180, 0, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.card-oferta:hover {
    box-shadow: 0 0 60px rgba(245, 180, 0, 0.15);
}

.card-oferta h3 {
    font-family: var(--font-body);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.oferta-right {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.features-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.features-list li {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 16px;
}

.preco-bloco {
    background: none;
    padding: 0;
}

.preco-de { text-decoration: line-through; color: var(--text-muted); }
.preco-por { font-weight: 700; color: var(--text-white); font-size: 14px; margin-top: 5px; }
.preco-destaque { color: var(--highlight-yellow); font-size: 48px; font-weight: 700; line-height: 1; margin: 10px 0; }
.pagamento-info { color: var(--text-grey); font-size: 13px; }

.escassez {
    border: 1px dashed rgba(245, 180, 0, 0.5);
    border-radius: 8px;
    padding: 20px;
    color: var(--text-white);
}

.oferta-encerrando { font-weight: 700; margin-top: 10px; }

.timer {
    font-size: 32px;
    font-weight: 700;
    color: var(--highlight-yellow);
    text-shadow: 0 0 15px rgba(245, 180, 0, 0.5);
    font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   SEÇÃO 8: GARANTIA
   ========================================================================== */
.garantia {
    background-color: var(--bg-main);
    padding: 60px 0;
}

.garantia-card {
    background-color: var(--bg-garantia);
    border: 1px solid rgba(62, 213, 152, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(62, 213, 152, 0.05);
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.selo-garantia img {
    max-width: 150px;
}

.garantia-text {
    flex: 1;
}

.headline-verde {
    color: var(--highlight-green);
    font-size: 32px;
    line-height: 1.2;
}

.subheadline-branca {
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
}

.texto-explicativo p { color: var(--text-grey); font-size: 16px; }

.reforco-seguranca { color: var(--text-white); font-weight: 500; font-size: 18px; }

.frase-final-garantia {
    color: var(--text-white);
    font-weight: 700;
    font-size: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* ==========================================================================
   SEÇÃO 9: FAQ
   ========================================================================== */
.faq {
    background-color: var(--bg-alt);
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.faq .section-title {
    margin-bottom: 60px;
}



.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255,255,255,0.01);
}

.faq-question h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.faq-question .icon {
    font-size: 24px;
    color: var(--text-grey);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    color: var(--text-grey);
    padding-bottom: 20px;
}

.faq-item.active { border-color: rgba(255,255,255,0.15); }
.faq-item.active .icon { transform: rotate(45deg); color: var(--text-white); }
.faq-item.active .faq-answer { max-height: 200px; padding-top: 10px; }

.fechamento-invisivel { font-family: var(--font-body); font-size: 20px; font-weight: 400; color: var(--highlight-yellow); }

/* ==========================================================================
   SEÇÃO 10: CTA FINAL
   ========================================================================== */
.cta-final {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(245, 180, 0, 0.05) 0%, var(--bg-main) 70%);
}

.cta-final .section-title {
    color: var(--highlight-yellow);
    font-size: 28px;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}



.cta-final .subtexto { color: var(--text-grey); font-size: 18px; }

.preco-ancorado { color: var(--text-grey); font-size: 16px; }
.preco-ancorado strong { color: var(--text-white); }

.riscado-vermelho {
    text-decoration: line-through;
    text-decoration-color: #E53E3E;
    text-decoration-thickness: 2px;
    opacity: 0.8;
}

.escassez-leve { color: var(--text-muted); font-size: 14px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #05080E;
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-grey);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--highlight-yellow);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 13px;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    .hero .headline { font-size: 32px; }
    .hero .subheadline { font-size: 20px; }
    .hero { 
        padding: 80px 20px 40px; 
        min-height: auto; 
    }
    
    .identificacao { padding-top: 40px; }
    
    .section-title { font-size: 28px !important; line-height: 1.3; }
    
    .grid-3, .grid-2, .comparacao-grid, .layout-2-col {
        grid-template-columns: 1fr;
    }
    
    .layout-2-col { text-align: center; }
    .solucao .section-title { text-align: center; }
    .image-content { margin-top: 15px; }
    
    .intro-grid { grid-template-columns: 1fr; text-align: center; }
    .intro-column-right { border-left: none; padding-left: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 10px; }
    
    .banner-valor { grid-template-columns: 1fr; text-align: center; }
    .banner-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 30px; margin-top: 0; }
    
    .card-oferta { 
        grid-template-columns: 1fr; 
        text-align: center; 
        padding: 30px 20px; 
    }
    
    .garantia-card { 
        flex-direction: column; 
        text-align: center; 
        padding: 40px 20px; 
    }
    
    .headline-verde { font-size: 28px; }
    
    .btn-primary { width: 100%; padding: 18px 20px; }
}
