/* ==========================================================================
   ÁUREA INVESTIMENTOS — Design Premium Fintech
   Dark Navy + Electric Blue + White. Inter only. No serif. No gold.
   ========================================================================== */

:root {
    --bg: #0a1838;
    --bg-1: #081530;
    --bg-2: #0d1f42;
    --card: #112649;
    --card-hi: #16305a;
    --card-hover: #1a3766;

    --text: #ffffff;
    --text-muted: #c8d4e5;
    --text-soft: #8a9cb4;
    --text-dim: #5f7291;

    --blue: #1a73ff;
    --blue-2: #3d8bff;
    --blue-3: #6aa6ff;
    --blue-dark: #0f5fe0;
    --blue-soft: rgba(26, 115, 255, 0.14);
    --blue-ring: rgba(61, 139, 255, 0.36);
    --blue-glow: rgba(61, 139, 255, 0.6);

    --border: rgba(255, 255, 255, 0.09);
    --border-hi: rgba(255, 255, 255, 0.16);
    --border-blue: rgba(61, 139, 255, 0.32);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.38);
    --shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
    --shadow-blue: 0 22px 60px rgba(26, 115, 255, 0.28);

    --max: 1240px;
    --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html, body {
    scrollbar-width: thin;
    scrollbar-color: rgba(61, 139, 255, 0.55) rgba(8, 21, 48, 0.85);
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: #06122e;
    line-height: 1.62;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: rgba(8, 21, 48, 0.95); }
body::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(26, 115, 255, 0.75), rgba(61, 139, 255, 0.65));
    border: 2px solid rgba(8, 21, 48, 0.95);
}

img { max-width: 100%; display: block; }
::selection { background: rgba(26, 115, 255, 0.5); color: #fff; }

/* ==========================================================================
   AMBIENT BACKGROUND — Trading Room Atmosphere
   Monitores com charts SVG em m\u00faltiplas profundidades + atmosfera azul.
   ========================================================================== */
.ambient-wrap {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    isolation: isolate;
}

/* Base: gradient radial azul profundo (como ilumina\u00e7\u00e3o dos monitores) */
/* OPCIONAL: se voce salvar uma imagem real em assets/images/bg-trading.jpg
   ela sera usada por cima do SVG, dando qualidade fotografica maxima.
   Se o arquivo nao existir, o SVG aparece normalmente. */
.bg-photo {
    position: absolute;
    inset: 0;
    background-image: url("../images/bg-trading.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85;
    filter: blur(1px) saturate(1.1);
    z-index: 1;
}

.bg-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 40%, rgba(30, 80, 180, 0.28), transparent 65%),
        linear-gradient(175deg, #0a1c48 0%, #061433 50%, #030a1e 100%);
}

/* Big blurred zigzag chart screens - photographic trading room feel */
.bg-screens {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.62;
    filter: blur(14px) saturate(1.2);
    mix-blend-mode: screen;
}

/* Blue monochromatic tint - color grades everything uniformly */
.bg-tint {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(15, 45, 110, 0.28) 0%,
            rgba(15, 45, 110, 0.15) 40%,
            rgba(10, 25, 60, 0.45) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Atmosphere — brilho azul no centro (como spotlight sobre a mesa) */

/* Vignette — escurecimento gradual das bordas para foco cinematogr\u00e1fico */
.bg-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 75% 70% at center,
            transparent 10%,
            rgba(2, 6, 18, 0.55) 50%,
            rgba(2, 6, 18, 0.90) 85%,
            rgba(2, 6, 18, 1) 100%
        );
    pointer-events: none;
}

/* Noise sutil pra sensa\u00e7\u00e3o fotogr\u00e1fica (film grain) */
.bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.75  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.55'/></svg>");
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    z-index: 120;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    box-shadow: 0 0 16px var(--blue-glow);
    transition: width 0.08s linear;
}

/* ---------- Reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Layout ---------- */
.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

