/* ============================================================
   Bestie landing page
   ------------------------------------------------------------
   Long-form marketing page rebuilt from the Figma design.
   Organized as: tokens → reset → utilities → components →
   sections (top to bottom) → animations → responsive.
   Heading face is Cormorant Garamond (serif, italic accents);
   body/UI is Montserrat. Loaded by templates/landing.html.
   ============================================================ */

/* ── Design tokens ───────────────────────────────────────── */
:root {
    /* Surfaces */
    --cream: #F9F4F2;        /* page background / hero */
    --blush: #F0E4E0;        /* alternating warm sections */
    --paper: #FCFAF8;        /* near-white panels (colorimetria) */
    --white: #FFFFFF;

    /* Brand */
    --rose: #A35E65;         /* primary accent + buttons */
    --rose-deep: #8E4F56;    /* button hover */
    --rose-soft: #B5687A;    /* italic accents / marquee */
    --magenta: #9A526D;      /* deep rose pricing band */
    --magenta-deep: #6E3850;
    --plum: #3A2330;         /* deep headings */
    --plum-dark: #2E1A24;    /* dark banners / launch card */
    --lavender: #928BC1;     /* secondary label accent */

    /* Ink */
    --ink: #2D2D2D;          /* body text */
    --muted: #7A6A64;        /* secondary text */
    --faint: #B8A39E;        /* struck-through / tertiary */

    /* Lines */
    --line: #E6D6D2;         /* sand borders */
    --line-soft: #F1E4E0;

    /* Highlight tints */
    --card-plus: #E5BCBB;    /* "Mais escolhido" plan card */
    --note: #FBF6E4;         /* yellow-tint info/FAQ cards */
    --note-line: #EADfae;

    /* Type */
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Montserrat', system-ui, -apple-system, sans-serif;

    /* Layout */
    --maxw: 1500px;
    --radius: 22px;
    --radius-lg: 28px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout utilities ────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.center { text-align: center; }

/* Serif display headings with italic accents */
.display {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--plum);
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.display em, .accent {
    font-style: italic;
    color: var(--rose-soft);
}
.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    background: rgba(163, 94, 101, 0.08);
    border: 1px solid rgba(163, 94, 101, 0.18);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.lead {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--muted);
    font-weight: 400;
    line-height: 1.7;
    max-width: 560px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 34px;
    border: none;
    border-radius: 100px;
    transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-primary {
    background: var(--rose);
    color: #fff;
    box-shadow: 0 6px 22px rgba(163, 94, 101, 0.30);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(163, 94, 101, 0.40); }
.btn-ghost {
    background: transparent;
    color: var(--rose);
    border: 1px solid var(--rose);
}
.btn-ghost:hover { background: rgba(163, 94, 101, 0.06); }
.btn-light {
    background: #fff;
    color: var(--rose);
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);
}
.btn-light:hover { transform: translateY(-2px); }

/* ── Header (floating centered pill nav) ─────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 24px;
    transition: padding .3s;
}
.nav-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(236, 221, 224, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: 0 6px 24px rgba(58, 35, 48, 0.08);
    transition: box-shadow .3s, background .3s;
}
.site-header.scrolled .nav-pill {
    background: rgba(249, 244, 242, 0.9);
    box-shadow: 0 8px 30px rgba(58, 35, 48, 0.14);
    color: var(--plum);
}
.site-header.scrolled .nav-pill a {
    color: var(--plum);
}
.nav-pill a {
    font-size: 13.5px;
    font-weight: 500;
    color: white;
    padding: 9px 18px;
    border-radius: 100px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.nav-pill a:hover { background: rgba(163, 94, 101, 0.12); color: var(--rose); }
.nav-pill a.nav-login { color: white; font-weight: 800; }
.nav-toggle { display: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--cream);
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 160px;
    overflow: hidden;
    background-image: url("../images/landing/header-desktop2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-logo-container {
    width: 30%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-copy {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-copy-sub {
    color: white;
    letter-spacing: 42%;
    font-size: 15px;
}

.hero-copy-logo {
    width: 75%;
}

.hero-text-box {
    background-color: #3600069E;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
    margin-top: 40px;
    width: 52%;
}

.hero-grid {
    display: flex;
    justify-content: center;
}
.hero-wordmark {
    font-family: var(--serif);
    font-weight: 600;
    color: white;
    font-size: clamp(72px, 11vw, 150px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
}
.hero-tagline {
    font-family: var(--serif);
    font-size: 51px;
    line-height: 1.2;
    color: white;
    font-weight: 500;
    max-width: 520px;
    padding: 25px 0;
    margin-top: 30px;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.8);
}
.hero-tagline em { font-style: italic; color: white; background-color: #A35E6566; box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.63); -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.63); }
.hero-sub {
    font-size: 19px;
    color: white;
    line-height: 1.6;
    width: 350px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.9);
}
.hero-sub strong { color: var(--plum); font-weight: 600; }
.logo-stamp {
    width: 110px;
    height: 110px;
    position: absolute;
    bottom: 30px;
    right: -50px;
    background-color: #2D2D2D60;
    border-radius: 60px;
}
.logo-stamp .logo-wheel {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 125%;
    max-width: 125%;
}
.logo-stamp .logo-logo {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 35px);
    width: 60%;
}
.hero-arrow {
    width: 20px; height: 20px;
    color: #EDD1CE;
    animation: bob 2.2s ease-in-out infinite;
    margin-bottom: 10px;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
/* Scroll-down arrow: gentle continuous bounce to signal it's clickable.
   Reuses `bob`; the global prefers-reduced-motion rule disables it. */
