/* ===========================
   RESET & TOKENS
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Backgrounds */
    --bg:         #05080F;
    --surface:    #080D1A;
    --surface-2:  #0C1424;

    /* Blue scale */
    --blue-900:   #0F1F4D;
    --blue-800:   #1E3A8A;
    --blue:       #2563EB;
    --blue-400:   #3B82F6;
    --blue-300:   #60A5FA;
    --blue-200:   #93C5FD;
    --blue-glow:  rgba(37,99,235,0.12);

    /* Text */
    --white:  #FFFFFF;
    --t1:     #F0F4FF;
    --t2:     #8B9BB8;
    --t3:     #3D4E6B;

    /* Borders */
    --b:       rgba(255,255,255,0.07);
    --b-blue:  rgba(37,99,235,0.28);
    --b-mid:   rgba(37,99,235,0.15);

    /* Accent — used only inside mockup components */
    --green:      #10B981;
    --green-light:#34D399;
    --yellow:     #FCD34D;

    /* Radius */
    --r1: 10px;
    --r2: 16px;
    --r3: 24px;
    --r4: 32px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,h2,h3,h4 {
    letter-spacing: -.025em;
    line-height: 1.1;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(130deg, #fff 20%, var(--blue-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-blue {
    background: linear-gradient(130deg, var(--blue-400), var(--blue-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   LAYOUT
=========================== */
.wrap {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

section { padding: 80px 0; }

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: .9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .22s ease;
    white-space: nowrap;
    letter-spacing: -.01em;
}
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,99,235,.28);
}
.btn-primary:hover {
    background: var(--blue-400);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,99,235,.42);
}
.btn-ghost {
    background: rgba(255,255,255,.05);
    color: var(--t1);
    border: 1px solid var(--b);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--b-mid);
}
.btn-sm  { padding: 10px 20px; font-size: .875rem; }
.btn-lg  { padding: 17px 34px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   BADGES
=========================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .8125rem;
    font-weight: 500;
}
.badge-green  { background: rgba(16,185,129,.12); color: var(--green-light); border: 1px solid rgba(16,185,129,.22); }
.badge-blue   { background: var(--blue-glow); color: var(--blue-300); border: 1px solid var(--b-blue); }
.badge-yellow { background: rgba(252,211,77,.1);  color: var(--yellow);      border: 1px solid rgba(252,211,77,.2);  }

.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* ===========================
   SECTION LABEL
=========================== */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-300);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
}
.sec-label::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--blue-300);
    border-radius: 2px;
}

.sec-header {
    text-align: center;
    margin-bottom: 56px;
}
.sec-header h2 {
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 14px;
}
.sec-header p {
    font-size: 1.0625rem;
    color: var(--t2);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ===========================
   NAV
=========================== */
nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 200;
    padding: 14px 0;
    background: rgba(5,8,15,.88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--b);
    transition: padding .3s, box-shadow .3s;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 30px;
    width: auto;
    display: block;
}

.nav-links {
    display: none;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: var(--t2);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-login {
    color: var(--t2);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
    display: none;
}
.nav-login:hover { color: var(--white); }

/* ===========================
   HERO — entrance animation
=========================== */
@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

/* Each hero child gets --hi (hero-index) to stagger */
.hero [style*="--hi"] {
    opacity: 0;
    animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--hi) * 110ms + 120ms);
}

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    padding-top: 136px;
    padding-bottom: 0;
    text-align: center;
    overflow: hidden;
    background: var(--bg);
}

/* --- Ambient glow beams --- */
.hero-beam {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

/* Central top glow */
.hero-beam--center {
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse 60% 55% at 50% 0%,
        rgba(37,99,235,.18) 0%,
        rgba(37,99,235,.06) 40%,
        transparent 70%);
}

/* Left-side diagonal beam (from the reference) */
.hero-beam--left {
    top: -200px;
    left: -120px;
    width: 560px;
    height: 1280px;
    transform: rotate(-42deg);
    background: radial-gradient(68% 68% at 55% 32%,
        rgba(37,99,235,.07) 0%,
        rgba(37,99,235,.02) 50%,
        transparent 80%);
    display: none; /* desktop only */
}

