/* ============================
   Flexpage — Landing
   ============================ */

:root {
    /* Fonts */
    --font-display: 'Bricolage Grotesque', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Colors */
    --bg-deep: #1A0427;
    --bg-card: #230634;
    --bg-card-2: #2A0B3C;
    --text-white: #F5F0FF;
    --text-mute: rgba(245, 240, 255, 0.65);
    --text-faint: rgba(245, 240, 255, 0.45);
    --border-soft: rgba(255, 255, 255, 0.06);
    --border-mid: rgba(255, 255, 255, 0.12);

    --orange: #EE784F;
    --orange-2: #f08a65;
    --purple: #7C6AFF;
    --purple-2: #9D8EFF;
    --green-wa: #25D366;
    --green-wa-2: #128C7E;

    /* Layout */
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Transitions */
    --t-fast: 0.18s ease;
    --t-base: 0.3s ease;
    --t-slow: 0.6s ease-out;
}

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

html { scroll-behavior: smooth; background: var(--bg-deep); }

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient background — radial color washes */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 0%, rgba(238, 120, 79, 0.12), transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 30%, rgba(124, 106, 255, 0.10), transparent 60%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(157, 142, 255, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul { list-style: none; }

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

/* ============ Typography ============ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-white);
}

.grad-text {
    background: linear-gradient(110deg, var(--orange) 0%, var(--purple-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mute);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-full);
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(238, 120, 79, 0.7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(238, 120, 79, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(238, 120, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(238, 120, 79, 0); }
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--t-fast);
    cursor: pointer;
    text-align: center;
    min-height: 48px;
    white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--purple-2); outline-offset: 3px; }

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
    color: #fff;
    box-shadow: 0 10px 30px -8px rgba(238, 120, 79, 0.55), 0 4px 12px -4px rgba(238, 120, 79, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -8px rgba(238, 120, 79, 0.7), 0 6px 16px -4px rgba(238, 120, 79, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm { padding: 10px 18px; font-size: 0.88rem; min-height: 40px; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; min-height: 56px; }
.btn-full { width: 100%; }

/* ============ Header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    height: 74px;
    padding: 0;
    transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
body.is-scrolled .site-header {
    /* fundo quase opaco no lugar do backdrop-filter: blur() ao vivo,
       que repintava a area borrada a cada quadro de scroll (jank no mobile) */
    background: rgba(26, 4, 39, 0.94);
    border-bottom-color: var(--border-soft);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
    box-shadow: 0 6px 18px -4px rgba(124, 106, 255, 0.5);
}
.logo-word {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
/* Desktop: logo do cabeçalho um pouco menor (mobile sobrescreve para 18px) */
.site-header .logo-word { font-size: 1.3rem; }
.nav-links {
    display: flex;
    gap: 28px;
}
.nav-links a {
    font-size: 0.9rem;
    color: var(--text-mute);
    font-weight: 500;
    transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--text-white); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .header-inner .btn { font-size: 0.85rem; padding: 9px 16px; min-height: 38px; }
    .site-header .logo-word { font-size: 18px; }
    /* Cabeçalho mobile: altura fixa de 50px */
    .site-header { height: 50px; }
}

/* ============ Hero ============ */
.hero {
    padding: 24px 0 120px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.035em;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-mute);
    max-width: 540px;
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.trust-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-mute);
}
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(238, 120, 79, 0.15);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}
.phone-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 120, 79, 0.35), transparent 70%);
    filter: blur(40px);
    z-index: 0;
}
.phone-glow.purple { background: radial-gradient(circle, rgba(124, 106, 255, 0.35), transparent 70%); }
.phone-glow.orange { background: radial-gradient(circle, rgba(238, 120, 79, 0.35), transparent 70%); }
.phone-glow.green { background: radial-gradient(circle, rgba(37, 211, 102, 0.30), transparent 70%); }

