/* ═══════════════════════════════════════════════════════════
   Baby Bet Landing Page — Stylesheet
   Estética: fofinha, suave, quente, mobile-first
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Custom Properties ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream:       #FFF8F0;
    --cream-dark:  #F5EDE0;
    --rose:        #FFB3C6;
    --rose-mid:    #FF8FAB;
    --rose-dark:   #E85578;
    --mint:        #B5E8D5;
    --mint-mid:    #6EE7B7;
    --mint-dark:   #34A47A;
    --lavender:    #E8D5F5;
    --peach:       #FFD4B8;
    --gold:        #F7C59F;
    --dark:        #2D1B2E;
    --mid:         #6B4E5A;
    --light:       #9E7E8A;
    --white:       #FFFFFF;
    --card-bg:     rgba(255, 255, 255, 0.85);
    --shadow-sm:   0 4px 16px rgba(100, 50, 80, 0.08);
    --shadow-md:   0 8px 32px rgba(100, 50, 80, 0.12);
    --shadow-lg:   0 20px 60px rgba(100, 50, 80, 0.15);
    --border:      rgba(255, 179, 198, 0.25);
    --radius-sm:   12px;
    --radius-md:   20px;
    --radius-lg:   32px;
    --font-body:   'Inter', system-ui, sans-serif;
    --font-title:  'Pacifico', cursive;
    --transition:  all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Typography helpers ─────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { color: var(--mid); }
a  { text-decoration: none; color: inherit; }

.gradient-text {
    background: linear-gradient(135deg, var(--rose-dark) 0%, #C94B8C 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-header-left { text-align: left; }
.section-header-left p { margin: 0; margin-top: 12px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-dark), #C94B8C);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(232, 85, 120, 0.35);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 85, 120, 0.45);
}

.btn-ghost {
    display: inline-block;
    color: var(--mid);
    padding: 14px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-dark); }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar-scrolled {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav-logo-icon { font-size: 1.4rem; }
.nav-logo-text {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mid);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--rose-dark); }

.nav-cta {
    background: linear-gradient(135deg, var(--rose-dark), #C94B8C);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232, 85, 120, 0.4); }

.nav-burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--dark);
    margin-left: auto;
}

.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    padding: 80px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 90;
    box-shadow: var(--shadow-md);
}
.mobile-menu.hidden { display: none; }
.mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--mid);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-link-cta {
    background: linear-gradient(135deg, var(--rose-dark), #C94B8C);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-align: center;
    border-bottom: none;
    margin-top: 8px;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: linear-gradient(160deg, #FFF0F5 0%, var(--cream) 40%, #F0FAF6 100%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: var(--rose);
    top: -100px; left: -100px;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: var(--mint);
    bottom: -80px; right: -80px;
}
.hero-blob-3 {
    width: 300px; height: 300px;
    background: var(--lavender);
    top: 40%; left: 40%;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 179, 198, 0.25);
    border: 1px solid var(--rose);
    color: var(--rose-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--mid);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}
.proof-avatars {
    display: flex;
    gap: 4px;
    font-size: 1.3rem;
}
.hero-social-proof p {
    font-size: 0.85rem;
    color: var(--light);
}

/* ── Mockup phone ───────────────────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-phone {
    width: 280px;
    background: var(--dark);
    border-radius: 36px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.mockup-screen {
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    padding: 16px;
}

.mockup-header {
    background: linear-gradient(135deg, #FFB3C6, #C9A8E8);
    border-radius: 16px;
    padding: 10px 14px;
    margin-bottom: 12px;
}
.mockup-logo { font-size: 0.75rem; font-weight: 700; color: white; opacity: 0.9; margin-bottom: 2px; }
.mockup-title { font-family: var(--font-title); font-size: 0.9rem; color: white; }

.mockup-countdown {
    background: white;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
}
.mockup-cd-label { font-size: 0.6rem; color: var(--light); margin-bottom: 6px; }
.mockup-cd-grid  { display: flex; gap: 4px; align-items: center; justify-content: center; }
.mockup-cd-unit  { text-align: center; }
.cd-num { display: block; font-weight: 700; font-size: 1rem; color: var(--dark); }
.cd-lbl { font-size: 0.45rem; color: var(--light); }
.mockup-cd-sep  { font-weight: 700; color: var(--mid); font-size: 1rem; line-height: 1; margin-bottom: 8px; }

.mockup-scoreboard {
    background: white;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
}
.mockup-score-label { font-size: 0.6rem; color: var(--light); margin-bottom: 6px; }
.mockup-score-bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}
.mockup-score-a { background: var(--mint-mid); }
.mockup-score-b { flex: 1; background: var(--rose); }
.mockup-score-pcts { display: flex; justify-content: space-between; }
.pct-a { font-size: 0.55rem; font-weight: 600; color: var(--mint-dark); }
.pct-b { font-size: 0.55rem; font-weight: 600; color: var(--rose-dark); }

.mockup-cards { display: flex; gap: 8px; }
.mockup-card-a, .mockup-card-b {
    flex: 1; text-align: center; border-radius: 10px;
    padding: 8px 4px; font-size: 1rem; font-weight: 700;
}
.mockup-card-a { background: rgba(110, 231, 183, 0.2); border: 2px solid var(--mint-mid); }
.mockup-card-b { background: rgba(201, 168, 232, 0.2); border: 2px solid #C9A8E8; }
.mockup-card-a small, .mockup-card-b small { font-size: 0.5rem; display: block; margin-top: 2px; font-weight: 500; }

.mockup-home-bar {
    width: 60px; height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* Floating badges */