/* Right-side mirror */
.hero-beam--right {
    top: -200px;
    right: -120px;
    width: 560px;
    height: 1280px;
    transform: rotate(42deg);
    background: radial-gradient(68% 68% at 45% 32%,
        rgba(37,99,235,.05) 0%,
        rgba(37,99,235,.02) 50%,
        transparent 80%);
    display: none;
}

/* Radial vignette — darkens edges, focuses center */
.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 80% at 50% 0%,
        transparent 55%,
        var(--bg) 100%);
    z-index: 0;
}

/* --- Text block --- */
.hero .wrap {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-badge { margin-bottom: 28px; }

.hero-h1 {
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.175rem);
    color: var(--t2);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-micro {
    font-size: .8125rem;
    color: var(--t3);
    line-height: 1.6;
}

/* --- Video / media frame --- */
.hero-media-wrap {
    position: relative;
    margin-top: 56px;
    padding: 0 16px;
    z-index: 1;
}

.hero-media-frame {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;

    /* Premium container */
    background: var(--surface);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    padding: 8px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04),
        inset 0 1px 0 rgba(255,255,255,.07),
        0 32px 80px rgba(0,0,0,.8),
        0 0 80px rgba(37,99,235,.07);
}

.hero-video {
    display: block;
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--surface-2);
}

/* Fade-to-background at the bottom of the video */
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(5,8,15,.6) 50%,
        var(--bg) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Proof bar flush variant — no top border after hero fade */
.proof-bar--flush {
    border-top: none;
    padding-top: 0;
}

/* ===========================
   PROOF BAR
=========================== */
.proof-bar {
    padding: 56px 0;
    border-top: 1px solid var(--b);
    border-bottom: 1px solid var(--b);
}
.proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 5vw, 56px);
    flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.ps-num {
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    font-weight: 700;
    letter-spacing: -.04em;
    color: var(--white);
}
.ps-label { font-size: .8125rem; color: var(--t2); margin-top: 4px; font-weight: 400; }
.proof-sep { width: 1px; height: 40px; background: var(--b); flex-shrink: 0; }

/* ===========================
   PROOF BAR (single)
=========================== */
.proof-inner--single {
    justify-content: center;
    text-align: center;
}
.proof-inner--single .ps-num {
    font-size: clamp(2rem, 5vw, 3rem);
}
.proof-inner--single .ps-label {
    font-size: .9375rem;
    max-width: 340px;
    margin: 6px auto 0;
    line-height: 1.5;
}

/* ===========================
   PROBLEMA
=========================== */
.problem { padding: 96px 0; }

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
}
.prob-card {
    background: var(--surface);
    border: 1px solid var(--b);
    border-radius: var(--r2);
    padding: 32px 28px;
    transition: border-color .3s;
}
.prob-card:hover { border-color: var(--b-mid); }

.prob-card--mid {
    border-color: var(--b-mid);
    background: var(--surface-2);
}
.prob-icon {
    width: 44px;
    height: 44px;
    background: rgba(37,99,235,.1);
    border: 1px solid var(--b-mid);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-300);
    margin-bottom: 18px;
}
.prob-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.prob-card p {
    font-size: .9375rem;
    color: var(--t2);
    line-height: 1.65;
}

.prob-bridge {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.prob-bridge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--b-mid));
}
.prob-bridge-line:last-child {
    background: linear-gradient(90deg, var(--b-mid), transparent);
}
.prob-bridge-label {
    font-size: .875rem;
    color: var(--blue-300);
    font-weight: 500;
    flex-shrink: 0;
    max-width: 80%;
    text-align: center;
}

/* ===========================
   REASONS SECTION
=========================== */
.reasons-sec {
    padding: 96px 0;
    border-top: 1px solid var(--b);
    border-bottom: 1px solid var(--b);
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.reason-card {
    background: var(--surface);
    border: 1px solid var(--b);
    border-radius: var(--r3);
    padding: 36px 32px;
    transition: border-color .3s, transform .3s;
}
.reason-card:hover {
    border-color: var(--b-blue);
    transform: translateY(-3px);
}
.reason-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.reason-icon--org   { background: rgba(37,99,235,.12);  border: 1px solid rgba(37,99,235,.22);  color: var(--blue-300); }
.reason-icon--speed { background: rgba(252,211,77,.1);  border: 1px solid rgba(252,211,77,.2);  color: var(--yellow); }
.reason-icon--pro   { background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.2);  color: var(--green-light); }

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.reason-card p {
    font-size: .9375rem;
    color: var(--t2);
    line-height: 1.7;
}

