/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
    --navy:    #1A2B6B;
    --royal:   #1E3A8A;
    --electric:#1E90FF;
    --pale:    #E0EFFF;
    --soft:    #E8EEF9;
    --slate:   #64748B;
    --success: #198754;
    --warning: #f59e0b;
    --danger:  #dc3545;
    --white:   #FFFFFF;
    --offwhite:#F5F7FA;
    --dark:    #0D1B42;
    --text:    #1e293b;
}

/* ── Base ──────────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ── Brand ──────────────────────────────────────────────────────────────────── */
.brand-name { font-weight: 800; letter-spacing: .5px; color: #fff; font-size: 1.25rem; }
.brand-go   { font-weight: 600; color: var(--electric); font-size: 1.1rem; margin-left: 1px; }

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.omnira-navbar {
    background: rgba(26, 43, 107, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: .75rem 0;
    transition: background .3s, box-shadow .3s;
}
.omnira-navbar.scrolled {
    background: rgba(13, 27, 66, .99);
    box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.omnira-navbar .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-size: .9rem;
    font-weight: 500;
    padding: .4rem .8rem !important;
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.omnira-navbar .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.08); }
.omnira-navbar .navbar-toggler { border-color: rgba(255,255,255,.2); }
.omnira-navbar .navbar-toggler-icon { filter: invert(1); }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-electric {
    background: var(--electric);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all .2s;
}
.btn-electric:hover { background: #1a7de0; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,144,255,.4); }

.btn-navy {
    background: var(--navy);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all .2s;
}
.btn-navy:hover { background: var(--royal); color: #fff; transform: translateY(-1px); }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
    font-weight: 600;
    transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ── Section headings ─────────────────────────────────────────────────────────── */
.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--electric);
    display: block;
    margin-bottom: .5rem;
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 560px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(150deg, #0a1430 0%, #0f1d4a 30%, var(--navy) 60%, var(--royal) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(30,144,255,.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30,144,255,.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}
.hero-headline .highlight {
    background: linear-gradient(90deg, var(--electric), #63c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.5rem;
}
.hero-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
    padding: .35rem .9rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.hero-badge i { color: var(--electric); }

/* ── Mock Dashboard ──────────────────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    z-index: 2;
}
.browser-frame {
    background: #1e2a3a;
    border-radius: 14px;
    box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
    overflow: hidden;
}
.browser-chrome {
    background: #252f3e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.b-dots { display: flex; gap: 5px; }
.b-dot { width: 10px; height: 10px; border-radius: 50%; }
.b-dot.red { background: #ff5f57; }
.b-dot.yellow { background: #febc2e; }
.b-dot.green { background: #28c840; }
.b-url {
    background: rgba(255,255,255,.06);
    border-radius: 5px;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    padding: .2rem .75rem;
    flex: 1;
    font-family: monospace;
}
.mock-app {
    display: flex;
    height: 340px;
}
.mock-sidebar {
    width: 60px;
    background: #0f1d4a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 16px;
    flex-shrink: 0;
}
.mock-sidebar-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.06); }
.mock-sidebar-icon.active { background: var(--electric); }
.mock-content { flex: 1; background: #0f1828; padding: 14px; overflow: hidden; }
.mock-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.mock-topbar-title { height: 14px; background: rgba(255,255,255,.2); border-radius: 4px; width: 120px; }
.mock-topbar-badge { height: 22px; background: rgba(30,144,255,.3); border-radius: 999px; width: 60px; margin-left: auto; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.mock-kpi {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px;
    padding: 10px;
}
.mock-kpi-val { height: 18px; background: rgba(255,255,255,.25); border-radius: 4px; width: 60%; margin-bottom: 6px; }
.mock-kpi-lbl { height: 8px; background: rgba(255,255,255,.08); border-radius: 4px; width: 70%; }
.mock-chart { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05); border-radius: 8px; padding: 10px; margin-bottom: 10px; height: 80px; position: relative; overflow: hidden; }
.mock-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 100%; }
.mock-bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(30,144,255,.3); }
.mock-bar.h1 { height: 40%; }
.mock-bar.h2 { height: 70%; }
.mock-bar.h3 { height: 55%; background: rgba(30,144,255,.5); }
.mock-bar.h4 { height: 90%; background: var(--electric); }
.mock-bar.h5 { height: 65%; }
.mock-bar.h6 { height: 80%; }
.mock-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.mock-row-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--electric); flex-shrink: 0; }
.mock-row-line { height: 8px; background: rgba(255,255,255,.08); border-radius: 4px; flex: 1; }
.mock-row-badge { height: 16px; border-radius: 4px; width: 48px; background: rgba(25,135,84,.3); flex-shrink: 0; }

/* ── Pain Section ─────────────────────────────────────────────────────────── */
.pain-section {
    background: #0d1432;
    padding: 80px 0;
}
.pain-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: border-color .3s, transform .3s;
}
.pain-card:hover { border-color: rgba(220,53,69,.4); transform: translateY(-3px); }
.pain-card .pain-icon {
    width: 48px; height: 48px;
    background: rgba(220,53,69,.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fc8181;
    margin-bottom: 1rem;
}
.pain-card h5 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.pain-card p { color: rgba(255,255,255,.5); font-size: .88rem; margin: 0; }

/* ── Solution / Modules ──────────────────────────────────────────────────── */
.solution-section { background: var(--offwhite); padding: 80px 0; }
.module-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    height: 100%;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.module-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(30,144,255,.12); border-color: var(--electric); }
.module-icon {
    width: 52px; height: 52px;
    background: var(--pale);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--electric);
    margin-bottom: 1rem;
}
.module-card h5 { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.module-card p { font-size: .88rem; color: var(--slate); margin: 0; }

/* ── Steps ────────────────────────────────────────────────────────────────── */
.steps-section { background: var(--white); padding: 80px 0; }
.step-item { text-align: center; position: relative; }
.step-number {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--electric));
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(30,144,255,.35);
}
.step-item h5 { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: .5rem; }
.step-item p { color: var(--slate); font-size: .9rem; }
.step-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--pale));
}

