:root {
    --navy: #29335C;
    --orange: #E4572E;
    --amber: #F3A712;
    --white: #FFFFFF;
    --midnight: #1A1A2E;
    --midnight2: #0f0f1e;
    --ice: #F0F0F6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--midnight);
    color: var(--white);
    overflow-x: hidden;
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 30, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(243, 167, 18, .18);
    padding: 12px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Logo PNG ── */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 78px;
    width: auto;
    display: block;
}

/* Placeholder caso o PNG não carregue */
.logo-img-placeholder {
    height: 64px;
    background: rgba(255, 255, 255, .06);
    border: 1px dashed rgba(243, 167, 18, .4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(243, 167, 18, .5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-spots {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
}

.nav-spots strong {
    color: var(--orange);
}

.btn-nav {
    background: var(--orange);
    color: #fff;
    border: 1.5px solid var(--orange);
    padding: 7px 16px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, box-shadow .2s, transform .2s;
    letter-spacing: .3px;
    white-space: nowrap;
}

.btn-nav:hover {
    background: #cc4224;
    border-color: #cc4224;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(228, 87, 46, .4);
}

.btn-nav-entrar {
    background: #fff;
    color: #29335C;
    border: 1.5px solid #fff;
    padding: 7px 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, box-shadow .2s, transform .2s;
    letter-spacing: .3px;
    white-space: nowrap;
}

.btn-nav-entrar:hover {
    background: #fff;
    color: #29335C;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

/* Hamburguer mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 6% 80px;
    background: linear-gradient(135deg, var(--midnight2) 0%, #141428 50%, #1c1e40 100%);
}

/* Canvas de rede animada — ocupa todo o hero (ID corrigido) */
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .35;
    pointer-events: none;
}

/* Glow direcional do lado direito para integrar canvas + card */
.hero-glow-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%,
            rgba(228, 87, 46, .15) 0%,
            rgba(41, 51, 92, .10) 45%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 56% 44%;
    align-items: center;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* ── Hero esquerdo ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(228, 87, 46, .13);
    border: 1px solid rgba(228, 87, 46, .45);
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero h1 {
    font-size: clamp(30px, 3.8vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    color: #fff;
}

.hero h1 .hl {
    color: var(--amber);
}

.hero h1 .hl-o {
    color: var(--orange);
}

.hero-sub {
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 34px;
    max-width: 520px;
}

.hero-sub strong {
    color: #fff;
    font-weight: 700;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, #bf3920 100%);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    box-shadow: 0 10px 36px rgba(228, 87, 46, .45);
    letter-spacing: .4px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(228, 87, 46, .65);
}

.hero-note {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

.hero-note strong {
    color: var(--amber);
}

/* Spot boxes */
.spots-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.spot-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(243, 167, 18, .28);
    border-radius: 14px;
    padding: 16px 22px;
    text-align: center;
}

.spot-num {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: var(--amber);
}

.spot-num.orange {
    color: var(--orange);
}

.spot-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ── Hero direito — visual de app ── */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glow laranja atrás do card */
.hero-right::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(228, 87, 46, .22) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.heatmap-visual {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.hero-escuta-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(243, 167, 18, .22);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .45);
    display: block;
}

/* Badge flutuante sobre o card */
.hero-float-badge {
    position: absolute;
    top: -18px;
    right: -14px;
    background: linear-gradient(135deg, var(--orange), #c73d1f);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(228, 87, 46, .5);
    white-space: nowrap;
    z-index: 2;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Badge flutuante inferior esquerdo */
.hero-float-stat {
    position: absolute;
    bottom: -16px;
    left: -14px;
    background: rgba(41, 51, 92, .95);
    border: 1px solid rgba(243, 167, 18, .4);
    border-radius: 14px;
    padding: 12px 18px;
    z-index: 2;
    backdrop-filter: blur(12px);
    animation: floatBadge 3.5s ease-in-out infinite .5s;
}

.hero-float-stat .stat-val {
    font-size: 22px;
    font-weight: 900;
    color: var(--amber);
}

.hero-float-stat .stat-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px;
}

.heatmap-card {
    background: rgba(20, 22, 52, .88);
    border: 1px solid rgba(243, 167, 18, .22);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 0 rgba(255, 255, 255, .06) inset;
}

.heatmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.heatmap-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
}

.heatmap-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
}

.legend-bar {
    width: 56px;
    height: 7px;
    border-radius: 4px;
    background: linear-gradient(90deg, #29335C, #F3A712, #E4572E);
}

.map-container {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    background: rgba(15, 15, 35, .7);
    border-radius: 12px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%,
            rgba(228, 87, 46, .38) 0%,
            rgba(243, 167, 18, .22) 30%,
            rgba(41, 51, 92, .08) 70%,
            transparent 100%);
}

.map-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 2px;
    padding: 12px;
}

.map-cell {
    border-radius: 3px;
    animation: heatPulse var(--duration, 3s) ease-in-out infinite alternate;
    animation-delay: var(--delay, 0s);
}

@keyframes heatPulse {
    from {
        opacity: .35
    }

    to {
        opacity: 1
    }
}

.heatmap-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.hmap-stat {
    background: rgba(0, 0, 0, .25);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.hmap-stat-num {
    font-size: 17px;
    font-weight: 900;
    color: var(--amber);
}

.hmap-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px;
}

.hmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(228, 87, 46, .15);
    border: 1px solid rgba(228, 87, 46, .3);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ═══════════════════════ STATS BAR ═══════════════════════ */
.stats-bar {
    background: var(--navy);
    padding: 40px 6%;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

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

.stat-num {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
}

.stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* ═══════════════════════ SECTIONS SHARED ═══════════════════════ */
.section {
    padding: 96px 6%;
}

.sec-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sec-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 18px;
}

.sec-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    max-width: 580px;
}

/* ═══════════════════════ PROBLEM ═══════════════════════ */
.problem-section {
    background: var(--midnight);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.prob-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 32px;
    transition: border-color .3s;
}

.prob-card:hover {
    border-color: rgba(228, 87, 46, .3);
}

.prob-ico {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.prob-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.prob-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
}

/* ═══════════════════════ SCARCITY ═══════════════════════ */
.scarcity-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1e2650 100%);
    position: relative;
    overflow: hidden;
    padding: 96px 6%;
}

.scarcity-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(228, 87, 46, .12) 0%, transparent 65%);
    border-radius: 50%;
}

.scarcity-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.scarcity-quote {
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin: 40px 0 44px;
    padding: 36px 40px;
    background: rgba(0, 0, 0, .22);
    border-radius: 18px;
    border-left: 6px solid var(--orange);
    text-align: left;
}

