/* ====================================================================
   SOMA 137 — Landing Page (Site Premium + Bônus Social Media)
   Paleta: dark + verde-neon (mesmo padrão site principal v2.0)
   Mobile-first, sem dependências de framework
   ==================================================================== */

:root {
    --bg: #050505;
    --bg-elevated: #0a0a0b;
    --bg-card: #111113;
    --bg-card-hover: #16161a;

    --accent: #99BF00;
    --accent-2: #B8E500;
    --accent-hi: #CDFF00;
    --accent-soft: rgba(153, 191, 0, 0.08);

    --fg: #ffffff;
    --fg-mute: rgba(255, 255, 255, 0.66);
    --fg-soft: rgba(255, 255, 255, 0.42);
    --fg-faded: rgba(255, 255, 255, 0.22);

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --border-accent: rgba(153, 191, 0, 0.28);

    --container: 1280px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Sora', 'Inter', system-ui, sans-serif;
    --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.55;
    background: var(--bg);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

input,
button,
textarea {
    font-family: inherit;
}

::selection {
    background: var(--accent-hi);
    color: #000;
}

/* ─────── Tipografia utilitária ─────── */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.02;
    display: inline-block;
}

.bold-display {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.02;
    display: block;
}

.muted {
    color: var(--fg-mute);
}

.fg {
    color: var(--fg);
}

.accent {
    color: var(--accent-hi);
}

/* ─────── Container ─────── */
.lp-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

@media (min-width: 640px) {
    .lp-container {
        padding: 0 32px;
    }
}

/* ─────── Background ornaments globais ─────── */
.bg-ornaments {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-layer {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    animation: grid-pulse 14s ease-in-out infinite;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    will-change: transform;
}

.orb-1 {
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 720px;
    background: rgba(153, 191, 0, 0.10);
    animation: float-slow 18s ease-in-out infinite;
}

.orb-2 {
    top: 35%;
    left: -180px;
    width: 420px;
    height: 420px;
    background: rgba(205, 255, 0, 0.07);
    animation: float-medium 13s ease-in-out infinite;
}

.orb-3 {
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: rgba(153, 191, 0, 0.07);
    animation: float-fast 9s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes float-slow {
    0%, 100% { transform: translate3d(-50%, 0, 0) scale(1); }
    50% { transform: translate3d(calc(-50% + 40px), -50px, 0) scale(1.06); }
}

@keyframes float-medium {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate3d(50px, -30px, 0) scale(1.1); opacity: 0.9; }
}

@keyframes float-fast {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-25px, 25px, 0); }
}

/* ─────── Header ─────── */
.lp-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: 72px;
    background: rgba(5, 5, 5, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lp-brand img {
    height: 30px;
    width: auto;
}

@media (min-width: 640px) {
    .lp-brand img {
        height: 36px;
    }
}

/* ─────── Chips / pills ─────── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--fg-mute);
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    max-width: 100%;
}

.chip i {
    color: var(--accent-hi);
    font-size: 11px;
}

/* ─────── Botões ─────── */
.btn-primary-soma {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-hi);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 22px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
    text-align: center;
    isolation: isolate;
    white-space: nowrap;
}

.btn-primary-soma:hover {
    background: var(--accent-2);
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px var(--accent-hi), 0 10px 38px -10px var(--accent);
}

.btn-primary-soma::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    z-index: -1;
    animation: shimmer 3.4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-150%) skewX(-25deg); }
    50% { transform: translateX(250%) skewX(-25deg); }
}

.btn-ghost-soma {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--fg);
    font-weight: 500;
    font-size: 14px;
    padding: 13px 22px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.02);
    transition: background .15s ease, border-color .15s ease;
}

.btn-ghost-soma:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
}

.btn-gold-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(205, 255, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-hi);
    color: var(--accent-hi);
    padding: 9px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all .3s var(--ease);
    box-shadow: 0 0 10px rgba(204, 255, 0, .1);
}

.btn-gold-pill:hover {
    background: var(--accent-hi);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(204, 255, 0, .5);
}

.btn-block {
    width: 100%;
    display: flex;
    padding: 16px 22px;
    font-size: 14px;
}

