:root {
    /* IDENTIDADE V3 — Azul Enxoval + Pêssego refinado
     Menos degradê, mais contraste, fundos limpos e CTA mais chamativo. */
    --cream: #FFF9F2;
    --cream-2: #FFFDF8;
    --cream-3: #FFF4EA;
    --blue-50: #F3FAFF;
    --blue-100: #E5F3FD;
    --blue-200: #D7ECFA;
    --blue-300: #A9D2EC;
    --blue-700: #1C4B68;
    --blue-800: #153B56;
    --blue-900: #0E2B40;
    --blue-950: #092032;
    --peach-50: #FFF6F0;
    --peach-100: #FFE8DB;
    --peach-200: #FFD7C4;
    --peach-500: #F29B82;
    --coral: #D85D45;
    --coral-dark: #B94632;
    --gold: #D7B569;
    --gold-soft: #FFF5D5;
    --ink: #172D3C;
    --muted: rgba(23, 45, 60, .76);
    --light-text: #FFFFFF;
    --cta: #18C768;
    --cta-strong: #13B85D;
    --cta-hover: #0FA552;
    --white: #FFFFFF;
    --border: rgba(23, 45, 60, .13);
    --blue-border: rgba(28, 75, 104, .18);
    --peach-border: rgba(216, 93, 69, .18);
    --shadow: 0 18px 44px rgba(23, 45, 60, .11);
    --shadow-strong: 0 26px 70px rgba(9, 32, 50, .24);
    --shadow-cta: 0 16px 34px rgba(24, 199, 104, .36);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(100% - 28px, var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(100% - 28px, 860px);
}

.center {
    text-align: center;
}

.section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Fundos limpos: degradês apenas com tons da mesma família */

.section-dark {
    background: linear-gradient(180deg, var(--blue-800) 0%, var(--blue-950) 100%);
    color: var(--light-text);
}

.section-cream {
    background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}

.section-rose {
    background: linear-gradient(180deg, var(--peach-100) 0%, var(--peach-50) 100%);
}

.section-sage {
    background: linear-gradient(180deg, var(--blue-100) 0%, var(--blue-200) 100%);
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Nunito Sans", "Inter", Arial, sans-serif;
    letter-spacing: -0.024em;
}

h1 {
    color: var(--light-text);
    font-size: clamp(2.06rem, 10.8vw, 3.88rem);
    line-height: 1.03;
    font-weight: 1000;
    margin-bottom: 18px;
    text-align: center;
}

h2 {
    color: var(--ink);
    font-size: clamp(1.9rem, 8.5vw, 3.05rem);
    line-height: 1.08;
    font-weight: 1000;
    margin-bottom: 16px;
}

h3 {
    color: var(--ink);
    font-size: 1.22rem;
    line-height: 1.24;
    font-weight: 900;
    margin-bottom: 8px;
}

p {
    color: var(--muted);
    font-size: 1.06rem;
    margin-bottom: 16px;
}

strong {
    font-weight: 900;
}

.top-alert {
    background: linear-gradient(90deg, var(--coral-dark) 0%, var(--coral) 100%);
    color: var(--light-text);
    text-align: center;
    font-weight: 900;
    letter-spacing: .03em;
    font-size: .76rem;
    line-height: 1.25;
    padding: 10px 8px;
    box-shadow: 0 8px 18px rgba(23, 45, 60, .13);
}

.hero {
    padding: 44px 0 62px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy {
    width: 100%;
    max-width: 625px;
    text-align: center;
    margin-inline: auto;
}

.mini-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: var(--light-text);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, .10);
    text-transform: uppercase;
}

.hero-lead {
    color: var(--light-text);
    font-size: clamp(1.06rem, 3.8vw, 1.23rem);
    line-height: 1.44;
    font-weight: 900;
    max-width: 570px;
    margin: 0 auto 14px;
}