/* ===========================
   HOW IT WORKS
=========================== */
.steps { padding: 96px 0; border-top: 1px solid var(--b); border-bottom: 1px solid var(--b); }

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--b);
    border-radius: var(--r2);
    padding: 32px 28px;
    transition: border-color .3s;
    flex: 1;
}
.step-card:hover { border-color: var(--b-blue); }

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: var(--t3);
    transform: rotate(90deg);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--blue-glow);
    border: 1px solid var(--b-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 600;
    color: var(--blue-300);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.step-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; }
.step-desc  { font-size: .9375rem; color: var(--t2); line-height: 1.65; }

/* ===========================
   FEATURE SECTIONS
=========================== */
.feat-sec {
    padding: 96px 0;
    border-bottom: 1px solid var(--b);
}
.feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    align-items: center;
}
.feat-label { margin-bottom: 14px; }
.feat-title {
    font-size: clamp(1.75rem, 4.2vw, 2.625rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.1;
}
.feat-desc {
    font-size: 1.0625rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 32px;
    font-weight: 400;
}
.feat-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 36px;
}
.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9375rem;
    color: var(--t1);
    line-height: 1.55;
}
.feat-check {
    width: 20px;
    height: 20px;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.feat-check svg { width: 10px; height: 10px; stroke: var(--green-light); }

/* ===========================
   SCREENSHOTS REAIS
=========================== */
.mockup-wrap { position: relative; }

/* Frame para screenshots com fundo claro (propostas, contratos, notificações) */
.screenshot-frame {
    background: #f8fafc;
    border-radius: var(--r2);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.1),
        0 0 0 6px rgba(255,255,255,.04),
        0 24px 64px rgba(0,0,0,.6),
        0 0 60px rgba(37,99,235,.08);
    position: relative;
}

/* Frame para screenshots com fundo escuro (dashboards) */
.screenshot-dark-frame {
    background: var(--surface);
    border: 1px solid var(--b);
    border-radius: var(--r3);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04),
        0 24px 64px rgba(0,0,0,.55),
        0 0 40px rgba(37,99,235,.06);
    position: relative;
}

.screenshot-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}

/* Imagem dentro do phone-screen */
.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: inherit;
}

/* ===========================
   MOCKUP CARDS (mc)
=========================== */

.mc {
    background: var(--surface);
    border: 1px solid var(--b);
    border-radius: var(--r3);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04),
        0 24px 64px rgba(0,0,0,.55),
        0 0 40px rgba(37,99,235,.04);
    position: relative;
}
.mc::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    pointer-events: none;
}

.mc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--b);
    background: rgba(255,255,255,.02);
    gap: 10px;
}
.mc-head-title { font-size: .875rem; font-weight: 600; }
.mc-body { padding: 20px; }

/* Floating card */
.float-card {
    position: absolute;
    background: var(--surface-2);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 165px;
    z-index: 2;
}
.fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fc-label { font-size: .6875rem; color: var(--t2); }
.fc-val   { font-size: .875rem; font-weight: 700; }

/* Proposta mockup */
.prop-hero {
    height: 96px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0A1628, #0F1F45);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}
.prop-hero::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37,99,235,.3), transparent);
    top: -50px;
    right: -30px;
}
.prop-hero-title { font-size: .8125rem; font-weight: 700; margin-bottom: 3px; }
.prop-hero-sub   { font-size: .6875rem; color: var(--t2); }

.prop-rows { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.prop-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b);
    border-radius: 8px;
}
.pr-name  { font-size: .75rem; font-weight: 500; }
.pr-price { font-size: .75rem; color: var(--blue-300); font-weight: 600; }

.prop-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(37,99,235,.1);
    border: 1px solid rgba(37,99,235,.22);
    border-radius: 8px;
    margin-bottom: 12px;
}
.pt-label { font-size: .75rem; color: var(--blue-300); font-weight: 600; }
.pt-val   { font-size: .9375rem; font-weight: 600; }

.prop-accept-btn {
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 600;
}

