/* RESET & VARIABLES */
:root {
    --primary: #1B3F24;          /* verde floresta profundo */
    --primary-light: #4A8B3F;    /* verde natureza */
    --accent: #4A8B3F;           /* CTA: verde vibrante */
    --accent-hover: #2E6020;
    --accent-gold: #C8A96E;      /* dourado aquarela — destaque */
    --bg-color: #FFFFFF;
    --surface: #F2F8F0;          /* verde pastel suave */
    --surface-2: #EBF4E8;        /* verde pastel mais vivo */
    --text-main: #1B3F24;
    --text-muted: #5A7A60;
    --border: #C8DFC4;

    --font-heading: 'Lora', serif;
    --font-body: 'Outfit', sans-serif;

    --radius: 14px;
    --shadow: 0 10px 30px rgba(123,63,110,0.08);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    text-wrap: balance;
}

p, li { text-wrap: pretty; }
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3, h4 { font-weight: 700; }
a { text-decoration: none; }

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.section-title.left-align { text-align: left; }

/* BUTTONS */
.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 20px 44px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(200,108,158,0.4);
    transition: var(--transition);
    border: 2px solid var(--accent);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.cta-light {
    background-color: white;
    color: var(--primary);
    border-color: white;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.14);
}

.cta-light:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Botão da hero — gradiente igual às tarjas de presentes */
.hero .cta-button {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(27,51,32,0.35);
}

.hero .cta-button:hover {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.center-cta { text-align: center; padding-top: 30px; }

/* ===========================
   HERO SECTION — 1ª dobra
   =========================== */
.hero {
    padding: 70px 0 60px;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,108,158,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content { width: 100%; }

.hero h1 {
    font-size: 2.9rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.18;
    color: var(--primary);
}

.hero h1 span {
    color: var(--primary);
    font-style: italic;
    background: rgba(168, 210, 100, 0.4);
    padding: 2px 10px 5px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Feature cards */
.hero-feature-cards {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto 28px;
    max-width: 680px;
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-card {
    flex: 1;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.hero-card:last-child { border-right: none; }

.hero-card-icon {
    width: 38px;
    height: 38px;
    background: rgba(200,108,158,0.12);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-card strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

/* Hero transformation image — mantida, tamanho reduzido para caber na tela */
.hero-transformation {
    margin: 0 auto 28px;
    max-width: 480px;   /* reduzido do original */
    width: 100%;
}

.transformation-img {
    width: 100%;
    border-radius: 14px;
    display: block;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(27,63,36,0.1);
}

/* ===========================
   TESTIMONIALS — 2ª dobra
   =========================== */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius);
}

.testimonial-image-card { padding: 0; overflow: hidden; }

.testimonial-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    border: 1px solid var(--border);
}

/* ===========================
   VALUE PROMISE — 3ª dobra
   =========================== */
.value-promise {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2E6020 100%);
    color: white;
}

.promise-header {
    text-align: center;
    margin-bottom: 40px;
}

.promise-header h2 {
    color: white;
    font-size: 2.6rem;
    font-weight: 800;
}

/* Destaque "VOCÊ RECEBERÁ UM MATERIAL ÚNCO" — com cor viva */
.promise-unique {
    display: inline-block;
    margin-top: 14px;
    background: var(--accent-gold);
    color: #3B2800;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.88rem;
    padding: 7px 20px;
    border-radius: 8px;
    text-transform: uppercase;
}

.objection-breaker {
    text-align: center;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: var(--radius);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.15);
}

.objection-breaker p { color: rgba(255,255,255,0.9); }

/* ===========================
   HOW IT WORKS — 4ª dobra
   =========================== */
.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    background-color: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 700;
}

.steps-image img {
    box-shadow: 0 15px 40px rgba(123,63,110,0.12);
}

/* ===========================
   TRANSFORMATION — 5ª dobra
   =========================== */
.transformation {
    padding: 80px 0;
    background-color: var(--surface);
}

.transform-container {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.target-audience-block { margin-bottom: 40px; }

.pre-title-emphasized {
    color: #C0653B;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.05rem;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(192,101,59,0.1);
    padding: 8px 16px;
    border-radius: 50px;
}

.target-audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.target-audience-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    color: var(--text-main);
    background: white;
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(27,63,36,0.05);
    border-left: 4px solid var(--accent);
    line-height: 1.4;
}