.scroll-arrow { animation: bob 2.2s ease-in-out infinite; cursor: pointer; }
.hero-photo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(58, 35, 48, 0.18);
    z-index: 0;
}
/* ── Marquee ribbon ──────────────────────────────────────── */
.marquee {
    background: #E1DAE4;
    overflow: hidden;
    white-space: nowrap;
    padding: 11px 0;
    border-top: 1px solid rgba(58,35,48,0.06);
    border-bottom: 1px solid rgba(58,35,48,0.06);
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    animation: marquee 128s linear infinite;
    will-change: transform;
}
.marquee span {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--plum);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.marquee span::after { content: '♥'; margin-left: 28px; color: #E24B5B; font-size: 11px; letter-spacing: 0; vertical-align: middle; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--blush);
    padding: 72px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 48px;
}
.footer-brand .footer-logo {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 600;
    color: var(--plum);
    letter-spacing: 0.02em;
}
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 10px; max-width: 240px; }
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}
.footer-col a, .footer-col p {
    display: block;
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 10px;
    transition: color .2s;
}
.footer-col a:hover { color: var(--rose); }
.footer-legal {
    border-top: 1px solid var(--line);
    padding: 24px 0 28px;
    font-size: 12px;
    color: var(--faint);
    line-height: 1.7;
}
.footer-legal .fine { margin-bottom: 6px; }

/* ── Animations ──────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .section { padding: 64px 0; }

    .nav-pill { position: relative; }
    .nav-toggle {
        display: inline-flex; align-items: center; justify-content: center;
        background: rgba(236, 221, 224, 0.85);
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.5);
        width: 46px; height: 46px; border-radius: 100px;
        color: var(--plum);
        box-shadow: 0 6px 24px rgba(58, 35, 48, 0.08);
    }
    .nav-pill {
        display: none;
        position: absolute; top: 64px; right: 0;
        flex-direction: column; align-items: stretch;
        padding: 12px;
        border-radius: 22px;
        min-width: 220px;
    }
    .nav-pill.open { display: flex; }
    .site-header { justify-content: flex-end; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }

    .hero-copy-logo {
        width: 100%;
    }

    .hero-text-box {
        background-color: #00000000;
        backdrop-filter: none;
        border: none;
        border-radius: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
        text-align: center;
        margin-top: 0px;
        width: 100%;
    }
    
    .hero {padding: 0; padding-top: 30px; background-image: url("../images/landing/header-mobile.jpg"); height: 715px; background-position: calc(50% - 50px) 0;}
    .hero-tagline { margin-top: 0; font-size: 30px; line-height: 40px; padding: 10px 0px;}
    .hero-tagline em { font-style: italic; color: white; background-color: #A35E6566; }
    .hero-sub {
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 500;
        background-color: #15151500;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-top-left-radius: 20px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 20px;
        text-align: center;
        padding: 5px;
        width: 70%;
    }

    .hero-logo-container {
        width: 50%;
        margin-top: 50px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-copy-sub {
        color: white;
        letter-spacing: 24%;
        font-size: 10px;
    }

    .logo-stamp {
        display: none;
    }
}

@media (max-width: 540px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero-wordmark { font-size: clamp(64px, 22vw, 96px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .fade-up { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   PHASE B — story sections
   ════════════════════════════════════════════════════════════ */

/* ── Problem ─────────────────────────────────────────────── */
.problem { background: var(--blush); }
.problem .eyebrow-line {
    font-family: var(--serif);
    font-size: 30px;
    color: black;
    margin-bottom: 14px;
}
.problem .eyebrow-line em { color: var(--rose); font-style: normal;}
.problem h2 { font-size: clamp(30px, 4.4vw, 52px); margin-bottom: 16px; }
.problem .culpa { font-family: var(--serif); text-decoration: underline; font-size: 30px; color: black; margin-bottom: 10px; }
.pain-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.pain-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(163,94,101,0.25);
    border-radius: 16px;
    padding: 22px 22px;
    width: 32%;
}
.pain-card svg { width: 26px; height: 26px; color: var(--rose); flex-shrink: 0; margin-top: 2px; }
.pain-card p { font-size: 18px; color: var(--ink); line-height: 1.55; }
.pain-card p em { font-style: italic; color: var(--muted); }

