:root {
    --navy-900: #0f2234;
    --navy-800: #13293d;
    --navy-700: #1b3a55;
    --navy-600: #24486a;
    --orange: #ff7a1a;
    --orange-soft: #ffa760;
    --orange-light: #ffb877;
    --peach: #ffcfb0;
    --sand: #ebe6e2;
    --sand-light: #f3f1ef;
    --green: #45c06c;
    --green-light: #5bd98f;
    --text-dark: #1a3148;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--navy-800);
    overflow-x: clip;
}

.fw-800 {
    font-weight: 800;
}

.text-orange {
    color: var(--orange) !important;
}

.text-peach {
    color: var(--peach) !important;
}

.text-navy {
    color: var(--text-dark) !important;
}

.section-title {
    font-weight: 800;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

/* ---------- Buttons ---------- */

.btn-cta {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -.01em;
    box-shadow: 0 10px 30px -10px rgba(69, 192, 108, .7);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-cta:hover,
.btn-cta:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 34px -10px rgba(69, 192, 108, .85);
}

.btn-cta:disabled {
    opacity: .7;
    transform: none;
}

/* ---------- Top (BASTA) ---------- */

.top {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, #e9e6e3 0%, #f4f0ea 60%, #fbf1dc 100%);
    padding: 2.5rem 1rem 4.5rem;
    text-align: center;
}

.top h1 {
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 1;
    letter-spacing: -.03em;
    margin: 0;
    background: linear-gradient(90deg, var(--orange-soft), #ffb46b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.top p {
    font-size: clamp(1.25rem, 2vw, 2rem);
    margin: .5rem 0 0;
    color: var(--text-dark);
}

/* ---------- Ribbons ---------- */

.ribbons {
    position: relative;
    z-index: 3;
    height: 0;
}

.ribbon {
    position: absolute;
    left: -5%;
    width: 110%;
    overflow: hidden;
    background: #ef5a24;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 18px -6px rgba(0, 0, 0, .35);
}

.ribbon-track {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.ribbon-track span {
    padding: .45rem 0;
}

.ribbon-track span::after {
    content: '•';
    margin: 0 .6rem;
}

.ribbon-back {
    top: -3.4rem;
    transform: rotate(1.4deg);
    background: #f06a33;
    font-size: .8rem;
    opacity: .95;
}

.ribbon-back .ribbon-track {
    animation-direction: reverse;
    animation-duration: 55s;
}

.ribbon-front {
    top: -2.6rem;
    transform: rotate(-1.6deg);
    font-size: 1rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 70% at 85% 30%, rgba(255, 196, 130, .45), transparent 70%),
        linear-gradient(180deg, #1c3e5c 0%, #1a3a58 45%, var(--navy-800) 100%);
    color: #fff;
    padding: 5rem 0 6rem;
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: min(55%, 900px);
    height: 820px;
    object-fit: cover;
    object-position: left top;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 25%), linear-gradient(to bottom, #000 70%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, #000 25%), linear-gradient(to bottom, #000 70%, transparent 100%);
    mask-composite: intersect;
    pointer-events: none;
}

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

.hero-title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: -.03em;
}

.hero-title span {
    display: inline-block;
    padding: .1em .15em;
    background: linear-gradient(180deg, rgba(15, 34, 52, .55), rgba(15, 34, 52, .25));
    box-shadow: 0 16px 40px -16px rgba(0, 0, 0, .55);
    background-clip: padding-box;
}

.hero-title .live {
    font-size: clamp(3.5rem, 7vw, 6rem);
    color: var(--peach);
    transform: rotate(-1deg);
}

.hero-title .premiada {
    font-size: clamp(3rem, 6.2vw, 5.4rem);
    color: #fff;
    background-image: linear-gradient(90deg, #fff 55%, var(--peach));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotate(-1deg);
}

.hero-when {
    display: inline-block;
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 600;
    padding-bottom: .9rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.hero-sub {
    font-weight: 700;
    font-size: clamp(1.15rem, 1.8vw, 1.6rem);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero .btn-cta {
    width: 100%;
    max-width: 460px;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.hero-link {
    display: inline-block;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    max-width: 400px;
}

.hero-link:hover {
    color: #fff;
}

.form-intro {
    margin-top: 9rem;
    scroll-margin-top: 2rem;
}

.badge-burst {
    position: absolute;
    z-index: 2;
    top: 305px;
    left: calc(50% - 60px);
    width: 270px;
    height: 270px;
    display: grid;
    place-items: center;
    padding: 2.8rem;
    background: linear-gradient(135deg, #ff8a2a, var(--orange-soft));
    clip-path: polygon(50.0% 0.0%, 59.3% 9.1%, 71.7% 5.0%, 76.2% 17.2%, 89.1% 18.8%, 87.8% 31.8%, 98.7% 38.9%, 92.0% 50.0%, 98.7% 61.1%, 87.8% 68.2%, 89.1% 81.2%, 76.2% 82.8%, 71.7% 95.0%, 59.3% 90.9%, 50.0% 100.0%, 40.7% 90.9%, 28.3% 95.0%, 23.8% 82.8%, 10.9% 81.2%, 12.2% 68.2%, 1.3% 61.1%, 8.0% 50.0%, 1.3% 38.9%, 12.2% 31.8%, 10.9% 18.8%, 23.8% 17.2%, 28.3% 5.0%, 40.7% 9.1%);
    transform: rotate(10deg);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

/* ---------- Forms ---------- */

.lead-form {
    max-width: 620px;
    margin: 0 auto;
}

.lead-form .form-control {
    height: 70px;
    padding: 0 1.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 220, 190, .45);
    background: rgba(120, 170, 210, .28);
    color: #fff;
    font-size: 1rem;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}

.lead-form .form-control::placeholder {
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    font-size: .9rem;
}

.lead-form .form-control:focus {
    background: rgba(120, 170, 210, .38);
    border-color: var(--peach);
    box-shadow: 0 0 0 .25rem rgba(255, 207, 176, .2);
    color: #fff;
}

.lead-form .btn-cta {
    margin-top: 1.5rem;
    min-width: 300px;
    max-width: 100%;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.lead-form .honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-message {
    margin: 1rem 0 0;
    padding: .6rem 1rem;
    border-radius: 12px;
    font-size: .95rem;
}

.form-message.is-info { background: rgba(255, 255, 255, .1); color: #fff; }
.form-message.is-danger { background: rgba(255, 90, 90, .15); color: #ffb3b3; }
.form-message.is-success { background: rgba(91, 217, 143, .15); color: #9ff0bf; }

.form-intro h2 {
    font-weight: 800;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    text-transform: uppercase;
    color: var(--peach);
    margin-bottom: .25rem;
}

.form-intro p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ---------- Agenda ---------- */

.agenda {
    background: linear-gradient(135deg, var(--sand) 0%, #efedeb 100%);
    padding: 6rem 0;
}

.agenda-list {
    max-width: 850px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1.6rem;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    padding: 1.4rem 1.75rem;
    border-radius: 6px;
    background: var(--orange-soft);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    box-shadow: 18px 22px 40px -18px rgba(40, 30, 20, .3);
}

.agenda-item i {
    flex: 0 0 auto;
    font-size: 1.6rem;
    width: 2rem;
    text-align: center;
}

.agenda-item strong {
    font-weight: 700;
}

.agenda-item.is-highlight {
    max-width: 850px;
    background: var(--navy-800);
    font-size: 1.4rem;
    padding: 1.75rem 2rem 1.75rem 7rem;
}

.agenda-item.is-highlight strong {
    text-transform: uppercase;
}

/* ---------- Pra você ---------- */

.pra-voce {
    position: relative;
    background:
        radial-gradient(ellipse 40% 50% at 20% 100%, rgba(255, 180, 120, .18), transparent 70%),
        linear-gradient(180deg, #1b344d 0%, var(--navy-700) 100%);
    color: #fff;
    padding: 8rem 0 5rem;
}

.pra-voce h2 {
    color: var(--peach);
    margin-bottom: .5rem;
}

.sim-list {
    max-width: 745px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.sim-list li {
    padding: .75rem 0;
    border-bottom: 2px solid rgba(120, 170, 210, .35);
}

.sim-list li:last-child {
    border-bottom: 0;
}

.recado {
    position: relative;
    z-index: 2;
    margin: 0 -2%;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(90deg, #fde8da, #f2dfdb);
    color: var(--navy-700);
    font-weight: 800;
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    text-transform: uppercase;
    transform: rotate(-1.2deg);
}

/* ---------- O que é ---------- */

.container-wide {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 4.75rem);
}

.plena {
    position: relative;
    background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
    color: #fff;
    padding-bottom: 4rem;
}

.plena-intro {
    padding: 0 0 4rem;
    margin-top: -1rem;
}

.plena-intro img {
    width: 100%;
    height: auto;
    max-width: 1100px;
    -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 55%, transparent 100%);
    mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 55%, transparent 100%);
}

.plena-intro h2 {
    color: var(--orange-light);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.plena-intro p {
    max-width: 480px;
    font-size: 1.3rem;
    line-height: 1.75;
    font-weight: 500;
}

.product-card {
    position: relative;
    z-index: 1;
    border-radius: 36px;
    padding: 3.5rem;
    margin-bottom: 3rem;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    display: block;
}

.product-card h3 {
    font-weight: 800;
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.product-card .lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
}

.product-card .lead-text,
.product-card .ingredients,
.product-card .chips {
    max-width: 580px;
}

.product-card .ingredients {
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
}

.product-card.is-dia {
    background: linear-gradient(90deg, #e9e5e1 0%, #ebe6e1 70%, #fbf0dc 100%);
    color: var(--text-dark);
}

.product-card.is-noite {
    background: linear-gradient(135deg, #12304a 0%, var(--navy-700) 60%, #1f3a52 100%);
    color: #fff;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45);
    margin-bottom: -7rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.chip {
    display: inline-block;
    padding: .4rem 2.1rem;
    border-radius: 999px;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-size: 1rem;
    font-weight: 500;
}

.chip.is-filled {
    background: var(--orange);
    color: #fff;
}

.is-noite .chip {
    border-color: var(--green);
    color: var(--green-light);
}

.is-noite .chip.is-filled {
    background: var(--green);
    color: #fff;
}

/* ---------- Ciclo + depoimentos ---------- */

.ciclo {
    background: linear-gradient(135deg, var(--sand-light) 0%, #f6f7f9 45%, var(--sand) 100%);
    padding: 12rem 0 7rem;
}

.ciclo .section-title {
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.ciclo .lead-text {
    font-size: 1.35rem;
    font-weight: 500;
    max-width: 400px;
    margin: 1rem auto 0;
}

.testimonial {
    height: 100%;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 50px -30px rgba(40, 60, 80, .25);
}

.testimonial .avatar {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #f1f1f1;
    object-fit: cover;
}

.testimonial h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-700);
    margin: 0;
}

.testimonial small {
    display: block;
    color: var(--green);
    margin-bottom: .75rem;
}

.testimonial p {
    font-size: 1.25rem;
    line-height: 1.45;
    color: var(--navy-700);
    margin: 0;
}

/* ---------- Final CTA ---------- */

.final {
    background:
        radial-gradient(ellipse 50% 60% at 20% 10%, rgba(40, 80, 115, .6), transparent 70%),
        linear-gradient(135deg, #1e3a55 0%, var(--navy-800) 60%, var(--navy-900) 100%);
    color: #fff;
    padding: 10rem 0;
}

.final h2 {
    color: var(--peach);
}

.final .lead-text {
    font-size: 1.35rem;
    font-weight: 500;
    max-width: 460px;
    margin: .5rem auto 0;
}

.final hr {
    width: 430px;
    max-width: 80%;
    margin: 2.25rem auto;
    border-color: rgba(255, 255, 255, .5);
}

.final h3 {
    font-weight: 800;
    font-size: clamp(1.3rem, 2.3vw, 1.85rem);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* ---------- Thank you / home ---------- */

.center-page {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
}

.home-logo {
    width: min(320px, 70vw);
    height: auto;
}

.thankyou-card {
    max-width: 640px;
    text-align: center;
    color: #fff;
}

.thankyou-card .check {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    font-size: 2.75rem;
    box-shadow: 0 12px 30px -8px rgba(69, 192, 108, .6);
}

.thankyou-card h1 {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--peach);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.thankyou-card p {
    font-size: 1.25rem;
    font-weight: 500;
}

.icon-sun {
    color: #f7b733;
}

.icon-moon {
    color: #f7c948;
}

/* ---------- Responsive ---------- */

@media (min-width: 992px) and (max-width: 1199.98px) {
    .badge-burst {
        top: 1.5rem;
        left: auto;
        right: 2rem;
        width: 210px;
        height: 210px;
        padding: 2rem;
        font-size: .9rem;
    }
}

@media (max-width: 991.98px) {
    .top {
        padding: 1.75rem 1rem 3.25rem;
    }

    .hero {
        padding: 3.25rem 0 5rem;
    }

    .hero-title {
        margin-bottom: 1.25rem;
    }

    .hero-when {
        padding-bottom: .6rem;
        margin-bottom: .9rem;
    }

    .hero-sub {
        margin-bottom: 1.1rem;
    }

    .hero-sub {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero .btn-cta {
        max-width: 280px;
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
        font-size: .9rem;
    }

    .hero-link {
        max-width: 300px;
        margin-top: .9rem;
        font-size: .95rem;
    }

    .hero-visual {
        position: relative;
        max-width: 600px;
        margin: 1.5rem auto 0;
    }

    .hero-img {
        position: static;
        display: block;
        width: 100%;
        height: auto;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 80%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 80%, transparent 100%);
    }

    .hero-content {
        margin: 0 auto;
    }

    .badge-burst {
        top: -1rem;
        left: 42%;
        width: 150px;
        height: 150px;
        padding: 1.5rem;
        font-size: .68rem;
        transform: rotate(-8deg);
    }

    .form-intro {
        margin-top: 2.5rem;
    }

    .product-card {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .product-card img {
        border-radius: 24px;
    }

    .agenda-item.is-highlight {
        padding-left: 1.75rem;
    }

    .testimonial {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .ribbon-front { font-size: .8rem; }
    .ribbon-back { font-size: .7rem; }

    .agenda-item,
    .agenda-item.is-highlight {
        font-size: 1.05rem;
        padding: 1.2rem 1.25rem;
    }

    .sim-list,
    .plena-intro p,
    .product-card .lead-text,
    .product-card .ingredients {
        font-size: 1.1rem;
    }

    .chip {
        padding: .35rem 1.2rem;
        font-size: .9rem;
    }

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

    .testimonial .avatar {
        flex-basis: auto;
        width: 90px;
        height: 90px;
    }

    .lead-form .form-control {
        height: 60px;
    }

    .lead-form .btn-cta {
        min-width: 0;
        width: 100%;
    }

    .final {
        padding: 6rem 0;
    }

    .ciclo {
        padding-top: 10rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ribbon-track {
        animation: none;
    }
}