/* ============ Phone Mockup ============ */
.phone {
    position: relative;
    width: clamp(280px, 90vw, 340px);
    aspect-ratio: 9 / 19.5;
    background: #0a0a14;
    padding: 9px;
    border-radius: 42px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 30px 80px -20px rgba(0, 0, 0, 0.6),
        0 60px 100px -40px rgba(124, 106, 255, 0.35);
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.phone-hero {
    transform: rotate(-3deg);
}
.phone-hero:hover {
    transform: rotate(0deg);
}
.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 12px;
    z-index: 2;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2A0B3C 0%, #1A0427 100%);
    border-radius: 34px;
    overflow: hidden;
    padding: 50px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.phone-screen.mini { padding: 44px 14px 14px; gap: 10px; }
.phone-sm {
    width: 240px;
    aspect-ratio: 9 / 19.5;
    padding: 7px;
    border-radius: 34px;
}
.phone-sm .phone-notch { top: 13px; width: 60px; height: 18px; }

/* Phone content */
.ps-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ps-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
    flex-shrink: 0;
}
.ps-header strong { font-size: 0.85rem; display: block; font-weight: 600; }
.ps-header span { font-size: 0.7rem; color: var(--text-faint); }
.ps-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    font-weight: 600;
}
.ps-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ps-list.compact { gap: 6px; }
.ps-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 10px 12px;
}
.ps-item.active {
    background: rgba(238, 120, 79, 0.15);
    border-color: rgba(238, 120, 79, 0.4);
}
.ps-item-name { font-size: 0.82rem; font-weight: 600; }
.ps-item-meta { font-size: 0.7rem; color: var(--text-faint); margin-top: 2px; }
.ps-cta {
    margin-top: auto;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 6px 18px -4px rgba(238, 120, 79, 0.5);
}
.ps-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 16px;
}
.ps-hero strong { font-size: 1rem; }
.ps-hero span { font-size: 0.75rem; color: var(--text-faint); }
.ps-hero .ps-cta { margin-top: 16px; width: 100%; }
.lock-icon { font-size: 1.6rem; }

.ps-pick { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.pick-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    background: rgba(238, 120, 79, 0.12);
    border: 1px solid rgba(238, 120, 79, 0.3);
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
}
.pick-card.alt {
    background: rgba(124, 106, 255, 0.12);
    border-color: rgba(124, 106, 255, 0.3);
}
.pick-emoji { font-size: 1.2rem; }

.ps-cal { padding: 4px 0; }
.cal-head { font-size: 0.78rem; font-weight: 600; margin-bottom: 8px; color: var(--text-mute); }
.cal-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}
.cal-times span {
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-size: 0.78rem;
    text-align: center;
    font-weight: 500;
}
.cal-times span.sel {
    background: rgba(238, 120, 79, 0.15);
    border-color: rgba(238, 120, 79, 0.4);
    color: var(--orange);
    font-weight: 700;
}

.loader-bar {
    margin-top: 12px;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}
.loader-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--purple-2));
    border-radius: 999px;
    animation: load 1.6s infinite;
}
@keyframes load {
    0% { width: 10%; }
    100% { width: 90%; }
}

@media (max-width: 900px) {
    .hero { padding: 40px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 0; margin-top: 16px; }
}

/* ============ Feature Bar ============ */
.feature-bar { padding: 32px 0; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-mid);
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.18);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--accent-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-mute);
}

@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
}

/* ============ Section Heads ============ */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.section-head h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
}
.section-sub {
    font-size: 1.08rem;
    color: var(--text-mute);
    line-height: 1.6;
    max-width: 600px;
}

/* ============ How it Works ============ */
.how-it-works { padding: 120px 0; }
.steps { display: flex; flex-direction: column; gap: 140px; }
.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.step.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.step.reverse .step-text { order: 2; }
.step.reverse .step-visual { order: 1; }
.step-text { display: flex; flex-direction: column; gap: 16px; }
.step-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--purple-2) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}
.step-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}
.step-text p {
    font-size: 1.05rem;
    color: var(--text-mute);
    line-height: 1.6;
    max-width: 480px;
}
.micro-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(238, 120, 79, 0.12);
    border: 1px solid rgba(238, 120, 79, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-white);
    font-weight: 500;
    margin-top: 4px;
}
.step-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

@media (max-width: 900px) {
    .how-it-works { padding: 80px 0; }
    .steps { gap: 80px; }
    .step { grid-template-columns: 1fr; gap: 32px; }
    .step.reverse .step-text { order: 1; }
    .step.reverse .step-visual { order: 2; }
    .step-num { font-size: 4rem; }
    .step-visual { min-height: 0; }
}

