:root {
    --primary: #59836B;
    --primary-dark: #426651;
    --bg-page: #FDFBF8;
    --bg-surface: #FFFFFF;
    --text-main: #2A332E;
    --text-muted: #6B7270;
    --urgency: #B85C5C;
    --border-color: #E2E8F0;
    --radius-md: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg-page); color: var(--text-main); line-height: 1.6; }

/* ESCASSEZ */
.urgency-bar { background: var(--urgency); color: white; text-align: center; padding: 12px 16px; position: sticky; top: 0; z-index: 100; font-size: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.urgency-content { display: flex; align-items: center; justify-content: center; gap: 8px; }
.pulse-dot { width: 10px; height: 10px; background: white; border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.container { max-width: 900px; margin: 0 auto; padding: 40px 20px; }

/* TEXTOS COMUNS */
h1, h2, h3 { line-height: 1.3; }
.hero-titulo { font-size: 40px; font-weight: 800; margin-bottom: 20px; color: var(--primary-dark); text-align: center;}
.hero-subtitulo { font-size: 18px; color: var(--text-muted); text-align: center; margin-bottom: 40px;}
.secao-titulo { font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 30px; }

/* HEADER E BANNER */
.header { display: flex; justify-content: center; margin-bottom: 30px; }
.logo-img { height: 60px; }
.banner-container { margin-bottom: 40px; border-radius: var(--radius-md); overflow: hidden; }
.banner-image { 
    width: 100%; 
    height: auto; 
    aspect-ratio: 800 / 306;
    display: block; 
}

/* SEÇÕES */
.secao-problema, .secao-conteudo, .secao-bonus, .secao-entrega, .checkout-container, .secao-autora { margin-bottom: 60px; padding: 40px 0; border-bottom: 1px solid var(--border-color); }

/* GRIDS */
.problema-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.problema-item { background: var(--bg-surface); padding: 24px; border-radius: var(--radius-md); text-align: center; border: 1px solid var(--border-color); }
.problema-icono { font-size: 40px; margin-bottom: 12px; display: block; }

.conteudo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.conteudo-card { background: var(--bg-surface); padding: 24px; border-radius: var(--radius-md); display: flex; gap: 16px; border: 1px solid var(--border-color); }
.conteudo-check { font-size: 24px; color: var(--primary); font-weight: bold; }

/* BÔNUS */
.secao-bonus { background: var(--primary); padding: 40px 20px; border-radius: var(--radius-md); text-align: center; }
.secao-bonus .secao-titulo { color: white; }
.bonus-badge { display: inline-block; background: rgba(255,255,255,0.2); color: white; padding: 8px 16px; border-radius: 100px; font-size: 14px; font-weight: bold; margin-bottom: 20px; }
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 30px; }
.bonus-card { background: white; padding: 32px 24px; border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: space-between; text-align: center; }
.bonus-icone { font-size: 48px; margin-bottom: 16px; }
.bonus-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--primary-dark); }
.bonus-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.bonus-preco-box { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.bonus-valor { text-decoration: line-through; color: #999; font-size: 14px; }
.bonus-gratis { background: var(--primary); color: white; padding: 8px; border-radius: 8px; font-weight: bold; font-size: 14px; }

/* ENTREGA */
.entrega-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.entrega-card { background: var(--bg-surface); padding: 32px; border-radius: var(--radius-md); text-align: center; border: 1px solid var(--border-color); }
.entrega-icone-svg { width: 48px; height: 48px; margin: 0 auto 16px; }

/* CHECKOUT */
/* scroll-margin-top garante que, ao clicar em qualquer CTA #checkout,
   o topo do formulário não fique escondido atrás da urgency-bar fixa */
.checkout-container { scroll-margin-top: 70px; }
.checkout-header { text-align: center; margin-bottom: 30px; }
.checkout-header p { font-size: 18px; color: var(--text-muted); }
.form-panel { max-width: 600px; margin: 0 auto; }
.section { background: var(--bg-surface); padding: 32px; border-radius: var(--radius-md); margin-bottom: 24px; border: 1px solid var(--border-color); }
.section-title { font-size: 18px; font-weight: bold; margin-bottom: 20px; color: var(--primary-dark); border-bottom: 2px solid #F1F5F9; padding-bottom: 10px; }

.form-group, .form-row { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input { width: 100%; padding: 16px; border: 1px solid var(--border-color); border-radius: 8px; font-family: inherit; font-size: 15px; background: #F8FAFC; }
input:focus { outline: none; border-color: var(--primary); background: white; }

.payment-methods { display: flex; gap: 12px; margin-bottom: 24px; }
.payment-method-btn { flex: 1; padding: 16px; background: #F8FAFC; border: 1px solid var(--border-color); border-radius: 8px; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); transition: 0.2s; }
.payment-method-btn.active { border-color: var(--primary); background: rgba(89,131,107,0.05); color: var(--primary); }

.btn-submit { width: 100%; padding: 20px; background: #22C55E; color: white; border: none; border-radius: 8px; font-size: 18px; font-weight: bold; cursor: pointer; transition: 0.2s; }
.btn-submit:hover:not(:disabled) { background: #16A34A; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.hidden { display: none !important; }

/* FEEDBACK MENSAGENS JS */
.alert { padding: 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; text-align: center; font-weight: 500; }
.alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #86EFAC; }

/* AUTORA */
.autora-container { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; text-align: center; }
.autora-foto { width: 120px; height: 120px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.depoimento-autora { background: white; padding: 32px; border-radius: var(--radius-md); font-style: italic; border: 1px solid var(--border-color); }
.depoimento-assinatura { font-weight: bold; color: var(--primary); margin-top: 16px; }
.instagram-link { display: inline-block; background: rgba(228, 64, 95, 0.1); color: #e4405f; padding: 8px 16px; border-radius: 100px; text-decoration: none; font-size: 14px; font-weight: bold; margin-top: 8px; }

/* MODAL PIX FIXADO NO CENTRO DA TELA */
.modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.modal-content { background: white; padding: 32px; border-radius: var(--radius-md); width: 90%; max-width: 400px; text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.pix-qr-box { background: #F8FAFC; padding: 24px; border-radius: 8px; border: 1px dashed var(--border-color); margin-bottom: 16px; }
.pix-qr-box img { width: 200px; height: 200px; display: block; margin: 0 auto 16px; }
.pix-code-text { background: white; padding: 12px; border: 1px solid var(--border-color); font-family: monospace; font-size: 12px; color: #333; word-break: break-all; border-radius: 4px; margin-bottom: 16px; user-select: all; }
.btn-copy { background: var(--primary); color: white; border: none; padding: 14px; width: 100%; border-radius: 8px; font-weight: bold; cursor: pointer; margin-bottom: 12px; }
.close-modal-btn { background: transparent; color: var(--text-muted); border: none; padding: 10px; cursor: pointer; font-size: 14px; text-decoration: underline; }

/* FOOTER */
.footer { text-align: center; font-size: 12px; color: #94A3B8; }
.selo-image { max-width: 100px; margin-bottom: 16px; opacity: 0.6; }

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .hero-titulo { font-size: 32px; }
}
/* SEÇÃO DEPOIMENTOS TIPO CHAT */
.secao-depoimentos-chat {
    padding: 60px 20px;
    background: #F0F4F2;
    border-bottom: 1px solid var(--border-color);
}

.chat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.chat-message {
    display: flex;
    gap: 12px;
    text-align: left;
    align-items: flex-end;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    background: #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chat-bubble {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 16px 16px 16px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    width: 100%;
}

.chat-bubble::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent #FFFFFF transparent;
}

.chat-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.chat-bubble p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
}

.chat-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.chat-time {
    font-size: 11px;
    color: #94A3B8;
}

.chat-check {
    font-size: 12px;
    color: #3B82F6;
    letter-spacing: -2px;
    font-weight: bold;
}
/* SEÇÃO DE CONTRASTE COGNITIVO */
.secao-contraste-cognitivo {
    padding: 80px 20px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.contraste-container {
    max-width: 900px;
    margin: 0 auto;
}

.secao-titulo-alerta {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #991B1B;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.secao-subtitulo-contraste {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    font-weight: 500;
    line-height: 1.6;
}

.contraste-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.contraste-card {
    padding: 40px 32px;
    border-radius: var(--radius-md);
    background: var(--bg-page);
    position: relative;
    display: flex;
    flex-direction: column;
}

.erro-concorrente {
    border: 1px solid #FCA5A5;
    background-color: #FEF2F2;
}

.contraste-badge-erro {
    position: absolute;
    top: -14px;
    left: 24px;
    background: #EF4444;
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.acerto-metodo {
    border: 2px solid var(--primary);
    background-color: #FFFFFF;
    box-shadow: var(--shadow-hover);
}

.contraste-badge-acerto {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contraste-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 24px;
}

.erro-concorrente h3 { color: #991B1B; }
.acerto-metodo h3 { color: var(--primary-dark); }

.contraste-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contraste-lista li {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    position: relative;
    padding-left: 12px;
}

.contraste-lista li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.acerto-metodo .contraste-lista li::before {
    color: var(--primary);
}

.contraste-lista li strong {
    color: var(--text-main);
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.contraste-frase-impacto {
    text-align: center;
    max-width: 750px;
    margin: 40px auto 0;
    padding: 24px;
    border-left: 3px solid var(--primary);
    background: rgba(89, 131, 107, 0.03);
}

.contraste-frase-impacto p {
    font-style: italic;
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .contraste-card { padding: 32px 20px; }
    .secao-titulo-alerta { font-size: 26px; }
}
/* SEÇÃO FAQ (PERGUNTAS FREQUENTES) */
.secao-faq {
    padding: 80px 20px;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.faq-pergunta {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s;
}

.faq-item.active .faq-pergunta {
    color: var(--primary-dark);
}

.faq-icone {
    font-size: 24px;
    color: var(--primary);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icone {
    transform: rotate(45deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #FAFCFB;
}

.faq-resposta p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}
/* =============================================
   BOTÕES GLOBAIS - PRIMEIRA COLHER
   ============================================= */

@keyframes botaoBrilhanteCompleto {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulsoPremium {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(89, 23, 44, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(238, 39, 104, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }
}

.btn-hero-premium {
    display: inline-block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #ffffff !important;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    border: 3px solid #ffffff;
    outline: 2px solid #EE2768;
    background: linear-gradient(270deg, #59172C, #EE2768, #2563EB, #EE2768, #59172C);
    background-size: 500% 500%;
    animation: botaoBrilhanteCompleto 5s ease infinite, pulsoPremium 2.5s ease-in-out infinite;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-hero-premium:hover {
    transform: scale(1.05) translateY(-2px);
    outline-color: #2563EB;
    box-shadow: 0 10px 25px rgba(238, 39, 104, 0.6);
}

.btn-submit {
    display: inline-block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff !important;
    background: #4CAF50;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
    transform: translateY(-2px);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}

.btn-submit:hover {
    background: #45a049;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.7);
    transform: translateY(-4px);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

@media (max-width: 480px) {
    .btn-hero-premium {
        font-size: 0.9em;
        padding: 14px 20px;
    }
    
    .btn-submit {
        font-size: 1em;
        padding: 16px 30px;
    }
}
/* Foto da autora no círculo */
.autora-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 3px solid #EE2768;
    box-shadow: 0 4px 15px rgba(238, 39, 104, 0.3);
    background: #fce4ec;
}

.autora-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.autora-foto img::before {
    content: "👩‍🍼";
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fce4ec;
}

@media (max-width: 480px) {
    .autora-foto {
        width: 100px;
        height: 100px;
    }
}