.target-audience-list li .icon {
    font-size: 1.4rem;
    margin-right: 14px;
    flex-shrink: 0;
}

.transform-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

/* ===========================
   THE PRODUCT — 6ª + 7ª dobra
   =========================== */
.the-product {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2A5C20 100%);
}

.the-product .section-title { color: white; }

/* Destaque no subtitle — image3 */
.product-subtitle { margin-bottom: 36px; text-align: center; }

.product-subtitle-highlight {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    background: rgba(212,170,112,0.12);
    border: 1px solid rgba(212,170,112,0.3);
    padding: 8px 20px;
    border-radius: 999px;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Destaque com sombra no card do produto — sem animação (image2) */
.product-card {
    background: white;
    border-radius: var(--radius);
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    /* sombra de destaque forte — sem movimento */
    box-shadow:
        0 0 0 4px rgba(200,168,110,0.25),
        0 24px 64px rgba(0,0,0,0.35),
        0 0 40px rgba(74,139,63,0.2);
    border: 2.5px solid var(--accent-gold);
}

.product-mockup-placeholder {
    width: 100%;
    background: #e5e0d8;
    aspect-ratio: 16/9;
}

.product-mockup-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-card-body { padding: 30px; }

.product-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.product-card h3 span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.product-card-badge {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    text-align: center;
}

.product-bullets { list-style: none; padding: 0; }

.product-bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.product-bullets .check {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1.4;
}

/* ===========================
   BONUSES — 8ª dobra
   =========================== */
.bonuses {
    padding: 80px 0;
    background-color: #F0F7ED;  /* pastel verde suave */
}

.subtitle.center {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.15rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Cards de presente — mais destaque, como produto principal */
.bonus-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 28px rgba(27,63,36,0.10), 0 0 0 2px rgba(74,139,63,0.12);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(27,63,36,0.18), 0 0 0 2px var(--accent);
}

/* Tarja "PRESENTE N" — faixa colorida no topo do conteúdo */
.bonus-tarja {
    display: block;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin: -25px -25px 8px -25px;
    border-radius: 0;
}

.bonus-price-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.bonus-price-tag s { opacity: 1; color: #c0392b; }

.bonus-mockup {
    width: 100%;
    height: 220px;
    padding: 24px 20px 10px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SEM animação nos mockups dos bônus */
.bonus-mockup img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(27,63,36,0.15));
}

.bonus-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bonus-card h4 {
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.bonus-bullets { list-style: none; padding: 0; margin: 0; }

.bonus-bullets li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.bonus-bullets .check {
    color: var(--accent);
    font-weight: 800;
    flex-shrink: 0;
}

/* Mockup Spotify — PRESENTE 6 */
.bonus-mockup-dark {
    background: #111;
    border-radius: 0;
    padding: 16px;
}

/* Imagem ocupa 100% do card — sem padding, sem bordas */
.bonus-mockup-full {
    padding: 0;
    height: auto;
}

.bonus-mockup-full img {
    width: 100%;
    display: block;
    border-radius: var(--radius) var(--radius) 0 0;
}

.spotify-scene {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100%;
}

/* Notebook */
.sp-notebook {
    display: flex;
    flex-direction: column;
    flex: 1.4;
}

.sp-screen {
    background: #1A1A1A;
    border: 2px solid #333;
    border-radius: 6px 6px 0 0;
    padding: 10px 12px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-keyboard {
    height: 10px;
    background: #222;
    border-radius: 0 0 6px 6px;
    border: 2px solid #333;
    border-top: none;
}

/* Phone */
.sp-phone {
    flex: 0.7;
}

.sp-phone-screen {
    background: #1A1A1A;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 8px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.sp-header {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sp-header span {
    color: #1DB954;
    font-size: 0.65rem;
    font-weight: 800;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.sp-track {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
}

.sp-album-art {
    font-size: 1.4rem;
}

.sp-bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 16px;
}

.sp-bars span {
    width: 3px;
    background: #1DB954;
    border-radius: 2px;
    animation: bar-dance 1.1s ease-in-out infinite alternate;
}

.sp-bars span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.sp-bars span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.sp-bars span:nth-child(3) { height: 8px;  animation-delay: 0.2s; }
.sp-bars span:nth-child(4) { height: 14px; animation-delay: 0.15s; }
.sp-bars span:nth-child(5) { height: 5px;  animation-delay: 0.3s; }

@keyframes bar-dance {
    from { transform: scaleY(0.3); }
    to   { transform: scaleY(1); }
}

/* ===========================
   GUARANTEE — antes do FAQ
   =========================== */
.guarantee {
    padding: 60px 0;
    background-color: var(--surface);
}

.guarantee-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 2px dashed var(--accent);
    box-shadow: 0 8px 30px rgba(27,63,36,0.08);
    max-width: 820px;
    margin: 0 auto;
}

.guarantee-seal { flex-shrink: 0; text-align: center; }

.real-seal {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 6px 16px rgba(180,140,0,0.4));
}

.guarantee-text h2 {
    margin-bottom: 14px;
    color: var(--primary);
}

/* ===========================
   OFFER — pricing section
   =========================== */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2A5C20 100%);
    text-align: center;
}