.section {
    padding: clamp(4rem, 8vw, 7.5rem) 0;
    position: relative;
}

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

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.9rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
}

p, li {
    color: var(--text-muted);
    font-size: clamp(0.98rem, 1.1vw, 1.06rem);
    line-height: 1.68;
}

a { color: inherit; }

.grad-text {
    background: linear-gradient(135deg, var(--blue-2), var(--blue-3) 60%, #7fbbff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: inherit;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-3);
    margin-bottom: 1.1rem;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--blue-2), transparent);
}

.eyebrow-white { color: #fff; }
.eyebrow-white::before { background: linear-gradient(90deg, #fff, transparent); }

.pre-title {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-3);
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--border-blue);
    background: var(--blue-soft);
    margin-bottom: 1.4rem;
}

.section-head {
    max-width: 820px;
    margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
}

.section-sub {
    margin-top: 0.85rem;
    font-size: clamp(1rem, 1.2vw, 1.14rem);
    color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 10px;
    padding: 0.88rem 1.4rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    background-size: 100% 100%;
    box-shadow: 0 12px 32px rgba(26, 115, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
    white-space: nowrap;
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s var(--ease);
    pointer-events: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(26, 115, 255, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    filter: brightness(1.05);
}

.cta-btn:hover::after { left: 140%; }
.cta-btn:active { transform: translateY(0); }

.cta-xl {
    padding: 1.05rem 1.7rem;
    font-size: 1rem;
    border-radius: 11px;
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 1px solid var(--border-hi);
    color: #ffffff;
    padding: 0.85rem 1.35rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
    white-space: nowrap;
}

.ghost-btn:hover {
    background: rgba(61, 139, 255, 0.08);
    border-color: var(--blue-ring);
    transform: translateY(-1px);
}

.ghost-xl {
    padding: 1.02rem 1.65rem;
    font-size: 1rem;
    border-radius: 11px;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--blue-3);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}

.link-btn:hover { color: #fff; transform: translateX(2px); }

/* ---------- Topbar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(10, 24, 56, 0.82);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    padding-top: env(safe-area-inset-top, 0px);
}

.topbar.scrolled {
    background: rgba(10, 24, 56, 0.96);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.42);
    border-bottom-color: rgba(61, 139, 255, 0.18);
}

.topbar-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand { text-decoration: none; display: inline-flex; align-items: center; }

.brand-logo {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 16px rgba(61, 139, 255, 0.2)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s var(--ease);
}

.brand:hover .brand-logo { transform: scale(1.04); }

.top-nav {
    display: flex;
    gap: 1.6rem;
}

.top-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.22s var(--ease);
}

.top-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.top-nav a:hover { color: #fff; }
.top-nav a:hover::after { width: 100%; }

.top-actions {
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.hide-sm {}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
    text-align: center;
    position: relative;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    max-width: 26ch;
    margin-bottom: 1.4rem;
}

.hero-lead {
    max-width: 62ch;
    font-size: clamp(1.05rem, 1.3vw, 1.22rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.hero-visual-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, rgba(17, 38, 73, 0.95), rgba(10, 24, 56, 0.95));
    border: 1px solid var(--border-hi);
    padding: clamp(1rem, 2vw, 1.8rem);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(61, 139, 255, 0.12) inset,
        0 0 80px rgba(26, 115, 255, 0.18);
}

.hero-visual-frame::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61, 139, 255, 0.6), transparent);
}

.hero-visual-frame img {
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.hero-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.78rem 0.95rem;
    border-radius: 14px;
    background: rgba(17, 38, 73, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-hi);
    box-shadow: var(--shadow);
    text-align: left;
    color: var(--blue-3);
    animation: floatY 6s ease-in-out infinite;
}

.hero-chip small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 0.16rem;
}

.hero-chip strong {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-chip-a {
    top: 8%;
    left: -4%;
    animation-delay: -1s;
}

.hero-chip-b {
    bottom: 14%;
    right: -4%;
    animation-delay: -3s;
}

.chip-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #31e0a8;
    box-shadow: 0 0 0 4px rgba(49, 224, 168, 0.2), 0 0 16px rgba(49, 224, 168, 0.6);
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats-band {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3rem, 5vw, 5rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stat {
    padding: clamp(1.5rem, 3vw, 2.2rem) 1.4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(17, 38, 73, 0.7), rgba(10, 24, 56, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    position: relative;
}

.stat-number {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #fff, #9fc2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-suffix {
    font-size: 0.55em;
    font-weight: 700;
    margin-left: 0.12em;
    color: var(--blue-3);
    -webkit-text-fill-color: var(--blue-3);
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-soft);
    letter-spacing: 0.01em;
    font-weight: 500;
}

/* ==========================================================================
   VALUE PROPS (4 cards)
   ========================================================================== */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.vp-card {
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(17, 38, 73, 0.7), rgba(10, 24, 56, 0.85));
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.vp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(61, 139, 255, 0), rgba(61, 139, 255, 0));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.4s var(--ease);
}

.vp-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-blue);
    background: linear-gradient(180deg, rgba(17, 35, 65, 0.85), rgba(17, 38, 73, 0.9));
}