@media (min-width: 640px) {
    .btn-block {
        font-size: 15px;
    }
}

/* ─────── Reveal on scroll ─────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ─────── Section base ─────── */
.section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .section { padding: 120px 0; }
}

.section-title-lp {
    font-size: clamp(28px, 5.2vw, 56px);
    margin-bottom: 24px;
    line-height: 1.02;
}

.section-title-lp .serif-italic {
    font-size: inherit;
    display: block;
}

.section-title-lp .bold-display {
    font-size: inherit;
}

.section-body {
    font-size: 16px;
    color: var(--fg-mute);
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 580px;
}

@media (min-width: 768px) {
    .section-body { font-size: 18px; }
}

.section-body.lead {
    margin-top: 24px;
    max-width: 720px;
}

.max-w-3 {
    max-width: 820px;
    margin-bottom: 56px;
}

.head-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
}

@media (min-width: 1024px) {
    .head-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 64px;
        margin-bottom: 72px;
    }
}

.head-body {
    padding-top: 12px;
}

/* ====================================================================
   HERO
   ==================================================================== */
.hero-lp {
    position: relative;
    z-index: 1;
    padding: 120px 0 60px;
}

@media (min-width: 768px) {
    .hero-lp { padding: 160px 0 96px; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 56px;
    }
}

.hero-title {
    font-size: clamp(32px, 6.4vw, 64px);
    line-height: 1.04;
    margin-bottom: 24px;
    max-width: 680px;
    letter-spacing: -0.035em;
}

@media (max-width: 1023px) {
    .hero-title { margin-inline: auto; }
}

.hero-title .bold-display {
    font-size: inherit;
    color: var(--fg);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: inherit;
    letter-spacing: inherit;
}

.hero-copy {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-copy { text-align: left; }
}

.hero-sub {
    font-size: 16px;
    color: var(--fg-mute);
    line-height: 1.65;
    margin: 0 auto 32px;
    max-width: 560px;
}

@media (min-width: 768px) {
    .hero-sub { font-size: 18px; }
}

@media (min-width: 1024px) {
    .hero-sub { margin-left: 0; }
}

.cta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 32px;
}

@media (min-width: 480px) {
    .cta-row {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .cta-row { justify-content: flex-start; }
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fg-soft);
}

@media (min-width: 1024px) {
    .hero-meta { justify-content: flex-start; }
}

.hero-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--fg-faded);
}

/* ====================================================================
   CHAT SIMULATION
   ==================================================================== */
.hero-sim {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.chat-frame {
    position: relative;
    border-radius: 18px;
    border: 1px solid var(--border-strong);
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow:
        0 24px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 50px -10px rgba(153, 191, 0, .18);
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(17, 17, 19, 0.6);
}

.chat-id {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-hi);
    font-size: 13px;
}

.chat-id-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--fg);
    line-height: 1.1;
}

.chat-id-status {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg-soft);
    margin-top: 3px;
}

.chat-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--fg-soft);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-hi);
    box-shadow: 0 0 8px var(--accent);
    animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

.chat-feed {
    padding: 18px 16px;
    height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
}

.chat-lg .chat-feed {
    height: 460px;
}

@media (min-width: 640px) {
    .chat-feed { height: 420px; }
    .chat-lg .chat-feed { height: 520px; }
}

.chat-feed::-webkit-scrollbar {
    width: 4px;
}

.chat-feed::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 4px;
}

/* Bolha */
.bubble {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: bubble-in .45s var(--ease);
}

.bubble.user {
    flex-direction: row-reverse;
}

@keyframes bubble-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bubble-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-mute);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bubble.assistant .bubble-avatar {
    background: rgba(153, 191, 0, 0.10);
    border-color: rgba(153, 191, 0, .4);
    color: var(--accent-hi);
}

.bubble-content {
    max-width: 80%;
    border-radius: 16px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.5;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--fg);
    white-space: pre-line;
}

.bubble.user .bubble-content {
    border-top-right-radius: 4px;
}

.bubble.assistant .bubble-content {
    border-color: var(--border-strong);
    border-top-left-radius: 4px;
}