/* Contract */
.cf { display: flex; flex-direction: column; gap: 4px; }
.cf-label { font-size: .625rem; color: var(--t2); text-transform: uppercase; letter-spacing: .06em; }
.cf-val {
    font-size: .8125rem;
    color: var(--t1);
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b);
    border-radius: 8px;
    padding: 8px 12px;
}
.sig-area {
    height: 58px;
    border: 1.5px dashed rgba(37,99,235,.3);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    font-size: .6875rem;
    position: relative;
}
.sig-line {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: rgba(255,255,255,.07);
}

/* Client list */
.client-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b);
    border-radius: 10px;
}
.c-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    font-weight: 700;
    flex-shrink: 0;
}
.c-name { font-size: .8125rem; font-weight: 600; color: var(--t1); }
.c-meta { font-size: .625rem; color: var(--t2); margin-top: 2px; }
.c-val  { font-size: .8125rem; font-weight: 700; color: var(--green); margin-left: auto; white-space: nowrap; }

/* Receipt */
.rec-amount {
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 14px;
}
.ra-label  { font-size: .625rem; color: rgba(255,255,255,.6); margin-bottom: 3px; }
.ra-value  { font-size: 1.75rem; font-weight: 700; letter-spacing: -.04em; }
.ra-date   { font-size: .625rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.rec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--b);
}
.rec-row:last-child { border-bottom: none; }
.rk { font-size: .6875rem; color: var(--t2); }
.rv { font-size: .6875rem; color: var(--t1); font-weight: 500; }

/* Financial */
.fin-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.fin-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b);
    border-radius: 10px;
    padding: 14px;
}
.fin-card-label { font-size: .625rem; color: var(--t2); margin-bottom: 6px; }
.fin-card-val   { font-size: 1.0625rem; font-weight: 600; }
.fin-card-val.g { color: var(--green); }
.fin-card-val.y { color: var(--yellow); }

.chart-wrap {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--b);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
}
.chart-label { font-size: .625rem; color: var(--t2); margin-bottom: 10px; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; }
.bar  { flex: 1; background: rgba(37,99,235,.2); border-radius: 3px 3px 0 0; }
.bar.hi { background: var(--blue); }
.bar-months { display: flex; gap: 5px; margin-top: 5px; }
.bm { flex: 1; text-align: center; font-size: 7px; color: var(--t2); }

.fin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 11px;
    border-radius: 8px;
    font-size: .75rem;
    color: var(--t2);
}
.fin-row--warn { background: rgba(252,211,77,.06); border: 1px solid rgba(252,211,77,.14); }
.fin-row--ok   { background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.12); }
.fin-row-val { font-weight: 700; font-size: .75rem; }
.fin-row-val.y { color: var(--yellow); }
.fin-row-val.g { color: var(--green); }

/* ===========================
   NOTIFICATIONS SECTION
=========================== */
.notif-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    padding: 12px 0;
}
.notif-card {
    background: var(--surface);
    border: 1px solid var(--b);
    border-radius: var(--r2);
    padding: 16px 18px;
    position: relative;
    transition: border-color .3s;
}
.notif-card:hover { border-color: var(--b-mid); }

.notif-card--front {
    border-color: var(--b-blue);
    box-shadow: 0 8px 32px rgba(37,99,235,.12), 0 24px 56px rgba(0,0,0,.45);
    background: var(--surface-2);
}
.notif-card--back1,
.notif-card--back2 { display: none; }

.notif-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.notif-app-icon {
    width: 22px;
    height: 22px;
    background: var(--blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}
.notif-app-name { font-size: .6875rem; font-weight: 600; flex: 1; }
.notif-time     { font-size: .625rem; color: var(--t2); }
.notif-title    { font-size: .875rem; font-weight: 700; margin-bottom: 6px; }
.notif-body     { font-size: .8125rem; color: var(--t2); line-height: 1.55; }

/* ===========================
   MOBILE SECTION
=========================== */
.mobile-sec { padding: 96px 0; border-bottom: 1px solid var(--b); }

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

.phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-frame {
    width: 240px;
    background: var(--surface);
    border: 1px solid var(--b);
    border-radius: 40px;
    padding: 16px 12px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04),
        0 32px 72px rgba(0,0,0,.6),
        0 0 40px rgba(37,99,235,.06);
}
.phone-notch {
    width: 60px;
    height: 8px;
    background: var(--b);
    border-radius: 8px;
    margin: 0 auto 14px;
}
.phone-screen {
    width: 100%;
    aspect-ratio: 9/19;
    background: var(--surface-2);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--b);
}
.phone-home {
    width: 80px;
    height: 4px;
    background: var(--b);
    border-radius: 4px;
    margin: 14px auto 0;
}