.vp-card:hover::before {
    background: linear-gradient(135deg, rgba(61, 139, 255, 0.6), rgba(61, 139, 255, 0.15) 40%, transparent 70%);
}

.vp-ico {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--blue-3);
    background: var(--blue-soft);
    border: 1px solid var(--border-blue);
}

.vp-card h3 {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 600;
}

.vp-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-band-inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 3rem);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 20% 30%, rgba(26, 115, 255, 0.22), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(61, 139, 255, 0.18), transparent 55%),
        linear-gradient(135deg, #112b5c, #0a1838);
    border: 1px solid var(--border-blue);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.cta-band-inner::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -10%;
    width: 120%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(61, 139, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.cta-band-inner > * { position: relative; }

.cta-band-inner h2 {
    margin-bottom: 0.9rem;
    color: #fff;
}

.cta-band-inner p {
    margin: 0 auto 1.8rem;
    max-width: 58ch;
    color: var(--text-muted);
}

/* ==========================================================================
   DUAL (Trader / Investidor)
   ========================================================================== */
.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.dual-card {
    padding: clamp(1.8rem, 3vw, 2.4rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(17, 38, 73, 0.75), rgba(10, 24, 56, 0.88));
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.dual-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-blue);
}

.dual-featured {
    background:
        radial-gradient(circle at 85% 10%, rgba(26, 115, 255, 0.18), transparent 45%),
        linear-gradient(180deg, rgba(22, 48, 90, 0.9), rgba(14, 30, 64, 0.95));
    border-color: var(--border-blue);
}

.dual-head {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.dual-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-3);
    background: var(--blue-soft);
    border: 1px solid var(--border-blue);
}

.dual-card h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    letter-spacing: -0.025em;
    color: #fff;
    font-weight: 700;
}

.dual-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.62;
}

.bullet-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    padding: 0.3rem 0 0.6rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--blue-soft);
    border: 1.5px solid var(--blue-2);
}

.bullet-list li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.72rem;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid var(--blue-2);
    border-bottom: 1.5px solid var(--blue-2);
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.dual-card .cta-btn { margin-top: auto; width: fit-content; }