.bubble.highlight .bubble-content {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border-color: var(--border-accent);
    box-shadow: inset 0 0 0 1px rgba(153, 191, 0, .12);
}

.bubble-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-hi);
    margin-bottom: 6px;
}

/* Typing indicator */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fg-mute);
    animation: typing 1.1s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: .15s; }
.typing-dots span:nth-child(3) { animation-delay: .3s; }

@keyframes typing {
    0%, 100% { opacity: .3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: rgba(17, 17, 19, 0.4);
}

.chat-input-fake {
    flex: 1;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 12px;
    color: var(--fg-soft);
}

.chat-send {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-hi);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: default;
}

.chat-caption {
    text-align: center;
    font-size: 12px;
    color: var(--fg-soft);
    margin-top: 14px;
    padding: 0 12px;
}

/* ====================================================================
   SIMULATION SECTION
   ==================================================================== */
.sim-section {
    background: rgba(10, 10, 11, 0.5);
}

.sim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}

@media (min-width: 1024px) {
    .sim-grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 72px;
    }
}

/* (Removidos: vs-grid, card-grid-3, stats-grid — não usados após ajuste do copy) */

/* ─────── Desire section ─────── */
.desire-section {
    background: rgba(10, 10, 11, 0.4);
}

.desire-head {
    max-width: 880px;
    margin-bottom: 56px;
}

.desire-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .desire-tags { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .desire-tags { grid-template-columns: repeat(6, 1fr); }
}

.d-tag {
    background: var(--bg-card);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: background .25s var(--ease);
    min-height: 110px;
}

.d-tag:hover {
    background: var(--bg-card-hover);
}

.d-tag i {
    font-size: 22px;
    color: var(--accent-hi);
}

.d-tag span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--fg);
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.d-tag-accent {
    background: linear-gradient(135deg, rgba(153, 191, 0, .08), var(--bg-card));
    box-shadow: inset 0 0 0 1px rgba(153, 191, 0, .14);
}

.d-tag-accent span {
    color: var(--accent-hi);
}

/* ====================================================================
   BÔNUS SECTION
   ==================================================================== */
.bonus-section {
    position: relative;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
    }
}

.bonus-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 26px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .bonus-card { padding: 44px 40px; }
}

.bonus-card::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205, 255, 0, .6), transparent);
}

.bonus-card-head {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.overline {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.bonus-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.1;
    color: var(--fg);
    letter-spacing: -0.02em;
}

.deliverables {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 28px;
}

@media (min-width: 480px) {
    .deliverables { grid-template-columns: 1fr 1fr; }
}

.deliv {
    background: var(--bg-card);
    padding: 22px 20px;
    transition: background .25s var(--ease);
}

.deliv:hover {
    background: var(--bg-card-hover);
}

.deliv-top {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.deliv-qty {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 48px;
    line-height: 1;
    color: var(--accent-hi);
}

.deliv-top i {
    font-size: 16px;
    color: var(--fg-mute);
}

.deliv h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--fg);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.deliv p {
    font-size: 12px;
    color: var(--fg-mute);
    line-height: 1.55;
}

.bonus-sub {
    font-size: 14px;
    color: var(--fg-mute);
    margin-bottom: 18px;
    line-height: 1.55;
}

.bonus-quote {
    margin-top: 28px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(153, 191, 0, .06), transparent);
    border-left: 2px solid var(--accent-hi);
    border-radius: 0 12px 12px 0;
}

.bonus-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(16px, 1.9vw, 20px);
    line-height: 1.4;
    color: var(--fg-mute);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.bonus-quote small {
    display: block;
    font-size: 12px;
    color: var(--fg-soft);
    line-height: 1.5;
}

/* ─────── Feed mockup ─────── */
.feed-mock-wrap {
    position: relative;
}

.feed-mock {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    /* Glow via box-shadow (não vaza nem cria scroll horizontal) */
    box-shadow:
        0 24px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 60px -10px rgba(153, 191, 0, .18);
}

/* ─── Header tipo perfil Instagram ─── */
.feed-profile {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(17,17,19,.8), rgba(17,17,19,.4));
}