.scarcity-quote strong {
    color: var(--amber);
}

.vagas-flex {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.vaga-box {
    background: rgba(255, 255, 255, .05);
    border: 2px solid rgba(243, 167, 18, .35);
    border-radius: 22px;
    padding: 40px 48px;
    text-align: center;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.vaga-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--amber));
}

.vaga-num {
    font-size: 76px;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    display: block;
}

.vaga-type {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-top: 8px;
}

.vaga-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
}

.vagas-total {
    margin-top: 34px;
    font-size: 17px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
}

.vagas-total strong {
    color: var(--orange);
    font-size: 22px;
}

/* ═══════════════════════ FEATURES ═══════════════════════ */
.features-section {
    background: var(--ice);
    padding: 96px 6%;
}

.features-section .sec-tag {
    color: var(--orange);
}

.features-section .sec-title {
    color: var(--midnight);
}

.features-section .sec-sub {
    color: rgba(26, 26, 46, .65);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 52px;
}

.feat-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    border-top: 4px solid transparent;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.feat-card.c-orange {
    border-top-color: var(--orange);
}

.feat-card.c-amber {
    border-top-color: var(--amber);
}

.feat-card.c-navy {
    border-top-color: var(--navy);
}

.feat-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feat-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.feat-ico.bg-o {
    background: rgba(228, 87, 46, .1);
}

.feat-ico.bg-a {
    background: rgba(243, 167, 18, .1);
}

.feat-ico.bg-n {
    background: rgba(41, 51, 92, .08);
}

.feat-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--midnight);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 14px;
    color: rgba(26, 26, 46, .6);
    line-height: 1.7;
}

/* ═══════════════════════ CALCULADORA DE VITÓRIA ═══════════════════════ */
.calc-section {
    background: linear-gradient(160deg, var(--midnight2) 0%, #141428 60%, #1e2046 100%);
    padding: 96px 6%;
    position: relative;
    overflow: hidden;
}

.calc-section::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 167, 18, .07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.calc-section .sec-tag {
    color: var(--amber);
}

.calc-section .sec-tag-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 52px;
    align-items: start;
}

/* Inputs */
.calc-inputs {
    background: rgba(41, 51, 92, .35);
    border: 1px solid rgba(243, 167, 18, .18);
    border-radius: 24px;
    padding: 36px 32px;
}

.calc-inputs h3 {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255, 255, 255, .6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.calc-group {
    margin-bottom: 22px;
}

.calc-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.calc-group input[type="number"] {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: border-color .25s, background .25s;
    outline: none;
    -moz-appearance: textfield;
}

.calc-group input[type="number"]::-webkit-outer-spin-button,
.calc-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.calc-group input[type="number"]:focus {
    border-color: rgba(243, 167, 18, .5);
    background: rgba(255, 255, 255, .09);
}

.calc-hint {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    margin-top: 6px;
    font-style: italic;
}

/* Leads row */
.leads-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.lead-input {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lead-input span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.lead-input input {
    background: rgba(255, 255, 255, .06) !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    font-size: 16px !important;
}

.lead-hot span {
    color: var(--orange);
}

.lead-hot input:focus {
    border-color: rgba(228, 87, 46, .5) !important;
}

.lead-warm span {
    color: var(--amber);
}

.lead-warm input:focus {
    border-color: rgba(243, 167, 18, .5) !important;
}

.lead-cold span {
    color: rgba(120, 150, 255, .85);
}

.lead-cold input:focus {
    border-color: rgba(120, 150, 255, .5) !important;
}

.btn-calc {
    width: 100%;
    background: linear-gradient(135deg, var(--amber) 0%, #d48b00 100%);
    color: var(--midnight2);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 28px rgba(243, 167, 18, .3);
    margin-top: 6px;
    letter-spacing: .5px;
}

.btn-calc:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(243, 167, 18, .5);
}

/* Results */
.calc-results {
    background: rgba(20, 20, 50, .6);
    border: 1px solid rgba(243, 167, 18, .18);
    border-radius: 24px;
    padding: 36px 32px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.calc-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: .45;
}

.calc-empty-icon {
    font-size: 52px;
    margin-bottom: 16px;
}

.calc-empty p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
    max-width: 240px;
}

.calc-output {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Gauge de vitória */
.victory-gauge {}

.gauge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.gauge-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gauge-pct {
    font-size: 28px;
    font-weight: 900;
    color: var(--amber);
}

.gauge-track {
    width: 100%;
    height: 16px;
    background: rgba(255, 255, 255, .07);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.gauge-fill {
    height: 100%;
    border-radius: 50px;
    width: 0%;
    transition: width 1s cubic-bezier(.25, .46, .45, .94);
    position: relative;
}

.gauge-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

/* Result grid */
.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.result-item {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
}

.result-item.result-danger {
    border-color: rgba(228, 87, 46, .35);
    background: rgba(228, 87, 46, .07);
}

.result-item.result-success {
    border-color: rgba(100, 220, 100, .3);
    background: rgba(100, 220, 100, .06);
}

.result-item.result-action {
    border-color: rgba(243, 167, 18, .35);
    background: rgba(243, 167, 18, .07);
}

.result-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.result-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Status banner */
.result-status {
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.result-status.status-win {
    background: rgba(100, 220, 100, .1);
    border: 1px solid rgba(100, 220, 100, .3);
    color: #80e880;
}

.result-status.status-close {
    background: rgba(243, 167, 18, .1);
    border: 1px solid rgba(243, 167, 18, .35);
    color: var(--amber);
}

.result-status.status-gap {
    background: rgba(228, 87, 46, .1);
    border: 1px solid rgba(228, 87, 46, .35);
    color: #ff8a6a;
}

.result-status-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.result-cta-link {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--orange) 0%, #bf3920 100%);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 8px 24px rgba(228, 87, 46, .35);
}

.result-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(228, 87, 46, .55);
}

/* ═══════════════════════ PRICING ═══════════════════════ */
.pricing-section {
    background: var(--midnight);
    padding: 96px 6%;
}

.pricing-section .sec-tag {
    color: var(--orange);
    text-align: center;
}

.pricing-section .sec-title {
    text-align: center;
}

.pricing-section .sec-sub {
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, .5);
}

.pricing-card {
    max-width: 580px;
    margin: 56px auto 0;
    background: linear-gradient(145deg, #1e2757 0%, #29335C 100%);
    border-radius: 28px;
    padding: 52px 48px;
    border: 2px solid rgba(243, 167, 18, .28);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--amber), var(--orange));
}

.pricing-label {
    display: inline-block;
    background: rgba(228, 87, 46, .14);
    border: 1px solid rgba(228, 87, 46, .4);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-name {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.55;
    margin-bottom: 30px;
}

.pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 26px 0;
}