/* WhatsApp Mock */
.whatsapp-mock {
    background: #efeae2;
    border-radius: 20px;
    padding: 0;
    width: clamp(280px, 90vw, 340px);
    overflow: hidden;
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.5),
        0 60px 100px -40px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 1;
    background-image:
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 12px 12px;
    color: #111;
}
.whatsapp-mock.big { width: clamp(280px, 90vw, 360px); }
.wa-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wa-avatar.wa-green {
    background: linear-gradient(135deg, var(--green-wa) 0%, var(--green-wa-2) 100%);
}
.wa-header strong { display: block; font-size: 0.92rem; font-weight: 600; }
.wa-header span { font-size: 0.72rem; opacity: 0.8; }
.wa-body {
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 180px;
}
.wa-bubble {
    align-self: flex-end;
    background: #dcf8c6;
    border-radius: 8px 0 8px 8px;
    padding: 8px 10px 18px;
    max-width: 85%;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #0a3622;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.wa-meta {
    position: absolute;
    bottom: 4px;
    right: 8px;
    font-size: 0.65rem;
    color: #6b8e7a;
}

/* ============ Tech Block ============ */
.tech-block {
    padding: 120px 0;
    background: linear-gradient(90deg, transparent, rgba(124, 106, 255, 0.04), transparent);
}
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.tech-text { display: flex; flex-direction: column; gap: 24px; }
.tech-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
}
.tech-text > p {
    font-size: 1.05rem;
    color: var(--text-mute);
    line-height: 1.6;
}
.tech-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}
.tech-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    transition: all var(--t-fast);
}
.tech-item:hover { border-color: var(--border-mid); }
.ti-icon {
    color: var(--orange);
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
}
.tech-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.tech-item span {
    font-size: 0.82rem;
    color: var(--text-faint);
}

.tech-visual {
    position: relative;
    min-height: 480px;
}
.stacked-phones {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}
.stacked-phones .phone {
    position: absolute;
    width: 220px;
}
.tilt-left {
    transform: rotate(-8deg) translateX(-80px);
}
.tilt-right {
    transform: rotate(8deg) translateX(80px);
    z-index: 2;
}

@media (max-width: 1024px) {
    .tech-items { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .tech-block { padding: 80px 0; }
    .tech-grid { grid-template-columns: 1fr; gap: 48px; }
    .tilt-left { transform: rotate(-8deg) translateX(-60px); }
    .tilt-right { transform: rotate(8deg) translateX(60px); }
}
@media (max-width: 600px) {
    .tilt-left { transform: rotate(-8deg) translateX(-45px); }
    .tilt-right { transform: rotate(8deg) translateX(45px); }
    .stacked-phones .phone { width: 180px; }
    .tech-visual, .stacked-phones { min-height: 380px; }
}

/* ============ Auto Block (WhatsApp section) ============ */
.auto-block { padding: 120px 0; }
.auto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.auto-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}
.auto-text { display: flex; flex-direction: column; gap: 24px; }
.auto-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}
.auto-text > p {
    font-size: 1.05rem;
    color: var(--text-mute);
    line-height: 1.6;
}
.auto-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.auto-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    transition: transform var(--t-fast), border-color var(--t-fast);
}
.auto-item:hover {
    transform: translateX(4px);
    border-color: var(--border-mid);
}
.ai-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(238, 120, 79, 0.2), rgba(124, 106, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.auto-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.auto-item span {
    font-size: 0.85rem;
    color: var(--text-mute);
}

@media (max-width: 900px) {
    .auto-block { padding: 80px 0; }
    .auto-grid { grid-template-columns: 1fr; gap: 48px; }
    .auto-visual { min-height: 0; order: 2; }
    .auto-text { order: 1; }
}

/* ============ Plans ============ */
.plans { padding: 120px 0; }
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.plan-card {
    position: relative;
    background: var(--bg-card-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform var(--t-base), border-color var(--t-base);
}
/* Espaçamentos verticais entre os blocos do card */
.plan-card > .plan-price     { margin-top: 16px; }  /* subtítulo -> valor */
.plan-card > .capacity-badge { margin-top: 16px; }  /* valor -> destaque */
.plan-card > .plan-features  { margin-top: 20px; }  /* destaque -> benefícios */
.plan-card > .plan-addon     { margin-top: 10px; }  /* benefícios -> divisória */
.plan-card > .bonus-box      { margin-top: 16px; }  /* setup -> bônus */
.plan-card:hover { transform: translateY(-4px); border-color: var(--border-mid); }
.plan-card.popular {
    background: linear-gradient(180deg, rgba(124, 106, 255, 0.18), var(--bg-card-2) 60%);
    border-color: rgba(124, 106, 255, 0.4);
    box-shadow:
        0 0 0 1px rgba(124, 106, 255, 0.4),
        0 20px 60px -10px rgba(124, 106, 255, 0.4);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 6px 18px -4px rgba(124, 106, 255, 0.5);
}
.plan-head h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.plan-desc {
    font-size: 0.85rem;
    color: var(--text-faint);
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.plan-price .cur {
    font-size: 1rem;
    color: var(--text-mute);
    font-weight: 500;
}
.plan-price .num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}
.plan-price .per {
    font-size: 0.95rem;
    color: var(--text-mute);
    margin-left: 4px;
}
.capacity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(238, 120, 79, 0.12);
    border: 1px solid rgba(238, 120, 79, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-white);
    align-self: flex-start;
}
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-mute);
}
.bonus-box {
    background: var(--bg-deep);
    border: 1px solid rgba(124, 106, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 18px;
}
.bonus-head {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 12px;
}
.dot-orange {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange);
}
.bonus-box ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bonus-box li {
    font-size: 0.85rem;
    color: var(--text-mute);
    position: relative;
    padding-left: 14px;
}
.bonus-box li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}
.plan-card .btn { margin-top: 16px; }