.feed-avatar-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 2px var(--bg-card),
        0 0 0 4px var(--accent),
        0 8px 24px -8px var(--accent);
    flex-shrink: 0;
    overflow: hidden;
}

.feed-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feed-profile-info {
    flex: 1;
    min-width: 0;
}

.feed-profile-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.feed-handle {
    font-size: 16px;
    font-weight: 700;
    color: var(--fg);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.feed-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(205, 255, 0, .12);
    border: 1px solid rgba(205, 255, 0, .35);
    color: var(--accent-hi);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feed-badge i {
    font-size: 10px;
}

.feed-bio {
    font-size: 12px;
    color: var(--fg-mute);
    margin-bottom: 12px;
}

.feed-stats {
    display: flex;
    gap: 18px;
    font-size: 11px;
    color: var(--fg-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feed-stats span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feed-stats strong {
    font-family: var(--font-display);
    color: var(--fg);
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
}

.feed-stats em {
    font-style: normal;
}

/* ─── Toolbar plataformas ─── */
.feed-platforms {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 5, 5, .35);
}

.feed-platforms span {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-soft);
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.feed-platforms span i {
    font-size: 13px;
}

.feed-platforms span.active {
    color: var(--fg);
    border-bottom-color: var(--accent-hi);
}

/* ─── Grid de tiles 3×3 ─── */
.feed-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--bg);
    padding: 2px;
}

.feed-tile {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease);
    cursor: pointer;
}

.feed-tile:hover {
    transform: scale(1.06);
    z-index: 2;
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, .8);
}

.feed-tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .4s var(--ease);
}

.feed-tile:hover .feed-tile-bg {
    transform: scale(1.04);
}

/* Véu padrão (forte) para gradientes — texto branco precisa de contraste */
.feed-tile-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .82) 100%);
    pointer-events: none;
}

/* Quando tem imagem real, véu mais suave (só o suficiente pra métrica do canto) */
.feed-tile.has-image .feed-tile-veil {
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55) 100%);
}

.feed-tile-tex {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: .4;
}

.feed-tile-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .8);
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.feed-tile-icon small {
    font-size: 9px;
    font-weight: 600;
}

/* (.feed-tile-label removido — usamos só imagem + ícone + métrica) */

.feed-tile-meta {
    position: absolute;
    inset-inline: 10px;
    bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
}

.feed-tile-meta span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.feed-tile-meta i {
    font-size: 9px;
    color: var(--accent-hi);
}

/* ─── KPIs finais ─── */
.feed-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    background: rgba(5, 5, 5, .4);
}

.kpi {
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}

.kpi:last-child {
    border-right: none;
}

.kpi-value {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    color: var(--fg);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.kpi.accent .kpi-value {
    color: var(--accent-hi);
    text-shadow: 0 0 16px rgba(205, 255, 0, .4);
}

.kpi-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-soft);
    line-height: 1.3;
}

/* ====================================================================
   AI SCAN INFOGRAPHIC (substitui o segundo chat)
   ==================================================================== */
.ai-scan {
    position: relative;
    border-radius: 18px;
    border: 1px solid var(--border-strong);
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(10px);
    padding: 22px;
    overflow: hidden;
    /* Glow via box-shadow (não vaza horizontal — não cria scroll) */
    box-shadow:
        0 24px 80px -20px rgba(0, 0, 0, .7),
        0 0 60px -10px rgba(153, 191, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .04);
}

@media (min-width: 640px) {
    .ai-scan { padding: 26px; }
}

.ai-scan-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.ai-scan-id {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ai-scan-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(153, 191, 0, 0.12);
    border: 1px solid rgba(153, 191, 0, .4);
    color: var(--accent-hi);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.ai-scan-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.ai-scan-sub {
    font-size: 11px;
    color: var(--fg-soft);
    margin-top: 4px;
}

.ai-scan-pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-hi);
    flex-shrink: 0;
}

/* Etapas */
.step {
    position: relative;
}

.step-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg-soft);
    margin-bottom: 10px;
}

.step-tag.accent {
    color: var(--accent-hi);
}