.pix-block {
    margin-bottom: 10px;
}

.pix-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pix-price {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.pix-price sup {
    font-size: 24px;
    vertical-align: top;
    margin-top: 14px;
    color: rgba(255, 255, 255, .75);
    font-weight: 700;
}

.pix-economy {
    font-size: 14px;
    color: var(--amber);
    font-weight: 700;
    margin-top: 8px;
}

.card-option {
    background: rgba(0, 0, 0, .22);
    border-radius: 12px;
    padding: 20px 22px;
    margin-top: 18px;
}

.card-option-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 4px;
}

.card-option-value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.card-option-value em {
    font-style: normal;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    font-weight: 400;
}

.card-option-total {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    margin-top: 4px;
}

.includes-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.inc-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.inc-row:last-child {
    border-bottom: none;
}

.inc-check {
    color: var(--amber);
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.inc-text {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.4;
}

.btn-pricing {
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, #bf3920 100%);
    color: #fff;
    border: none;
    padding: 22px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all .3s;
    box-shadow: 0 10px 36px rgba(228, 87, 46, .45);
    margin-top: 30px;
    letter-spacing: .4px;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 56px rgba(228, 87, 46, .65);
}

.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 18px;
    background: rgba(0, 0, 0, .18);
    border-radius: 10px;
}

.guarantee-ico {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.guarantee-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5;
}

.guarantee-text strong {
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

/* ═══════════════════════ FAQ ═══════════════════════ */
.faq-section {
    background: var(--ice);
    padding: 96px 6%;
}

.faq-section .sec-tag {
    color: var(--orange);
}

.faq-section .sec-title {
    color: var(--midnight);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    border-left: 4px solid transparent;
    transition: all .3s;
    cursor: pointer;
}

.faq-item:hover {
    border-left-color: var(--orange);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.faq-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--midnight);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    user-select: none;
}

.faq-q::after {
    content: '+';
    color: var(--orange);
    font-size: 22px;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    transition: transform .3s;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 14px;
    color: rgba(26, 26, 46, .6);
    line-height: 1.72;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ═══════════════════════ FINAL CTA ═══════════════════════ */
.final-cta {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
    padding: 120px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(228, 87, 46, .1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.final-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.final-inner h2 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
}

.final-inner h2 span {
    color: var(--amber);
}

.final-inner p {
    font-size: 18px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 40px;
    line-height: 1.65;
}

.final-note {
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
}

/* ═══════════════════════ STICKY BAR ═══════════════════════ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15, 15, 30, .97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(243, 167, 18, .25);
    padding: 12px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform .4s ease;
}

.sticky-bar.show {
    transform: translateY(0);
}

.sticky-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.sticky-text span {
    color: var(--orange);
}

.sticky-spot {
    color: var(--amber);
    font-weight: 800;
}

.btn-sticky {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s;
}

.btn-sticky:hover {
    background: #c73d1f;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
footer {
    background: var(--midnight2);
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 40px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
}

.footer-right {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    transition: color .25s;
}

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

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
}

/* ═══════════════════════ ANIMATIONS ═══════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    animation: fadeUp .7s ease forwards;
    opacity: 0;
}

.d1 {
    animation-delay: .05s;
}

.d2 {
    animation-delay: .15s;
}

.d3 {
    animation-delay: .28s;
}

.d4 {
    animation-delay: .42s;
}

.d5 {
    animation-delay: .58s;
}

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

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */

/* Tablet landscape */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

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

/* Tablet portrait */
@media (max-width: 880px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    nav {
        padding: 10px 4%;
    }

    /* Hamburger */
    .nav-toggle {
        display: flex;
    }

    .nav-pill {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(10, 10, 25, .98);
        flex-direction: column;
        padding: 80px 6% 40px;
        z-index: 999;
        gap: 20px;
        border-bottom: 1px solid rgba(243, 167, 18, .18);
    }

    .nav-pill.open {
        display: flex;
    }

    .nav-spots {
        font-size: 14px;
    }

    .btn-nav,
    .btn-nav-entrar {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 14px;
        border-radius: 8px;
    }

    .hero {
        padding: 100px 4% 64px;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .hero-badge {
        font-size: 10px;
        margin-top: 4px;
    }

    .section {
        padding: 64px 4%;
    }

    .scarcity-section {
        padding: 64px 4%;
    }

    .calc-section {
        padding: 64px 4%;
    }

    .features-section {
        padding: 64px 4%;
    }

    .pricing-section {
        padding: 64px 4%;
    }

    .faq-section {
        padding: 64px 4%;
    }

    .final-cta {
        padding: 80px 4%;
    }

    .stats-bar {
        padding: 36px 4%;
    }

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

    .stat {
        border-right: none;
        padding: 12px;
    }

    .stat-num {
        font-size: 34px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 32px 22px;
    }

    .pix-price {
        font-size: 50px;
    }

    .scarcity-quote {
        padding: 24px 24px;
        font-size: clamp(15px, 4vw, 20px);
    }

    .vagas-flex {
        flex-direction: column;
        align-items: center;
    }

    .vaga-box {
        width: 100%;
        max-width: 280px;
        padding: 32px 40px;
    }

    .sticky-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 14px 4%;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }
}

/* Smartphone pequeno */
@media (max-width: 480px) {
    .hero {
        padding: 88px 4% 52px;
    }

    .spots-row {
        gap: 10px;
    }

    .spot-box {
        padding: 14px 16px;
    }

    .spot-num {
        font-size: 28px;
    }

    .spot-label {
        font-size: 10px;
    }

    .sec-title {
        font-size: 26px !important;
    }

    .result-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .result-num {
        font-size: 22px;
    }

    .vaga-num {
        font-size: 60px;
    }

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

    .stat-num {
        font-size: 28px;
    }

    .btn-nav,
    .btn-nav-entrar {
        font-size: 13px;
        padding: 13px;
    }
}

/* ═══════════════════════ SP MAP ═══════════════════════ */
.sp-map-container {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    background: rgba(8, 10, 28, .85);
    border-radius: 12px;
    overflow: hidden;
}

.sp-map-svg {
    width: 100%;
    height: 100%;
}

/* ═══════════════════════ CALC TEASER ═══════════════════════ */
.calc-teaser {
    text-align: center;
    padding: 20px 20px 56px;
    position: relative;
    z-index: 2;
}

.calc-trophy {
    font-size: 96px;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    filter: drop-shadow(0 8px 32px rgba(243, 167, 18, .45));
    animation: trophyFloat 3.5s ease-in-out infinite;
}

@keyframes trophyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.calc-teaser .sec-tag {
    color: var(--amber);
    margin-bottom: 14px;
}

.calc-teaser .sec-title {
    font-size: clamp(26px, 3.5vw, 44px);
    margin-bottom: 18px;
}

.calc-teaser .sec-sub {
    margin: 0 auto 36px;
    max-width: 620px;
}

.calc-lock-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 167, 18, .1);
    border: 1px solid rgba(243, 167, 18, .25);
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    margin-top: 8px;
}