/* ── Quote ───────────────────────────────────────────────── */
.quote-section { background: var(--blush); text-align: center; padding-top: 0px; }
.quote-section-divider { border-top: 2px solid var(--rose); margin-left: auto; margin-right: auto;}
.quote {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    color: var(--plum);
    line-height: 1.25;
    max-width: 1000px;
    margin: 0 auto 15px;
    margin-top: 15px;
    margin-bottom: 30px;
}
.quote-spoiler { font-size: 20spx; color: black; margin-bottom: 20px; margin-top: 30px;}
.quote-spoiler strong { color: black; }
.mas { font-family: var(--serif); font-style: italic; font-size: 40px; color: var(--rose-soft); margin: 0px 0 10px; }
.tried-q { font-family: var(--serif); font-style: italic; font-size: clamp(20px,2.4vw,30px); color: var(--plum); }

/* ── Accordion (01–05) ───────────────────────────────────── */
.accordion { max-width: 880px; margin: 48px auto 0; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    background: none;
    border: none;
    text-align: left;
    padding: 10px 6px;
}
.acc-num { font-family: var(--serif); font-size: 40px; color: var(--rose-soft); font-style: italic; min-width: 32px; }
.acc-title { flex: 1; font-size: 16px; font-weight: 600; color: var(--plum); }
.acc-icon { width: 20px; height: 20px; color: var(--rose); transition: transform .3s; flex-shrink: 0; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body p { padding: 0 6px 22px 68px; font-size: 14.5px; color: var(--muted); line-height: 1.7; }
/* "Tried" list (after "Você já tentou…"): white cards, all expanded by
   default — landing.js opens them on load. */
#tried-accordion .acc-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
#tried-accordion .acc-head { padding: 0px 22px; }
#tried-accordion .acc-body p { padding: 0 22px 20px 72px; text-align: left; }

/* ── Transition line ─────────────────────────────────────── */
.transition { background: var(--blush); text-align: center; padding-bottom: 60px; }
.transition p { font-size: 20px; color: var(--muted); max-width: 620px; margin: 0 auto 8px; }
.transition .big { font-family: var(--serif); font-size: 40px; color: var(--plum); line-height: 1.3; max-width: 720px; }
.transition .big em { font-style: italic; color: var(--rose-soft); }
.transition-divider {
    width: 30%;
    margin-bottom: 10px;
}

/* ── Colorimetria ────────────────────────────────────────── */
.colorimetria { text-align: center; }
.colo-title { font-size: 90px; font-style: italic; color: var(--rose)}
.colo-divider { width: 30%; margin-bottom: 20px; }
.colo-def { font-size: 24px; color: var(--ink); line-height: 1.5; max-width: 720px; margin: 0 auto 24px; }
.colo-def strong { color: var(--rose); font-weight: 600; }
.colo-unlock { font-family: var(--sans); font-style: italic; font-size: 22px;  margin-bottom: 12px; }
.colo-cite { font-size: 14px;  }

/* ── Comparison table ────────────────────────────────────── */
.compare { max-width: 980px; margin: 56px auto 0; text-align: left; }
.compare-head {
    border: 1px solid #D88C8A;
    background: #FFF5F7;
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    font-family: var(--sans);
    font-size: 20px;
    color: var(--plum);
    margin-bottom: 22px;
}
.compare-card {
    border: 1px solid #D88C8A;
    border-radius: 18px;
    overflow: hidden;
    background: #FFF5F7;
}
.compare-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    padding: 26px;
    border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.highlight { background: var(--note); }
.compare-row h4 { font-size: 16px; color: var(--plum); }
.compare-row h4 .n { font-family: var(--sans); color: var(--rose-soft); margin-right: 8px; font-size: 20px; font-weight: 400;}
.compare-row p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.compare-row ol { font-size: 14px; color: var(--muted); line-height: 1.6; padding-left: 18px; }
.compare-row ol li { margin-bottom: 3px; }

/* ── Bestie banner ───────────────────────────────────────── */
.bestie-banner {
    position: relative;
    background: #EDC7C6;
    border-radius: var(--radius-lg);
    border: 1px solid #D88C8A;
    padding: 10px 48px;
    text-align: center;
    max-width: 980px;
    margin: 40px auto 0;
    overflow: hidden;
    overflow: visible;
}
.bestie-banner .pre { font-size: 16px; opacity: 0.85; margin-bottom: 8px; }
.bestie-banner h3 { font-family: var(--serif); font-size: clamp(30px,4vw,48px); font-weight: 600; margin-bottom: 0px; }
.bestie-banner p { font-size: 15px; opacity: 0.92; line-height: 1.7; max-width: 620px; margin: 0 auto; }
.bestie-banner .logo-stamp {
    width: 140px;
    height: 140px;
    position: absolute;
    top: -50px;
    left: -50px;
    background-color: #2D2D2D60;
    border-radius: 100px;
    rotate: -25deg;
    backdrop-filter: blur(3px);
}
.bestie-banner .logo-stamp .logo-wheel {
    position: absolute;
    top: -27px;
    left: -27px;
    width: 139%;
    max-width: 139%;
}
.bestie-banner .logo-stamp .logo-logo {
    position: absolute;
    top: calc(50% - 19px);
    left: calc(50% - 45px);
    width: 67%;
}
/* ── Experts ─────────────────────────────────────────────── */
.experts { text-align: center; padding-top: 0px;}
.experts .lead-wrap .first { width: 10%;}
.experts .lead-wrap .second { width: 30%; margin-bottom: 100px; }
.experts .lead-wrap { max-width: 760px; margin: 0 auto 52px; }
.experts .lead-wrap .eyebrow { background-color: #D88C8A; color: white }
.experts .lead { color: black; font-family: var(--serif); font-size: 25px; line-height: 24px; margin-top: 30px !important; margin-bottom: 30px !important;}
.experts h2 { font-size: clamp(26px,3.4vw,40px); margin-bottom: 14px; }
.experts h2 em { font-style: italic; color: var(--rose-soft); }
.experts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 980px; margin: 0 auto; }
.expert-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: 0 14px 40px rgba(163,94,101,0.08);
}
/* Photos are background-image divs so each one's zoom (background-size) and
   framing (background-position) can be tuned per-person to match Figma. */