/* Screen placeholder */
.screen-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--t3);
    text-align: center;
    padding: 20px;
}
.sp-icon { color: var(--b-mid); }
.screen-placeholder span {
    font-size: .625rem;
    line-height: 1.6;
}

/* ===========================
   IA SECTION
=========================== */
.ai-input-block {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b);
    border-radius: 10px;
    padding: 14px;
}
.ai-input-label { font-size: .625rem; color: var(--t2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.ai-input-text  { font-size: .8125rem; color: var(--t1); font-style: italic; }

.ai-output-block {
    background: rgba(37,99,235,.06);
    border: 1px solid var(--b-mid);
    border-radius: 10px;
    padding: 14px;
}
.ai-output-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .625rem;
    color: var(--t2);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}
.ai-badge {
    background: var(--blue);
    color: #fff;
    font-size: .5625rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: .04em;
}
.ai-output-text { font-size: .8125rem; color: var(--t1); line-height: 1.65; }
.ai-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: var(--blue-300);
    border-radius: 1px;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink .9s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.ai-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ai-action-btn {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--blue);
    color: #fff;
}
.ai-action-btn--ghost {
    background: rgba(255,255,255,.05);
    color: var(--t2);
    border: 1px solid var(--b);
}

/* ===========================
   TRUST / SEM FIDELIDADE
=========================== */
.trust-sec { padding: 96px 0; }

.trust-inner { display: flex; flex-direction: column; gap: 56px; }

.trust-headline {
    text-align: center;
}
.trust-headline h2 {
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.trust-item {
    background: var(--surface);
    border: 1px solid var(--b);
    border-radius: var(--r2);
    padding: 28px 24px;
    transition: border-color .3s;
}
.trust-item:hover { border-color: var(--b-mid); }
.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(37,99,235,.1);
    border: 1px solid var(--b-mid);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-300);
    margin-bottom: 16px;
}
.trust-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.trust-item p  { font-size: .875rem; color: var(--t2); line-height: 1.6; }

/* ===========================
   PRICING
=========================== */
.pricing { padding: 96px 0; border-top: 1px solid var(--b); }

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--b-blue);
    border-radius: var(--r4);
    padding: clamp(28px, 5vw, 48px);
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-300));
}
.pricing-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(37,99,235,.08), transparent);
    pointer-events: none;
}
.pricing-badge {
    display: inline-flex;
    padding: 4px 12px;
    background: rgba(37,99,235,.15);
    border: 1px solid var(--b-blue);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--blue-300);
    margin-bottom: 16px;
}
.pricing-plan  { font-size: .8125rem; font-weight: 600; color: var(--blue-300); margin-bottom: 4px; }
.pricing-name  { font-size: 1.625rem; font-weight: 700; margin-bottom: 6px; }
.pricing-desc  { font-size: .9375rem; color: var(--t2); margin-bottom: 28px; }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}
.p-curr   { font-size: 1.125rem; font-weight: 600; color: var(--t2); }
.p-amount { font-size: 3.75rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.p-period { font-size: .9375rem; color: var(--t2); }

.p-trial {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8125rem;
    color: var(--green-light);
    margin-bottom: 28px;
}
.p-sep { height: 1px; background: var(--b); margin: 28px 0; }
.p-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.p-feature  { display: flex; align-items: center; gap: 11px; font-size: .9375rem; color: var(--t1); }
.p-fcheck {
    width: 20px;
    height: 20px;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.p-fcheck svg { width: 10px; height: 10px; stroke: var(--green-light); }
.p-foot { text-align: center; font-size: .75rem; color: var(--t3); margin-top: 16px; }

/* ===========================
   FAQ
=========================== */
.faq { padding: 96px 0; border-top: 1px solid var(--b); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--b); }
.faq-q {
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: color .2s;
    letter-spacing: -.01em;
}
.faq-q:hover { color: var(--blue-300); }
.faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,.05);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
    color: var(--t2);
}
.faq-item.open .faq-icon {
    background: var(--blue-glow);
    color: var(--blue-300);
    transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a-inner {
    padding-bottom: 20px;
    font-size: .9375rem;
    color: var(--t2);
    line-height: 1.7;
}

/* ===========================
   FINAL CTA
=========================== */
.final-cta {
    padding: 112px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--b);
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37,99,235,.07), transparent 65%);
    pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.08;
}
.final-cta p {
    font-size: 1.0625rem;
    color: var(--t2);
    margin-bottom: 40px;
}
.final-sub { margin-top: 16px; font-size: .8125rem; color: var(--t3); }