/* ==========================================================================
   PLATFORMS
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.platform-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(17, 38, 73, 0.75), rgba(10, 24, 56, 0.88));
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-blue);
}

.platform-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(17, 38, 73, 0.9), rgba(10, 24, 56, 0.95));
    border-bottom: 1px solid var(--border);
}

.platform-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.platform-card:hover .platform-img img { transform: scale(1.05); }

.platform-body {
    padding: 1.3rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.platform-body h3 {
    color: #fff;
    font-size: 1.15rem;
}

.platform-body p {
    font-size: 0.92rem;
    flex: 1;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.platform-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.86rem;
    color: var(--text-soft);
    font-style: italic;
}

/* ==========================================================================
   SOLUTIONS
   ========================================================================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sol-card {
    padding: 1.8rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(17, 38, 73, 0.7), rgba(10, 24, 56, 0.85));
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sol-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-blue);
}

.sol-ico {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--blue-2);
    background:
        radial-gradient(circle at 30% 30%, rgba(61, 139, 255, 0.25), transparent 60%),
        var(--blue-soft);
    border: 1px solid var(--border-blue);
}

.sol-card h3 {
    color: #fff;
    font-size: 1.15rem;
}

.sol-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ==========================================================================
   APP SECTION
   ========================================================================== */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.app-copy .eyebrow { margin-bottom: 1rem; }
.app-copy h2 { margin-bottom: 1rem; }
.app-copy p { margin-bottom: 1.4rem; }
.app-copy .cta-btn { margin-top: 0.5rem; }

.check-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    padding: 0.4rem 0 1.4rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.check-list li svg {
    flex-shrink: 0;
    color: var(--blue-2);
    margin-top: 0.24rem;
    padding: 3px;
    background: var(--blue-soft);
    border-radius: 50%;
    border: 1px solid var(--border-blue);
    width: 26px;
    height: 26px;
}

.app-media {
    position: relative;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(22, 48, 90, 0.8), rgba(10, 24, 56, 0.9));
    border: 1px solid var(--border-hi);
    padding: 1.4rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.app-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(26, 115, 255, 0.2), transparent 50%),
        radial-gradient(circle at 20% 90%, rgba(61, 139, 255, 0.15), transparent 50%);
    pointer-events: none;
}

.app-media img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 14px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* ==========================================================================
   CARD GENIAL
   ========================================================================== */
.card-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.card-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 440px;
    background:
        radial-gradient(circle at 60% 30%, rgba(26, 115, 255, 0.24), transparent 50%),
        linear-gradient(160deg, rgba(22, 48, 90, 0.9), rgba(10, 24, 56, 0.95));
    border: 1px solid var(--border-hi);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(61, 139, 255, 0.2), transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.card-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-copy .eyebrow { margin-bottom: 1rem; }
.card-copy h2 { margin-bottom: 1rem; max-width: 22ch; }
.card-copy > p { margin-bottom: 1.3rem; }
.card-copy .cta-btn { margin-top: 1rem; }

.muted-note {
    font-size: 0.85rem !important;
    color: var(--text-soft) !important;
    font-style: italic;
    margin-bottom: 0.5rem !important;
}

/* ==========================================================================
   CEO
   ========================================================================== */
.ceo-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(26, 115, 255, 0.18), transparent 45%),
        linear-gradient(160deg, rgba(22, 48, 90, 0.85), rgba(14, 30, 64, 0.92));
    border: 1px solid var(--border-blue);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.ceo-media {
    position: relative;
    min-height: 480px;
    background: linear-gradient(145deg, rgba(10, 24, 56, 0.95), rgba(14, 28, 52, 0.95));
    overflow: hidden;
}

.ceo-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 36% 28%, rgba(61, 139, 255, 0.35), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.ceo-media::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(14, 30, 64, 0.6), transparent);
    z-index: 2;
    pointer-events: none;
}

.ceo-media img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    z-index: 2;
    filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.48));
}

.ceo-content {
    padding: clamp(2rem, 3.5vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
}

.ceo-role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-3);
}

.ceo-content h3 {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.ceo-content p {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.7;
    max-width: 58ch;
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid var(--blue-2);
}

.ceo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.ceo-chips span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--blue-3);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: var(--blue-soft);
    border: 1px solid var(--border-blue);
}