.hero-sub {
    color: rgba(255, 255, 255, .90);
    font-size: clamp(1.02rem, 3.7vw, 1.15rem);
    line-height: 1.58;
    max-width: 585px;
    margin: 0 auto 20px;
    text-align: center;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 26px auto 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 365px;
    text-align: left;
}

.hero-list li {
    position: relative;
    padding-left: 31px;
    color: var(--light-text);
    font-size: 1.03rem;
    line-height: 1.4;
    font-weight: 850;
}

.hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--gold);
    font-weight: 1000;
    font-size: 1.14em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    min-height: 60px;
    padding: 17px 25px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 950;
    font-size: .93rem;
    line-height: 1.18;
    letter-spacing: .012em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(180deg, #22D876 0%, var(--cta-strong) 100%);
    color: #fff;
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--cta) 0%, var(--cta-hover) 100%);
    box-shadow: 0 18px 38px rgba(15, 165, 82, .42);
}

.instant-note {
    margin-top: 16px;
    display: grid;
    justify-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .90);
    font-size: .98rem;
    line-height: 1.35;
}

.access-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
}

.access-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .10);
    color: var(--light-text);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: .86rem;
    font-weight: 900;
}

.image-shell {
    position: relative;
    overflow: hidden;
    display: block;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--blue-50) 100%);
    border: 1px solid var(--blue-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.image-shell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.image-shell.is-missing {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(216, 93, 69, .50);
    min-height: 220px;
}

.image-shell.is-missing img {
    display: none;
}

.image-shell.is-missing::after {
    content: "Subir: " attr(data-missing);
    display: inline-flex;
    max-width: calc(100% - 34px);
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--cream-2);
    color: var(--ink);
    font-weight: 900;
    font-size: .84rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.hero-mockup,
.receive-image,
.pain-image,
.step-image,
.gallery-image,
.bonus-image,
.price-image,
.testimonial-image,
.final-image,
.warranty-badge {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    min-height: 0;
}

.hero-mockup {
    max-width: 465px;
    margin: 23px auto 0;
    border-radius: 30px;
    box-shadow: 0 28px 74px rgba(0, 0, 0, .26);
}

.hero-mockup img {
    padding: 14px;
}

.mosaic-main {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 620px;
    height: auto;
    min-height: 0;
    margin: 0 auto;
    border-radius: 28px;
    border: 2px solid rgba(169, 210, 236, .50);
}

.section-heading {
    max-width: 840px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading p {
    max-width: 740px;
    margin-inline: auto;
}

.eyebrow {
    display: inline-block;
    color: var(--coral);
    font-size: .78rem;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eyebrow.light {
    color: var(--gold);
}

.section-dark h1,
.section-dark h2,
.section-dark .section-heading h2,
.final-section h2,
.urgency-section h2,
.light-heading h2 {
    color: var(--light-text) !important;
}

.section-dark p,
.section-dark .section-heading p,
.final-section p,
.urgency-section p,
.light-heading p,
.pain-text p {
    color: rgba(255, 255, 255, .90);
}

.cta-space {
    margin-top: 30px;
}

.section-stack {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
}

.center-stack {
    text-align: center;
}

.section-stack h2,
.section-stack p,
.section-stack .eyebrow {
    text-align: left;
}

.center-stack h2,
.center-stack p,
.center-stack .eyebrow {
    text-align: center;
}

.section-stack .image-shell {
    width: 100%;
    max-width: 100%;
    margin: 21px auto 21px;
}

.block-cta-center {
    text-align: center;
    margin-top: 21px;
}

.receive-cards,
.steps-grid,
.gallery-grid,
.bonus-grid,
.pricing-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

.receive-cards {
    gap: 14px;
    margin-top: 24px;
}

.receive-cards article {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--peach-border);
    border-left: 5px solid var(--coral);
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: var(--shadow);
}

.receive-cards h3,
.bonus-card h3,
.price-card h3,
.gallery-card h3 {
    font-size: 1.22rem;
    line-height: 1.26;
}

.receive-cards p {
    margin: 0;
    font-size: 1.03rem;
}

.step-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(169, 210, 236, .55);
    border-top: 5px solid var(--blue-300);
    border-radius: 22px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
}

.step-image {
    width: min(100%, 260px);
    max-width: 260px;
    margin: 0 auto 18px;
    border-radius: 22px;
    box-shadow: none;
}

.step-card span {
    color: var(--coral);
    font-weight: 1000;
    font-size: .78rem;
    letter-spacing: .09em;
}

.step-card h3 {
    margin: 7px 0 8px;
    font-size: 1.28rem;
}

.step-card p {
    font-size: 1.04rem;
    margin-bottom: 0;
}

.gallery-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(28, 75, 104, .16);
    border-bottom: 5px solid var(--blue-300);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 20px 52px rgba(23, 45, 60, .13);
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
}