/* ═══════════════════════ STATES TABLE ═══════════════════════ */
.states-section {
    background: var(--midnight);
    padding: 96px 6%;
}

.states-section .sec-tag {
    color: var(--orange);
}

.states-section .sec-title {
    color: #fff;
}

.states-table-wrap {
    overflow-x: auto;
    margin-top: 48px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.states-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
}

.states-table thead tr {
    background: rgba(41, 51, 92, .7);
}

.states-table th {
    padding: 16px 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .5);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    white-space: nowrap;
}

.states-table td {
    padding: 13px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    vertical-align: middle;
}

.states-table tbody tr:hover {
    background: rgba(255, 255, 255, .025);
}

.states-table tbody tr:last-child td {
    border-bottom: none;
}

.state-uf {
    display: inline-block;
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    width: 32px;
}

.state-full {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.vaga-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.vaga-pill.hot {
    background: rgba(228, 87, 46, .15);
    border: 1px solid rgba(228, 87, 46, .4);
    color: #ff8a6a;
}

.vaga-pill.warm {
    background: rgba(243, 167, 18, .12);
    border: 1px solid rgba(243, 167, 18, .3);
    color: var(--amber);
}

.vaga-pill.ok {
    background: rgba(80, 200, 100, .08);
    border: 1px solid rgba(80, 200, 100, .22);
    color: #70e090;
}

.states-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    line-height: 1.6;
}

/* Navbar link de vagas */
.nav-vagas-link {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    font-weight: 700;
    text-decoration: none;
    transition: color .25s;
    white-space: nowrap;
}

.nav-vagas-link:hover {
    color: var(--amber);
}

@media (max-width: 768px) {
    .states-section {
        padding: 64px 4%;
    }

    .states-table th,
    .states-table td {
        padding: 11px 14px;
        font-size: 12px;
    }

    .calc-trophy {
        font-size: 72px;
    }
}

/* ═══════════════════════ CHECKOUT MODAL ═══════════════════════ */
.co-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(6, 6, 18, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
}

.co-overlay.active {
    opacity: 1;
    visibility: visible;
}

.co-modal {
    width: 100%;
    max-width: 510px;
    max-height: 92vh;
    overflow-y: auto;
    background: linear-gradient(158deg, #181c3e 0%, #1f2456 100%);
    border: 1px solid rgba(243, 167, 18, .18);
    border-radius: 22px;
    padding: 36px 36px 30px;
    position: relative;
    box-shadow: 0 32px 100px rgba(0, 0, 0, .75), 0 0 0 1px rgba(255, 255, 255, .04) inset;
    transform: translateY(18px) scale(.975);
    transition: transform .3s cubic-bezier(.25, .46, .45, .94);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .14) transparent;
}

.co-overlay.active .co-modal {
    transform: translateY(0) scale(1);
}

.co-modal::-webkit-scrollbar {
    width: 4px;
}

.co-modal::-webkit-scrollbar-track {
    background: transparent;
}

.co-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .14);
    border-radius: 2px;
}

.co-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .42);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    line-height: 1;
}

.co-close:hover {
    border-color: rgba(228, 87, 46, .5);
    color: var(--orange);
    background: rgba(228, 87, 46, .08);
}

/* Steps */
.co-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.co-si {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.co-si-c {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .26);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.co-si-l {
    font-size: 10px;
    color: rgba(255, 255, 255, .26);
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap;
}

.co-si.active .co-si-c {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(228, 87, 46, .2);
}

.co-si.active .co-si-l {
    color: var(--orange);
}

.co-si.done .co-si-c {
    background: rgba(80, 200, 80, .12);
    border-color: rgba(80, 200, 80, .38);
    color: #6ddc6d;
}

.co-si.done .co-si-l {
    color: rgba(80, 200, 80, .65);
}

.co-sl {
    width: 42px;
    height: 2px;
    margin: 0 5px 18px;
    background: rgba(255, 255, 255, .08);
    flex-shrink: 0;
    transition: background .3s;
}

.co-sl.done {
    background: rgba(80, 200, 80, .28);
}

/* Header */
.co-hd {
    margin-bottom: 18px;
}

.co-title {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.co-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5;
}

/* Summary */
.co-sum {
    background: rgba(243, 167, 18, .07);
    border: 1px solid rgba(243, 167, 18, .17);
    border-radius: 11px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.co-sum-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 2px;
}

.co-sum-val {
    font-size: 17px;
    font-weight: 900;
    color: var(--amber);
}

/* Fields */
.co-f {
    margin-bottom: 15px;
}

.co-lbl {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 6px;
    letter-spacing: .2px;
}

.co-inp,
.co-sel {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color .22s, background .22s;
}

.co-inp::placeholder {
    color: rgba(255, 255, 255, .22);
    font-weight: 400;
}

.co-inp:focus,
.co-sel:focus {
    border-color: rgba(243, 167, 18, .46);
    background: rgba(255, 255, 255, .09);
}

.co-inp.er,
.co-sel.er {
    border-color: rgba(228, 87, 46, .52);
    background: rgba(228, 87, 46, .04);
}

.co-sel {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 5L10 1' stroke='rgba(255,255,255,.3)' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 36px;
}

.co-sel option {
    background: #1f2456;
}

.co-iw {
    position: relative;
}

.co-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(255, 255, 255, .28);
    font-size: 14px;
    user-select: none;
    transition: color .2s;
    line-height: 1;
    padding: 4px;
}

.co-eye:hover {
    color: rgba(255, 255, 255, .6);
}

.co-r2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.co-err {
    font-size: 11px;
    color: #ff8060;
    margin-top: 4px;
    display: none;
    font-weight: 600;
}

.co-err.on {
    display: block;
}

/* Password strength */
.co-pws {
    margin-top: 7px;
}

.co-pwb {
    display: flex;
    gap: 3px;
    height: 3px;
    margin-bottom: 6px;
}

.co-pwbg {
    flex: 1;
    border-radius: 2px;
    background: rgba(255, 255, 255, .08);
    transition: background .25s;
}

.co-pwbg.w {
    background: #ff5252;
}

.co-pwbg.m {
    background: var(--amber);
}

.co-pwbg.s {
    background: #64d464;
}

