:root {
    --bg-1: #010402;
    --bg-2: #041618;
    --bg-3: #121A22;
    --grad-dark: linear-gradient(115deg, #072021, #010402);
    --grad-green: linear-gradient(135deg, #17CC94, #1DA57B);
    --green-1: #1DA57B;
    --green-2: #14B382;
    --green-3: #17CC94;
    --green-soft: rgba(23, 204, 148, 0.12);
    --white: #FFFFFF;
    --ink: #0B1613;
    --ink-soft: #56655F;
    --paper: #F4F8F6;
    --line: #E0E7E4;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 999px;
    --container: 1100px;
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--ink);
    line-height: 1.6;
    background: var(--white);
}

a { color: inherit; }

:focus-visible {
    outline: 2px solid var(--green-3);
    outline-offset: 3px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container.narrow { max-width: 760px; }
.centered { text-align: center; }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
}

/* Pills / badges */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pill-green {
    background: rgba(23, 204, 148, 0.14);
    color: var(--green-3);
    border: 1px solid rgba(23, 204, 148, 0.35);
}

.pill-pink-soft {
    background: var(--green-soft);
    color: var(--green-1);
}

.pill-yellow {
    background: rgba(255, 184, 76, 0.14);
    color: #ffb84c;
    border: 1px solid rgba(255, 184, 76, 0.35);
}

.redirect-note {
    margin-top: 14px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.tag {
    display: inline-block;
    background: #EEF3F1;
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, background 0.15s ease;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .btn { transition: none; }
}

.btn-pink {
    background: var(--grad-green);
    color: var(--bg-1);
    border-radius: var(--radius-sm);
    padding: 18px 42px;
    font-size: 1rem;
    box-shadow: 0 14px 30px rgba(23, 204, 148, 0.3);
}

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

.btn-green {
    background: var(--green-1);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 17px 32px;
    font-size: 0.98rem;
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.btn-green:hover { background: var(--green-2); }

.btn small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    opacity: 0.9;
    margin-top: 3px;
}

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

/* Hero */
.hero {
    background: var(--grad-dark);
    color: var(--white);
    padding: 80px 0 56px;
    text-align: center;
}

.hero .pill { margin-bottom: 22px; }

.eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw + 1rem, 3.4rem);
    max-width: 780px;
    margin: 0 auto 24px;
}

.hero h1 .accent { color: var(--green-3); }

.hero-subheader {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-subheader strong { color: var(--white); }

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row .check { color: var(--green-3); font-weight: 800; }
.trust-row .stars { color: #E8B84B; letter-spacing: 1px; }

.placeholder-inline {
    color: var(--green-3);
    font-weight: 700;
}

/* Section base */
.section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.section-light { background: var(--paper); }
.section-white { background: var(--white); }

.section-dark {
    background: var(--grad-dark);
    color: var(--white);
}

.section-title {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.section-title .pill { margin-bottom: 18px; }

.section-title h2 {
    font-size: clamp(1.7rem, 2.4vw + 1rem, 2.3rem);
    color: var(--ink);
    margin-bottom: 14px;
}

.section-dark .section-title h2 { color: var(--white); }

.section-title p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.section-dark .section-title p { color: rgba(255, 255, 255, 0.7); }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
}

.testimonial-card .stars {
    display: block;
    color: #E8B84B;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin-bottom: 14px;
}

.testimonial-author {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
}

/* Steps grid (cards) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 8px 24px rgba(4, 22, 24, 0.05);
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.step-icon.pink { background: var(--green-3); }
.step-icon.green { background: var(--green-1); }

.step-badge {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green-1);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--ink);
}

.step-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin-bottom: 14px;
}

.step-card .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Editorial paragraphs (verbatim copy blocks) */
.section-editorial {
    max-width: 760px;
    margin: 0 auto;
}

.section-editorial .lead {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-editorial p {
    font-size: 1.03rem;
    margin-bottom: 16px;
}

.section-light .section-editorial p,
.section-white .section-editorial p {
    color: #3B4A45;
}

.section-dark .section-editorial p {
    color: rgba(255, 255, 255, 0.8);
}

.section-editorial blockquote {
    border-left: 3px solid var(--green-3);
    padding: 6px 22px;
    margin: 24px 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.section-light .section-editorial blockquote,
.section-white .section-editorial blockquote {
    color: var(--ink);
}

.section-dark .section-editorial blockquote {
    color: var(--white);
}

.callout {
    border-radius: var(--radius-md);
    padding: 18px 22px;
    font-size: 1rem;
    margin: 20px 0;
}

.section-light .callout,
.section-white .callout {
    background: var(--green-soft);
    color: var(--ink);
}

.section-dark .callout {
    background: var(--bg-3);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Showcase (two-column: illustration + content) */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.showcase-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-stack {
    position: relative;
    width: 70%;
    aspect-ratio: 3 / 4;
}

.doc-back,
.doc-front {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(4, 22, 24, 0.18);
}

.doc-back {
    background: var(--grad-dark);
    transform: rotate(-9deg);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.doc-back span {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.doc-front {
    background: var(--white);
    border: 1px solid var(--line);
    transform: rotate(5deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 8px;
}

.doc-front-bar {
    width: 40px;
    height: 5px;
    border-radius: var(--radius-sm);
    background: var(--grad-green);
    margin-bottom: 10px;
}

.doc-front strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.3;
}

.doc-front small {
    font-size: 0.75rem;
    color: var(--ink-soft);
}

.float-pill {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(4, 22, 24, 0.1);
    z-index: 2;
}

.fp-1 { top: 6%; left: 0; }
.fp-2 { top: 46%; right: 2%; }
.fp-3 { bottom: 10%; left: 4%; }

.showcase-squiggle {
    position: absolute;
    top: 2%;
    left: 30%;
    width: 46px;
    height: 46px;
    z-index: 2;
}

.accent-pink { color: var(--green-1); }

.showcase-content .pill { margin-bottom: 16px; }

.showcase-quote {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 16px 0;
}

.showcase-lead {
    font-size: 1.02rem;
    color: var(--ink-soft);
    margin-bottom: 22px;
}

.showcase-content .btn { margin: 0; }

.benefit-rows {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--green-soft);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.96rem;
    color: var(--ink);
}

.benefit-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--green-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .showcase-content { order: 1; }
    .showcase-visual { order: 2; width: 100%; max-width: 340px; margin: 0 auto; }
}

/* Plain list (what you'll understand) */
.plain-list {
    list-style: none;
    max-width: 640px;
    margin: 0 auto 20px;
    display: grid;
    gap: 10px;
}

.plain-list li {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.98rem;
}

/* Fit grid (para quem é esse dia) */
.fit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 26px;
}

.fit-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--green-3);
    border-radius: var(--radius-md);
    color: var(--green-3);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.fit-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Intake checklist (para quem é) */
.intake-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
}

.intake-list li {
    position: relative;
    padding-left: 30px;
    font-size: 0.98rem;
    color: var(--ink);
}

.intake-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--green-3);
    border-radius: 4px;
}