/* ===========================
   FOOTER
=========================== */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--b);
}
.foot-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.foot-links { display: flex; gap: 24px; }
.foot-links a {
    color: var(--t2);
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
}
.foot-links a:hover { color: var(--t1); }
.foot-copy { font-size: .8125rem; color: var(--t3); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,99,235,.28), 0 0 0 0 rgba(37,99,235,.4); }
    50%       { box-shadow: 0 4px 20px rgba(37,99,235,.28), 0 0 0 10px rgba(37,99,235,0); }
}
.pulse { animation: pulse-ring 2.4s ease-in-out infinite; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE — Tablet+
=========================== */
@media (min-width: 560px) {
    .problem-grid          { grid-template-columns: 1fr 1fr; }
    .reasons-grid          { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 640px) {
    .problem-grid--6       { grid-template-columns: 1fr 1fr 1fr; }
    .trust-grid            { grid-template-columns: repeat(4, 1fr); }
}

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

@media (min-width: 768px) {
    /* Hero beams only on larger screens */
    .hero-beam--left,
    .hero-beam--right { display: block; }

    .nav-links { display: flex; }
    .nav-login { display: block; }

    /* Feature grids */
    .feat-grid { grid-template-columns: 1fr 1fr; }
    .feat-grid--rev .feat-content { order: 2; }
    .feat-grid--rev .mockup-wrap  { order: 1; }

    /* Steps */
    .steps-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
    .step-card { flex: 1; }
    .step-connector {
        transform: none;
        padding: 0 8px;
        margin-top: 36px;
        flex-shrink: 0;
    }

    /* Mobile section */
    .mobile-inner { grid-template-columns: 1fr 1fr; }

    /* Notification stack — visual layering effect */
    .notif-stack { position: relative; min-height: 280px; }
    .notif-card--back1,
    .notif-card--back2 { display: block; }
    .notif-card--front  { position: relative; z-index: 3; }
    .notif-card--second { margin-top: 0; }
    .notif-card--third  { margin-top: 0; }

    /* Footer */
    .foot-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .steps-grid { gap: 0; }
    .step-connector { padding: 0 12px; }
    section { padding: 96px 0; }
}

/* ===========================
   HERO — VIDEO BOX
=========================== */
.hero-video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface-2);
}

.hero-video-box .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    object-fit: cover;
}

/* ===========================
   HERO — VIDEO PLACEHOLDER
=========================== */
.hero-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease;
    z-index: 2;
    pointer-events: none;
}

.hero-video-placeholder.hidden {
    opacity: 0;
}

.hvp-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hvp-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 55%; height: 75%;
    background: radial-gradient(ellipse at center, rgba(37,99,235,.1) 0%, transparent 70%);
}

.hvp-center {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.hvp-play-ring {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: rgba(37,99,235,.1);
    border: 1.5px solid rgba(37,99,235,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-play 2.6s ease-in-out infinite;
}

@keyframes pulse-play {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,.22); }
    50%       { box-shadow: 0 0 0 18px rgba(37,99,235,.0); }
}