.offer-box {
    background: white;
    max-width: 640px;
    margin: 0 auto;
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-top: 6px solid var(--accent-gold);
}

.offer-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.offer-subtitle {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Lista de itens incluídos */
.offer-includes {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 26px;
    text-align: left;
}

.offer-includes-title {
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.offer-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-includes-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 500;
}

.check-offer { flex-shrink: 0; font-size: 1rem; }

.check-main { color: var(--accent); font-weight: 800; }

.offer-includes-list li:first-child {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.offer-includes-list li em {
    font-weight: 400;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
}

.price { margin-bottom: 28px; }

.old-price {
    display: block;
    color: #c0392b;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.new-price {
    display: block;
    font-size: 1.3rem;
    color: var(--text-main);
}

.new-price strong {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.installments {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.cta-button.pulse {
    width: 100%;
    font-size: 1.25rem;
    padding: 22px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,108,158,0.6); }
    70%  { transform: scale(1.02); box-shadow: 0 0 0 18px rgba(200,108,158,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,108,158,0); }
}

.security-text {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ===========================
   FAQ
   =========================== */
.faq {
    padding: 80px 0;
    background-color: white;
}

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

details {
    background: var(--surface);
    margin-bottom: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

summary {
    padding: 18px 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    cursor: pointer;
    color: var(--primary);
    position: relative;
    list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--accent);
}

details[open] summary::after { content: '-'; }

details p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer .legal-text {
    font-size: 0.78rem;
    opacity: 0.65;
    margin-top: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .how-it-works, .transformation { padding: 50px 0; }
    .offer-box { padding: 30px 20px; }

    .steps-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero { padding: 45px 0 50px; }

    .hero h1 {
        font-size: 2.3rem;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-feature-cards { max-width: 100%; }

    .hero-card { padding: 12px 8px; gap: 8px; }

    .hero-card-icon { width: 34px; height: 34px; font-size: 0.9rem; }

    .hero-card strong { font-size: 0.73rem; }

    .hero-before-after { flex-direction: column; }

    .before-after-arrow { transform: rotate(90deg); }

    .before-after-card { width: 100%; }

    .hero .cta-button {
        padding: 15px 28px;
        font-size: 1rem;
        display: block;
    }

    .section-title { font-size: 2rem; }
    .section-title.left-align { text-align: center; }

    .bonus-mockup:not(.bonus-mockup-full) { height: 280px; }

    .step-item { flex-direction: column; align-items: center; text-align: center; }
    .step-number { margin-right: 0; margin-bottom: 14px; }

    .testimonials-grid,
    .bonus-grid { grid-template-columns: 1fr; }

    .guarantee-container { flex-direction: column; text-align: center; }

    .transform-title { font-size: 1.9rem; }

    .promise-header h2 { font-size: 2.1rem; }
    
    /* hero-transformation menor ainda no mobile */
    .hero-transformation { max-width: 340px; }
}