.expert-photo { width: 200px; height: 200px; border-radius: 50%; background-size: cover; background-repeat: no-repeat; background-position: center; margin: 0 auto 20px; box-shadow: 0 11px 15px rgba(0, 0, 0, 0.25); margin-top: -76px; }
.expert-card h3 { font-family: var(--sans); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; color: var(--plum); margin-bottom: 12px; }
.expert-role { display: inline-block; font-size: 12px; font-weight: 600; color: #fff; background: #D78E8A; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.expert-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── 3-step how it works ─────────────────────────────────── */
.steps .head-wrap { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.steps h2 { font-size: clamp(26px,3.6vw,44px); }
.steps h2 em { font-style: italic; color: var(--rose-soft); }
.step {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 38px;
    align-items: start;
}
.step-text { align-self: center; }
.step-main { min-width: 0; }
/* Step 2: five style cards side by side in the right column. */
.style-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.style-card img { width: 100%; border-radius: 12px; border: 1px solid var(--line-soft); }
.step-pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: #fff; background: var(--lavender); padding: 6px 16px; border-radius: 100px; margin-bottom: 14px; }
.step-title { font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; font-size: clamp(19px,2.1vw,25px); line-height: 1.3; color: var(--plum); margin-bottom: 10px; }
.step-desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; max-width: 520px; margin-bottom: 24px; }
.step-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 720px; }
.step-photo figure { text-align: center; }
.step-photo img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 14px; border: 2px solid rgba(163,94,101,0.25); }
.step-photo figcaption { font-size: 12px; color: var(--muted); margin-top: 8px; }
.step-visual img { width: 100%; border-radius: 14px; border: 1px solid var(--line-soft); }
.step-form { max-width: 420px; background: #fff; border: 1px solid rgba(163,94,101,0.25); border-radius: 18px; padding: 24px; } 
.step-form .grp { margin-bottom: 18px; }
.step-form label { display: block; font-size: 15px; font-weight: 600; color: var(--rose-soft); margin-bottom: 3px; }
.step-form .hint { font-size: 11px; color: var(--faint); margin-bottom: 8px; }
.step-form .fakeinput { display: flex; align-items: center; gap: 10px; }
.step-form .fakeinput span { flex: 1; border: 1px solid var(--line); border-radius: 100px; padding: 11px 16px; font-size: 12px; color: var(--faint); }
.step-form .plus { width: 30px; height: 30px; border-radius: 50%; background: var(--lavender); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.step-form .form-cta { width: 100%; background: linear-gradient(135deg,#C98A92,#B5687A); color: #fff; border: none; border-radius: 100px; padding: 13px; font-size: 14px; font-weight: 600; }

/* ── Step 3 + "Pronto" merged container ──────────────────── */
.step-final { position: relative; overflow: hidden; grid-template-columns: 280px minmax(0,1fr) minmax(0,0.95fr); align-items: stretch; }
.step-final > .step-text, .step-final > .step-main { align-self: center; }
/* Plant lives in its own (3rd) column — never overlaps the form. */
/* Bleed the plant past the card's 36px padding on top/right/bottom so it
   reaches the container edges; keep the left gap from the form. The pronto
   (z-index 1) covers any bleed into the bottom zone. */
.step-plant { height: 100%; position: absolute; right: -310px; top:0; height: 380px;}
.pronto { grid-column: 1 / -1; position: relative; z-index: 1; text-align: center; margin: -15px -36px -36px; padding: 56px 36px 58px; background: linear-gradient(180deg,#F2E6E2,#E9D2D1); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.pronto h3 { font-family: var(--serif); font-size: clamp(28px,4vw,46px); color: var(--plum); margin-bottom: 16px; }
.pronto h3 em { font-style: italic; color: var(--rose-soft); }
.pronto p { font-size: 15px; color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.7; }
.pronto p strong { color: var(--plum); }

/* ── Phase B responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .problem { text-align: center;}
    .problem .eyebrow-line { text-align: center; font-size: 20px;}
    .problem h2 { font-size: 34px; }
    .problem .culpa { font-family: var(--serif); text-decoration: underline; font-size: 20px; color: black; margin-bottom: 10px; }
    .pain-grid {justify-content: center;}
    .pain-card {flex-wrap: wrap; min-width: 49%; flex: 1; justify-content: center;}
    .experts-grid { grid-template-columns: 1fr; max-width: 420px; }
    .compare-row { grid-template-columns: 1fr; gap: 10px; }
    .step-photos { grid-template-columns: repeat(2, 1fr); max-width: 360px; margin: 0 auto; }
    .step { grid-template-columns: 1fr; gap: 22px; padding: 26px 20px; }
    .step-text { align-self: start; }
    .style-cards { grid-template-columns: repeat(2, 1fr); }
    .step-plant { display: none; }
    .pronto { margin: 24px -20px -26px; padding: 44px 20px 46px; }
    .bestie-banner { padding: 0; background: none; border: none; width: 100%; margin: 0; margin-top: 20px;}
    .bestie-banner h3 { font-family: var(--serif); font-size: 50px; font-weight: 600; margin-bottom: 0px; line-height: 60px;}
    .bestie-banner h3 em{ color: var(--rose) }
    .bestie-banner p { font-size: 15px; opacity: 0.92; line-height: 1.7; max-width: 620px; margin: 0 auto; }
    .transition-divider {
        width: 70%;
        margin-bottom: 10px;
    }
    .colo-title { font-size: 60px;}
    .colo-divider { width: 60%; margin-bottom: 20px; }
    .colo-def { font-size: 18px; }
    .colo-def strong { color: var(--rose); font-weight: 600; }
    .experts .lead { color: black; font-family: var(--serif); font-size: 20px; line-height: 24px; margin-top: 15px !important; margin-bottom: 15px !important;}
}

/* ════════════════════════════════════════════════════════════
   PHASE C — conversion sections
   ════════════════════════════════════════════════════════════ */

/* ── Recommendations (pink, woman + app) ─────────────────── */
.reco { background: linear-gradient(160deg, #D89AA6, #C77E91); color: #fff; border-radius: 0 0 50% 50%/0 0 8% 8%; }
.reco-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 48px; align-items: center; }
.reco .eyebrow { color: #fff; background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
.reco h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(32px,4.4vw,56px); line-height: 1.05; margin-bottom: 22px; }
.reco h2 em { font-style: italic; color: #fff; opacity: 0.85; }
.reco p { font-size: 15px; line-height: 1.7; opacity: 0.92; margin-bottom: 22px; max-width: 460px; }
.reco .amiga { font-family: var(--serif); font-style: italic; font-size: clamp(18px,2vw,24px); opacity: 1; }
.reco-photo img { width: 100%; max-width: 420px; margin: 0 auto; filter: drop-shadow(0 24px 50px rgba(58,35,48,0.3));}

/* ── Manifesto / arc ─────────────────────────────────────── */
.manifesto { background: var(--cream); text-align: center; position: relative; overflow: hidden; padding: 110px 0; }
.manifesto::before, .manifesto::after {
    content: ''; position: absolute; left: 50%; top: 8%;
    transform: translateX(-50%);
    border: 1px solid rgba(163,94,101,0.25);
    border-radius: 50%;
    pointer-events: none;
}
.manifesto::before { width: 1100px; height: 1100px; }
.manifesto::after { width: 1460px; height: 1460px; top: 2%; }
.manifesto .inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.manifesto .vaidade { font-family: var(--serif); font-size: clamp(30px,4.6vw,54px); color: var(--plum); line-height: 1.15; margin-bottom: 30px; }
.manifesto .vaidade em { display: block; font-style: italic; color: var(--rose); }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 30px 0 56px; }
.chip { font-size: 12.5px; color: var(--rose); background: rgba(163,94,101,0.10); border: 1px solid rgba(163,94,101,0.2); padding: 9px 18px; border-radius: 100px; }
.manifesto .reveal { font-family: var(--serif); font-size: clamp(22px,2.8vw,32px); font-style: italic; color: var(--plum); line-height: 1.35; max-width: 620px; margin: 0 auto 40px; }
.manifesto .so { font-size: 12px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; }
.manifesto .simples { font-family: var(--serif); font-size: clamp(34px,5vw,60px); line-height: 1.12; color: var(--plum); }
.manifesto .simples .last { color: var(--rose); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { background: var(--blush); text-align: center; }
.testimonials h2 { font-size: clamp(28px,3.6vw,44px); margin-bottom: 12px; }
.testimonials .lead { margin: 0 auto 48px; }
.carousel { position: relative; }
.tcards { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 8px; scrollbar-width: none; cursor: grab; scroll-behavior: smooth; }
.tcards.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.tcards.dragging .tcard { pointer-events: none; }
.tcards::-webkit-scrollbar { display: none; }
.tcard {
    flex: 0 0 300px; scroll-snap-align: center;
    background: #fff; border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    box-shadow: 0 12px 36px rgba(163,94,101,0.10);
    padding: 18px; text-align: left;
    display: flex; flex-direction: column;
}
.tcard-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.tcard-avatar { width: 42px; height: 42px; border-radius: 50%; background: #E7DAD7; color: #B7A29E; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tcard-avatar svg { width: 26px; height: 26px; }
.tcard-id strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--plum); }
.tcard-id .age { font-weight: 400; color: var(--muted); font-size: 11.5px; }
.tcard-id .role { display: block; font-size: 11px; color: var(--muted); }
.tcard-id .handle { display: block; font-size: 11px; color: var(--rose); }
.tcard-quote { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--plum); line-height: 1.4; margin-bottom: 14px; }
.tcard-media { aspect-ratio: 9/13; background: var(--note); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--faint); font-size: 12px; margin-bottom: 14px; }
.tcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; background: var(--rose-soft); border-radius: 100px; padding: 7px 14px; }
.tcard-foot .stars { color: #F2C744; font-size: 12px; letter-spacing: 2px; }
.tcard-foot .ago { color: rgba(255,255,255,0.85); font-size: 10.5px; }

.carousel-controls { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.dots { display: flex; gap: 8px; flex: 1; }
.dots button { width: 26px; height: 6px; border-radius: 100px; border: none; padding: 0; background: rgba(163,94,101,0.25); cursor: pointer; transition: background .2s, width .2s; }
.dots button.active { background: var(--rose); width: 34px; }
.carousel-controls .tnote { flex: 0 1 auto; text-align: center; font-size: 13px; color: var(--muted); margin: 0; }
.drag-hint { flex: 1; text-align: right; font-size: 12px; color: var(--faint); white-space: nowrap; }

/* ── CTA banner (dark mauve) ─────────────────────────────── */
.cta-banner { background: var(--magenta-deep); color: #fff; text-align: center; }
.cta-banner .eyebrow { color: #fff; background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(28px,4vw,48px); font-weight: 600; line-height: 1.2; max-width: 760px; margin: 0 auto 12px; }
.cta-banner h2 em { font-style: italic; opacity: 0.9; }

/* ── Pricing (deep rose band) ────────────────────────────── */
.pricing { background: var(--magenta); color: #fff; }
.pricing .head-wrap { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.pricing .head-wrap p { font-size: 15px; opacity: 0.92; line-height: 1.7; }
.pricing-pill { background-color: #EBDFD7; width: fit-content; border-radius: 30px; padding: 2px 20px;}
.pricing-wrap { color: black; display: flex; flex-direction: column; gap: 10px; align-items: center;}
.plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; max-width: 760px; margin: 0 auto; align-items: stretch; }
.plan { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; display: flex; flex-direction: column; }
.plan.featured { background: linear-gradient(180deg,#F6D9D7,#E5BCBB); box-shadow: 0 24px 60px rgba(46,26,36,0.3); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--plum-dark); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.plan h3 { font-family: var(--sans); font-weight: 700; font-size: 26px; letter-spacing: -0.01em; color: var(--plum); margin-bottom: 4px; }
.plan .plan-sub { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.plan-features { list-style: none; margin-bottom: 22px; flex: 1 1 auto; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink); padding: 6px 0; }
.plan-features li svg { width: 16px; height: 16px; color: var(--rose); flex-shrink: 0; margin-top: 3px; }
.plan-features li.hl { color: var(--rose); font-weight: 600; }
.plan-price { font-family: var(--sans); font-size: 38px; font-weight: 700; color: var(--plum); line-height: 1; margin-bottom: 6px; }
.plan-price .orig { display: block; font-size: 16px; font-weight: 500; color: var(--faint); text-decoration: line-through; margin-bottom: 2px; }
.plan-install { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.plan-install strong { color: var(--rose); }
.plan-compose { font-size: 10.5px; color: var(--faint); line-height: 1.5; margin: 14px 0; }
.plan form { margin: 0; }
.plan .btn { width: 100%; }

/* coupon row */
.coupon-box { max-width: 520px; margin: 36px auto 0; text-align: center; }
.coupon-box form { display: flex; gap: 10px; justify-content: center; }
.coupon-box input { flex: 1; max-width: 320px; border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); color: #fff; border-radius: 100px; padding: 13px 20px; font-family: var(--sans); font-size: 14px; }
.coupon-box input::placeholder { color: rgba(255,255,255,0.6); }
.coupon-box .btn-light { padding: 13px 24px; }
.coupon-box .btn.is-loading { opacity: 0.6; pointer-events: none; }
.coupon-feedback { margin-top: 12px; font-size: 13px; font-weight: 500; }
.coupon-feedback.ok { color: #DFF5D8; }
.coupon-feedback.err { color: #FFD9D0; }

/* coupon detail accordion — light itemized breakdown (matches Figma) */
.coupon-details { max-width: 760px; margin: 26px auto 0; }
.coupon-details .acc-item { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); border-radius: 100px; margin-bottom: 12px; transition: border-radius .25s; }
.coupon-details .acc-item.open { border-radius: 20px; }
.coupon-details .acc-head { padding: 16px 24px; }
.coupon-details .acc-title { color: #fff; font-weight: 600; }
.coupon-details .acc-icon { color: #fff; }
.coupon-details .acc-body { padding: 0; }
.break-wrap { padding: 4px 14px 18px; display: grid; gap: 14px; }
.break-card { background: #FBF7F4; border: 1px solid var(--line-soft); border-radius: 16px; padding: 20px 22px; color: var(--ink); }
.break-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.break-head .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose); background: rgba(163,94,101,0.10); border: 1px solid rgba(163,94,101,0.2); padding: 5px 12px; border-radius: 100px; }
.break-head .off { font-size: 12px; font-weight: 700; color: #2E7D32; }
.coupon-details .break-coupon { font-size: 13px; color: var(--muted); margin: 0 0 12px; padding: 0; }
.break-coupon strong { color: var(--plum); }
.break-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.break-row span:first-child { color: var(--muted); }
.break-row.total { border-bottom: none; font-weight: 700; font-size: 17px; color: var(--plum); padding-top: 14px; }
.break-row.total span:first-child { color: var(--plum); }
.break-row .disc { display: inline-flex; align-items: center; gap: 6px; color: #2E7D32; font-weight: 600; }
.break-row .disc::before { content: '✓'; }
.break-notes { background: #FBF7F4; border: 1px solid var(--line-soft); border-radius: 16px; padding: 18px 22px; }
.break-notes h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.coupon-details .break-notes p { font-size: 12.5px; color: var(--muted); line-height: 1.6; padding: 0 0 0 16px; position: relative; margin-bottom: 8px; }
.break-notes p::before { content: ''; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--rose-soft); }
.break-notes p strong { color: var(--plum); }
.coupon-details .break-notes p:last-child { margin-bottom: 0; }

/* ── Launch program (dark card) ──────────────────────────── */
.launch { background: var(--blush); }
.launch-card { background: var(--plum-dark); color: #fff; border-radius: var(--radius-lg); padding: 14px; max-width: 720px; margin: 0 auto; text-align: center; }
.launch-inner { background: linear-gradient(160deg,#E7AEB2,#D78E9B); border-radius: 20px; padding: 44px 36px; color: var(--plum); }
.launch .topbar { font-size: 12px; letter-spacing: 0.14em; color: rgba(255,255,255,0.85); padding: 12px; }
.launch .topbar strong { color: #fff; }
.launch-inner .badge { display:inline-block; font-size: 14px; letter-spacing: 0.12em; background: rgba(58,35,48,0.15); color: var(--plum); padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.launch-inner h3 { font-family: var(--serif); font-style: italic; font-size: clamp(26px,3.4vw,40px); margin-bottom: 14px; }
.launch-inner p { font-size: 14px; line-height: 1.7; max-width: 520px; margin: 0 auto 12px; }
.launch-inner .strong-line { font-weight: 700; }
.launch-inner .btn { margin-top: 12px; background: var(--plum-dark); color: #fff; }
.launch-inner .fine { font-size: 11px; opacity: 0.8; margin-top: 16px; background: rgba(255,255,255,0.4); border-radius: 10px; padding: 10px; }

/* ── Escolha (a/b) ───────────────────────────────────────── */
.escolha { background: var(--cream); text-align: center; }
.escolha .eyebrow { }
.escolha h2 { font-size: clamp(24px,3vw,38px); margin-bottom: 40px; }
.escolha-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; margin: 0 auto; }
.escolha-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px 30px; text-align: left; }
.escolha-card.b { background: linear-gradient(180deg,#F6D9D7,#EFC9C7); }
.escolha-card h3 { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--plum); margin-bottom: 12px; }
.escolha-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--blush); }
.faq .head-wrap { text-align: center; max-width: 700px; margin: 0 auto 44px; }
.faq h2 { font-size: clamp(28px,3.8vw,46px); margin-bottom: 12px; }
.faq .accordion { max-width: 820px; }
.faq .acc-item { background: var(--note); border: 1px solid var(--note-line); border-radius: 14px; margin-bottom: 12px; }
.faq .acc-head { padding: 20px 24px; }
.faq .acc-title { font-weight: 600; }
.faq .acc-body p { padding: 0 24px 22px; }
.faq .acc-body ul { padding: 0 24px 22px 44px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── Contact ─────────────────────────────────────────────── */
.contact { background: var(--cream); text-align: center; padding: 70px 0; }
.contact h3 { font-family: var(--serif); font-style: italic; font-size: clamp(24px,3vw,36px); color: var(--rose); margin-bottom: 14px; }
.contact p { font-size: 15px; color: var(--muted); }
.contact a { color: var(--rose); font-weight: 600; }

/* ── Guarantee ───────────────────────────────────────────── */
.guarantee { background: var(--blush); padding: 0 0 90px; }
.guar-card { position: relative; background: linear-gradient(95deg,#AE696B 0%,#B87173 60%,#BA7371 100%); color: #fff; border-radius: var(--radius-lg); max-width: 900px; margin: 0 auto; padding: 38px 50px; display: flex; align-items: center; gap: 16px; }
/* Large desaturated disc that pokes out of the card's top-left (not clipped). */
.guar-card::before { content: ''; position: absolute; left: -25px; top: -10px; width: 250px; height: 250px; border-radius: 50%; background: rgba(21,21,21,0.23); pointer-events: none; backdrop-filter: blur(5px);}
.guar-7 { position: relative; z-index: 1; font-family: var(--serif); font-weight: 600; font-size: clamp(150px,18vw,215px); line-height: 0.7; flex-shrink: 0; width: 166px; text-align: center; transform: translate(-32px, -32px); }
.guar-body { position: relative; z-index: 1; }
.guar-headline { font-family: var(--serif); font-size: clamp(21px,2.3vw,27px); line-height: 1.32; margin-bottom: 14px; }
.guar-headline strong { font-weight: 700; }
.guar-headline em { font-style: italic; font-weight: 500; opacity: 0.94; }
.guar-sub { font-size: 13px; opacity: 0.9; margin-bottom: 14px; }
.guar-trust { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; opacity: 0.88; }
.guar-trust span { display: inline-flex; align-items: center; gap: 6px; }
.guar-trust svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Phase C responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .reco-grid { grid-template-columns: 1fr; text-align: center; }
    .reco p, .reco h2 { max-width: none; }
    .reco-photo { order: -1; width: 90%;}
    .reco { border-radius: 0 0 16% 16%/0 0 4% 4%; }
    .plans { grid-template-columns: 1fr; max-width: 420px; }
    .escolha-grid { grid-template-columns: 1fr; max-width: 440px; }
    .manifesto::before, .manifesto::after { display: none; }
    .tcard { flex-basis: 80%; }
    .carousel-controls { flex-direction: column; gap: 12px; }
    .dots, .drag-hint { flex: none; text-align: center; }
    .guar-card { flex-direction: column; text-align: center; padding: 40px 26px; gap: 6px; }
    .guar-card::before { left: 50%; top: 72px; transform: translate(-50%,-50%); width: 170px; height: 170px; }
    .guar-7 { width: auto; font-size: 118px; line-height: 0.8; transform: translateY(-42px); }
    .guar-trust { justify-content: center; }
    .coupon-box form { flex-direction: column; align-items: center; }
    .coupon-box input { max-width: none; width: 100%; }
    .pricing-wrap { align-items: flex-start;}
    .pricing-pill { background: none; width: fit-content; color: white; padding: 0;}
    .pricing-pill::before {
        content: "";          /* The bullet character (or any emoji/symbol) */
        display: inline-block;
        color: blue;           /* Easily style the bullet color */
        font-weight: bold;
        width: 8px;
        height: 8px;
        background-color: #ffffffbb;
        border-radius: 50%;
        margin-right: 15px;
    }
}
