/* ============================================
   redireciona.me — landing
   Voice: SaaS/fintech premium, dado-orientado.
   ============================================ */

:root {
    --brand-black: #0A0E1A;
    --brand-white: #FFFFFF;
    --brand-bg: #F7F8FA;
    --brand-bg-alt: #FBFCFD;
    --text-primary: #0F1729;
    --text-secondary: #4B5563;
    --text-tertiary: #9CA3AF;
    --status-green: #84D342;
    --status-green-dark: #6FB838;
    --status-green-soft: #F0FAEB;
    --status-yellow: #FFC130;
    --status-red: #DC2626;
    --status-red-soft: #FEF2F2;
    --status-blue: #3B82F6;
    --border-soft: rgba(15, 23, 41, 0.06);
    --border-medium: rgba(15, 23, 41, 0.1);
    --shadow-card: 0 1px 3px rgba(15, 23, 41, 0.04), 0 1px 2px rgba(15, 23, 41, 0.02);
    --shadow-card-lg: 0 4px 24px -4px rgba(15, 23, 41, 0.08), 0 2px 8px rgba(15, 23, 41, 0.04);
    --shadow-elevated: 0 24px 56px -20px rgba(15, 23, 41, 0.18), 0 8px 24px -4px rgba(15, 23, 41, 0.08);

    /* Fintech navy palette */
    --navy-900: #07142B;
    --navy-800: #0A1A33;
    --navy-700: #122448;
    --navy-600: #1B3263;
    --navy-glow: rgba(132, 211, 66, 0.10);
    --navy-glow-blue: rgba(59, 130, 246, 0.08);
}

* { box-sizing: border-box; }

html, body {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Defensive — qualquer descendente que ameace overflow horizontal fica contido */
.hero-v2, .impact-cta, .urgency, .final-cta, .showcase, .ps,
.trust-bar, .story, .signals, .solution, .how, .icp, .compare,
.pricing, .guarantees, .objections, .testimonials, .faq,
.mid-cta-wrap, footer.site-footer {
    max-width: 100vw;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--brand-bg);
    line-height: 1.55;
    font-feature-settings: "ss01", "cv11";
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ NAV ============ */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(247, 248, 250, 0.82);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled {
    border-bottom-color: var(--border-soft);
    background: rgba(247, 248, 250, 0.94);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
}
.brand-wordmark {
    font-size: 22px; font-weight: 700; letter-spacing: -0.025em;
    color: var(--text-primary);
}
.brand-dot { color: var(--status-green); }
.nav-links {
    display: flex; align-items: center; gap: 32px;
    font-size: 14px; color: var(--text-secondary); font-weight: 500;
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--text-primary); color: #fff;
    padding: 10px 18px; border-radius: 10px;
    font-weight: 500; font-size: 14px;
    transition: background .15s, transform .15s, color .15s;
}
.nav-links a.nav-cta:hover { background: #1F2937; color: #fff; transform: translateY(-1px); }
.nav-hamburger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
@media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .nav.menu-open .nav-links {
        display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 24px;
        border-bottom: 1px solid var(--border-soft);
    }
}

/* ============ TYPE ============ */
h1, h2, h3, h4 {
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}
h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.08; font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(17px, 1.8vw, 19px); font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }

.lead {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 720px;
    line-height: 1.6;
}

.hl {
    color: var(--text-primary);
    background: linear-gradient(120deg, transparent 0%, transparent 12%, rgba(132, 211, 66, 0.22) 12%, rgba(132, 211, 66, 0.22) 88%, transparent 88%);
    padding: 0 4px;
}

/* ============ SECTION DEFAULTS ============ */
section { padding: 88px 24px; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section-wide { max-width: 1200px; margin: 0 auto; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-head .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-secondary);
    background: #fff;
    padding: 6px 12px; border-radius: 999px;
    margin-bottom: 18px;
    border: 1px solid var(--border-soft);
}
.eyebrow.center { display: inline-block; }
.eyebrow.on-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #D1D5DB;
    border-color: rgba(255, 255, 255, 0.1);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px; border-radius: 12px;
    font-weight: 600; font-size: 15px;
    transition: transform .15s, box-shadow .2s, background .15s, border-color .15s;
    cursor: pointer; border: 1px solid transparent;
    font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--text-primary); color: #fff;
    box-shadow: 0 6px 20px -4px rgba(15, 23, 41, 0.25);
}
.btn-primary:hover {
    background: #1F2937;
    box-shadow: 0 12px 32px -6px rgba(15, 23, 41, 0.3);
}
.btn-ghost {
    background: #fff; color: var(--text-primary);
    border-color: var(--border-medium);
}
.btn-ghost:hover { border-color: var(--text-primary); }
.btn-block { width: 100%; justify-content: center; }
.cta-microcopy { font-size: 13px; color: var(--text-tertiary); margin-top: 14px; }

/* ============ HERO v2 — centered, Flexio-style with green glows ============ */
.hero-v2 {
    position: relative;
    background: #FFFFFF;
    padding: 110px 24px 80px;
    min-height: 86vh;
    overflow: hidden;
    isolation: isolate;
}