.ceo-content .cta-btn {
    margin-top: 0.6rem;
    width: fit-content;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(17, 38, 73, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item[open] {
    border-color: var(--border-blue);
    background: rgba(22, 48, 90, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.faq-item summary {
    padding: 1.15rem 1.3rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none;
    transition: color 0.22s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue-3); }

.faq-plus {
    width: 26px; height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--blue-soft);
    border: 1px solid var(--border-blue);
    position: relative;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 11px;
    height: 1.5px;
    background: var(--blue-2);
    transform: translate(-50%, -50%);
    border-radius: 2px;
    transition: transform 0.3s var(--ease);
}

.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item[open] .faq-plus {
    background: var(--blue);
    transform: rotate(180deg);
}
.faq-item[open] .faq-plus::before,
.faq-item[open] .faq-plus::after { background: #fff; }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }

.faq-body { padding: 0 1.3rem 1.15rem; }
.faq-body p { font-size: 0.98rem; line-height: 1.68; color: var(--text-muted); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-section { padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem); }

.final-card {
    text-align: center;
    padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 3rem);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 20% 30%, rgba(26, 115, 255, 0.3), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(61, 139, 255, 0.22), transparent 50%),
        linear-gradient(135deg, #132e66, #0a1838);
    border: 1px solid var(--border-blue);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
}

.final-card::before {
    content: "";
    position: absolute;
    top: -50%; left: -10%;
    width: 120%; height: 150%;
    background: radial-gradient(ellipse at center, rgba(61, 139, 255, 0.2), transparent 60%);
    pointer-events: none;
}

.final-card > * { position: relative; }

.final-card h2 {
    max-width: 24ch;
    margin: 0.4rem auto 1rem;
    color: #fff;
}

.final-card p {
    max-width: 58ch;
    margin: 0 auto 1.8rem;
}

.final-ctas {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.final-note {
    font-size: 0.88rem;
    color: var(--text-soft);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4rem, 6vw, 5rem);
    background: linear-gradient(180deg, rgba(10, 24, 56, 0.4), rgba(3, 7, 14, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 2.5rem;
}

.footer-brand .footer-logo {
    height: 58px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 14px rgba(61, 139, 255, 0.2));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 36ch;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.footer-col h4 {
    color: var(--blue-3);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.footer-col li {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-col li span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.14rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--blue-3); }

.footer-links a {
    border-bottom: 1px dashed var(--border-blue);
    padding-bottom: 1px;
}

.seals-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.8rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.seals-row img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-hi);
    padding: 4px;
    opacity: 0.95;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.seals-row img:hover { transform: translateY(-2px); opacity: 1; }

.footer-risk {
    padding: 1.4rem 1.6rem;
    background: rgba(8, 14, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 2rem;
}

.risk-title {
    font-size: 0.78rem !important;
    color: var(--blue-3) !important;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.footer-risk p:not(.risk-title) {
    color: var(--text-soft) !important;
    font-size: 0.8rem !important;
    line-height: 1.56;
    margin-bottom: 0.5rem;
}

.footer-risk p:not(.risk-title):last-child { margin-bottom: 0; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.82rem !important;
    color: var(--text-soft);
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 5.7rem;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    background: radial-gradient(circle at 30% 30%, #2be386 0%, #1bbf6f 46%, #108b50 100%);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 12px 28px rgba(12, 132, 74, 0.42), 0 0 0 4px rgba(23, 186, 104, 0.12);
    z-index: 60;
    transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), filter 0.22s var(--ease);
    animation: waBlink 3.2s ease-in-out infinite;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    pointer-events: none;
}

.whatsapp-float::before {
    border: 1px solid rgba(71, 255, 160, 0.5);
    opacity: 0;
    transform: scale(0.92);
    animation: waPulse 3.2s ease-out infinite;
}

.whatsapp-float::after {
    inset: -8px;
    border: 1px solid rgba(52, 235, 145, 0.3);
    opacity: 0;
    transform: scale(0.85);
    animation: waPulse 3.2s ease-out 0.8s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 34px rgba(17, 173, 96, 0.58), 0 0 0 8px rgba(19, 162, 91, 0.18);
    filter: saturate(1.1);
}

.whatsapp-float svg {
    width: 30px; height: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.28));
}

/* ==========================================================================
   MOBILE CTA (sticky bottom)
   ========================================================================== */
.mobile-cta {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    background: rgba(10, 24, 56, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-blue);
    padding: 0.7rem calc(0.9rem + env(safe-area-inset-left, 0px)) calc(0.78rem + env(safe-area-inset-bottom, 0px)) calc(0.9rem + env(safe-area-inset-right, 0px));
}

.mobile-cta .cta-btn {
    width: 100%;
    max-width: 420px;
    min-height: 48px;
    margin: 0 auto;
    display: flex;
    font-size: 0.96rem;
}

/* ==========================================================================
   AUTOMAÇÕES & COPY INVEST
   ========================================================================== */
.auto-section {
    position: relative;
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.auto-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 40%, rgba(26, 115, 255, 0.1), transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 60%, rgba(61, 139, 255, 0.08), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.auto-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(1.5rem, 3vw, 3.5rem);
    align-items: center;
}

.auto-copy .eyebrow { margin-bottom: 1rem; }

.auto-copy h2 {
    margin-bottom: 1.2rem;
    max-width: 18ch;
}

.auto-lead {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.68;
    margin-bottom: 2rem;
    max-width: 52ch;
}

.auto-feats {
    list-style: none;
    display: grid;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.auto-feats li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.auto-feat-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--blue-3);
    background: var(--blue-soft);
    border: 1px solid var(--border-blue);
    flex-shrink: 0;
}

.auto-feats li strong {
    display: block;
    color: #fff;
    font-size: 1.04rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: -0.005em;
}

.auto-feats li p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ---------- Dashboard premium ---------- */
.auto-visual {
    position: relative;
    perspective: 1200px;
}

.auto-dash {
    position: relative;
    border-radius: var(--radius-xl);
    padding: clamp(1.3rem, 2vw, 1.8rem);
    background:
        radial-gradient(circle at 80% 10%, rgba(26, 115, 255, 0.18), transparent 50%),
        linear-gradient(160deg, rgba(22, 48, 90, 0.95), rgba(14, 30, 64, 0.98));
    border: 1px solid var(--border-hi);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(61, 139, 255, 0.12) inset,
        0 0 80px rgba(26, 115, 255, 0.18);
    overflow: hidden;
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform 0.6s var(--ease);
}

.auto-visual:hover .auto-dash {
    transform: rotateY(0) rotateX(0);
}

.auto-dash::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61, 139, 255, 0.6), transparent);
}