.hvp-play-icon {
    color: var(--blue-300);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

.hvp-text {
    font-size: .875rem;
    color: var(--t2);
    font-weight: 500;
    letter-spacing: -.01em;
}

/* ===========================
   PROPOSTAS — mockup focado
=========================== */
.prop-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.prop-header-info .prop-name-sm {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: 2px;
}

.prop-header-info .prop-ref-sm {
    font-size: .6875rem;
    color: var(--t2);
}

.prop-value-block {
    background: rgba(37,99,235,.06);
    border: 1px solid var(--b-mid);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pvb-label { font-size: .625rem; color: var(--t2); text-transform: uppercase; letter-spacing: .07em; }
.pvb-val   { font-size: 1.125rem; font-weight: 700; letter-spacing: -.03em; }

.prop-sep {
    height: 1px;
    background: var(--b);
}

.prop-sec-label {
    font-size: .625rem;
    color: var(--t2);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.prop-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .8125rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37,99,235,.25);
}

.prop-btn-row {
    display: flex;
    gap: 8px;
}

.prop-btn-sec {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--b);
    border-radius: 8px;
    padding: 9px 10px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--t1);
}

.prop-viewed {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    color: var(--t2);
    padding-top: 2px;
}

.prop-viewed-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}

/* ===========================
   CONTRATOS — mockup focado
=========================== */
.ctr-parties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ctr-party {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b);
    border-radius: 8px;
    padding: 10px 12px;
}

.ctr-party-role {
    font-size: .5625rem;
    color: var(--t2);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 3px;
}

.ctr-party-name {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--t1);
}

.ctr-value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(37,99,235,.05);
    border: 1px solid var(--b-mid);
    border-radius: 8px;
    padding: 10px 14px;
}

.ctr-val-label  { font-size: .6875rem; color: var(--t2); }
.ctr-val-amount { font-size: 1.0625rem; font-weight: 700; }

.ctr-validation-box {
    background: rgba(16,185,129,.05);
    border: 1px solid rgba(16,185,129,.14);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ctr-val-text { flex: 1; }

.ctr-val-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .5625rem;
    font-weight: 700;
    color: var(--green-light);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.ctr-val-badge-tag::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.ctr-val-title-sm {
    font-size: .75rem;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: 3px;
}

.ctr-hash {
    font-size: .5625rem;
    color: var(--t3);
    font-family: 'Courier New', monospace;
    letter-spacing: .02em;
}

.ctr-qr {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 6px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctr-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16,185,129,.07);
    border: 1px solid rgba(16,185,129,.18);
    border-radius: 9px;
    padding: 11px 14px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--green-light);
}

/* ===========================
   NOTIFICAÇÕES — stack fix
=========================== */
/* Sobrescreve display:none para mostrar back cards */
.notif-card--back1,
.notif-card--back2 {
    display: block !important;
    opacity: 0.58;
}

.notif-card--back2 { opacity: 0.34; }

@media (min-width: 768px) {
    .notif-card--back1 {
        transform: scaleX(0.97);
        transform-origin: center top;
        margin-top: -6px;
        position: relative;
        z-index: 2;
    }
    .notif-card--back2 {
        transform: scaleX(0.93);
        transform-origin: center top;
        margin-top: -6px;
        position: relative;
        z-index: 1;
    }
    .notif-card--front { position: relative; z-index: 3; }
}

/* ===========================
   MOBILE — ajustes gerais
=========================== */
@media (max-width: 480px) {
    section          { padding: 64px 0; }
    .problem         { padding: 64px 0; }
    .reasons-sec     { padding: 64px 0; }
    .steps           { padding: 64px 0; }
    .feat-sec        { padding: 64px 0; }
    .mobile-sec      { padding: 64px 0; }
    .trust-sec       { padding: 64px 0; }
    .pricing         { padding: 64px 0; }
    .faq             { padding: 64px 0; }
    .final-cta       { padding: 80px 0; }

    .hero-h1         { font-size: clamp(2rem, 9vw, 2.4rem); }
    .feat-title      { font-size: clamp(1.5rem, 6.5vw, 1.75rem); }
    .sec-header h2   { font-size: clamp(1.625rem, 5.5vw, 1.875rem); }

    .trust-grid      { grid-template-columns: 1fr; }
    .btn-lg          { padding: 15px 24px; font-size: .9375rem; }
    .p-amount        { font-size: 3rem; }

    .hero-media-wrap { margin-top: 40px; padding: 0 8px; }

    .steps-grid      { gap: 0; }
    .step-connector  { padding: 6px 0; }

    .fin-cards       { grid-template-columns: 1fr 1fr; }

    .prob-bridge-label { font-size: .8125rem; }
}