.co-pwr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 10px;
    color: rgba(255, 255, 255, .26);
}

.co-pwi {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.9;
    transition: color .22s;
}

.co-pwi::before {
    content: '○';
    font-size: 7px;
}

.co-pwi.ok {
    color: #64d464;
}

.co-pwi.ok::before {
    content: '●';
}

/* Payment options */
.co-popts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.co-po {
    border: 2px solid rgba(255, 255, 255, .09);
    border-radius: 13px;
    padding: 15px 17px;
    cursor: pointer;
    transition: all .22s;
    background: rgba(255, 255, 255, .025);
}

.co-po:hover {
    border-color: rgba(243, 167, 18, .3);
    background: rgba(243, 167, 18, .03);
}

.co-po.sp {
    border-color: rgba(0, 200, 80, .48);
    background: rgba(0, 200, 80, .05);
}

.co-po.sc {
    border-color: var(--orange);
    background: rgba(228, 87, 46, .05);
}

.co-ph {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.co-pio {
    font-size: 19px;
}

.co-pnm {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.co-pbdg {
    margin-left: auto;
    background: rgba(80, 200, 80, .1);
    border: 1px solid rgba(80, 200, 80, .26);
    color: #6ddc6d;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: .3px;
    white-space: nowrap;
}

.co-pp {
    font-size: 23px;
    font-weight: 900;
    color: #fff;
}

.co-pp sup {
    font-size: 11px;
    color: rgba(255, 255, 255, .52);
    vertical-align: top;
    margin-top: 5px;
    font-weight: 600;
}

.co-peco {
    font-size: 12px;
    color: #6ddc6d;
    font-weight: 700;
    margin-top: 1px;
}

.co-psub {
    font-size: 12px;
    color: rgba(255, 255, 255, .36);
}

/* Installments */
.co-insts {
    display: none;
    gap: 7px;
    margin-top: 10px;
}

.co-insts.show {
    display: flex;
}

.co-inst {
    flex: 1;
    padding: 9px 4px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03);
    text-align: center;
    transition: all .2s;
}

.co-inst:hover {
    border-color: rgba(228, 87, 46, .35);
}

.co-inst.on {
    border-color: var(--orange);
    background: rgba(228, 87, 46, .1);
}

.co-iv {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.2;
}

.co-il {
    font-size: 10px;
    color: rgba(255, 255, 255, .36);
}

.co-inst.on .co-il {
    color: rgba(228, 87, 46, .72);
}

.co-div {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 16px 0;
}

/* Buttons */
.co-btn {
    width: 100%;
    padding: 14px;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    transition: all .27s;
    letter-spacing: .25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.co-btn+.co-btn {
    margin-top: 8px;
}

.co-bo {
    background: linear-gradient(135deg, var(--orange) 0%, #c03820 100%);
    color: #fff;
    box-shadow: 0 6px 22px rgba(228, 87, 46, .36);
}

.co-bo:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(228, 87, 46, .52);
}

.co-bo:disabled {
    opacity: .44;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.co-bg {
    background: linear-gradient(135deg, #00c853 0%, #009624 100%);
    color: #fff;
    box-shadow: 0 6px 22px rgba(0, 200, 83, .26);
}

.co-bg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(0, 200, 83, .4);
}

.co-bgh {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .52);
    font-size: 13px;
}

.co-bgh:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

/* PIX */
.co-pix-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 14px 0;
}

.co-qr {
    width: 164px;
    height: 164px;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.co-qr-ldr {
    position: absolute;
    inset: 0;
    border-radius: 11px;
    background: rgba(20, 24, 58, .86);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.co-ql {
    font-size: 11px;
    color: rgba(255, 255, 255, .36);
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.co-sep {
    font-size: 12px;
    color: rgba(255, 255, 255, .22);
    text-align: center;
    margin: 7px 0;
}

.co-pcc {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 10px;
    padding: 9px 11px;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.co-pcc-code {
    font-size: 10px;
    color: rgba(255, 255, 255, .42);
    word-break: break-all;
    font-family: monospace;
    flex: 1;
    line-height: 1.4;
}

.co-cpbtn {
    flex-shrink: 0;
    padding: 6px 11px;
    border-radius: 7px;
    cursor: pointer;
    background: rgba(243, 167, 18, .12);
    border: 1px solid rgba(243, 167, 18, .26);
    color: var(--amber);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    transition: all .2s;
    white-space: nowrap;
}

.co-cpbtn:hover {
    background: rgba(243, 167, 18, .2);
}

.co-cpbtn.cp {
    background: rgba(80, 200, 80, .1);
    border-color: rgba(80, 200, 80, .26);
    color: #6ddc6d;
}

.co-pxst {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 10px;
    margin-bottom: 4px;
    background: rgba(243, 167, 18, .06);
    border: 1px solid rgba(243, 167, 18, .16);
}

.co-pxdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
    animation: blink 1.4s ease-in-out infinite;
}

.co-pxtxt {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
}

/* Spinner */
.co-sp {
    width: 26px;
    height: 26px;
    border: 2.5px solid rgba(243, 167, 18, .16);
    border-top-color: var(--amber);
    border-radius: 50%;
    animation: coSpin .75s linear infinite;
}

.co-sp.sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

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

/* Card preview */
.co-cprev {
    width: 100%;
    height: 108px;
    background: linear-gradient(135deg, #2b3560 0%, #1a1e3c 100%);
    border-radius: 13px;
    padding: 17px 19px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    position: relative;
    overflow: hidden;
}

.co-cprev::before {
    content: '';
    position: absolute;
    top: -22px;
    right: -22px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(228, 87, 46, .1);
}

.co-cnp {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
    margin-bottom: 12px;
    font-family: monospace;
}

.co-cbt {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.co-cmt {
    font-size: 9px;
    color: rgba(255, 255, 255, .34);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.co-cval {
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
    font-weight: 600;
    letter-spacing: .5px;
}

.co-cbrand {
    position: absolute;
    top: 13px;
    right: 15px;
    font-size: 19px;
}

/* Confirmation */
.co-done {
    text-align: center;
    padding: 10px 0;
}

.co-done-ico {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(80, 200, 80, .1);
    border: 2px solid rgba(80, 200, 80, .26);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    animation: popIn .5s cubic-bezier(.175, .885, .32, 1.275) both;
}

@keyframes popIn {
    from {
        transform: scale(.2);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.co-done h3 {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.co-done-p {
    font-size: 13px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.6;
    max-width: 310px;
    margin: 0 auto 18px;
}

.co-det {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    padding: 13px 16px;
    text-align: left;
    margin-bottom: 18px;
}

.co-dr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 13px;
}

.co-dr:last-child {
    border-bottom: none;
}

.co-dr .k {
    color: rgba(255, 255, 255, .4);
}

.co-dr .v {
    color: #fff;
    font-weight: 700;
}

/* Security */
.co-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 13px;
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    font-weight: 600;
}

.co-antifraud {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5;
    margin-bottom: 18px;
}

.co-antifraud strong {
    color: rgba(255, 255, 255, .8);
}

.co-sec-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin: 18px 0 10px;
}

@media (max-width: 540px) {
    .co-modal {
        padding: 24px 17px 22px;
        border-radius: 18px;
    }

    .co-r2 {
        grid-template-columns: 1fr;
    }

    .co-sl {
        width: 24px;
    }

    .co-title {
        font-size: 18px;
    }

    .co-qr {
        width: 144px;
        height: 144px;
    }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    font-weight: 600;
}

.trust-item svg {
    opacity: .5;
}

/* ═══ PROBLEMA ═══ */
.problema {
    background: var(--midnight);
}

.prob-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 54px;
}

.prob-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.prob-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.prob-card:hover {
    border-color: rgba(228, 87, 46, .25);
    transform: translateY(-4px);
}

.prob-card:hover::before {
    opacity: 1;
}

.prob-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
    background: rgba(228, 87, 46, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prob-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
}

.prob-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.7;
}

.prob-card .prob-tag {
    display: inline-block;
    margin-top: 18px;
    background: rgba(228, 87, 46, .1);
    border: 1px solid rgba(228, 87, 46, .25);
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}


/* ═══ FEATURES ═══ */
.features {
    background: var(--ice);
    padding: 100px 6%;
}

.features .sec-title {
    color: var(--midnight);
}

.features .sec-tag {
    color: var(--orange);
}

/* Tabs */
.feat-tabs {
    display: flex;
    gap: 8px;
    margin: 48px 0 36px;
    flex-wrap: wrap;
}

.feat-tab {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s;
    background: rgba(41, 51, 92, .08);
    color: rgba(26, 26, 46, .55);
}

.feat-tab.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 4px 20px rgba(41, 51, 92, .35);
}

.feat-tab:hover:not(.active) {
    border-color: rgba(41, 51, 92, .3);
    color: var(--navy);
}

.feat-panel {
    display: none;
}

.feat-panel.active {
    display: block;
}

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

.feat-layout.reverse {
    direction: rtl;
}

.feat-layout.reverse>* {
    direction: ltr;
}

.feat-content .feat-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.feat-content h3 {
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 900;
    color: var(--midnight);
    line-height: 1.1;
    margin-bottom: 16px;
}

.feat-content p {
    font-size: 15px;
    color: rgba(26, 26, 46, .62);
    line-height: 1.75;
    margin-bottom: 24px;
}

.feat-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.feat-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(26, 26, 46, .75);
    line-height: 1.55;
}

.feat-bullets li .chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), #c73d1f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.feat-bullets li .chk svg {
    width: 12px;
    height: 12px;
}

.feat-visual {
    background: rgba(20, 22, 50, .95);
    border: 1px solid rgba(243, 167, 18, .18);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
}

.feat-visual-header {
    background: rgba(41, 51, 92, .5);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.fvh-dots {
    display: flex;
    gap: 5px;
}

.fvh-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.fvh-dots span:nth-child(1) {
    background: #ff5f57;
}

.fvh-dots span:nth-child(2) {
    background: #febc2e;
}

.fvh-dots span:nth-child(3) {
    background: #28c840;
}

.fvh-name {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    margin-left: 6px;
}

.feat-screen {
    padding: 20px;
    min-height: 260px;
}

/* Screen 1 — Heatmap */
.sc1-map {
    width: 100%;
    aspect-ratio: 16/9;
    background: #080a1c;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.sc1-heat {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 35% 40% at 70% 35%, rgba(228, 87, 46, .6) 0%, transparent 60%),
        radial-gradient(ellipse 25% 30% at 35% 55%, rgba(243, 167, 18, .45) 0%, transparent 55%),
        radial-gradient(ellipse 20% 25% at 85% 65%, rgba(243, 167, 18, .3) 0%, transparent 50%),
        radial-gradient(ellipse 30% 35% at 15% 30%, rgba(41, 51, 92, .8) 0%, transparent 60%),
        radial-gradient(ellipse 25% 30% at 55% 80%, rgba(41, 51, 92, .5) 0%, transparent 55%);
}

.sc1-pins {
    position: absolute;
    inset: 0;
}

.sc1-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(228, 87, 46, .3);
    animation: ping 2.5s ease-in-out infinite;
}

.sc1-pin:nth-child(2) {
    top: 30%;
    left: 68%;
    animation-delay: .5s;
}

.sc1-pin:nth-child(3) {
    top: 52%;
    left: 33%;
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(243, 167, 18, .3);
    animation-delay: 1s;
}

.sc1-pin:nth-child(4) {
    top: 65%;
    left: 82%;
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(243, 167, 18, .25);
    animation-delay: 1.5s;
}

.sc1-legend {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 9px;
    color: rgba(255, 255, 255, .4);
}

.sc1-legend-bar {
    width: 60px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #29335C, #F3A712, #E4572E);
}

.sc1-zones {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.sc1-zone {
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
}

.sc1-zone.hot {
    background: rgba(228, 87, 46, .12);
    border: 1px solid rgba(228, 87, 46, .25);
}

.sc1-zone.warm {
    background: rgba(243, 167, 18, .1);
    border: 1px solid rgba(243, 167, 18, .22);
}

.sc1-zone.cold {
    background: rgba(41, 51, 92, .3);
    border: 1px solid rgba(41, 51, 92, .5);
}

.sc1-zone-val {
    font-size: 16px;
    font-weight: 900;
}

.sc1-zone.hot .sc1-zone-val {
    color: var(--orange);
}

.sc1-zone.warm .sc1-zone-val {
    color: var(--amber);
}

.sc1-zone.cold .sc1-zone-val {
    color: rgba(255, 255, 255, .4);
}

.sc1-zone-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Screen 2 — Leads CRM */
.sc2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.sc2-title {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, .7);
}

.sc2-add {
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.sc2-leads {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc2-lead {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc2-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
}

.av-o {
    background: linear-gradient(135deg, var(--orange), #c73d1f);
}

.av-a {
    background: linear-gradient(135deg, var(--amber), #d48b00);
}

.av-n {
    background: linear-gradient(135deg, var(--navy), #1a2445);
}

.sc2-info {
    flex: 1;
}

.sc2-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.sc2-zone {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
}

.sc2-status {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 10px;
}

.s-hot {
    color: var(--orange);
    background: rgba(228, 87, 46, .15);
}

.s-warm {
    color: var(--amber);
    background: rgba(243, 167, 18, .12);
}

.s-cold {
    color: rgba(150, 160, 255, .8);
    background: rgba(150, 160, 255, .08);
}

.sc2-score {
    font-size: 18px;
    font-weight: 900;
    color: var(--amber);
    min-width: 32px;
    text-align: right;
}

/* Screen 3 — Analytics */
.sc3-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.sc3-kpi {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 12px 14px;
}

.sc3-kpi-val {
    font-size: 22px;
    font-weight: 900;
}

.sc3-kpi-val.o {
    color: var(--orange);
}

.sc3-kpi-val.a {
    color: var(--amber);
}

.sc3-kpi-val.g {
    color: var(--green);
}

.sc3-kpi-val.b {
    color: rgba(150, 160, 255, .9);
}

.sc3-kpi-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.sc3-kpi-delta {
    font-size: 10px;
    font-weight: 700;
    margin-top: 4px;
}

.sc3-kpi-delta.up {
    color: var(--green);
}

.sc3-kpi-delta.dn {
    color: #f87171;
}

.sc3-chart {
    background: rgba(8, 10, 28, .7);
    border-radius: 10px;
    padding: 14px;
}

.sc3-chart-title {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 10px;
}

.sc3-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.sc3-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.sc3-bar-val {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 800;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
}

/* Screen 4 — Relatório */
.sc4-report {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc4-row {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc4-info h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.sc4-info p {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px;
}

.sc4-bar-wrap {
    flex: 1;
    margin: 0 16px;
}

.sc4-bar-track {
    height: 6px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden;
}

.sc4-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.fill-o {
    background: linear-gradient(90deg, var(--orange), #c73d1f);
}

.fill-a {
    background: linear-gradient(90deg, var(--amber), #d48b00);
}

.fill-n {
    background: linear-gradient(90deg, var(--navy), #1a2445);
}

.sc4-pct {
    font-size: 14px;
    font-weight: 900;
    min-width: 36px;
    text-align: right;
}


/* ═══ ESTRATÉGIA DE VITÓRIA ═══ */
.estrategia {
    background: linear-gradient(160deg, #0c0c20 0%, #111128 50%, #19194a 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 6%;
}

.estrategia::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(243, 167, 18, .06) 0%, transparent 65%);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.estrategia-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ev-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.ev-left .sec-tag {
    color: var(--amber);
}

.ev-right-text {
    font-size: 16px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.8;
}

.ev-right-text strong {
    color: #fff;
    font-weight: 700;
}

/* Steps */
.ev-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.ev-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--amber), var(--orange));
    z-index: 0;
    opacity: .35;
}

.ev-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ev-step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    border: 2px solid rgba(243, 167, 18, .3);
    background: rgba(15, 15, 30, .9);
    position: relative;
}

.ev-step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(243, 167, 18, .12);
}

.ev-step-num span {
    position: relative;
    z-index: 1;
}

.ev-step-icon {
    font-size: 28px;
}

.ev-step-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--amber);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ev-step-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.ev-step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
}

.ev-step.active .ev-step-num {
    background: linear-gradient(135deg, var(--orange), #c73d1f);
    border-color: var(--orange);
    box-shadow: 0 0 30px rgba(228, 87, 46, .4);
}


.inc-txt {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.45;
}

.inc-chk {
    color: var(--amber);
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sec-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 600px;
}

.sec-sub.dark {
    color: rgba(26, 26, 46, .6);
}

/* ── Screenshot panels (substitui os mocks CSS) ── */
.feat-screen-shot {
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 10px 10px;
    background: transparent;
    line-height: 0;
}

.feat-screen-shot img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 0 0 10px 10px;
    max-height: 290px;
}

.feat-screen-shot::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 72px;
    background: linear-gradient(transparent, rgba(10, 14, 32, 0.6));
    pointer-events: none;
    border-radius: 0 0 10px 10px;
}

/* ── Calculadora: showcase duplo de screenshots ── */
.calc-screens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1020px;
    margin: 52px auto 0;
}

.calc-screen-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
}

.calc-screen-header {
    padding: 10px 14px;
    background: rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
}

.calc-screen-header .wdots {
    display: inline-flex;
    gap: 4px;
    flex-shrink: 0;
}

.calc-screen-header .wdots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.calc-screen-header .wdots span:nth-child(1) {
    background: #ff5f57;
}

.calc-screen-header .wdots span:nth-child(2) {
    background: #ffbd2e;
}

.calc-screen-header .wdots span:nth-child(3) {
    background: #28c840;
}

.calc-screen-card img {
    width: 100%;
    display: block;
}

/* ── Screenshot duplo lado a lado (WhatsApp panel) ── */
.feat-screen-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    background: transparent;
    line-height: 0;
    position: relative;
}