/* Pulso nos botões dos planos quando entram na tela (4x, 1.5s cada) — mesmo estilo do "Agendamento online completo" */
.plan-card .btn.is-pulsing { position: relative; }
.plan-card .btn.is-pulsing::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(238, 120, 79, 0.7);
    animation: pulse 1.5s ease-out 4;
    pointer-events: none;
}

.setup-card {
    max-width: 1100px;
    margin: 40px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.setup-text h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.setup-text p {
    font-size: 0.92rem;
    color: var(--text-mute);
    max-width: 480px;
}
.setup-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}
.setup-price {
    text-align: right;
}
.setup-price strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--orange);
    display: block;
    font-weight: 700;
}
.setup-price span {
    font-size: 0.78rem;
    color: var(--text-faint);
}

/* Linha de add-on dentro de cada plano existente */
.plan-addon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-mute);
    padding-top: 10px;
    border-top: 1px dashed var(--border-soft);
}
.plan-addon .addon-plus { color: var(--orange); font-weight: 700; font-size: 1rem; }
.plan-addon strong { color: var(--text-white); font-weight: 700; }

/* Plano Agência — largura total do site */
.agency-card {
    margin: 40px 0 0;
    background: linear-gradient(180deg, rgba(124, 106, 255, 0.12), var(--bg-card-2) 60%);
    border: 1px solid rgba(124, 106, 255, 0.28);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.agency-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.agency-head { display: flex; flex-direction: column; gap: 10px; }
.agency-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}
.agency-title .ag-emoji { font-size: 1.7rem; }
.agency-desc { font-size: 0.95rem; color: var(--text-mute); max-width: 420px; }
.agency-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    flex-shrink: 0;
}
.agency-condition {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
    white-space: nowrap;
}
.agency-btn {
    background: linear-gradient(135deg, var(--purple-2) 0%, var(--purple) 100%);
    color: #fff;
    box-shadow: 0 10px 30px -8px rgba(124, 106, 255, 0.55);
}
.agency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -8px rgba(124, 106, 255, 0.7);
}
.agency-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 40px;
}
.agency-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text-mute);
    font-weight: 500;
    line-height: 1.45;
}
.agency-features .ag-check { color: var(--purple-2); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 900px) {
    .agency-card { padding: 28px; gap: 24px; }
    .agency-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .agency-action { align-items: stretch; width: 100%; }
    .agency-condition { white-space: normal; }
    .agency-btn { width: 100%; justify-content: center; text-align: center; }
    .agency-features { grid-template-columns: 1fr; gap: 14px; }
}

.cancel-line {
    margin-top: 32px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-mute);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .plans { padding: 80px 0; }
    .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
    .setup-card { flex-direction: column; align-items: flex-start; }
    .setup-cta { flex-direction: column; align-items: stretch; width: 100%; }
    .setup-price { text-align: left; }
}

