:root {
    --ink: #201b1a;
    --muted: #6b6260;
    --red: #d81f1f;
    --redDark: #7a1210;
    --redSoft: #fff0ee;
    --redSoft2: #fff6f5;
    --gold: #f6c65b;
    --wa: #25d366;
    --line: rgba(32, 27, 26, .12);
    --card: rgba(255, 255, 255, .78);
    --shadow: 0 24px 70px rgba(60, 16, 12, .16);
    --radius: 28px
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, system-ui, Arial, sans-serif;
    color: var(--ink);
    background: #fffaf9;
    line-height: 1.5;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

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

.container {
    width: 100%;
    max-width: 1980px;
    margin: auto;
    padding: 0 20px
}

.skip {
    position: absolute;
    left: -999px
}

.skip:focus {
    left: 14px;
    top: 14px;
    z-index: 999;
    background: #fff;
    padding: 12px;
    border-radius: 12px
}

.topShell {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 clamp(16px, 4vw, 48px);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 12px 35px rgba(60, 16, 12, .08)
}

.brandMark {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 0
}

.brandMark img {
    width: 56px;
    height: 56px;
    object-fit: contain
}

.brandMark strong {
    display: block;
    font-size: 18px;
    font-weight: 900
}

.brandMark small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    font-size: 12px
}

.navDesk {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #4b4038;
    font-weight: 800;
    font-size: 14px
}

.navDesk a:hover {
    color: var(--red)
}

.backSite {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--redSoft);
    border: 1px solid rgba(216, 31, 31, .28);
    font-weight: 900;
    color: var(--redDark)
}

.hero {
    position: relative;
    min-height: 720px;
    padding: 88px 0 120px;
    background: radial-gradient(circle at 82% 16%, rgba(246, 198, 91, .22), transparent 24%), radial-gradient(circle at 18% 10%, rgba(216, 31, 31, .16), transparent 28%), linear-gradient(135deg, #fffaf9 0%, #fff1ef 48%, #fff7df 100%);
    overflow: hidden
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 58px;
    align-items: center
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(216, 31, 31, .28);
    color: var(--redDark);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 16px
}

.hero h1 {
    font-size: clamp(42px, 5.6vw, 76px);
    line-height: .98;
    letter-spacing: -2.5px;
    font-weight: 900;
    color: #241a18
}

.hero h1 span {
    color: var(--red)
}

.lead {
    font-size: 19px;
    color: #6b5a56;
    max-width: 590px;
    margin: 22px 0 28px
}

.heroActions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 900;
    transition: .25s;
    min-height: 54px
}

.btn span b {
    display: block;
    line-height: 1.1
}

.btn span small {
    display: block;
    font-size: 11px;
    opacity: .82;
    margin-top: 2px
}

.btnWa {
    background: linear-gradient(135deg, #25d366, #19b957);
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .32)
}

.btnWa:hover,
.waFloat:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(37, 211, 102, .38)
}

.btnSoft {
    background: #fff;
    color: var(--redDark);
    border: 1px solid rgba(216, 31, 31, .3);
    box-shadow: 0 12px 30px rgba(120, 20, 16, .1)
}

.btnSlim {
    min-height: 48px;
    padding: 13px 18px
}

.btnShine {
    position: relative;
    overflow: hidden
}

.btnShine:after {
    content: "";
    position: absolute;
    inset: -40% auto -40% -60%;
    width: 42%;
    transform: rotate(20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    animation: shine 3.1s infinite
}

@keyframes shine {
    0% {
        left: -60%
    }

    45%,
    100% {
        left: 130%
    }
}

.whatsMini {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    flex: 0 0 34px
}

.whatsMini svg {
    width: 25px;
    height: 25px
}

.heroVisual {
    position: relative;
    min-height: 540px
}

.heroPhoto.main {
    position: absolute;
    right: 0;
    top: 18px;
    width: min(100%, 560px);
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(60, 16, 12, .22);
    border: 10px solid rgba(255, 255, 255, .75);
    transform: rotate(2deg)
}

.heroPhoto img {
    width: 100%;
    height: 520px;
    object-fit: cover
}

.doctorFloat {
    position: absolute;
    left: -14px;
    bottom: -48px;
    z-index: 30;
    width: 420px;
    min-height: 112px;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: 0 24px 55px rgba(60, 16, 12, .16), 0 8px 18px rgba(60, 16, 12, .08)
}

.doctorFloat>img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0
}

.doctorInfo {
    min-width: 0
}

.doctorName {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px
}

.doctorName strong {
    font-size: 20px;
    line-height: 1;
    color: #241a18;
    font-weight: 900
}

.doctorCheck {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    margin-top: 1px
}

.doctorCheck svg {
    width: 15px;
    height: 15px;
    display: block
}

.doctorCheck path {
    fill: none;
    stroke: #fff;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.doctorRating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px
}

.doctorRating img {
    width: 16px;
    height: 16px;
    object-fit: contain
}

.stars {
    color: #f5b400;
    font-size: 12px;
    letter-spacing: .5px;
    line-height: 1
}