.auto-dash-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.95rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.auto-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #31e0a8;
    box-shadow: 0 0 0 3px rgba(49, 224, 168, 0.22), 0 0 12px rgba(49, 224, 168, 0.6);
    animation: pulseDotLive 1.6s ease-in-out infinite;
}

@keyframes pulseDotLive {
    0%, 100% { box-shadow: 0 0 0 3px rgba(49, 224, 168, 0.22), 0 0 12px rgba(49, 224, 168, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(49, 224, 168, 0.1), 0 0 18px rgba(49, 224, 168, 0.8); }
}

.auto-status {
    font-size: 0.78rem;
    color: #31e0a8;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.auto-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.auto-kpi {
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    background: rgba(10, 24, 56, 0.6);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    position: relative;
    overflow: hidden;
}

.auto-kpi::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue), var(--blue-2));
    border-radius: 2px;
}

.auto-kpi small {
    font-size: 0.72rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.auto-kpi strong {
    font-size: 1.22rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.kpi-unit { font-size: 0.7em; color: var(--blue-3); margin-left: 0.08em; }

.kpi-trend {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 0.1rem;
}

.kpi-trend.positive { color: #31e0a8; }

/* ---------- Chart ---------- */
.auto-chart {
    height: 150px;
    margin-bottom: 1rem;
    padding: 0.6rem 0.4rem;
    border-radius: 12px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(26, 115, 255, 0.12), transparent 60%),
        rgba(8, 21, 48, 0.6);
    background-size: 28px 28px, 28px 28px, auto, auto;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.auto-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}

.chart-line {
    filter: drop-shadow(0 2px 10px rgba(61, 139, 255, 0.5));
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 2.6s var(--ease) 0.3s forwards;
}

.chart-area {
    opacity: 0;
    animation: fadeArea 1.2s var(--ease) 1.4s forwards;
}

.chart-pulse {
    animation: chartPulse 2s ease-out 2.4s infinite;
    opacity: 0;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeArea { to { opacity: 1; } }
@keyframes chartPulse {
    0% { opacity: 1; r: 4; }
    70% { opacity: 0; r: 14; }
    100% { opacity: 0; r: 14; }
}

/* ---------- Copy list ---------- */
.auto-copy-list {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}

.copy-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    background: rgba(10, 24, 56, 0.55);
    border: 1px solid var(--border);
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.copy-row:hover {
    border-color: var(--border-blue);
    transform: translateX(3px);
}

.copy-rank {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--blue-3);
    background: var(--blue-soft);
    border: 1px solid var(--border-blue);
    padding: 0.24rem 0.44rem;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}

.copy-info { display: flex; flex-direction: column; gap: 0.08rem; }

.copy-info strong {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.copy-info small {
    color: var(--text-soft);
    font-size: 0.74rem;
    letter-spacing: 0.02em;
}

.copy-badge {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.3rem 0.55rem;
    border-radius: 7px;
    font-variant-numeric: tabular-nums;
}

.copy-badge.positive {
    color: #31e0a8;
    background: rgba(49, 224, 168, 0.1);
    border: 1px solid rgba(49, 224, 168, 0.28);
}

/* ---------- Dash footer bar ---------- */
.auto-footbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    font-size: 0.76rem;
    color: var(--text-soft);
}

.auto-footbar span {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
}

.auto-dot-green {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #31e0a8;
    box-shadow: 0 0 8px rgba(49, 224, 168, 0.55);
}

/* ---------- Floating chips on dashboard ---------- */
.auto-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(17, 38, 73, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    color: #fff;
    z-index: 4;
    animation: floatY 6s ease-in-out infinite;
}

.auto-chip svg {
    padding: 3px;
    background: rgba(49, 224, 168, 0.15);
    border-radius: 50%;
    color: #31e0a8;
    width: 22px;
    height: 22px;
}

.auto-chip-a {
    top: 6%;
    left: -4%;
    animation-delay: -1.5s;
}

.auto-chip-b {
    bottom: 12%;
    right: -5%;
    animation-delay: -3.5s;
}

.auto-chip-b svg {
    background: rgba(61, 139, 255, 0.18);
    color: var(--blue-3);
}

.auto-disclaimer {
    text-align: center;
    margin-top: 2.2rem;
    font-size: 0.82rem;
    color: var(--text-soft);
    font-style: italic;
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-24px); }
}