/* Background glows + grid */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.85;
}
.hero-glow-top {
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 60%;
    background: radial-gradient(closest-side, rgba(132, 211, 66, 0.22), transparent 70%);
}
.hero-glow-bot {
    bottom: -20%; right: -10%;
    width: 70%; height: 70%;
    background: radial-gradient(closest-side, rgba(132, 211, 66, 0.12), transparent 70%);
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(15,23,41,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,41,0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 75% 70% at center, #000 30%, transparent 80%);
            mask-image: radial-gradient(ellipse 75% 70% at center, #000 30%, transparent 80%);
}

/* Corner SVG ornaments */
.corner-orn {
    position: absolute;
    width: 180px; height: 180px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}
.corner-orn.corner-tl { top: 60px; left: 24px; }
.corner-orn.corner-tr { top: 60px; right: 24px; }
.corner-orn.corner-bl { bottom: 80px; left: 24px; }
.corner-orn.corner-br { bottom: 80px; right: 24px; }
@media (max-width: 900px) {
    .corner-orn { display: none; }
}

/* Top utility badge (Flexio "Play Showreel" equivalent) */
.hero-top-badge {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 6px 18px 6px 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-card);
    transition: transform .15s, box-shadow .2s;
    text-decoration: none;
    width: fit-content;
}
.hero-top-badge:hover { transform: translateY(-1px); box-shadow: var(--shadow-card-lg); }
.hero-top-badge .play-dot {
    width: 22px; height: 22px;
    background: var(--status-green);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(132, 211, 66, 0.18);
    font-size: 10px;
}

/* Hero center wrap */
.hero-center {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 28px auto 0;
    text-align: center;
}
.hero-center h1 {
    font-size: clamp(40px, 5.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--text-primary);
    margin: 22px 0 0;
}
.hero-center .hl-em {
    background: linear-gradient(180deg, transparent 60%, rgba(132, 211, 66, 0.35) 60%);
    padding: 0 4px;
    font-style: normal;
}
.hero-lead {
    font-size: clamp(16px, 1.6vw, 18.5px);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 680px;
    margin: 24px auto 0;
}
.hero-lead strong { color: var(--text-primary); font-weight: 600; }

/* Eyebrow pill (Flexio "Future of Blockchain" equivalent) */
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--shadow-card);
}
.eyebrow-pill .pulse-dot {
    width: 8px; height: 8px;
    background: var(--status-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(132, 211, 66, 0.6);
    animation: pulse 1.8s ease-out infinite;
}

/* Pill CTAs */
.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.btn-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600; font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer; text-decoration: none;
    transition: transform .15s, box-shadow .2s, background .15s, border-color .15s, color .15s;
    font-family: inherit;
}
.btn-pill:hover { transform: translateY(-1px); }
.btn-pill-primary {
    background: var(--text-primary); color: #fff;
    box-shadow: 0 10px 28px -6px rgba(15, 23, 41, 0.3);
}
.btn-pill-primary:hover {
    background: #000;
    box-shadow: 0 16px 36px -8px rgba(15, 23, 41, 0.4);
}
.btn-pill-secondary {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border-color: var(--border-medium);
}
.btn-pill-secondary:hover { background: #fff; border-color: var(--text-primary); }

.hero-microcopy {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 22px;
}

/* Floating feature cards around center */
.float-card {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-card-lg);
    white-space: nowrap;
    animation: float 5s ease-in-out infinite;
}
.float-card i {
    color: var(--status-green-dark);
    font-size: 16px;
}
/* Em telas > 1200px, alinha com a borda do container central (1200px max) + 24px de padding interno.
   Em telas <= 1200px, mantém o percentual original. */
.float-tl { top: 16%; left:  max(5%, calc(50% - 600px + 24px)); animation-delay: 0s; }
.float-tr { top: 14%; right: max(5%, calc(50% - 600px + 24px)); animation-delay: 1.4s; }
.float-bl { bottom: 28%; left:  max(7%, calc(50% - 600px + 24px)); animation-delay: 2.5s; }
.float-br { bottom: 24%; right: max(7%, calc(50% - 600px + 24px)); animation-delay: 0.8s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@media (max-width: 1100px) {
    .float-tl { left: 2%; }
    .float-tr { right: 2%; }
    .float-bl { left: 2%; }
    .float-br { right: 2%; }
}
@media (max-width: 880px) {
    .float-card { display: none; }
}

/* Sparkle decorations */
.hero-sparkle {
    position: absolute;
    z-index: 1;
    color: var(--status-green);
    opacity: 0.55;
    pointer-events: none;
    animation: sparkle 3.5s ease-in-out infinite;
}
.hero-sparkle.s1 { top: 18%;  left: 22%; font-size: 22px; animation-delay: 0s;   }
.hero-sparkle.s2 { top: 40%;  right: 18%; font-size: 14px; animation-delay: 1.2s; }
.hero-sparkle.s3 { bottom: 32%; left: 20%; font-size: 14px; animation-delay: 2.4s; }
.hero-sparkle.s4 { top: 60%;  right: 26%; font-size: 18px; animation-delay: 1.8s; }
@keyframes sparkle {
    0%, 100% { opacity: 0.35; transform: scale(1)   rotate(0deg);   }
    50%      { opacity: 0.85; transform: scale(1.2) rotate(20deg);  }
}
@media (max-width: 768px) {
    .hero-sparkle { display: none; }
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}
.scroll-mouse {
    width: 22px; height: 34px;
    border: 1.5px solid var(--text-tertiary);
    border-radius: 12px;
    position: relative;
    display: inline-flex; justify-content: center;
    padding-top: 6px;
}
.scroll-dot {
    width: 3px; height: 7px;
    background: var(--text-tertiary);
    border-radius: 2px;
    animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0);  opacity: 1;   }
    50%      { transform: translateY(8px); opacity: 0.3; }
}
.scroll-text {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    font-weight: 600;
}
@media (max-width: 768px) {
    .scroll-hint { display: none; }
}

/* ============ TRUST BAR (gateway logos) ============ */
.trust-bar {
    background: #FFFFFF;
    padding: 48px 24px 56px;
    border-top: 1px solid var(--border-soft);
}
.trust-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 24px;
    font-weight: 500;
}
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px 64px;
}
.trust-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #94A3B8;
    filter: grayscale(1);
    opacity: 0.75;
    transition: opacity .2s, filter .2s, color .2s;
}
.trust-logo:hover { opacity: 1; filter: none; color: var(--text-primary); }
@media (max-width: 600px) {
    .trust-logos { gap: 24px 36px; }
    .trust-logo { font-size: 15px; }
}

/* ============ SHOWCASE (flow diagram section) ============ */
.showcase {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--brand-bg) 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
}
.showcase::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(60% 50% at 50% 50%, rgba(132, 211, 66, 0.10), transparent 70%);
    pointer-events: none;
}
.showcase .section-wide { position: relative; }

/* ============ HERO DIAGRAM (flow viz) ============ */
.hero-diagram {
    position: relative;
    width: 100%;
    aspect-ratio: 800 / 520;
    max-width: 760px;
    margin: 0 auto;
}
.diagram-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(15,23,41,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15,23,41,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
            mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
    pointer-events: none;
}
.flow-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: visible;
}