.doctorRating b {
    font-size: 12px;
    color: #241a18;
    font-weight: 900
}

.doctorInfo em {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: #8a7d78;
    font-weight: 700
}

@media(max-width:768px) {
    .doctorFloat {
        left: 50%;
        bottom: -58px;
        transform: translateX(-50%);
        width: 92%;
        max-width: 380px;
        grid-template-columns: 62px 1fr;
        gap: 14px;
        padding: 15px 16px
    }

    .doctorFloat>img {
        width: 62px;
        height: 62px;
        border-radius: 16px
    }

    .doctorName strong {
        font-size: 18px
    }
}

.trustBar {
    margin: 90px auto 0;
    max-width: 1980px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow)
}

.trustBar div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 14px;
    align-items: center;
    border-right: 1px solid var(--line);
    padding: 0 20px
}

.trustBar div:last-child {
    border-right: 0
}

.lineIcon {
    grid-row: span 2;
    color: var(--red);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center
}

.lineIcon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

.trustBar strong {
    font-size: 24px
}

.trustBar small {
    color: var(--muted);
    font-weight: 700
}

.sectionPad {
    position: relative;
    padding: 96px 0
}

.sectionHead {
    max-width: 760px;
    margin-bottom: 34px
}

.sectionHead.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.sectionHead h2,
.sectionRow h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.2px
}

.sectionHead p,
.sectionRow p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px
}

.indications {
    background: #fff
}

.indicationsBox {
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 46px;
    background: linear-gradient(180deg, #fff, var(--redSoft2));
    box-shadow: var(--shadow)
}

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

.indicationGrid div {
    padding: 18px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 800;
    color: #3a2c29
}

.indicationGrid div::before {
    content: "✓";
    color: var(--red);
    font-weight: 900;
    margin-right: 8px
}

.indicationCta {
    margin-top: 30px;
    text-align: center
}

.indicationCta p {
    color: var(--muted);
    margin-bottom: 18px;
    font-weight: 600
}

.benefits {
    background: linear-gradient(180deg, #fff, var(--redSoft2))
}

.benefitGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.benefitCard {
    padding: 26px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 38px rgba(60, 16, 12, .08)
}

.benefitCard span {
    font-size: 34px
}

.benefitCard h3 {
    font-size: 20px;
    margin: 14px 0 8px
}

.benefitCard p {
    color: var(--muted);
    font-weight: 600
}

.sectionRow {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px
}

.sectionRow>div {
    max-width: 760px
}

.steps {
    background: #fff
}

.stepGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.step {
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, #fff, var(--redSoft2));
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(60, 16, 12, .08)
}

.step b {
    font-size: 42px;
    color: #ffcfc8
}

.step h3 {
    font-size: 21px;
    margin: 8px 0
}

.step p {
    color: var(--muted);
    font-weight: 600
}

.offer {
    background: var(--redSoft2)
}

.offerBox {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 42px;
    border-radius: 38px;
    background: linear-gradient(135deg, #241a18, var(--redDark));
    color: #fff;
    box-shadow: 0 32px 80px rgba(60, 16, 12, .3);
    position: relative;
    overflow: hidden
}

.offerBox:before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12)
}

.offerBox h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05
}

.offerBox p {
    color: rgba(255, 255, 255, .82);
    margin-top: 12px;
    max-width: 680px
}

.why {
    background: #fff
}

.whyGrid {
    display: grid;
    grid-template-columns: .78fr 1fr;
    gap: 50px;
    align-items: center
}

.whyImg {
    border-radius: 38px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--redSoft), #fff);
    box-shadow: var(--shadow)
}

.whyImg img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: top
}

.whyCopy h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.1px
}

.whyCopy p {
    color: var(--muted);
    font-size: 18px;
    margin: 16px 0 22px
}

.checkList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.checkList span {
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--redSoft2);
    border: 1px solid var(--line);
    font-weight: 900;
    color: var(--redDark)
}