@keyframes waPulse {
    0% { opacity: 0; transform: scale(0.88); }
    25% { opacity: 0.55; }
    70% { opacity: 0.15; transform: scale(1.22); }
    100% { opacity: 0; transform: scale(1.32); }
}

@keyframes waBlink {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(17, 173, 96, 0.48), 0 0 0 6px rgba(19, 162, 91, 0.13);
        filter: saturate(1);
    }
    45% {
        box-shadow: 0 12px 34px rgba(24, 197, 112, 0.62), 0 0 0 8px rgba(38, 216, 127, 0.2);
        filter: saturate(1.14);
    }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .top-nav { display: none; }
    .vp-grid { grid-template-columns: repeat(2, 1fr); }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .dual-grid,
    .app-grid,
    .card-grid,
    .ceo-card,
    .auto-grid,
    .footer-cols {
        grid-template-columns: 1fr;
    }

    .auto-dash { transform: none; }
    .auto-chip-a { top: 2%; left: -2%; }
    .auto-chip-b { bottom: 4%; right: -2%; }

    .ceo-media { min-height: 420px; }
    .ceo-card { grid-template-rows: auto auto; }

    .card-media { min-height: 340px; order: -1; }

    .footer-cols { gap: 1.5rem; }

    .hero-chip-a { top: 3%; left: -2%; }
    .hero-chip-b { bottom: 6%; right: -2%; }

    .hero-visual-frame { padding: 0.8rem; }
}