.step-tag strong {
    color: var(--fg);
    font-family: var(--font-display);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.step-query {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    font-size: 13px;
    color: var(--fg);
    line-height: 1.45;
}

.step-query i {
    color: var(--accent-hi);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.step-connector {
    width: 1px;
    height: 24px;
    margin: 12px 0 12px 17px;
    background: linear-gradient(180deg, var(--accent-hi), transparent);
    opacity: .6;
}

/* Scan grid (etapa 2) — mobile-first: 1 coluna, 2 a partir de 640px */
.scan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 640px) {
    .scan-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.scan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 11px;
    color: var(--fg-mute);
    font-family: var(--font-mono, ui-monospace, monospace);
    /* Pre-render invisível mas ocupando espaço (evita reflow ao animar) */
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), border-color .25s var(--ease);
    will-change: opacity, transform;
}

.scan-row.qualified {
    border-color: rgba(153, 191, 0, .45);
    background: linear-gradient(135deg, rgba(153, 191, 0, .07), var(--bg-card));
}

.scan-row.is-shown {
    opacity: 1;
    transform: translateY(0);
}

.scan-row.rejected.is-shown {
    opacity: 0.45;
}

.scan-url {
    color: var(--fg);
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}

.scan-checks {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    flex-shrink: 0;
}

.scan-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    font-weight: 700;
    line-height: 1;
}

.scan-check.ok {
    background: rgba(153, 191, 0, .2);
    color: var(--accent-hi);
}

.scan-check.no {
    background: rgba(255, 80, 80, .15);
    color: rgb(255, 130, 130);
}

/* Ranking (etapa 3) */
.ranking {
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: rank;
}

.rank-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(153, 191, 0, .06), var(--bg-card));
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    min-width: 0;
}

@media (min-width: 480px) {
    .rank-item {
        gap: 14px;
        padding: 14px 16px;
    }
}

.rank-item > * {
    min-width: 0;
}

.rank-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-item.is-shown {
    opacity: 1;
    transform: translateX(0);
}

.rank-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    color: var(--accent-hi);
    line-height: 1;
    letter-spacing: -0.02em;
}

.rank-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--fg);
    letter-spacing: -0.01em;
}

@media (min-width: 480px) {
    .rank-name { font-size: 14px; }
}

.rank-score {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--fg);
    font-variant-numeric: tabular-nums;
}

.rank-score small {
    font-size: 9px;
    color: var(--fg-soft);
    margin-left: 2px;
    font-weight: 500;
}

.rank-star {
    color: var(--accent-hi);
    font-size: 12px;
}

.ranking-note {
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(255, 80, 80, .04);
    border: 1px dashed rgba(255, 80, 80, .25);
    border-radius: 10px;
    font-size: 11.5px;
    color: var(--fg-mute);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ranking-note i {
    color: rgb(255, 140, 140);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ranking-note strong {
    color: var(--fg);
    font-weight: 600;
}

.ranking-note .muted {
    color: var(--fg-soft);
}

/* ====================================================================
   FORM SECTION
   ==================================================================== */
.form-section {
    position: relative;
    background:
        radial-gradient(ellipse 700px 400px at 50% 0%, rgba(153, 191, 0, .08), transparent),
        var(--bg);
}

.form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(153, 191, 0, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 191, 0, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: .8;
    pointer-events: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .form-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 56px;
    }
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 28px;
    font-size: 13px;
    color: var(--fg-soft);
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-row i {
    color: var(--accent);
    font-size: 13px;
}

/* Form card */
.form-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .form-card { padding: 36px 32px; }
}

/* Glow do form-card via box-shadow (sem ::before com blur que possa vazar) */
.form-card {
    box-shadow:
        0 24px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 50px -10px rgba(153, 191, 0, .2);
}

.form-card::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205, 255, 0, .6), transparent);
}

.form-head {
    margin-bottom: 24px;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg-soft);
    margin-bottom: 8px;
}

.field input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--fg);
    font-size: 15px;
    transition: border-color .15s ease, background .15s ease;
    -webkit-appearance: none;
    appearance: none;
}

.field input::placeholder {
    color: var(--fg-soft);
}

.field input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.field input[aria-invalid="true"] {
    border-color: rgba(255, 100, 100, .6);
}