.float-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}
.float-badge-1 { top: 10%;  right: -10%; animation-delay: 0s; }
.float-badge-2 { top: 45%;  right: -18%; animation-delay: 1s; }
.float-badge-3 { bottom: 15%; right: -8%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ── How it works ───────────────────────────────────────── */
.how-it-works { background: var(--white); }

.steps-grid {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.step-card {
    flex: 1;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--rose-dark), #C94B8C);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.step-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-card p  { font-size: 0.9rem; }

.step-arrow {
    font-size: 2rem;
    color: var(--rose);
    flex-shrink: 0;
}

.step-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.step-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, #FFF0F5, #F0FAF6);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.step-detail-icon { font-size: 1.8rem; flex-shrink: 0; }
.step-detail-item strong { display: block; margin-bottom: 4px; color: var(--dark); font-size: 0.95rem; }
.step-detail-item p { font-size: 0.85rem; }

/* ── Features ───────────────────────────────────────────── */
.features {
    background: linear-gradient(160deg, #FFF0F5 0%, var(--cream) 50%, #F0FAF6 100%);
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose);
}
.feature-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.feature-card h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--dark); }
.feature-card p  { font-size: 0.82rem; line-height: 1.5; }

/* ── Product Preview ────────────────────────────────────── */
.product-preview { background: var(--white); }