.feat-screen-dual img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    max-height: 260px;
}

.feat-screen-dual img:first-child {
    border-radius: 0 0 0 10px;
}

.feat-screen-dual img:last-child {
    border-radius: 0 0 10px 0;
}

.feat-screen-dual::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 72px;
    background: linear-gradient(transparent, rgba(10, 14, 32, 0.6));
    pointer-events: none;
}

/* ════════════════════════════════════════════
       MOBILE RESPONSIVENESS FIXES
    ════════════════════════════════════════════ */
@media (max-width: 720px) {

    /* Calc screenshots: 1 coluna */
    .calc-screens {
        grid-template-columns: 1fr;
    }

    /* ── Problema: cards em coluna ── */
    .prob-grid {
        grid-template-columns: 1fr !important;
    }

    /* ── Estratégia header: título e texto em coluna ── */
    .ev-header {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .ev-left,
    .ev-right-text {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        float: none !important;
    }

    /* ── Estratégia: steps viram carrossel deslizável ── */
    .ev-steps {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 14px !important;
        padding-bottom: 16px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* esconde scrollbar visualmente */
        scrollbar-width: none;
    }

    .ev-steps::-webkit-scrollbar {
        display: none;
    }

    .ev-step {
        min-width: 230px !important;
        max-width: 230px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 14px;
        padding: 20px 16px !important;
    }

    /* Dica de swipe */
    .ev-steps-wrap::after {
        content: '← Deslize para ver →';
        display: block;
        text-align: center;
        font-size: 10px;
        color: rgba(255, 255, 255, .3);
        margin-top: 8px;
        letter-spacing: .04em;
    }

    /* ── Features: layout single-column ── */
    .feat-layout,
    .feat-layout.reverse {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
    }

    /* screenshot sempre abaixo do texto no mobile */
    .feat-layout .reveal:last-child,
    .feat-layout.reverse .reveal:last-child {
        order: 2 !important;
    }

    .feat-layout .feat-content,
    .feat-layout.reverse .feat-content {
        order: 1 !important;
    }

    /* imagem screenshot menor no mobile */
    .feat-screen-shot img {
        max-height: 220px;
    }

    .feat-screen-dual img {
        max-height: 160px;
    }

    /* feat-tabs: rolagem horizontal */
    .feat-tabs {
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        white-space: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .feat-tabs::-webkit-scrollbar {
        display: none;
    }

    .feat-tab {
        flex-shrink: 0 !important;
    }
}

/* ═══════════════════════ VOTOS PERDIDOS HOME ═══════════════════════ */
.vp-home-section {
    background: var(--midnight);
    padding: 80px 6%;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.vp-home-section .sec-tag {
    color: var(--orange);
}

.vp-home-headline {
    max-width: 700px;
    margin-bottom: 0;
}

.vp-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.vp-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.vp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(228, 87, 46, .08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.vp-card:hover {
    border-color: rgba(228, 87, 46, .35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.vp-card:hover::before {
    opacity: 1;
}

.vp-card-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.vp-card-state {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vp-card-num {
    font-size: 52px;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 6px;
}

.vp-card-pct {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 22px;
}

.vp-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--amber);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
    position: relative;
}

.vp-card-link:hover {
    gap: 8px;
}

.vp-home-note {
    margin-top: 40px;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 20px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .vp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vp-cards-grid {
        grid-template-columns: 1fr;
    }

    .vp-card-num {
        font-size: 44px;
    }
}

/* ═══════════════════════ ESTADOS FOOTER ═══════════════════════ */
.estados-footer {
    background: #08080f;
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 56px 6% 48px;
}

.estados-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.estados-footer-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 36px;
}

.estados-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 24px;
}

.estados-regiao-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding-bottom: 8px;
}

.estados-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.estados-lista a {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.estados-lista a:hover {
    color: var(--amber);
}

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

@media (max-width: 540px) {
    .estados-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .estados-footer {
        padding: 40px 6% 36px;
    }
}

/* ═══════════════════════ WHATSAPP BUBBLE ═══════════════════════ */
.whatsapp-bubble {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-bubble-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: waBubblePop .6s cubic-bezier(.34, 1.56, .64, 1) both;
    animation-delay: 1.2s;
}

.whatsapp-bubble-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37, 211, 102, .65);
}

.whatsapp-bubble-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    flex-shrink: 0;
}