/* ============ For Who ============ */
.for-who { padding: 120px 0; }
.tabs-pill {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    padding: 6px;
    border-radius: var(--radius-full);
    margin: 0 auto 40px;
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.tab-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-mute);
    border-radius: var(--radius-full);
    transition: all var(--t-fast);
    white-space: nowrap;
}
.tab-btn.active {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    box-shadow: 0 6px 18px -4px rgba(238, 120, 79, 0.5);
}
.tab-btn:hover:not(.active) { color: var(--text-white); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.4s ease-out; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.who-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(124, 106, 255, 0.06), rgba(238, 120, 79, 0.04));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    transition: all var(--t-fast);
}
.who-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(124, 106, 255, 0.14), rgba(238, 120, 79, 0.10));
    border-color: var(--border-mid);
}
.who-emoji {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.who-card strong {
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .for-who { padding: 80px 0; }
    .tab-btn { padding: 10px 18px; font-size: 0.88rem; }
}

/* ============ Founder Story ============ */
.founder-story { padding: 120px 0; }
.story-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    background:
        linear-gradient(135deg, rgba(124, 106, 255, 0.10), rgba(238, 120, 79, 0.08)),
        var(--bg-card-2);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    overflow: hidden;
}
.big-quote {
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 12rem;
    color: rgba(124, 106, 255, 0.1);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.story-card p {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-mute);
    margin-bottom: 20px;
    position: relative;
}
.story-card p:last-of-type { margin-bottom: 32px; }
.story-card p strong {
    color: var(--orange);
    font-weight: 600;
}
.signature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
}
.signature-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    flex-shrink: 0;
}
.signature strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}
.signature span {
    font-size: 0.85rem;
    color: var(--text-faint);
}

@media (max-width: 900px) {
    .founder-story { padding: 80px 0; }
    .story-card { padding: 36px 24px; }
    .big-quote { font-size: 8rem; top: -10px; left: 10px; }
    .story-card p { font-size: 1rem; }
}

/* ============ FAQ ============ */
.faq { padding: 120px 0; }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-soft);
}
.faq-q {
    width: 100%;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    transition: color var(--t-fast);
}
.faq-q:hover { color: var(--orange); }
.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
    flex-shrink: 0;
    transition: all var(--t-base);
    color: var(--text-mute);
}
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--orange);
    color: #fff;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}
.faq-a p {
    font-size: 0.98rem;
    color: var(--text-mute);
    line-height: 1.65;
}
.faq-item.open .faq-a {
    max-height: 500px;
    padding-bottom: 24px;
}

@media (max-width: 768px) {
    .faq { padding: 80px 0; }
    .faq-q { font-size: 0.98rem; }
}

/* ============ Final CTA ============ */
.final-cta { padding: 80px 0; }
.cta-card {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 32px;
    text-align: center;
    background:
        radial-gradient(ellipse 60% 50% at 30% 30%, rgba(124, 106, 255, 0.35), transparent 70%),
        radial-gradient(ellipse 60% 50% at 70% 70%, rgba(238, 120, 79, 0.30), transparent 70%),
        radial-gradient(ellipse 30% 20% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 70%),
        var(--bg-card-2);
    border: 1px solid var(--border-mid);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
}
.cta-card h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    max-width: 760px;
}
.cta-card > p {
    font-size: 1.15rem;
    color: var(--text-mute);
    line-height: 1.5;
    max-width: 600px;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .cta-card { padding: 64px 24px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; }
}

/* ============ Footer ============ */
.site-footer {
    margin-top: 120px;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-soft);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.92rem;
    color: var(--text-mute);
    line-height: 1.55;
    max-width: 360px;
}
.site-footer h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
    font-weight: 600;
    margin-bottom: 16px;
    font-family: var(--font-body);
}
.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer ul a {
    font-size: 0.92rem;
    color: var(--text-mute);
    transition: color var(--t-fast);
}
.site-footer ul a:hover { color: var(--text-white); }

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-faint);
}