/* ── Feature blocks ────────────────────────────────────────────────────────── */
.feature-section { padding: 80px 0; }
.feature-section:nth-child(even) { background: var(--offwhite); }
.feature-mockup {
    background: var(--soft);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 28px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.feature-check { display: flex; align-items: center; gap: .75rem; color: var(--slate); font-size: .9rem; }
.feature-check i { color: var(--success); font-size: 1rem; flex-shrink: 0; }

/* ── Stats / social proof ────────────────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, var(--navy), var(--royal));
    padding: 60px 0;
}
.stat-item { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: .25rem; }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--offwhite); padding: 80px 0; }
.testimonial-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 28px;
    height: 100%;
}
.testimonial-stars { color: var(--warning); font-size: .9rem; margin-bottom: 1rem; }
.testimonial-text { font-size: .95rem; color: var(--slate); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--electric)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .9rem; }
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.testimonial-role { font-size: .8rem; color: var(--slate); }

/* ── CTA Final ───────────────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #0a1430, var(--navy), var(--royal));
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(30,144,255,.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 600;
    padding: .45rem 1.1rem;
    margin-bottom: 1.5rem;
}
.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,.65); margin-bottom: 2.5rem; }
.cta-guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.cta-guarantee { color: rgba(255,255,255,.55); font-size: .82rem; display: flex; align-items: center; gap: .4rem; }
.cta-guarantee i { color: var(--electric); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.omnira-footer {
    background: #080e24;
    color: rgba(255,255,255,.5);
    padding: 60px 0 32px;
}
.footer-brand { font-size: 1.4rem; }
.footer-brand .brand-name { color: #fff; font-weight: 800; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.4); }
.footer-heading { color: rgba(255,255,255,.7); font-weight: 700; font-size: .82rem; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: .5rem; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.social-link { color: rgba(255,255,255,.45); font-size: 1.2rem; text-decoration: none; transition: color .2s; }
.social-link:hover { color: var(--electric); }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 2rem 0 1.5rem; }
.footer-bottom { font-size: .82rem; }
.footer-quantora { color: var(--electric); text-decoration: none; font-weight: 600; }
.footer-quantora:hover { color: #63c2ff; }

/* ── Funcionalidades page ─────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(150deg, #0a1430, var(--navy));
    padding: 120px 0 70px;
    text-align: center;
    color: #fff;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; }

.func-module { padding: 80px 0; }
.func-module:nth-child(even) { background: var(--offwhite); }
.func-feature-list { list-style: none; padding: 0; margin: 0; }
.func-feature-list li {
    display: flex; align-items: flex-start; gap: .6rem;
    color: var(--slate); font-size: .9rem; margin-bottom: .6rem;
}
.func-feature-list li::before { content: '\F26B'; font-family: 'Bootstrap Icons'; color: var(--success); flex-shrink: 0; }
.func-screen {
    background: var(--soft);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--electric);
    position: relative;
    overflow: hidden;
}
.func-screen::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--electric));
}

/* ── Planos ──────────────────────────────────────────────────────────────── */
.plano-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    padding: 36px 28px;
    height: 100%;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
}
.plano-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(30,144,255,.12); }
.plano-card.featured {
    border-color: var(--electric);
    box-shadow: 0 0 0 4px rgba(30,144,255,.12);
}
.plano-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--electric);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 999px;
    white-space: nowrap;
}
.plano-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .25rem; }
.plano-desc { font-size: .88rem; color: var(--slate); margin-bottom: 1.75rem; }
.plano-price { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.plano-features { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.plano-features li {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .88rem; color: var(--slate); margin-bottom: .6rem;
}
.plano-features li i { color: var(--success); flex-shrink: 0; margin-top: .1rem; }
.plano-features li.off { color: #cbd5e1; }
.plano-features li.off i { color: #cbd5e1; }
.trust-bar {
    background: var(--navy);
    padding: 24px 0;
    margin-top: 60px;
}
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.8); font-size: .88rem; }
.trust-item i { color: var(--electric); font-size: 1.1rem; }

/* ── Sobre ───────────────────────────────────────────────────────────────── */
.sobre-section { padding: 80px 0; }
.sobre-section:nth-child(even) { background: var(--offwhite); }
.value-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    text-align: center;
    height: 100%;
}
.value-icon { font-size: 2rem; color: var(--electric); margin-bottom: .75rem; }
.value-card h5 { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: .4rem; }
.value-card p { color: var(--slate); font-size: .85rem; margin: 0; }
.quantora-box {
    background: linear-gradient(135deg, var(--navy), var(--royal));
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}
.quantora-box h4 { font-weight: 800; color: #fff; }
.quantora-box p { color: rgba(255,255,255,.75); }

/* ── Demonstração ─────────────────────────────────────────────────────────── */
.demo-form-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(30,144,255,.08);
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .3rem; }
.form-control, .form-select {
    border-color: #e2e8f0;
    border-radius: 8px;
    padding: .65rem 1rem;
    font-size: .9rem;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(30,144,255,.15); outline: none; }
.text-danger { color: var(--danger) !important; font-size: .8rem; }

/* ── Cadastro ─────────────────────────────────────────────────────────────── */
.cadastro-hero {
    background: linear-gradient(150deg, #0a1430, var(--navy));
    padding: 100px 0 60px;
}
.cadastro-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    overflow: hidden;
}
.cadastro-card-header {
    background: linear-gradient(135deg, var(--navy), var(--royal));
    padding: 28px 36px;
}
.cadastro-card-body { padding: 36px; }
.plan-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 1.5rem; }
.plan-option input { display: none; }
.plan-option label {
    display: block;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: .85rem;
    font-weight: 600;
    color: var(--slate);
}
.plan-option input:checked + label { border-color: var(--electric); background: var(--pale); color: var(--navy); }
.plan-option label strong { display: block; font-size: 1rem; margin-bottom: .15rem; }
.sucesso-icon {
    width: 80px; height: 80px;
    background: rgba(25,135,84,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--success);
    margin: 0 auto 1.5rem;
}

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── Utility ──────────────────────────────────────────────────────────────── */
.text-electric { color: var(--electric) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-electric { background: var(--electric) !important; }
.rounded-pill-sm { border-radius: 999px; }
.section-pt { padding-top: 80px; }
.section-pb { padding-bottom: 80px; }