.whatsapp-bubble-tooltip {
    background: rgba(15, 15, 30, .95);
    border: 1px solid rgba(37, 211, 102, .3);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.whatsapp-bubble:hover .whatsapp-bubble-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes waBubblePop {
    from {
        opacity: 0;
        transform: scale(0.6);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 20px;
        right: 16px;
    }

    .whatsapp-bubble-btn {
        width: 52px;
        height: 52px;
    }
}

/* ── STATES NAV ── */
.states-nav {
    background: #08080f;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 52px 6% 44px;
}

.states-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.states-nav-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.states-nav-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
}

.states-nav-year {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(243, 167, 18, .45);
}

.states-nav-regions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px 20px;
}

.states-nav-region-name {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .18);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.states-nav-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.states-nav-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 4px;
    padding: 4px 10px;
    text-decoration: none;
    transition: color .18s, background .18s, border-color .18s;
    letter-spacing: .3px;
}

.states-nav-tag:hover {
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .14);
}

.states-nav-tag.current {
    color: var(--amber);
    background: rgba(243, 167, 18, .08);
    border-color: rgba(243, 167, 18, .28);
    font-weight: 700;
}

@@media(max-width: 900px) {
    .states-nav-regions {
        grid-template-columns: repeat(3, 1fr);
    }
}