.field-error {
    display: none;
    font-size: 11px;
    color: rgb(255, 140, 140);
    margin-top: 6px;
}

.field-error.is-shown {
    display: block;
}

.form-feedback {
    background: rgba(255, 80, 80, 0.06);
    border: 1px solid rgba(255, 80, 80, 0.3);
    color: rgb(255, 170, 170);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* Atributo hidden HTML5 deve sempre vencer */
.form-feedback[hidden],
.form-success[hidden],
[hidden] {
    display: none !important;
}

/* ─── LGPD: checkbox custom ─── */
.consent-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 6px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.checkbox-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.5;
    color: var(--fg-mute);
    user-select: none;
}

.checkbox-field input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.checkbox-mark {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: var(--bg);
    border: 1.5px solid var(--border-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
    margin-top: 1px;
    flex-shrink: 0;
}

.checkbox-mark i {
    font-size: 10px;
    color: #000;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .15s ease, transform .15s var(--ease-spring);
}

.checkbox-field input:checked + .checkbox-mark {
    background: var(--accent-hi);
    border-color: var(--accent-hi);
    box-shadow: 0 0 0 3px rgba(205, 255, 0, .15);
}

.checkbox-field input:checked + .checkbox-mark i {
    opacity: 1;
    transform: scale(1);
    color: #000;
}

.checkbox-field input:focus-visible + .checkbox-mark {
    box-shadow: 0 0 0 3px rgba(205, 255, 0, .25);
}

.checkbox-field:hover .checkbox-mark {
    border-color: var(--accent);
}

.checkbox-field[data-invalid="true"] .checkbox-mark {
    border-color: rgba(255, 100, 100, .7);
    box-shadow: 0 0 0 3px rgba(255, 100, 100, .12);
}

.checkbox-text strong {
    color: var(--fg);
    font-weight: 600;
}

.checkbox-text a {
    color: var(--accent-hi);
    text-decoration: underline;
    text-decoration-color: rgba(205, 255, 0, .35);
    text-underline-offset: 2px;
}

.checkbox-text a:hover {
    text-decoration-color: var(--accent-hi);
}

.optional-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-soft);
    background: rgba(255, 255, 255, .06);
    padding: 2px 7px;
    border-radius: 4px;
    margin-right: 6px;
    vertical-align: 1px;
}

#form-submit {
    margin-top: 8px;
    position: relative;
}

#form-submit .btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    display: none;
}

#form-submit.is-loading {
    pointer-events: none;
    opacity: .85;
}

#form-submit.is-loading .btn-label,
#form-submit.is-loading .btn-icon {
    display: none;
}

#form-submit.is-loading .btn-spinner {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-fineprint {
    margin-top: 14px;
    text-align: center;
    font-size: 11px;
    color: var(--fg-soft);
    line-height: 1.55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 0 8px;
}

.form-fineprint i {
    color: var(--accent);
    font-size: 11px;
    flex-shrink: 0;
}

/* Success */
.form-success {
    text-align: center;
    padding: 24px 8px 8px;
}

.success-check {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-hi);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 0 0 8px rgba(205, 255, 0, .12), 0 12px 36px -10px var(--accent);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    color: var(--fg);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.form-success p {
    font-size: 14px;
    color: var(--fg-mute);
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto 24px;
}

.reset-btn {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg-soft);
    transition: color .2s;
}

.reset-btn:hover {
    color: var(--fg);
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.lp-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background: rgba(10, 10, 11, 0.6);
    padding: 40px 0 32px;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-row {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

@media (min-width: 768px) {
    .footer-brand {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
}

.footer-brand img {
    height: 28px;
    width: auto;
    opacity: .85;
}

.footer-brand p {
    font-size: 14px;
}

.footer-copy {
    font-size: 12px;
    color: var(--fg-soft);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        gap: 18px;
        align-items: center;
    }
}

.footer-link {
    font-size: 12px;
    color: var(--fg-soft);
    transition: color .2s ease;
}

.footer-link:hover {
    color: var(--accent-hi);
}

/* ====================================================================
   WHATSAPP — botão no header + FAB flutuante
   ==================================================================== */

/* Container de ações no nav (logo + 2 botões) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .nav-actions { gap: 10px; }
}

/* Botão WhatsApp no header */
.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    padding: 9px 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all .25s var(--ease);
    flex-shrink: 0;
}

.wpp-svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
}