.gallery-image {
    border-radius: 18px;
    margin-bottom: 14px;
    box-shadow: none;
}

.gallery-card p {
    font-size: 1.03rem;
    margin-bottom: 0;
}

/* BÔNUS — fundo profissional, sem mistura de degradês coloridos */

#bonus.section-dark {
    background: linear-gradient(180deg, #173F5F 0%, #0A253B 100%);
}

#bonus .section-heading h2 {
    color: #FFFFFF !important;
}

#bonus .section-heading p {
    color: rgba(255, 255, 255, .88);
}

.bonus-card {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-2) 100%);
    color: var(--ink);
    border-radius: 25px;
    padding: 21px;
    box-shadow: 0 28px 76px rgba(0, 0, 0, .20);
    border: 1px solid rgba(255, 255, 255, .62);
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
}

.bonus-card h3,
.bonus-card p,
.bonus-card strong {
    color: var(--ink) !important;
}

.bonus-card p {
    font-size: 1.04rem;
}

.bonus-card strong {
    color: var(--coral-dark) !important;
    font-weight: 1000;
}

.bonus-image {
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: none;
}

.premium-label,
.choice-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--light-text);
    font-weight: 1000;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 8px 13px;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(185, 70, 50, .20);
}

.bonus-card.premium {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--gold-soft) 100%);
    border: 3px solid var(--gold);
    box-shadow: 0 28px 76px rgba(215, 181, 105, .20), 0 20px 64px rgba(0, 0, 0, .18);
}

.bonus-card.featured-bonus {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--blue-100) 100%);
    border: 3px solid var(--blue-300);
    box-shadow: 0 28px 76px rgba(169, 210, 236, .22), 0 20px 64px rgba(0, 0, 0, .18);
}

#dor.section-dark {
    background: linear-gradient(180deg, var(--blue-700) 0%, var(--blue-950) 100%);
}

.offer-section {
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--blue-100) 100%);
}

.price-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(28, 75, 104, .16);
    border-radius: 25px;
    padding: 25px 20px;
    box-shadow: var(--shadow);
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
}

.price-card.featured {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--peach-50) 100%);
    border: 4px solid var(--coral);
    box-shadow: 0 26px 68px rgba(216, 93, 69, .22);
}

.price-image {
    border-radius: 18px;
    margin: 18px 0;
    box-shadow: none;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
}

.price-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-weight: 850;
    color: var(--ink);
}

.price-card li::before {
    content: "✓";
    position: absolute;
    left: 3px;
    color: var(--coral);
    font-weight: 1000;
}

.price {
    font-family: "Nunito Sans", "Inter", Arial, sans-serif;
    color: var(--coral-dark);
    font-size: clamp(3.2rem, 13vw, 5rem);
    line-height: .95;
    font-weight: 1000;
    margin: 18px 0 22px;
}

.price-card.featured .price {
    font-size: clamp(3.55rem, 14vw, 5.4rem);
}