@media (max-width: 760px) {
    .topbar-wrap { min-height: 66px; gap: 0.5rem; }
    .brand-logo { height: 40px; }
    .hide-sm { display: none; }

    .top-actions .cta-btn {
        padding: 0.62rem 0.95rem;
        font-size: 0.85rem;
        min-height: 42px;
    }

    .bg-noise { display: none; }
    .bg-screens { filter: blur(18px) saturate(1.2); opacity: 0.48; }

    .section { padding: clamp(3.2rem, 9vw, 4.8rem) 0; }

    .hero { padding: 2.6rem 0 2rem; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .cta-btn,
    .hero-ctas .ghost-btn { width: 100%; }

    .hero-chip { padding: 0.55rem 0.75rem; }
    .hero-chip small { font-size: 0.64rem; }
    .hero-chip strong { font-size: 0.82rem; }

    .vp-grid,
    .platform-grid,
    .solution-grid { grid-template-columns: 1fr; gap: 0.85rem; }

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

    .mobile-cta { display: block; }

    .ceo-chips { gap: 0.4rem; }
    .ceo-chips span { font-size: 0.76rem; padding: 0.32rem 0.64rem; }
    .ceo-content .cta-btn { width: 100%; }

    .dual-card .cta-btn { width: 100%; }
    .final-ctas { flex-direction: column; }
    .final-ctas .cta-btn,
    .final-ctas .ghost-btn { width: 100%; }

    .footer-bottom { flex-direction: column; gap: 0.4rem; }
    .seals-row img { width: 64px; height: 64px; }
}

@media (max-width: 520px) {
    :root { --radius: 12px; --radius-lg: 16px; --radius-xl: 22px; }
    .container { width: min(100% - 1.2rem, var(--max)); }

    .brand-logo { height: 36px; }
    .top-actions .cta-btn { padding: 0.55rem 0.8rem; font-size: 0.8rem; }

    h1 { font-size: clamp(1.95rem, 9vw, 2.6rem); }
    h2 { font-size: clamp(1.55rem, 7vw, 2rem); }

    .hero-chip-a,
    .hero-chip-b,
    .auto-chip-a,
    .auto-chip-b { display: none; }

    .hero-visual-frame img { max-height: 360px; }

    .auto-kpis { grid-template-columns: 1fr; }
    .auto-chart { height: 120px; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat { padding: 1.4rem 1rem; }

    .footer-logo { height: 50px; }
    .seals-row img { width: 56px; height: 56px; }

    .whatsapp-float {
        width: 54px; height: 54px;
        bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
        right: 0.8rem;
    }

    .whatsapp-float svg { width: 26px; height: 26px; }
    .whatsapp-float::after { display: none; }

    .final-card { padding: 2.2rem 1.3rem; }
    .faq-item summary { padding: 1rem 1.1rem; font-size: 0.95rem; }
    .faq-body { padding: 0 1.1rem 1.1rem; }

    .card-media { min-height: 260px; }
    .ceo-media { min-height: 360px; }
}

@media (max-width: 380px) {
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.45rem; }
    .brand-logo { height: 32px; }
    .top-actions .cta-btn { padding: 0.5rem 0.65rem; font-size: 0.75rem; }
}