/* Node base */
.node {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-card);
    display: inline-flex; align-items: center; gap: 8px;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}
.node:hover { transform: translateY(-1px); box-shadow: var(--shadow-card-lg); }
.node-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--text-tertiary);
    display: inline-block;
}
.node-label { letter-spacing: -0.005em; }

/* Sides — each NODE is absolutely positioned by % so its center aligns
   exactly with the SVG path endpoints (viewBox % == container %). */
.diagram-side { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.diagram-side .node { position: absolute; pointer-events: auto; }

/* Sources anchored at left=5% — center at viewBox (40, Y). */
.diagram-sources .node {
    left: 5%;
    transform: translate(-50%, -50%);
}
.diagram-sources .node:nth-child(1) { top: 10%; }   /* viewBox y=52  */
.diagram-sources .node:nth-child(2) { top: 50%; }   /* viewBox y=260 */
.diagram-sources .node:nth-child(3) { top: 90%; }   /* viewBox y=468 */

/* Destinations anchored at left=95% — center at viewBox (760, Y).
   Vertical stack (label on top, % below) keeps the node narrow enough
   to fit alongside a 69%-wide hub without overlap. */
.diagram-destinations .node {
    left: 95%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 9px 13px;
    min-width: 0;
}
.diagram-destinations .node:nth-child(1) { top: 15%; }  /* viewBox y=78  */
.diagram-destinations .node:nth-child(2) { top: 50%; }  /* viewBox y=260 */
.diagram-destinations .node:nth-child(3) { top: 85%; }  /* viewBox y=442 */

.diagram-destinations .node-label { font-size: 11px; color: var(--text-secondary); font-weight: 500; letter-spacing: -0.005em; }
.diagram-destinations .node-pct { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.node-pct {
    font-size: 11px; font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.node-pct.good { color: var(--status-green-dark); }
.node-pct.bad  { color: var(--status-red); }

/* HUB — central dashboard frame.
   Width 62% of container so the visible left/right edges sit at exactly 19%/81%
   (= viewBox X 152/648), matching the SVG port endpoints. */
.diagram-hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 62%;
    z-index: 3;
}
.hub-frame {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 20px 20px 16px;
    box-shadow: var(--shadow-elevated);
    position: relative;
}
/* Corner ticks (chip-style) */
.hub-corner {
    position: absolute;
    width: 8px; height: 8px;
    border: 1.5px solid var(--status-green);
}
.hub-corner.tl { top: -2px; left: -2px; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.hub-corner.tr { top: -2px; right: -2px; border-left: 0;  border-bottom: 0; border-top-right-radius: 4px; }
.hub-corner.bl { bottom: -2px; left: -2px; border-right: 0; border-top: 0; border-bottom-left-radius: 4px; }
.hub-corner.br { bottom: -2px; right: -2px; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }
/* Ports (left/right small rectangles where lines enter/exit) */
.hub-port {
    position: absolute;
    width: 4px; height: 14px;
    background: var(--status-green);
    border-radius: 2px;
    top: 50%; transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(132, 211, 66, 0.6);
}
.hub-port.port-l { left: -4px; }
.hub-port.port-r { right: -4px; }

.hub-header { margin-bottom: 12px; }
.hub-status {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--status-green-dark);
}
.hub-status .pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--status-green);
    position: relative;
    box-shadow: 0 0 0 0 rgba(132, 211, 66, 0.6);
    animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(132, 211, 66, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(132, 211, 66, 0);   }
    100% { box-shadow: 0 0 0 0   rgba(132, 211, 66, 0);   }
}

.hub-kpi {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
    margin-bottom: 14px;
}
.hub-kpi > div {
    background: var(--brand-bg-alt);
    border-radius: 10px;
    padding: 10px 11px;
}
.hub-kpi span {
    font-size: 10px; color: var(--text-tertiary);
    text-transform: uppercase; letter-spacing: 0.06em;
    font-weight: 600;
    display: block;
}
.hub-kpi strong {
    display: block;
    font-size: 20px; font-weight: 700;
    letter-spacing: -0.02em; margin-top: 4px;
    font-variant-numeric: tabular-nums;
    color: var(--text-primary);
    line-height: 1.1;
}