.small-note {
    margin: 14px 0 0;
    font-size: .94rem;
    font-weight: 850;
    color: rgba(23, 45, 60, .68);
    text-align: center;
}

.urgency-section {
    background: linear-gradient(180deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--light-text);
}

.timer {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 28px 0;
}

.timer div {
    width: 88px;
    background: var(--cream-2);
    color: var(--ink);
    border-radius: 16px;
    padding: 13px 6px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}

.timer strong {
    display: block;
    font-family: "Nunito Sans", "Inter", Arial, sans-serif;
    font-size: 2.05rem;
    line-height: 1;
    color: var(--ink);
}

.timer span {
    display: block;
    margin-top: 6px;
    font-size: .7rem;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(23, 45, 60, .72);
}

#garantia.section-rose {
    background: linear-gradient(180deg, var(--peach-100) 0%, var(--peach-50) 100%);
}

.warranty-stack {
    text-align: center;
}

.warranty-stack h2,
.warranty-stack p,
.warranty-stack .eyebrow {
    text-align: center;
}

.warranty-badge {
    width: min(100%, 280px);
    margin: 0 auto 18px;
    border-radius: 999px;
    box-shadow: none;
    background: transparent;
}

#depoimentos.section-dark {
    background: linear-gradient(180deg, #173F5F 0%, #0A253B 100%);
}

.testimonial-image {
    border-radius: 22px;
    background: var(--cream-2);
    max-width: 560px;
    margin-inline: auto;
    border: 1px solid rgba(215, 181, 105, .32);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.testimonial-image img {
    padding: 10px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(169, 210, 236, .52);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    padding: 18px 52px 18px 20px;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 900;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--coral);
    font-size: 1.4rem;
    font-weight: 1000;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
}

.final-section {
    padding: 64px 0;
}

#cta-final.section-dark {
    background: linear-gradient(180deg, var(--blue-800) 0%, var(--blue-950) 100%);
}

.final-stack {
    text-align: center;
}

.final-stack h2,
.final-stack p,
.final-stack .eyebrow {
    text-align: center;
}

.final-note {
    margin: 14px auto 0;
    color: rgba(255, 255, 255, .84) !important;
    font-size: .95rem;
    font-weight: 850;
}

.footer {
    background: var(--blue-950);
    color: rgba(255, 255, 255, .72);
    padding: 28px 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    margin: 6px 0;
}

@media (max-width: 430px) {
    .container,
    .narrow {
        width: min(100% - 24px, var(--container));
    }
    h1 {
        font-size: clamp(1.98rem, 10.8vw, 3rem);
    }
    h2 {
        font-size: clamp(1.78rem, 9vw, 2.62rem);
    }
    .hero-list {
        max-width: 325px;
    }
    .hero-list li {
        font-size: 1rem;
    }
    .receive-cards article,
    .bonus-card,
    .price-card,
    .gallery-card {
        padding: 18px;
    }
    .timer div {
        width: 82px;
    }
    .btn {
        font-size: .86rem;
    }
}

@media (min-width: 1180px) {
    .container {
        width: min(100% - 48px, var(--container));
    }
    .section {
        padding: 80px 0;
    }
    .hero {
        padding: 66px 0 86px;
    }
    .steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .gallery-grid {
        grid-template-columns: 1.12fr .88fr .88fr;
    }
    .gallery-card.large {
        grid-row: span 2;
    }
    .bonus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1000px;
        margin-inline: auto;
    }
    .bonus-card.premium,
    .bonus-card.featured-bonus {
        grid-column: 1 / -1;
    }
    .pricing-grid {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
        max-width: 960px;
        margin-inline: auto;
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 980px;
        margin-inline: auto;
    }
    .hero-mockup,
    .receive-image,
    .pain-image,
    .final-image {
        max-width: 560px;
    }
    .btn {
        width: auto;
    }
}