.preview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preview-checklist {
    list-style: none;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.preview-checklist li { font-size: 0.95rem; color: var(--mid); }
.preview-checklist li strong { color: var(--dark); }

.preview-screens {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.preview-screen {
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-md);
}
.preview-screen-main {
    flex: 1;
    background: var(--cream);
    border: 1px solid var(--border);
}
.preview-screen-secondary {
    width: 130px;
    background: white;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 12px;
}

.ps-header { background: linear-gradient(135deg, #FFB3C6, #C9A8E8); border-radius: 12px; padding: 12px; margin-bottom: 12px; }
.ps-logo { font-size: 0.7rem; font-weight: 700; color: white; margin-bottom: 2px; }
.ps-title { font-family: var(--font-title); font-size: 1rem; color: white; }
.ps-subtitle { font-size: 0.6rem; color: rgba(255,255,255,0.8); margin-top: 2px; }
.ps-countdown { background: white; border-radius: 10px; padding: 8px 10px; margin-bottom: 10px; }
.ps-cd-label { font-size: 0.62rem; color: var(--mid); }
.ps-rules-btn { display: inline-block; font-size: 0.55rem; color: var(--rose-dark); border: 1px solid var(--rose); border-radius: 50px; padding: 3px 8px; margin-top: 4px; }
.ps-scorebar { display: flex; height: 10px; border-radius: 5px; overflow: hidden; margin-bottom: 4px; }
.ps-bar-a { background: var(--mint-mid); }
.ps-bar-b { flex: 1; background: var(--rose); }
.ps-score-labels { display: flex; justify-content: space-between; margin-bottom: 10px; }
.ps-score-labels span { font-size: 0.58rem; color: var(--mid); font-weight: 600; }
.ps-cards { display: flex; gap: 8px; }
.ps-card-a, .ps-card-b { flex: 1; text-align: center; padding: 8px 6px; border-radius: 10px; font-size: 1rem; font-weight: 700; }
.ps-card-a { background: rgba(110,231,183,0.2); border: 2px solid var(--mint-mid); }
.ps-card-b { background: rgba(201,168,232,0.2); border: 2px solid #C9A8E8; }
.ps-label-top { font-size: 0.65rem; color: var(--mid); text-align: center; font-weight: 600; }
.ps-label-bot { font-size: 0.6rem; color: var(--light); text-align: center; }
.ps-theme-a { width: 80px; height: 40px; background: linear-gradient(135deg, var(--mint-mid), var(--mint)); border-radius: 8px; }
.ps-theme-b { width: 80px; height: 40px; background: linear-gradient(135deg, var(--rose), #C9A8E8); border-radius: 8px; }

/* ── Prizes ─────────────────────────────────────────────── */
.prizes-section { background: linear-gradient(160deg, #F0FAF6 0%, var(--cream) 100%); }

.prizes-callout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
}

.callout-text h3 { font-size: 1.3rem; margin-bottom: 12px; }
.callout-text p { font-size: 0.95rem; margin-bottom: 12px; }
.callout-text p:last-child { margin-bottom: 0; }

.callout-math {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.math-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}
.math-row-revenue { background: rgba(110, 231, 183, 0.15); }
.math-row-cost    { background: rgba(255, 179, 198, 0.15); }
.math-row-profit  { background: linear-gradient(135deg, rgba(110,231,183,0.3), rgba(201,168,232,0.2)); }
.math-row strong  { font-size: 1rem; font-weight: 700; color: var(--dark); }
.math-badge {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--mint-dark);
    background: rgba(110, 231, 183, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
}

.prizes-table-wrap { overflow-x: auto; }
.prizes-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.prizes-table th {
    background: linear-gradient(135deg, var(--rose-dark), #C94B8C);
    color: white;
    padding: 14px 20px;
    text-align: left;
    font-size: 0.9rem;
}
.prizes-table td {
    padding: 14px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    color: var(--mid);
}
.prizes-table td:first-child { font-weight: 700; color: var(--dark); }
.prizes-table tr:last-child td { border-bottom: none; }
.prizes-table tr:hover td { background: var(--cream); }
.prizes-note { font-size: 0.8rem; color: var(--light); margin-top: 12px; text-align: center; }

/* ── Plans ──────────────────────────────────────────────── */
.plans { background: var(--white); }

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 820px;
    margin: 0 auto 32px;
}

.plan-card {
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card-premium {
    background: linear-gradient(160deg, #FFF0F5, #F5F0FF);
    border-color: var(--rose);
}

.plan-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-dark), #C94B8C);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.plan-tag-premium {
    background: linear-gradient(135deg, #8B5CF6, #C94B8C);
}

.plan-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.plan-name { font-size: 1.3rem; margin-bottom: 4px; }
.plan-period { font-size: 0.9rem; color: var(--light); margin-bottom: 16px; }

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}
.plan-currency { font-size: 1.2rem; font-weight: 600; color: var(--mid); }
.plan-amount { font-size: 3.5rem; font-weight: 800; color: var(--dark); line-height: 1; }

.plan-desc { font-size: 0.85rem; color: var(--light); margin-bottom: 24px; }

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.plan-features li { font-size: 0.88rem; color: var(--mid); }

.btn-plan {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--rose-dark), #C94B8C);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-plan:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,85,120,0.4); }
.btn-plan-premium {
    background: linear-gradient(135deg, #8B5CF6, #C94B8C);
}
.btn-plan-premium:hover { box-shadow: 0 6px 20px rgba(139,92,246,0.4); }

.plans-disclaimer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.plans-disclaimer p { font-size: 0.88rem; color: var(--light); }
.plans-disclaimer a { color: var(--rose-dark); text-decoration: underline; }

/* ── Interest Form ──────────────────────────────────────── */
.interest-section {
    background: linear-gradient(160deg, #FFF0F5 0%, #F0FAF6 100%);
}

.interest-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.interest-text h2 { margin-bottom: 16px; }
.interest-text p   { font-size: 0.95rem; margin-bottom: 24px; }

.interest-guarantee {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    border: 1px solid var(--border);
}
.interest-guarantee span { font-size: 1.8rem; flex-shrink: 0; }
.interest-guarantee p { font-size: 0.85rem; margin: 0; }

.interest-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-row { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid rgba(200, 160, 180, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rose-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.15);
}

.slug-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(200, 160, 180, 0.3);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--cream);
    transition: var(--transition);
}
.slug-input-wrap:focus-within {
    border-color: var(--rose-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.15);
}
.slug-input-wrap input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
}
.slug-suffix {
    background: rgba(255, 179, 198, 0.2);
    padding: 12px 14px;
    font-size: 0.82rem;
    color: var(--mid);
    font-weight: 500;
    white-space: nowrap;
    border-left: 1px solid rgba(200, 160, 180, 0.3);
}

.btn-form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 4px;
}

.form-lgpd {
    font-size: 0.75rem;
    color: var(--light);
    text-align: center;
    margin-top: 12px;
}
.form-lgpd a { color: var(--rose-dark); text-decoration: underline; }

.form-success {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
}
.form-success.hidden { display: none; }
.interest-form.hidden { display: none; }
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { font-size: 0.95rem; margin-bottom: 8px; }
.success-note { font-size: 0.82rem; }
.success-note a { color: var(--rose-dark); text-decoration: underline; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-section { background: var(--white); }

.faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--rose); }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    background: var(--cream);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    gap: 12px;
    transition: var(--transition);
}
.faq-q:hover { background: rgba(255, 179, 198, 0.1); }
.faq-item.open .faq-q { background: rgba(255, 179, 198, 0.15); }

.faq-arrow {
    font-size: 0.7rem;
    color: var(--rose-dark);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.6;
    padding: 0 24px;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 16px 24px 20px;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    background: var(--dark);
    padding: 60px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--rose);
    margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.footer-links h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 16px; }
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--rose); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ── Utilities ──────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hero-inner       { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-subtitle    { margin: 0 auto 32px; }
    .hero-actions     { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero-visual      { justify-content: center; }
    .float-badge      { display: none; }

    .steps-grid       { flex-direction: column; }
    .step-arrow       { transform: rotate(90deg); }
    .step-detail      { grid-template-columns: 1fr; }

    .features-grid    { grid-template-columns: repeat(2, 1fr); }

    .preview-inner    { grid-template-columns: 1fr; gap: 40px; }
    .preview-screens  { justify-content: center; }

    .prizes-callout   { grid-template-columns: 1fr; }
    .callout-math     { min-width: auto; }

    .plans-grid       { grid-template-columns: 1fr; max-width: 420px; }

    .interest-inner   { grid-template-columns: 1fr; gap: 40px; }

    .footer-inner     { grid-template-columns: 1fr; gap: 32px; }
    .nav-links        { display: none; }
    .nav-cta          { display: none; }
    .nav-burger       { display: block; }
}

@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .form-row-2    { grid-template-columns: 1fr; }
    .interest-form { padding: 24px 20px; }
    .prizes-callout { padding: 24px 20px; }
    .mockup-phone  { width: 240px; }
}

@media (max-width: 400px) {
    .features-grid { grid-template-columns: 1fr; }
    h2 { font-size: 1.6rem; }
}

/* ── Modais Legais ──────────────────────────────────────── */
body.modal-open { overflow: hidden; }

.legal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(45, 27, 46, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.legal-overlay.open {
    display: flex;
    opacity: 1;
}

.legal-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: modal-in 0.3s ease;
}

@keyframes modal-in {
    from { transform: translateY(24px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

.legal-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    background: linear-gradient(135deg, #FFF0F5, #F8F0FF);
}
.legal-modal-header h2 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 0;
}

.legal-modal-close {
    background: rgba(255, 179, 198, 0.25);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    line-height: 1;
}
.legal-modal-close:hover {
    background: var(--rose);
    color: white;
}

.legal-modal-body {
    overflow-y: auto;
    padding: 28px;
    flex: 1;
    scroll-behavior: smooth;
}

/* typography inside modals */
.legal-modal-body h3 {
    font-size: 1rem;
    color: var(--dark);
    margin: 24px 0 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(255, 179, 198, 0.4);
}
.legal-modal-body h3:first-of-type { margin-top: 0; }

.legal-modal-body p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 10px;
}
.legal-modal-body p:last-child { margin-bottom: 0; }

.legal-modal-body ul {
    margin: 8px 0 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.legal-modal-body ul li {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
}

.legal-modal-body a {
    color: var(--rose-dark);
    text-decoration: underline;
}
.legal-modal-body a:hover { color: #C94B8C; }

.legal-modal-body code {
    background: rgba(255, 179, 198, 0.15);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-family: monospace;
    color: var(--rose-dark);
}

.legal-meta {
    font-size: 0.8rem !important;
    color: var(--light) !important;
    font-style: italic;
    margin-bottom: 20px !important;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.legal-table th {
    background: linear-gradient(135deg, var(--rose-dark), #C94B8C);
    color: white;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}
.legal-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--mid);
    vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: var(--cream); }

.legal-contact {
    margin-top: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255,179,198,0.12), rgba(201,168,232,0.12));
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--mid);
}
.legal-contact strong { color: var(--dark); }

.legal-modal-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    background: var(--cream);
}
.legal-modal-footer .btn-primary {
    padding: 12px 28px;
    font-size: 0.9rem;
}

/* scrollbar suave no corpo do modal */
.legal-modal-body::-webkit-scrollbar { width: 6px; }
.legal-modal-body::-webkit-scrollbar-track { background: transparent; }
.legal-modal-body::-webkit-scrollbar-thumb { background: rgba(255,179,198,0.5); border-radius: 3px; }
.legal-modal-body::-webkit-scrollbar-thumb:hover { background: var(--rose-mid); }

@media (max-width: 600px) {
    .legal-overlay { padding: 0; align-items: flex-end; }
    .legal-modal   { max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .legal-modal-header { padding: 20px 20px 16px; }
    .legal-modal-body   { padding: 20px; }
    .legal-modal-footer { padding: 16px 20px; }
}