.hub-chart {
    height: 110px;
    background: var(--brand-bg-alt);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.hub-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 12px;
    border-top: 1px dashed var(--border-soft);
    font-size: 11px;
}
.hub-foot-label { color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.hub-foot-value { color: var(--status-green-dark); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 13px; }

/* Mobile: collapse diagram to vertical stack — 3 sources, hub, 3 destinations */
@media (max-width: 880px) {
    .hero-diagram {
        aspect-ratio: auto;
        max-width: 420px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 0;
    }
    .diagram-grid, .flow-svg { display: none; }
    /* Hub chip-corners e ports só fazem sentido com SVG flow — esconde em mobile */
    .hub-corner, .hub-port { display: none; }

    .diagram-side {
        position: static !important;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 240px;
        gap: 8px;
        inset: auto !important;
    }
    /* Nodes individuais perdem absolute positioning — fluem em coluna */
    .diagram-side .node,
    .diagram-sources .node,
    .diagram-destinations .node {
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        justify-content: flex-start;
    }
    .diagram-destinations .node {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-width: 0;
        padding: 9px 14px;
    }
    /* Conector visual sutil entre cada grupo (sources / hub / dests) */
    .diagram-side::after {
        content: '';
        display: block;
        width: 1.5px; height: 18px;
        background: linear-gradient(to bottom, var(--status-green), transparent);
        margin: 6px auto 0;
        align-self: center;
    }
    .diagram-destinations::before {
        content: '';
        display: block;
        width: 1.5px; height: 18px;
        background: linear-gradient(to top, var(--status-green), transparent);
        margin: 0 auto 6px;
        align-self: center;
    }
    .diagram-destinations::after { display: none; }
    .diagram-hub {
        position: static !important;
        transform: none !important;
        top: auto !important; left: auto !important;
        width: 100%;
        max-width: 100%;
    }
}

/* ============ Existing mockup (kept for backward compat, unused on landing) ============ */
.mockup {
    background: #fff; border-radius: 18px; padding: 18px;
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--border-soft);
}
.mockup-bar {
    display: flex; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--border-soft); margin-bottom: 14px;
}
.mockup-bar i { width: 9px; height: 9px; border-radius: 50%; display: block; background: #E5E7EB; }
.mockup-header {
    display: flex; gap: 6px; padding: 0 0 14px;
    border-bottom: 1px solid var(--border-soft); margin-bottom: 16px;
    font-size: 12px;
}
.mockup-tab {
    padding: 6px 12px; border-radius: 8px;
    color: var(--text-tertiary); font-weight: 500;
}
.mockup-tab.active { background: var(--brand-bg); color: var(--text-primary); }

.mockup-kpi {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px;
}
.mockup-kpi > div { background: var(--brand-bg-alt); border-radius: 10px; padding: 11px 13px; }
.mockup-kpi span { font-size: 10px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.mockup-kpi strong { display: block; font-size: 18px; margin-top: 4px; font-weight: 700; letter-spacing: -0.02em; }
.mockup-kpi .delta { font-size: 10px; font-weight: 600; margin-top: 4px; display: block; text-transform: none; letter-spacing: 0; }
.mockup-kpi .up { color: var(--status-green-dark); }
.mockup-kpi .down { color: var(--status-red); }
.mockup-chart {
    height: 110px; background: var(--brand-bg-alt); border-radius: 10px;
    padding: 0; margin-bottom: 14px; overflow: hidden;
}
.mockup-variants .row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0; font-size: 12px;
    border-bottom: 1px solid var(--border-soft);
}
.mockup-variants .row:last-child { border-bottom: 0; }
.mockup-variants .name {
    font-weight: 500; color: var(--text-secondary);
    display: inline-flex; align-items: center; gap: 8px;
}
.mockup-variants .rate { font-weight: 600; font-variant-numeric: tabular-nums; }
.mockup-variants .rate.good { color: var(--status-green-dark); }
.mockup-variants .rate.bad { color: var(--status-red); }

/* ============ STORY ============ */
.story {
    background: #fff;
}
.story .center { text-align: center; display: block; }
.story-lead {
    font-size: clamp(17px, 1.7vw, 19px);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 760px; margin: 20px auto 0;
}
.story-lead strong { color: var(--text-primary); font-weight: 600; }
.story-bridge {
    margin: 36px auto 0;
    max-width: 720px;
    padding: 24px 28px;
    background: var(--brand-bg);
    border-left: 3px solid var(--status-green);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

/* ============ SIGNALS ============ */
.signals { background: var(--brand-bg); }
.signals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.signal-card {
    background: #fff; border: 1px solid var(--border-soft);
    border-radius: 16px; padding: 32px 28px;
    box-shadow: var(--shadow-card);
    transition: transform .2s, box-shadow .2s;
}
.signal-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-lg); }
.signal-card .num {
    font-size: 12px; color: var(--text-tertiary);
    font-weight: 600; letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
    display: block; margin-bottom: 16px;
}
.signal-card h3 { margin-bottom: 10px; }
.signal-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.65; margin: 0; }
@media (max-width: 767px) { .signals-grid { grid-template-columns: 1fr; } }

/* ============ SOLUTION ============ */
.solution { background: #fff; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .solution-grid { grid-template-columns: 1fr; gap: 36px; } }

.feature-row {
    display: flex; gap: 16px; padding: 18px 0;
    border-top: 1px solid var(--border-soft);
}
.feature-row:first-child { border-top: 0; padding-top: 4px; }
.feature-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--status-green-soft);
    color: var(--status-green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.feature-row h3 { margin: 4px 0 4px; }
.feature-row p { color: var(--text-secondary); font-size: 14px; line-height: 1.55; margin: 0; }

.before-after {
    background: linear-gradient(180deg, #FFFFFF, var(--brand-bg));
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-card-lg);
}
.card-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-tertiary);
    margin-bottom: 20px;
}
.before-after .line {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border-medium);
    font-size: 14px;
}
.before-after .line:last-of-type { border-bottom: 0; }
.before-after .value {
    color: var(--text-primary);
    font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    font-weight: 500;
    font-size: 13px;
}
.before-after .value.good { color: var(--status-green-dark); font-weight: 600; }
.before-after .value.bad  { color: var(--status-red); font-weight: 600; }
.decision-summary {
    margin-top: 16px;
    padding: 18px 20px;
    background: var(--text-primary); color: #fff;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.55;
}

/* ============ HOW IT WORKS ============ */
.how { background: var(--brand-bg); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card {
    background: #fff; padding: 36px 32px; border-radius: 16px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    transition: transform .2s, box-shadow .2s;
}
.how-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-lg); }
.how-card .step-number {
    font-size: 13px; font-weight: 700;
    color: var(--status-green-dark);
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 20px;
    display: block;
}
.how-card h3 { margin-bottom: 8px; font-size: 19px; }
.how-card .how-lede { font-size: 14px; color: var(--text-primary); font-weight: 500; margin: 0 0 10px; }
.how-card .how-detail { font-size: 13.5px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
@media (max-width: 767px) { .how-steps { grid-template-columns: 1fr; } }

/* ============ IMPACT CTA (vibrant green w/ dark card + watermark) ============ */
.impact-cta {
    position: relative;
    overflow: hidden;
    background: var(--status-green);
    padding: 96px 24px;
}
.impact-cta-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.impact-cta-watermark {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translate(-50%, 18%);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.14);
    white-space: nowrap;
    line-height: 1;
    user-select: none;
    width: 110%;
    text-align: center;
}
.impact-cta-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .impact-cta-grid { grid-template-columns: 1fr; gap: 36px; }
    .impact-cta-watermark { font-size: 160px; }
}