@media (max-width: 768px) {
    .site-footer { margin-top: 56px; padding: 56px 0 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ============ Utility ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
/* =====================================================
   CORREÇÕES SOLICITADAS
   ===================================================== */

/* --- Largura 1280px + Tipografia DM Sans global --- */
:root {
    --max-width: 1280px;
    --font-display: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}
.step-num { font-family: 'Bricolage Grotesque', serif; }

/* Corrige o vazamento de elementos fixos no mobile: um elemento decorativo
   (o glow do hero, 400px + blur) ultrapassa a largura da tela em telas estreitas.
   overflow-x: hidden no body o transformava em container de rolagem; clip evita o
   scroll horizontal SEM quebrar position:fixed/sticky. Precisa estar TAMBÉM no html
   — o clip do body sozinho não é propagado de forma confiável pra viewport, então a
   página continuava alguns px mais larga e os botões fixos (right) saíam pela direita. */
html, body { overflow-x: clip; }

/* --- Ícone de seta (MDI arrow-right) nos CTAs --- */
.ic-arrow { flex-shrink: 0; transition: transform var(--t-fast); }
.btn:hover .ic-arrow { transform: translateX(3px); }

/* --- Cabeçalho: CTA escondido na 1ª seção, aparece após 300px --- */
.header-cta {
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    pointer-events: none;
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
body.is-scrolled .header-cta {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.header-inner { min-height: 40px; }

/* =====================================================
   HERO — eyebrow + toast ABAIXO dele
   ===================================================== */
.hero-eyebrow-wrap {
    position: relative;
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
    padding-bottom: 52px;       /* reserva espaço pro toast abaixo do eyebrow */
}
.hero-eyebrow-wrap .eyebrow { width: fit-content; max-width: 100%; }

.dot-pulse { animation: pulse 1.1s infinite; }

.agenda-toast {
    position: absolute;
    top: 46px;                  /* logo abaixo do eyebrow */
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 9px 14px;
    background: linear-gradient(135deg, rgba(37,211,102,0.18), rgba(124,106,255,0.12));
    border: 1px solid rgba(37,211,102,0.35);
    border-radius: var(--radius-md);
    font-size: 0.82rem; font-weight: 500; color: var(--text-white); line-height: 1.3;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
    opacity: 0; transform: translateY(-8px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none; z-index: 5;
}
.agenda-toast.show { opacity: 1; transform: translateY(0) scale(1); }
.agenda-toast .at-dot {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--green-wa);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.agenda-toast strong { font-weight: 700; }

/* Mobile: mais respiro entre a animação de agendamento e o título h1 */
@media (max-width: 768px) {
    .hero-eyebrow-wrap { padding-bottom: 72px; }
}

/* =====================================================
   HERO — vídeo no mockup: pausado + botão play, endireita só no play
   ===================================================== */
.phone-screen.video-screen { padding: 0; gap: 0; background: #0a0a14; position: relative; }
.phone-video { width: 100%; height: 100%; object-fit: cover; border-radius: 34px; display: block; }

.video-play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 66px; height: 66px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(238,120,79,0.94); color: #fff; padding-left: 4px;
    box-shadow: 0 12px 32px -6px rgba(0,0,0,0.55), 0 0 0 8px rgba(238,120,79,0.18);
    z-index: 3; cursor: pointer;
    transition: opacity 0.25s ease, transform 0.2s ease, visibility 0.25s ease;
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
.phone-hero.video-playing .video-play-btn { opacity: 0; visibility: hidden; pointer-events: none; }

/* Inclinação do mockup: só endireita quando o vídeo está tocando (esse toque) */
.phone-hero { transform: rotate(-3deg); }
.phone-hero:hover { transform: rotate(-3deg); }
.phone-hero.playing,
.phone-hero.playing:hover { transform: rotate(0deg); }

/* =====================================================
   ETAPAS / mockups com imagem
   ===================================================== */
.phone-screen.img-screen { padding: 0; gap: 0; background: #0a0a14; }
.step-img { width: 100%; height: 100%; object-fit: cover; border-radius: 34px; display: block; }

/* Largura da área das etapas = 1000px; mockups maiores = 300px */
.how-it-works .steps { max-width: 1000px; margin-left: auto; margin-right: auto; }
.how-it-works .steps .phone-sm { width: 300px; }
.how-it-works .steps .phone-sm .phone-notch { width: 72px; height: 20px; top: 15px; }
@media (max-width: 600px) {
    .how-it-works .steps .phone-sm { width: clamp(240px, 82vw, 300px); }
}

/* =====================================================
   ETAPA 5 — animação WhatsApp
   ===================================================== */
.wa-typing {
    align-self: flex-end; background: #dcf8c6; border-radius: 8px 0 8px 8px;
    padding: 12px 14px; display: inline-flex; gap: 4px; box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.wa-typing span { width: 7px; height: 7px; border-radius: 50%; background: #5a8c6a; animation: waBlink 1.2s infinite ease-in-out; }
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes waBlink { 0%,60%,100% { opacity: 0.3; transform: translateY(0);} 30% { opacity: 1; transform: translateY(-3px);} }
.wa-date {
    align-self: center; background: rgba(255,255,255,0.9); color: #4a5a52;
    font-size: 0.7rem; font-weight: 600; padding: 4px 12px; border-radius: 8px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.06); margin: 2px 0;
}
.wa-bubble.wa-enter { animation: waPop 0.32s ease-out; }
@keyframes waPop { from { opacity: 0; transform: translateY(8px) scale(0.97);} to { opacity: 1; transform: translateY(0) scale(1);} }

/* =====================================================
   TECH BLOCK — fundo acompanhando o conteúdo
   ===================================================== */
.tech-block {
    background: linear-gradient(180deg, rgba(124,106,255,0.07) 0%, transparent 55%);
}
.tech-block .tech-grid { align-items: center; }
.tech-block .tech-visual { min-height: 0; }
.tech-block .stacked-phones { min-height: 480px; }

/* =====================================================
   BENEFÍCIOS — largura total da página, 3 colunas, ícones em emoji
   ===================================================== */
.auto-block { padding: 40px 0 100px; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: none;
    margin: 0;
}
.benefits-grid .auto-item { align-items: center; }
.benefits-grid .ai-icon { width: 46px; height: 46px; font-size: 1.35rem; border-radius: 13px; }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

/* =====================================================
   BOTÕES FLUTUANTES — bordas arredondadas (não pílula), tema escuro
   ===================================================== */
.float-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 18px;
    border-radius: 16px;                 /* não redondo */
    font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
    color: var(--text-white);
    background: rgba(35, 6, 52, 0.9);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-mid);
    box-shadow: 0 14px 40px -12px rgba(0,0,0,0.6);
    transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast);
    cursor: pointer;
}
.float-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.25); }

/* Menu "Neste site" — fixo embaixo à esquerda (Desktop + Tablet) */
.float-menu-btn { position: fixed; left: 24px; bottom: 24px; z-index: 200; }
.float-menu-btn .fb-caret { transition: transform var(--t-base); }
.float-menu-btn[aria-expanded="true"] .fb-caret { transform: rotate(180deg); }

/* Especialista — fixo embaixo à direita, aparece após 300px */
.float-specialist {
    position: fixed; right: 24px; bottom: 24px; z-index: 200;
    text-decoration: none;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base), border-color var(--t-fast);
}
body.is-scrolled .float-specialist { opacity: 1; visibility: visible; transform: translateY(0); }

/* Painel "Neste site" — abre acima, alinhado à esquerda, com cabeçalho e itens numerados */
.fmp-overlay {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(84, 78, 78, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-base), visibility var(--t-base);
}
.fmp-overlay.open { opacity: 1; visibility: visible; }
.float-menu-panel {
    position: fixed; z-index: 201;
    bottom: 82px;            /* ~5px acima do botão flutuante */
    left: 24px;
    width: 320px; max-width: calc(100vw - 48px);
    max-height: 70vh; overflow-y: auto;
    background: rgba(28, 6, 44, 0.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-mid);
    border-radius: 18px;
    box-shadow: 0 22px 60px -14px rgba(0,0,0,0.75);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.float-menu-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.fmp-head {
    position: sticky; top: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 16px 12px;
    background: rgba(28, 6, 44, 0.97);
}
.fmp-title { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 700; color: var(--text-mute); }
.fmp-close {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    background: rgba(255,255,255,0.06); color: var(--text-mute);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--t-fast), color var(--t-fast);
}
.fmp-close:hover { background: rgba(255,255,255,0.12); color: var(--text-white); }
.fmp-list a {
    display: flex; align-items: center; gap: 14px;
    padding: 15px 16px;
    border-top: 1px solid var(--border-soft);
    color: var(--text-white); font-weight: 600; font-size: 1rem;
    transition: background var(--t-fast);
}
.fmp-list a:hover { background: rgba(255,255,255,0.05); }
.fmp-num { color: var(--purple-2); font-weight: 700; font-size: 0.95rem; min-width: 22px; }
.fmp-label { flex: 1; }
.fmp-chev { color: var(--text-faint); font-size: 1.3rem; line-height: 1; }

/* =====================================================
   RODAPÉ FIXO MOBILE
   ===================================================== */
.mobile-bar { display: none; }
@media (max-width: 768px) {
    /* esconde o botão flutuante de menu do desktop */
    .float-menu-btn { display: none; }

    .mobile-bar {
        display: flex; align-items: center; justify-content: space-evenly; gap: 12px;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
        background: rgba(26, 4, 39, 0.94);
        backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid var(--border-soft);
        /* escondido no carregamento; aparece só ao rolar, junto com o "falar com especialista" */
        transform: translateY(110%); opacity: 0; visibility: hidden;
        transition: transform var(--t-base), opacity var(--t-base), visibility var(--t-base);
    }
    body.is-scrolled .mobile-bar {
        transform: translateY(0); opacity: 1; visibility: visible;
    }
    .mobile-menu-btn {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 12px 16px; border-radius: 14px;
        font-size: 0.9rem; font-weight: 600; color: var(--text-white);
        background: rgba(255,255,255,0.06); border: 1px solid var(--border-mid); flex-shrink: 0;
    }
    .mobile-cta { flex: 0 0 auto; min-height: 44px; padding: 11px 6px; font-size: 1rem; }
    /* "Começar agora" sem fundo, bold, com texto em gradiente laranja */
    .mobile-bar .mobile-cta {
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        font-weight: 700;
        color: #EE784F;                                   /* cor da seta */
        background-image: linear-gradient(135deg, #FFB07A 0%, #EE784F 60%, #E8643A 100%);
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .mobile-bar .mobile-cta:hover { transform: none; }
    .mobile-bar .mobile-cta .ic-arrow { -webkit-text-fill-color: #EE784F; }

    /* Especialista flutua ACIMA da barra, à direita (como no print) */
    .float-specialist {
        right: 16px;
        bottom: calc(74px + env(safe-area-inset-bottom, 0px));
    }

    /* Header mobile: apenas a logo */
    .site-header .header-cta { display: none; }

    /* Espaço pro rodapé fixo */
    body { padding-bottom: 80px; }
    .site-footer { margin-bottom: 0; }

    /* Painel ancorado acima da barra */
    .float-menu-panel {
        bottom: calc(76px + env(safe-area-inset-bottom, 0px));
        left: 16px; right: 16px; width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* neutraliza TODAS as animacoes/transicoes em loop (pulse, waBlink, etc.)
       sem esconder conteudo: reveals usam troca de classe, entao continuam aparecendo */
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .agenda-toast { transition: opacity 0.2s ease; }
}

/* =====================================================
   AJUSTES FINAIS DESTA RODADA
   ===================================================== */

/* Tecnologia por dentro: eyebrow "abraça" o texto (não vira barra longa) */
.tech-text .eyebrow { align-self: flex-start; width: fit-content; }

/* Planos ocupam a largura total do site */
.plans-grid { max-width: none; margin-left: 0; margin-right: 0; }

/* =====================================================
   SEÇÃO "O QUE VOCÊ PRECISA FAZER"
   ===================================================== */
.steps-todo { padding: 100px 0; }
.todo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 48px;
}
.todo-card {
    position: relative;
    display: flex; flex-direction: column; gap: 10px;
    padding: 26px 20px 22px;
    background: var(--surface-1, rgba(255,255,255,0.03));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg, 18px);
    transition: transform var(--t-base), border-color var(--t-base);
}
.todo-card:hover { transform: translateY(-4px); border-color: var(--border-mid); }
.todo-num {
    width: 40px; height: 40px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Bricolage Grotesque', serif; font-weight: 700; font-size: 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, var(--orange, #EE784F), var(--purple, #7C6AFF));
    box-shadow: 0 8px 20px -8px rgba(238,120,79,0.6);
}
.todo-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.25; }
.todo-card p { font-size: 0.9rem; color: var(--text-mute); line-height: 1.5; }
.todo-cta { display: flex; justify-content: center; margin-top: 44px; }

@media (max-width: 1000px) {
    .todo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .todo-grid { grid-template-columns: 1fr; }
}
    