.stamp {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green-1);
    border: 2px solid var(--green-3);
    border-radius: 4px;
    padding: 6px 14px;
}

.trust-box {
    background: var(--bg-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px 34px;
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.trust-box h3 {
    color: var(--green-3);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.trust-box p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 22px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-toggle {
    color: var(--green-1);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .faq-toggle { transition: none; }
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 22px;
}

@media (prefers-reduced-motion: reduce) {
    .faq-answer { transition: none; }
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-answer p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.placeholder {
    background: var(--green-soft);
    color: var(--green-1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* Bio card */
.bio-section {
    background: var(--grad-dark);
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: 90px;
}

.bio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bio-card h2 {
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.bio-card .bio-name {
    color: var(--green-1);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    display: block;
    margin-bottom: 14px;
}

.bio-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.bio-card strong { color: var(--ink); }

.bio-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--green-soft), var(--paper));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

.bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.bio-photo.no-image::after { content: "🦷"; }
.bio-photo.no-image img { display: none; }

/* Lead modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 4, 2, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.modal-overlay.open { display: flex; }

.modal-box {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink-soft);
    cursor: pointer;
}

.modal-progress {
    height: 4px;
    background: var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 24px;
}

.modal-progress-fill {
    height: 100%;
    width: 25%;
    background: var(--grad-green);
    transition: width 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
    .modal-progress-fill { transition: none; }
}

.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-step .eyebrow { margin-bottom: 8px; }

.modal-step h3 {
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 18px;
}

.modal-step input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--ink);
    margin-bottom: 18px;
}

.modal-step input:focus {
    outline: none;
    border-color: var(--green-3);
}

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

.period-option {
    padding: 22px 12px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    text-align: center;
}

.period-option:hover,
.period-option.selected {
    border-color: var(--green-3);
    background: var(--green-soft);
    color: var(--green-1);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.modal-actions .btn {
    width: 100%;
    padding: 15px 24px;
    font-size: 0.92rem;
}

.modal-back {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--ink-soft);
    cursor: pointer;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-1);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 32px 0;
    font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 860px) {
    .steps-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .fit-grid { grid-template-columns: 1fr; }
    .bio-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bio-photo { max-width: 220px; margin: 0 auto; }
}

@media (max-width: 560px) {
    .btn-pink { width: 100%; padding: 18px 24px; }
    .trust-row { flex-direction: column; gap: 10px; align-items: center; }
}