/* Dark stat card */
.impact-card {
    background: linear-gradient(160deg, #14181F 0%, #0A0E14 100%);
    border-radius: 24px;
    padding: 26px;
    color: #fff;
    box-shadow:
        0 32px 60px -20px rgba(0, 0, 0, 0.35),
        0 12px 28px -8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}
.impact-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(50% 60% at 100% 0%, rgba(132, 211, 66, 0.12), transparent 70%);
    pointer-events: none;
}
.impact-card > * { position: relative; z-index: 1; }
.impact-card-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px;
}
.impact-card-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: #E5E7EB;
}
.impact-card-tag-flag {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--status-green);
    color: var(--text-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px;
}
.impact-card-eye {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9CA3AF;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .15s;
    font-size: 14px;
}
.impact-card-eye:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.impact-card-label {
    font-size: 12px;
    color: #9CA3AF;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}
.impact-card-value {
    font-size: clamp(34px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.impact-card-value span {
    font-size: 0.55em;
    color: #6B7280;
    font-weight: 500;
}
.impact-card-value .impact-card-suffix {
    font-size: 0.4em;
    margin-left: 4px;
    letter-spacing: 0;
}
.impact-card-meta {
    margin-top: 14px;
    font-size: 13px;
}
.impact-meta-up {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--status-green);
    font-weight: 600;
}
.impact-card-actions {
    margin-top: 36px;
    display: flex; align-items: center; gap: 10px;
}
.impact-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #E5E7EB;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, transform .15s;
}
.impact-pill:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-1px); }
.impact-plus {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--status-green);
    color: var(--text-primary);
    border: 0;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    margin-left: auto;
    font-size: 18px;
    box-shadow: 0 6px 16px -4px rgba(132, 211, 66, 0.5);
    transition: transform .15s;
}
.impact-plus:hover { transform: translateY(-1px) scale(1.05); }

/* Side copy — all text white over the vibrant green */
.impact-cta-text h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin: 0 0 18px;
    text-shadow: 0 1px 0 rgba(15, 23, 41, 0.08);
}
.impact-cta-text > p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 28px;
    opacity: 0.92;
}
.impact-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.impact-cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: #fff;
}
.impact-li-icon {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.impact-cta-list li strong { color: #fff; font-weight: 700; }

.btn-pill-dark {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--text-primary); color: #fff;
    font-weight: 600; font-size: 14.5px;
    border: 1px solid var(--text-primary);
    cursor: pointer; text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .2s;
    box-shadow: 0 10px 24px -6px rgba(15, 23, 41, 0.4);
}
.btn-pill-dark:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -6px rgba(15, 23, 41, 0.5);
}

/* ============ ICP ============ */
.icp { background: #fff; }
.icp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.icp-col {
    background: var(--brand-bg);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--border-soft);
}
.icp-title {
    font-size: 16px; font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex; align-items: center; gap: 8px;
}
.icp-title.good { color: var(--status-green-dark); }
.icp-title.bad  { color: var(--text-secondary); }
.icp-list { list-style: none; padding: 0; margin: 0; }
.icp-list li {
    padding: 12px 0;
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-soft);
}
.icp-list li:last-child { border-bottom: 0; }
.icp-list li i {
    font-size: 18px; flex-shrink: 0; margin-top: 2px;
}
.icp-list li .ph-check-circle { color: var(--status-green-dark); }
.icp-list li .ph-x-circle { color: var(--text-tertiary); }
@media (max-width: 767px) { .icp-cols { grid-template-columns: 1fr; } }

/* ============ FEATURES LIST (substitui tabela comparativa) ============ */
.features-list {
    background: var(--brand-bg);
    position: relative;
}
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: var(--shadow-card);
    transition: transform .15s, box-shadow .2s, border-color .15s;
}
.check-item:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-card-lg);
    border-color: rgba(132, 211, 66, 0.3);
}
.check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--status-green-soft);
    color: var(--status-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 2px;
    border: 1px solid rgba(132, 211, 66, 0.25);
}
.check-item h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}
.check-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
@media (max-width: 760px) {
    .check-grid { grid-template-columns: 1fr; gap: 14px; }
    .check-item { padding: 18px 20px; gap: 14px; }
    .check-icon { width: 28px; height: 28px; font-size: 15px; }
    .check-item h3 { font-size: 15px; }
    .check-item p { font-size: 13.5px; }
}

/* ============ COMPARISON (legacy — mantido pra compat caso uses) ============ */
.compare { background: var(--brand-bg); }
.compare-table {
    background: #fff; border-radius: 18px; overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card-lg);
    overflow-x: auto;
}
.compare-table table {
    width: 100%; border-collapse: collapse; min-width: 760px;
    font-variant-numeric: tabular-nums;
}
.compare-table th, .compare-table td {
    padding: 16px 18px;
    text-align: center; font-size: 14px;
    border-bottom: 1px solid var(--border-soft);
}
.compare-table thead th {
    background: var(--brand-bg-alt);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 13px;
    padding: 18px;
}
.compare-table td:first-child, .compare-table th:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}
.compare-table .col-ours {
    background: var(--status-green-soft);
    font-weight: 600;
}
.compare-table thead th.col-ours {
    color: var(--status-green-dark);
    border-bottom: 2px solid var(--status-green);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.cell-yes { color: var(--status-green-dark); font-weight: 600; }
.cell-yes-neutral { color: var(--text-primary); font-weight: 500; }
.cell-no { color: var(--status-red); font-weight: 500; }
.cell-no .ph-x { font-size: 20px; vertical-align: middle; }

/* ============ PRICING ============ */
.pricing { background: #fff; }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    padding: 96px 0 80px;
}
.price-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 41, 0.12);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex; flex-direction: column;
    position: relative;
    box-shadow: 0 8px 24px -8px rgba(15, 23, 41, 0.10), 0 2px 6px rgba(15, 23, 41, 0.04);
}
.price-card.featured {
    background: #FFFFFF;
    border: 2px solid var(--status-green);
    transform: scale(1.2);
    z-index: 2;
    box-shadow:
        0 32px 80px -20px rgba(132, 211, 66, 0.45),
        0 16px 40px -8px rgba(15, 23, 41, 0.12);
}
.price-card .badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--status-green); color: var(--text-primary);
    padding: 5px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    box-shadow: 0 4px 12px -2px rgba(132, 211, 66, 0.4);
}
.price-card h3 { margin: 0; font-size: 18px; font-weight: 600; }
.price-card .price {
    margin: 16px 0 12px;
    font-size: 44px; font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.price-card .price small {
    font-size: 14px; font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0;
}
.price-card .pitch {
    font-size: 13.5px; color: var(--text-secondary);
    min-height: 40px;
    line-height: 1.5;
    margin: 0;
}
.price-card ul {
    list-style: none; padding: 0; margin: 24px 0 28px;
    flex: 1;
}
.price-card ul li {
    padding: 9px 0 9px 26px;
    font-size: 14px;
    position: relative;
    color: var(--text-primary);
    line-height: 1.5;
}
.price-card ul li i {
    position: absolute;
    left: 0; top: 11px;
    color: var(--status-green-dark);
    font-size: 16px;
    line-height: 1;
}
.price-card ul li.x { color: var(--text-tertiary); }
.price-card ul li.x i { color: var(--text-tertiary); }
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; padding: 30px 0; gap: 28px; }
    .price-card.featured { transform: none; order: -1; }
}