@@media(max-width: 640px) {
    .states-nav {
        padding: 40px 4% 36px;
    }

    .states-nav-regions {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 14px;
    }
}

.es-visual {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.es-card {
    background: rgba(20, 22, 52, .88);
    border: 1px solid rgba(243, 167, 18, .22);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 0 rgba(255, 255, 255, .06) inset, 0 8px 40px rgba(0, 0, 0, .45);
}

.es-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.es-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 8px;
}

.es-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: esBlink 1.4s infinite;
}

.es-sources {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    font-weight: 700;
}

/* Equalizer */
.es-eq {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 44px;
    margin-bottom: 18px;
    padding: 0 2px;
}

.es-eq span {
    flex: 1;
    height: 100%;
    border-radius: 3px;
    transform-origin: bottom;
    animation: esWave 1.6s ease-in-out infinite;
}

/* Barras de emoção */
.es-rows {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.es-row {
    display: grid;
    grid-template-columns: 96px 1fr 40px;
    gap: 10px;
    align-items: center;
}

.es-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
}

.es-label i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.es-track {
    height: 12px;
    background: rgba(255, 255, 255, .07);
    border-radius: 99px;
    overflow: hidden;
}

.es-fill {
    height: 100%;
    border-radius: 99px;
    transform-origin: left;
    animation: esGrow 1s cubic-bezier(.2, .8, .2, 1) both;
}

.es-pct {
    font-size: 12px;
    font-weight: 900;
    text-align: right;
}

.es-teal {
    color: #1FC9A7 !important;
}

/* Menções flutuantes */
.es-mention {
    position: absolute;
    max-width: 230px;
    background: rgba(20, 22, 52, .96);
    border-radius: 14px;
    padding: 12px 14px;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
    backdrop-filter: blur(12px);
}

.es-mention-top {
    top: -30px;
    right: -22px;
    border: 1px solid rgba(46, 204, 113, .35);
    animation: floatBadge 3.2s ease-in-out infinite;
}

.es-mention-bottom {
    bottom: -34px;
    left: -22px;
    border: 1px solid rgba(232, 67, 147, .35);
    animation: floatBadge 3.8s ease-in-out infinite .6s;
}

.es-mention-text {
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
}

.es-mention-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.es-tag {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 50px;
}

.es-tag-alegria {
    color: #2ECC71;
    background: rgba(46, 204, 113, .14);
    border: 1px solid rgba(46, 204, 113, .3);
}

.es-tag-indignacao {
    color: #E84393;
    background: rgba(232, 67, 147, .14);
    border: 1px solid rgba(232, 67, 147, .3);
}

.es-mention-when {
    font-size: 9px;
    color: rgba(255, 255, 255, .35);
    font-weight: 600;
}

@keyframes esGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes esWave {

    0%,
    100% {
        transform: scaleY(.35);
    }

    50% {
        transform: scaleY(1);
    }
}

@keyframes esBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}