.btn-whatsapp-nav:hover {
    background: #25D366;
    color: #050505;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(37, 211, 102, .6);
}

/* Em mobile pequeno: mostra só o ícone */
.wpp-label {
    display: none;
}

@media (min-width: 480px) {
    .wpp-label {
        display: inline;
    }
}

/* Em telas muito pequenas: botão whatsapp do nav fica mais compacto */
@media (max-width: 380px) {
    .btn-whatsapp-nav {
        padding: 9px 10px;
    }
    .btn-gold-pill {
        padding: 9px 14px;
        font-size: 11px;
    }
}

/* ─── FAB flutuante WhatsApp ─── */
.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow:
        0 8px 32px -4px rgba(37, 211, 102, .5),
        0 4px 16px rgba(0, 0, 0, .4);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    /* Inicialmente entra "deslizando" de baixo */
    transform: translateY(80px);
    opacity: 0;
    animation: fab-enter .6s var(--ease-spring) 1.2s forwards;
}

@media (min-width: 768px) {
    .whatsapp-fab {
        right: 24px;
        bottom: 24px;
        padding: 14px 20px;
    }
}

@keyframes fab-enter {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 12px 40px -4px rgba(37, 211, 102, .65),
        0 6px 20px rgba(0, 0, 0, .5);
    color: #fff;
}

/* Pulse atrás do ícone */
.fab-pulse {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 38px;
    height: 38px;
    margin-top: -19px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    pointer-events: none;
    animation: fab-pulse 2.4s ease-out infinite;
    z-index: -1;
}

@keyframes fab-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.55;
    }
    80%, 100% {
        transform: scale(2.1);
        opacity: 0;
    }
}

.fab-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fab-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.fab-label {
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.005em;
}

/* Em telas muito pequenas: FAB vira só o ícone (sem label) */
@media (max-width: 480px) {
    .whatsapp-fab {
        padding: 12px 14px;
        font-size: 13px;
        gap: 8px;
    }

    .fab-icon {
        width: 28px;
        height: 28px;
    }

    .fab-icon svg {
        width: 16px;
        height: 16px;
    }

    .fab-pulse {
        left: 12px;
        width: 34px;
        height: 34px;
        margin-top: -17px;
    }
}

/* Em telas MUITO pequenas (<360px): FAB só ícone */
@media (max-width: 360px) {
    .fab-label {
        display: none;
    }
    .whatsapp-fab {
        padding: 14px;
        gap: 0;
    }
}

/* Reduz motion */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-fab {
        animation: none;
        transform: translateY(0);
        opacity: 1;
    }
    .fab-pulse {
        animation: none;
        display: none;
    }
}

/* ====================================================================
   MOBILE FIXES CONSOLIDADOS (< 640px)
   Garante que nada estoure a viewport em telas pequenas
   ==================================================================== */

/* CRÍTICO: overflow-x: hidden (não usar clip — sem suporte em WebKit antigo) */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Containers principais nunca podem ser maiores que a viewport */
.section,
.hero-lp,
.form-section,
.bonus-section,
.sim-section,
.desire-section,
.lp-header,
.lp-footer,
.stats-section,
.mid-cta-section {
    max-width: 100%;
    overflow-x: hidden;
}

/* Container universal: sempre respeita 100% da largura disponível */
.lp-container {
    width: 100%;
    max-width: var(--container);
    box-sizing: border-box;
}