.testimonials {
    background: linear-gradient(180deg, #fffaf9, #fff)
}

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

.review {
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(60, 16, 12, .08);
    border: 1px solid var(--line)
}

.review div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.review img {
    width: 20px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0
}

.review strong {
    color: #f5b400;
    letter-spacing: 2px
}

.review p {
    color: #5a4d49;
    font-weight: 700;
    margin-bottom: 16px
}

.review b {
    color: #241a18
}

.faq {
    background: #fff
}

.faqGrid {
    max-width: 880px;
    margin: auto;
    display: grid;
    gap: 12px
}

.faqGrid details {
    background: var(--redSoft2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 0 20px
}

.faqGrid summary {
    padding: 19px 0;
    cursor: pointer;
    font-weight: 900;
    list-style: none
}

.faqGrid summary::-webkit-details-marker {
    display: none
}

.faqGrid summary:after {
    content: "+";
    float: right;
    color: var(--red);
    font-size: 24px;
    line-height: 1
}

.faqGrid details[open] summary:after {
    content: "–"
}

.faqGrid p {
    padding: 0 0 18px;
    color: var(--muted);
    font-weight: 600
}

.finalCta {
    padding: 90px 0;
    background: radial-gradient(circle at center top, rgba(216, 31, 31, .28), transparent 34%), linear-gradient(135deg, #241a18, var(--redDark));
    color: #fff;
    text-align: center
}

.finalBox {
    max-width: 820px;
    margin: auto
}

.finalBox h2 {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.03;
    letter-spacing: -1.3px
}

.finalBox p {
    margin: 16px 0 24px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px
}

.waFloat {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .36);
    transition: .25s
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

@media(max-width:980px) {
    .topShell {
        height: auto;
        min-height: 72px
    }

    .navDesk {
        display: none
    }

    .hero {
        padding: 58px 0 95px;
        min-height: auto
    }

    .heroGrid,
    .whyGrid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .heroCopy {
        text-align: center
    }

    .heroActions {
        justify-content: center
    }

    .heroVisual {
        min-height: 430px
    }

    .heroPhoto.main {
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(1deg);
        width: min(94%, 560px)
    }

    .heroPhoto img {
        height: 390px
    }

    .trustBar {
        grid-template-columns: 1fr 1fr;
        margin-top: 110px
    }

    .trustBar div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 14px 10px
    }

    .benefitGrid,
    .reviewGrid {
        grid-template-columns: 1fr 1fr
    }

    .indicationGrid {
        grid-template-columns: 1fr
    }

    .sectionRow {
        display: block;
        text-align: center
    }

    .sectionRow .btn {
        margin-top: 18px
    }

    .stepGrid {
        grid-template-columns: 1fr 1fr
    }

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

    .offerBox .btn {
        margin: auto
    }

    .whyImg img {
        height: 480px
    }

    .checkList {
        grid-template-columns: 1fr
    }

    .backSite {
        font-size: 0;
        padding: 12px
    }

    .backSite:after {
        content: "Home";
        font-size: 14px
    }
}

@media(max-width:620px) {
    .container {
        padding: 0 16px
    }

    .brandMark img {
        width: 60px;
        height: 60px
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1.4px
    }

    .lead {
        font-size: 16px
    }

    .heroActions .btn {
        width: 100%
    }

    .benefitGrid,
    .reviewGrid,
    .stepGrid,
    .trustBar {
        grid-template-columns: 1fr
    }

    .sectionPad {
        padding: 72px 0
    }

    .whyImg img {
        height: 410px
    }

    .offerBox {
        padding: 30px 20px;
        border-radius: 28px
    }

    .topShell {
        padding: 10px 14px
    }

    .waFloat {
        width: 58px;
        height: 58px;
        right: 14px;
        bottom: 14px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    ::before,
    ::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}

.btnWa,
.waFloat {
    animation: waPulse 2s ease-in-out infinite;
    transform-origin: center
}

.btnWa:hover,
.waFloat:hover {
    animation-play-state: paused
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 16px 34px rgba(37, 211, 102, .3)
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 22px 46px rgba(37, 211, 102, .45), 0 0 0 10px rgba(37, 211, 102, .08)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 16px 34px rgba(37, 211, 102, .3)
    }
}

/* ===========================
   Popup de cupom - Canal
=========================== */

.promoOverlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(20, 10, 8, .74);
    backdrop-filter: blur(10px)
}

.promoOverlay.is-open {
    display: flex
}

.promoModal {
    position: relative;
    width: min(460px, 100%);
    padding: 42px 34px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, var(--redSoft2));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: center;
    animation: promoIn .35s ease
}

.promoClose {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--redSoft);
    color: var(--redDark);
    font-size: 26px;
    cursor: pointer
}

.promoKicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(216, 31, 31, .28);
    color: var(--redDark);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 11.5px;
    font-weight: 900;
    margin-bottom: 14px
}

.promoModal h2 {
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.08;
    letter-spacing: -.6px;
    color: var(--ink);
    margin-bottom: 12px
}

.promoModal p {
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px
}

.promoModal p strong {
    color: var(--red)
}

.promoTimer {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(246, 198, 91, .16);
    border: 1px solid rgba(246, 198, 91, .4);
    color: #8a6414;
    font-weight: 800;
    margin-bottom: 20px
}

.promoGift {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 12px;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #19b957);
    color: #fff;
    border: 0;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .3);
    transition: transform .2s, box-shadow .2s;
    animation: waPulse 2s ease-in-out infinite
}

.promoGift:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, .42)
}

.promoGift span {
    font-size: 20px;
    line-height: 1
}

.promoReveal {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(246, 198, 91, .16), var(--redSoft));
    border: 1px solid rgba(246, 198, 91, .32);
    margin-bottom: 16px
}

.promoReveal small {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 700
}

.promoReveal>strong {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 14px;
    background: #fff;
    color: var(--redDark);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(60, 16, 12, .12)
}

.promoOptions {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--ink);
    font-weight: 700;
    text-align: left;
    padding: 0 8px
}

.promoWhatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #19b957);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(37, 211, 102, .32);
    animation: waPulse 2s ease-in-out infinite
}

.promoNo {
    background: none;
    border: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer
}

@keyframes promoIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.96)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:520px) {
    .promoModal {
        padding: 34px 22px
    }
}