/* ============ GUARANTEES ============ */
.guarantees { background: var(--brand-bg); }
.guarantees-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.guarantee-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    transition: transform .2s, box-shadow .2s;
}
.guarantee-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-lg); }
.guarantee-card .icon-wrap {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--status-green-soft); color: var(--status-green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 22px;
}
.guarantee-card h4 { margin: 0 0 6px; }
.guarantee-card p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .guarantees-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .guarantees-grid { grid-template-columns: 1fr; } }

/* ============ OBJECTIONS ============ */
.objections { background: #fff; }
.objections-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.obj-card {
    background: var(--brand-bg);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 28px;
}
.obj-card .q {
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-primary);
    font-size: 15px;
}
.obj-card .a {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}
.obj-card .a strong { color: var(--text-primary); }
@media (max-width: 767px) { .objections-grid { grid-template-columns: 1fr; } }

/* ============ URGENCY ============ */
.urgency {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: #fff;
    position: relative; overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.urgency::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(40% 70% at 100% 0%, rgba(132, 211, 66, 0.12), transparent 70%),
        radial-gradient(50% 50% at 0% 100%, var(--navy-glow-blue), transparent 70%);
    pointer-events: none;
}
.urgency::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, #000 30%, transparent 85%);
            mask-image: radial-gradient(ellipse 80% 80% at center, #000 30%, transparent 85%);
    pointer-events: none;
}
.urgency .section-narrow { position: relative; z-index: 1; }
.urgency-grid {
    display: flex; align-items: flex-start; gap: 28px;
}
.urgency-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(132, 211, 66, 0.12);
    color: var(--status-green);
    border: 1px solid rgba(132, 211, 66, 0.2);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
}
.urgency h2 {
    color: #fff;
    font-size: clamp(22px, 2.6vw, 30px);
    margin: 12px 0 14px;
    letter-spacing: -0.02em;
}
.urgency p { color: #94A3B8; font-size: 15.5px; line-height: 1.7; margin: 0; }
.urgency p strong { color: #fff; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--brand-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    display: flex; flex-direction: column;
}
.testimonial .stars {
    color: var(--status-yellow);
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 2px;
}
.testimonial blockquote {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px;
    color: var(--text-primary);
    flex: 1;
}
.testimonial .author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
}
.testimonial .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--status-green), var(--status-green-dark));
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 13px;
}
.testimonial .name { font-size: 13px; font-weight: 600; }
.testimonial .role { font-size: 12px; color: var(--text-tertiary); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--brand-bg);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: border-color .2s;
}
.faq-item[open] { border-color: var(--border-medium); }
.faq-item summary {
    list-style: none; cursor: pointer;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-weight: 600; font-size: 15px;
    color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { transition: transform .2s; font-size: 18px; color: var(--text-tertiary); }
.faq-item[open] summary i { transform: rotate(45deg); color: var(--status-green-dark); }
.faq-item .answer {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============ FINAL CTA ============ */
.final-cta {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(40% 70% at 50% 0%, rgba(132, 211, 66, 0.18), transparent 70%),
        radial-gradient(60% 60% at 50% 100%, var(--navy-glow-blue), transparent 70%);
    pointer-events: none;
}
.final-cta::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at center, #000 20%, transparent 80%);
            mask-image: radial-gradient(ellipse 70% 80% at center, #000 20%, transparent 80%);
    pointer-events: none;
}
.final-cta .section-narrow { position: relative; z-index: 1; }
.final-cta h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 42px);
    letter-spacing: -0.025em;
}
.final-cta .lead { color: #94A3B8; margin: 20px auto 36px; }
.final-cta .btn-primary {
    background: var(--status-green-dark); color: #fff;
    font-size: 16px; padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 16px 40px -8px rgba(132, 211, 66, 0.5);
    border: 1px solid rgba(132, 211, 66, 0.4);
}
.final-cta .btn-primary:hover {
    background: var(--status-green);
    color: var(--text-primary);
    box-shadow: 0 20px 48px -8px rgba(132, 211, 66, 0.7);
}
.final-cta .cta-microcopy { color: #94A3B8; margin-top: 16px; }

/* ============ PS CARD ============ */
.ps {
    background: var(--brand-bg);
    padding: 80px 24px 96px;
}
.ps-card {
    max-width: 760px; margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 40px 44px;
    box-shadow: var(--shadow-card);
}
.ps-card p {
    font-size: 15.5px;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0 0 16px;
}
.ps-card p:last-of-type { margin-bottom: 0; }
.ps-card .signature {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* ============ FOOTER ============ */
footer.site-footer {
    background: #fff;
    border-top: 1px solid var(--border-soft);
    padding: 36px 24px;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
}
.footer-brand { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.footer-links {
    display: flex; gap: 28px;
    font-size: 13px; color: var(--text-secondary);
}
.footer-links a { transition: color .15s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { font-size: 12px; color: var(--text-tertiary); }
@media (max-width: 600px) {
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.is-visible { animation: fadeUp .6s ease-out forwards; }

/* ============ A11Y ============ */
:focus-visible {
    outline: 2px solid var(--status-green);
    outline-offset: 2px;
    border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1 !important; }
}

/* ============================================================
   MOBILE FIXES — consolidados no fim para garantir precedência
   ============================================================ */

/* Tablets (≤900px) */
@media (max-width: 900px) {
    section { padding: 64px 20px; }
    .section-head { margin-bottom: 40px; }
    .hero-v2 { padding: 84px 20px 60px; min-height: auto; }

    /* Sparkles e ornaments podem distrair em mobile */
    .corner-orn { display: none; }
    .hero-sparkle { display: none; }

    /* Pricing card destacado: sem scale (quebra grid) + grid linear */
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; padding: 24px 0; }
    .price-card.featured { transform: none !important; padding: 36px 28px; }
}

/* Smartphones (≤640px) */
@media (max-width: 640px) {
    section { padding: 56px 16px; }
    .nav-inner { padding: 14px 16px; }
    .section-head { margin-bottom: 32px; }

    /* Tipografia */
    h1 { font-size: clamp(28px, 8vw, 36px); line-height: 1.12; }
    h2 { font-size: clamp(22px, 6vw, 28px); line-height: 1.18; }
    h3 { font-size: 17px; }
    .lead { font-size: 15px; }

    /* Hero */
    .hero-v2 { padding: 70px 16px 56px; }
    .hero-center h1 { font-size: clamp(28px, 8vw, 36px); }
    .hero-lead { font-size: 15px; margin-top: 20px; }
    .eyebrow-pill { font-size: 10px; padding: 5px 12px; letter-spacing: 0.05em; }
    .hero-cta-row {
        flex-direction: column;
        gap: 10px;
        margin-top: 28px;
    }
    .hero-cta-row .btn-pill {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14.5px;
    }
    .hero-microcopy { font-size: 11px; }
    .hero-trust { gap: 14px; margin-top: 28px; font-size: 12px; }
    .hero-grid-bg { background-size: 36px 36px; }

    /* Hero diagram em modo stack (já vinha quase certo) */
    .hero-diagram { gap: 14px; }
    .diagram-hub { max-width: 100%; }
    .hub-frame { padding: 16px; border-radius: 14px; }
    .hub-kpi { gap: 6px; }
    .hub-kpi > div { padding: 8px 10px; border-radius: 8px; }
    .hub-kpi strong { font-size: 15px; }
    .hub-kpi span { font-size: 9px; }
    .hub-chart { height: 72px; }
    .hub-foot { font-size: 10px; padding-top: 10px; }
    .hub-foot-value { font-size: 12px; }

    /* Trust bar */
    .trust-bar { padding: 36px 16px 40px; }
    .trust-logos { gap: 18px 28px; }
    .trust-logo { font-size: 14px; }

    /* Showcase */
    .showcase { padding: 60px 16px; }

    /* Story */
    .story-lead { font-size: 15px; line-height: 1.65; }
    .story-bridge { padding: 18px 20px; font-size: 14px; }

    /* Signals cards */
    .signal-card { padding: 24px 22px; }
    .signal-card h3 { font-size: 16px; }
    .signal-card p { font-size: 13px; }

    /* Solution feature rows */
    .feature-row { padding: 16px 0; gap: 12px; }
    .feature-icon { width: 36px; height: 36px; font-size: 18px; }
    .feature-row h3 { font-size: 15px; }
    .feature-row p { font-size: 13px; }
    .before-after { padding: 20px; border-radius: 14px; }
    .before-after .value { font-size: 12px; }
    .decision-summary { padding: 14px 16px; font-size: 13px; }

    /* How cards */
    .how-card { padding: 26px 22px; }
    .how-card h3 { font-size: 17px; }
    .how-card .how-lede { font-size: 13px; }
    .how-card .how-detail { font-size: 13px; }

    /* Impact CTA */
    .impact-cta { padding: 64px 18px; }
    .impact-cta-grid { gap: 32px; }
    .impact-cta-watermark {
        font-size: clamp(80px, 22vw, 140px);
        width: 100%;
        opacity: 0.18;
    }
    .impact-card { padding: 22px; border-radius: 18px; }
    .impact-card-value { font-size: 30px; }
    .impact-card-value .impact-card-suffix { font-size: 0.45em; }
    .impact-card-actions { margin-top: 24px; flex-wrap: wrap; gap: 8px; }
    .impact-pill { padding: 8px 12px; font-size: 12px; }
    .impact-plus { margin-left: 0; }
    .impact-cta-text h2 { font-size: 26px; }
    .impact-cta-text > p { font-size: 14px; margin-bottom: 22px; }
    .impact-cta-list li { font-size: 13.5px; gap: 12px; padding: 8px 0; }
    .impact-li-icon { width: 30px; height: 30px; font-size: 14px; }
    .btn-pill-dark { padding: 13px 22px; font-size: 14px; width: 100%; justify-content: center; }

    /* ICP cols */
    .icp-col { padding: 28px 22px; }
    .icp-title { font-size: 15px; }
    .icp-list li { font-size: 13.5px; padding: 10px 0; }

    /* Compare — força scroll horizontal dentro do card */
    .compare-table { border-radius: 14px; }
    .compare-table table { font-size: 13px; }
    .compare-table th, .compare-table td { padding: 12px 12px; }

    /* Pricing card */
    .price-card { padding: 30px 24px; border-radius: 18px; }
    .price-card .price { font-size: 36px; }
    .price-card .pitch { font-size: 13px; }
    .price-card ul li { font-size: 13px; padding: 7px 0; gap: 8px; }
    .price-card.featured { padding: 38px 26px; box-shadow: 0 12px 36px -8px rgba(132,211,66,0.3); }

    /* Guarantees */
    .guarantee-card { padding: 22px 20px; }
    .guarantee-card h4 { font-size: 14px; }
    .guarantee-card p { font-size: 12.5px; }

    /* Objections */
    .obj-card { padding: 22px 20px; }
    .obj-card .q { font-size: 14.5px; }
    .obj-card .a { font-size: 13.5px; }

    /* Urgency */
    .urgency-grid { flex-direction: column; gap: 18px; }
    .urgency-icon { width: 48px; height: 48px; font-size: 24px; }

    /* Testimonials */
    .testimonial { padding: 24px 22px; border-radius: 16px; }
    .testimonial blockquote { font-size: 14px; }

    /* FAQ */
    .faq-item summary { padding: 18px 20px; font-size: 14px; }
    .faq-item .answer { padding: 0 20px 20px; font-size: 13.5px; }

    /* Final CTA */
    .final-cta { padding: 70px 18px; }
    .final-cta h2 { font-size: clamp(24px, 6vw, 32px); }
    .final-cta .lead { font-size: 15px; margin: 16px auto 26px; }
    .final-cta .btn-primary { width: 100%; justify-content: center; padding: 15px 20px; font-size: 15px; }

    /* P.S. */
    .ps { padding: 56px 16px 64px; }
    .ps-card { padding: 28px 24px; }
    .ps-card p { font-size: 14.5px; }

    /* Footer */
    .footer-links { flex-wrap: wrap; gap: 14px 18px; font-size: 12.5px; }
}

/* Smartphones bem pequenos (≤380px) — iPhone SE, Galaxy A series */
@media (max-width: 380px) {
    section { padding: 48px 14px; }
    .hero-v2 { padding: 60px 14px 48px; }
    .hero-center h1 { font-size: 26px; }
    h2 { font-size: 22px; }
    .impact-cta-watermark { font-size: 64px; }
    .impact-card-value { font-size: 26px; }
    .price-card { padding: 26px 20px; }
    .price-card .price { font-size: 32px; }
}

/* ============================================================
   FIXES FINAIS — específicos por componente que ainda vazavam
   ============================================================ */

/* Hub frame em mobile: garante que cabe e não vaza */
@media (max-width: 640px) {
    .diagram-hub { padding: 0; }
    .hub-frame {
        max-width: 100%;
        width: 100%;
        padding: 14px;
    }
    .hub-corner { width: 6px; height: 6px; }
    .hub-port { width: 3px; height: 10px; }
    .hub-status { font-size: 9px; gap: 6px; }
    .hub-status .pulse { width: 5px; height: 5px; }
}

/* Impact card em mobile: garante full width sem vazar */
@media (max-width: 640px) {
    .impact-card {
        max-width: 100%;
        width: 100%;
    }
    /* Watermark: limita máximo absoluto pra não fazer scroll horizontal */
    .impact-cta-watermark {
        max-width: 100%;
        font-size: min(22vw, 110px);
    }
}

/* Source/destination nodes: garante que cabem e quebram texto se preciso */
@media (max-width: 880px) {
    .node {
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }
}

/* Trust bar: garante wrap apropriado */
@media (max-width: 640px) {
    .trust-logos {
        gap: 14px 20px;
        padding: 0 8px;
    }
    .trust-logo { font-size: 13px; }
    .trust-label { font-size: 11px; padding: 0 8px; }
}

/* Sections — garante padding mínimo nas laterais sempre */
@media (max-width: 640px) {
    .section-wide, .section-narrow {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Hero highlight (palavras anúncio/venda com underline verde) — evita quebra estranha */
.hl-em {
    display: inline-block;
    line-height: 1.05;
}

/* Force garante que NENHUM container vai estourar viewport.
   .impact-cta-grid removido daqui — tem max-width próprio (980px) na regra principal,
   e essa força global anulava ele em viewport grande. */
.hero-grid, .pricing-grid,
.signals-grid, .solution-grid, .how-steps,
.icp-cols, .guarantees-grid, .objections-grid,
.testimonials-grid {
    max-width: 100%;
}

/* ============================================================
   COMPARE TABLE em mobile — transforma cada row em card vertical
   (sem scroll horizontal, sem precisar puxar pro lado)
   ============================================================ */

@media (max-width: 760px) {
    .compare .section-head { margin-bottom: 32px; }

    /* Reseta o "container scrollavel" — agora cada row é card próprio */
    .compare-table {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    /* Tabela vira lista de cards */
    .compare-table table,
    .compare-table thead,
    .compare-table tbody,
    .compare-table tr,
    .compare-table th,
    .compare-table td {
        display: block;
        min-width: 0;
    }

    .compare-table thead { display: none; }

    .compare-table tbody tr {
        background: #fff;
        border: 1px solid var(--border-soft);
        border-radius: 14px;
        padding: 18px;
        margin-bottom: 14px;
        box-shadow: var(--shadow-card);
    }

    /* Primeira célula vira título do card */
    .compare-table tbody td:first-child {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        padding: 0 0 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid var(--border-soft);
        text-align: left;
    }

    /* Demais células viram pares "Concorrente · Valor" */
    .compare-table tbody td:not(:first-child) {
        position: relative;
        padding: 8px 0 8px 116px;
        text-align: left;
        font-size: 13.5px;
        font-weight: 500;
        line-height: 1.4;
    }

    .compare-table tbody td:not(:first-child)::before {
        position: absolute;
        left: 0;
        top: 8px;
        width: 104px;
        font-size: 12px;
        font-weight: 500;
        color: var(--text-tertiary);
        letter-spacing: -0.005em;
    }
    .compare-table tbody td:nth-child(2)::before { content: 'Bitly'; }
    .compare-table tbody td:nth-child(3)::before { content: 'Meta Pixel'; }
    .compare-table tbody td:nth-child(4)::before { content: 'Google Analytics'; }
    .compare-table tbody td:nth-child(5)::before { content: 'Redireciona.me'; color: var(--status-green-dark); font-weight: 600; }

    /* Nossa coluna destacada com bg verde sutil */
    .compare-table tbody td.col-ours {
        background: var(--status-green-soft);
        border-radius: 10px;
        padding: 10px 12px 10px 116px;
        margin-top: 6px;
        font-weight: 600;
        color: var(--status-green-dark);
    }
    .compare-table tbody td.col-ours::before {
        top: 10px;
        left: 12px;
    }

    /* Ícone X dentro da célula */
    .compare-table tbody td .ph-x {
        font-size: 16px;
        vertical-align: middle;
    }
}