/* Container em mobile: padding controlado para dar respiro lateral */
@media (max-width: 480px) {
    .lp-container {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* Form-card em mobile: padding interno generoso pra inputs não grudarem */
@media (max-width: 480px) {
    .form-card {
        padding: 24px 20px !important;
    }

    .form-grid {
        gap: 32px;
    }
}

/* Todos os grid/flex items: min-width: 0 pra respeitarem o container */
.form-grid > *,
.bonus-grid > *,
.sim-grid > *,
.hero-grid > *,
.head-grid > *,
.feed-profile > *,
.feed-kpis > *,
.deliverables > *,
.desire-tags > *,
.scan-row > *,
.rank-item > *,
.checkbox-field > * {
    min-width: 0;
}

/* Field do form: garantir que o input nunca passe do container */
.field,
.field input,
.consent-block,
.checkbox-field,
.btn-block,
.form-feedback,
.form-success,
.form-head {
    max-width: 100%;
    box-sizing: border-box;
}

/* Cards: largura travada, box-sizing border-box */
.form-card,
.bonus-card,
.feed-mock,
.chat-frame,
.ai-scan,
.mid-cta,
.consent-block,
.policy-toc,
.contact-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Inputs e botões: nunca podem ultrapassar o container */
input,
button,
textarea,
.btn-primary-soma,
.btn-ghost-soma,
.btn-block {
    max-width: 100%;
    box-sizing: border-box;
}

/* Decoradores top-line nos cards (form-card::after, bonus-card::after):
   em mobile, encolhe pra não ficar feio com padding menor */
@media (max-width: 480px) {
    .form-card::after,
    .bonus-card::after,
    .mid-cta::after {
        left: 18px;
        right: 18px;
    }
}

/* Quebra palavras longas que poderiam estourar */
.section-title-lp,
.hero-title,
.bonus-title,
.section-body,
.bubble-content,
.scan-url,
.rank-name,
.feed-tile-label,
.checkbox-text {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Tabular nums e elementos curtos que NÃO podem quebrar */
.scan-url,
.rank-name,
.feed-tile-label {
    word-break: keep-all;
    overflow-wrap: normal;
}

/* Container do AI scan: padding menor em mobile pra dar mais espaço útil */
@media (max-width: 480px) {
    .ai-scan {
        padding: 18px 14px;
    }

    /* Ranking note: simplifica layout em telas muito pequenas */
    .ranking-note {
        font-size: 11px;
        padding: 10px 12px;
        gap: 6px;
    }

    /* Feed stats: shrink em telas muito pequenas */
    .feed-stats {
        gap: 14px;
    }

    .feed-stats strong {
        font-size: 14px;
    }

    .feed-stats span,
    .feed-stats em {
        font-size: 10px;
    }

    /* Feed profile: menos avatar, info mais compacta */
    .feed-avatar-lg {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .feed-profile {
        padding: 16px 14px 14px;
        gap: 12px;
    }

    /* Bonus card: menos padding */
    .bonus-card {
        padding: 24px 20px;
    }

    /* Form card: menos padding */
    .form-card {
        padding: 24px 18px;
    }

    /* Hero title quebra natural */
    .hero-title {
        font-size: clamp(28px, 7.5vw, 38px);
    }

    /* Section title menor em mobile */
    .section-title-lp {
        font-size: clamp(26px, 6.5vw, 36px);
    }

    /* KPIs com padding reduzido */
    .kpi {
        padding: 14px 8px;
    }

    .kpi-value {
        font-size: 24px;
    }

    .kpi-label {
        font-size: 9px;
    }

    /* Feed platforms: ícones menores */
    .feed-platforms span {
        font-size: 10px;
        padding: 10px 6px;
        gap: 4px;
    }

    /* Chips: quebra de linha permitida */
    .chip {
        font-size: 10px;
        padding: 5px 11px;
        line-height: 1.4;
    }

    /* Bonus quote responsivo */
    .bonus-quote {
        padding: 16px 18px;
    }

    .bonus-quote p {
        font-size: 15px;
    }
}

/* Flex/grid children precisam de min-width: 0 pra respeitar ellipsis */
.scan-row > *,
.feed-profile > *,
.feed-profile-info,
.checkbox-field > * {
    min-width: 0;
}

/* Feed-stats: garantir flex-wrap pra não estourar */
.feed-stats {
    flex-wrap: wrap;
}

/* Bonus card head: garantir wrap */
.bonus-card-head {
    flex-wrap: wrap;
}

/* Garantir que imagens nunca estourem */
img {
    max-width: 100%;
    height: auto;
}
