/* ═══════════════════════════════════════════════════
   KENET TELECOM — PREMIUM STYLESHEET
   Paleta: Roxo #5847D6 | Laranja #F5A623 | Navy #07071A
   ═══════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────── */
:root {
    --c-primary:       #5847D6;
    --c-primary-l:     #7B6CE8;
    --c-primary-d:     #3D2FA8;
    --c-accent:        #F5A623;
    --c-accent-l:      #FFB845;
    --c-neon:          #38BDF8;
    --c-neon-purple:   #C084FC;
    --c-bg:            #07071A;
    --c-bg2:           #0D0D2B;
    --c-bg3:           #111133;
    --c-card:          rgba(13, 13, 43, 0.85);
    --c-glass:         rgba(88, 71, 214, 0.08);
    --c-border:        rgba(88, 71, 214, 0.18);
    --c-border-h:      rgba(88, 71, 214, 0.45);
    --c-text:          #FFFFFF;
    --c-text-m:        #9898C8;
    --c-text-d:        #6B6B9A;

    --glow-primary:    0 0 30px rgba(88, 71, 214, 0.45);
    --glow-accent:     0 0 30px rgba(245, 166, 35, 0.45);
    --glow-neon:       0 0 30px rgba(56, 189, 248, 0.5);
    --glow-sm:         0 0 15px rgba(88, 71, 214, 0.35);

    --radius-sm:  10px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --radius-full: 9999px;

    --header-h: 96px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; padding: 0; margin: 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-text);
}

/* ─── UTILITIES ──────────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, var(--c-primary-l) 0%, var(--c-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    color: var(--c-primary-l);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 1.05rem;
    color: var(--c-text-m);
    line-height: 1.8;
    margin-bottom: 32px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--c-text-m);
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(123, 108, 232, 0.3);
    box-shadow: var(--glow-primary), 0 4px 20px rgba(88, 71, 214, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-primary-l), var(--c-primary));
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.btn-primary-glow:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(88, 71, 214, 0.65), 0 8px 30px rgba(88, 71, 214, 0.35);
}

.btn-primary-glow:hover::after { opacity: 1; }
.btn-primary-glow span, .btn-primary-glow i { position: relative; z-index: 1; }

.btn-secondary-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--c-text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 1px solid var(--c-border-h);
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.btn-secondary-glow:hover {
    color: #fff;
    background: var(--c-glass);
    border-color: var(--c-primary-l);
    box-shadow: var(--glow-sm);
    transform: translateY(-3px);
}

/* ─── CUSTOM CURSOR (desativado) ────────────────── */
.cursor-dot,
.cursor-ring,
.cursor-ring.hovering {
    display: none !important;
}

/* ─── PRELOADER ──────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--c-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-logo {
    width: 180px;
    margin: 0 auto 32px;
    animation: floatPulse 2s ease-in-out infinite;
}

.preloader-track {
    width: 240px;
    height: 3px;
    background: rgba(88, 71, 214, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 16px;
}

.preloader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    border-radius: var(--radius-full);
    transition: width 0.05s linear;
}

.preloader-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--c-text-m);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─── TOP BAR ─────────────────────────────────────── */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, rgba(58, 40, 180, 0.97) 0%, rgba(88, 71, 214, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 7px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    gap: 12px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-left i { color: #FCD34D; }
.topbar-right i { color: #7DD3FC; }

.topbar-sep {
    color: rgba(255,255,255,0.35);
    margin: 0 4px;
}

.topbar-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.topbar-wa:hover { color: #4ADE80; }
.topbar-wa i { color: #4ADE80; font-size: 0.95rem; }

/* ─── HEADER ─────────────────────────────────────── */
#header {
    position: fixed;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1360px;
    z-index: 1000;
    padding: 0;
    transition: top var(--transition), width var(--transition),
                box-shadow var(--transition), background var(--transition);
}

/* Inner pill container */
.header-container {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 14px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: background var(--transition), border-color var(--transition),
                backdrop-filter var(--transition), box-shadow var(--transition), padding var(--transition);
}

#header.scrolled .header-container {
    background: rgba(5, 5, 20, 0.9);
    border-color: rgba(88, 71, 214, 0.3);
    backdrop-filter: blur(28px) saturate(1.8);
    -webkit-backdrop-filter: blur(28px) saturate(1.8);
    box-shadow:
        0 0 0 1px rgba(88, 71, 214, 0.12),
        0 8px 48px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(88, 71, 214, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.04);
    padding: 10px 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 72px;
    width: auto;
    transition: height var(--transition), filter var(--transition);
    filter: drop-shadow(0 0 10px rgba(88, 71, 214, 0.5));
}

#header.scrolled .header-logo img { height: 56px; }

.header-logo:hover img {
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.75));
    transform: scale(1.03);
}

.header-brand {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: opacity var(--transition);
}

.brand-name { color: #ffffff; }
/* .telecom in header — matches reference cyan */
.brand-tld  { color: #38BDF8; }

.header-nav { margin-left: auto; }

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav .nav-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-neon), var(--c-primary-l));
    border-radius: 2px;
    box-shadow: 0 0 8px var(--c-neon);
    transition: transform var(--transition);
    transform-origin: center;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.header-nav .nav-link:hover::after,
.header-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* CTA button in header */
.btn-assinante {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #5847D6, #7B5AFF, #38BDF8);
    background-size: 200% 200%;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 11px 26px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 0 28px rgba(88, 71, 214, 0.55), 0 4px 20px rgba(88, 71, 214, 0.3);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease infinite;
}

.btn-assinante::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}

.btn-assinante:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 50px rgba(88, 71, 214, 0.8), 0 8px 30px rgba(88, 71, 214, 0.45);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 10px;
    margin-left: auto;
    transition: background var(--transition);
}

.hamburger:hover {
    background: rgba(88,71,214,0.3);
    border-color: rgba(88,71,214,0.5);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 7, 26, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Botão fechar (X) dentro do overlay */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.mobile-menu-close:hover {
    background: rgba(88,71,214,0.3);
    border-color: rgba(88,71,214,0.6);
    color: #fff;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: block;
    text-align: center;
}

.mobile-link:hover {
    color: #fff;
    background: var(--c-glass);
}

.btn-assinante-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-l));
    color: #07071A;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    box-shadow: var(--glow-accent);
    transition: var(--transition);
}

.btn-assinante-mobile:hover {
    color: #07071A;
    transform: scale(1.03);
}

/* ─── HERO SECTION ───────────────────────────────── */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-bg);
}

/* Background image com filtros CSS para melhorar qualidade */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hassect/fundo hero.png') center 30% / cover no-repeat;
    filter: contrast(1.25) saturate(1.55) brightness(1.05);
    z-index: 0;
    pointer-events: none;
}

/* Canvas particles */
#heroCanvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* Ambient glow orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88, 71, 214, 0.25) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    z-index: 1;
    animation-delay: 0s;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
    z-index: 1;
    animation-delay: -4s;
}

/* ─── Dark overlay for text readability over photo background ─── */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(0,0,0,0.68) 0%, rgba(4,4,14,0.52) 50%, rgba(4,4,14,0.22) 100%);
    z-index: 4;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 5;
    padding-top: calc(var(--header-h) + 44px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 60px;
}

.hero-content { padding: 60px 0; }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(88, 71, 214, 0.15);
    border: 1px solid rgba(88, 71, 214, 0.45);
    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.3s forwards;
    box-shadow: 0 0 20px rgba(88,71,214,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ADE80;
    animation: glowPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.badge-bolt {
    color: var(--c-accent);
    font-size: 0.8rem;
}

.hero-title {
    font-size: clamp(2rem, 3.1vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.title-line1 {
    display: block;
    white-space: nowrap;
}

.title-line2 {
    display: block;
    white-space: nowrap;
    color: #ffffff;
}

/* 'Performance' gradient — neon glow */
.title-performance {
    background: linear-gradient(to right, #38BDF8 0%, #818CF8 35%, #C084FC 65%, #F472B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(129, 140, 248, 0.55));
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    color: rgba(200, 210, 240, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.9s forwards;
    margin-bottom: 40px;
}

/* Hero social proof stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0;
    animation: fadeInUp 0.7s ease 1.1s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 20px;
}

.hero-stat:first-child { padding-left: 0; }

.hs-value {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hs-label {
    font-size: 0.72rem;
    color: rgba(180, 180, 220, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.hs-sep {
    width: 1px;
    height: 32px;
    background: rgba(88, 71, 214, 0.35);
    flex-shrink: 0;
}

/* ─── Hero benefits card ─── */
.hero-benefits-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-benefits-card {
    background: rgba(8, 6, 28, 0.78);
    border: 1px solid rgba(88, 71, 214, 0.35);
    border-radius: 24px;
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    padding: 36px 32px;
    max-width: 380px;
    width: 100%;
    box-shadow:
        0 0 0 1px rgba(88, 71, 214, 0.1),
        0 24px 64px rgba(0,0,0,0.5),
        0 0 80px rgba(88, 71, 214, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.8s forwards;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-benefits-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(88, 71, 214, 0.3),
        0 32px 80px rgba(0,0,0,0.55),
        0 0 100px rgba(88, 71, 214, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.hb-seal {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F5A623, #FFB845);
    color: #07071A;
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.5);
}

.hb-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.hb-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-neon));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 28px rgba(88,71,214,0.5), 0 4px 16px rgba(56,189,248,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-benefits-card:hover .hb-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 0 40px rgba(56,189,248,0.6);
}

.hb-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.hb-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.hb-plus {
    font-size: 1.4rem;
    font-weight: 800;
    color: #38BDF8;
}

.hb-divider {
    height: 1px;
    background: rgba(96, 165, 250, 0.2);
    margin-bottom: 28px;
}

.hb-promo { text-align: center; }

.hb-from {
    font-size: 0.85rem;
    color: rgba(200,200,230,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.hb-price {
    font-family: 'Sora', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(88, 71, 214, 0.4);
}

.hb-currency {
    font-size: 1.6rem;
    vertical-align: super;
    color: #38BDF8;
}

.hb-period {
    font-size: 1.1rem;
    color: rgba(200,200,230,0.7);
    font-weight: 500;
}

.hb-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hb-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(220,225,255,0.85);
    font-weight: 500;
}

.hb-perks li .fa-check-circle { color: #4ADE80; }
.hb-perks li .fa-tv { color: var(--c-neon); }
.hb-perks li .fa-shield-alt { color: #C084FC; }

.hb-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-neon);
    border-bottom: 1px solid rgba(56,189,248,0.3);
    padding-bottom: 2px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.hb-cta:hover {
    color: #fff;
    gap: 12px;
}

/* ─── Hero buttons ─── */
.btn-contratar-hero {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: linear-gradient(135deg, #4936C2 0%, #6E4FFF 40%, #9B6FFF 70%, #38BDF8 100%);
    background-size: 250% 250%;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow:
        0 0 0 1px rgba(155, 111, 255, 0.5),
        0 0 28px rgba(88, 71, 214, 0.65),
        0 6px 28px rgba(88, 71, 214, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.22);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease infinite;
    white-space: nowrap;
    cursor: pointer;
}

/* Shimmer sweep */
.btn-contratar-hero::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-contratar-hero:hover::before { left: 160%; }

.btn-contratar-hero:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 0 1px rgba(155, 111, 255, 0.8),
        0 0 50px rgba(88, 71, 214, 0.85),
        0 12px 40px rgba(88, 71, 214, 0.55),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-contratar-hero i, .btn-contratar-hero span { position: relative; z-index: 1; }

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: linear-gradient(135deg, rgba(7,30,20,0.85) 0%, rgba(5,20,14,0.9) 100%);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(37, 211, 102, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.08),
        0 0 20px rgba(37, 211, 102, 0.18),
        inset 0 1px 0 rgba(37, 211, 102, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.btn-whatsapp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(37, 211, 102, 0.14) 0%, transparent 70%);
    border-radius: inherit;
    pointer-events: none;
    opacity: 1;
    transition: opacity var(--transition);
}

.btn-whatsapp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(37, 211, 102, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    pointer-events: none;
}

.btn-whatsapp-hero i { color: #25D366; font-size: 1.25rem; position: relative; z-index: 1; }
.btn-whatsapp-hero span { position: relative; z-index: 1; }

.btn-whatsapp-hero:hover {
    color: #fff;
    border-color: rgba(37, 211, 102, 0.9);
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.25),
        0 0 36px rgba(37, 211, 102, 0.4),
        0 8px 28px rgba(37, 211, 102, 0.2),
        inset 0 1px 0 rgba(37, 211, 102, 0.2);
    transform: translateY(-3px) scale(1.03);
}

.btn-whatsapp-hero:hover::after { opacity: 1; }

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInRight 0.9s ease 0.8s forwards;
}

/* ─── Hero Neon Ring Visual ─── */
.hero-ring-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Outer diffuse glow layer */
.hero-ring-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(147, 51, 234, 0.18) 30%,
        rgba(56, 189, 248, 0.08) 55%,
        transparent 70%
    );
    filter: blur(30px);
    pointer-events: none;
    animation: breathe 4s ease-in-out infinite;
}

/* The neon ring itself */
.hero-neon-ring {
    position: relative;
    width: 440px;
    height: 440px;
    max-width: 92vw;
    max-height: 92vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Gradient border — matches reference: blue bottom, pink/magenta top */
    background:
        linear-gradient(#04040E, #04040E) padding-box,
        conic-gradient(
            from 270deg,
            #38BDF8  0deg,
            #60A5FA  40deg,
            #818CF8  80deg,
            #9333EA  110deg,
            #C084FC  140deg,
            #E879F9  180deg,
            #EC4899  200deg,
            #E879F9  220deg,
            #C084FC  250deg,
            #818CF8  280deg,
            #60A5FA  310deg,
            #38BDF8  360deg
        ) border-box;
    border: 7px solid transparent;
    box-shadow:
        0 0 30px rgba(147, 51, 234, 0.55),
        0 0 70px rgba(147, 51, 234, 0.28),
        0 0 120px rgba(56, 189, 248, 0.16),
        0 0 200px rgba(147, 51, 234, 0.1),
        inset 0 0 60px rgba(88, 71, 214, 0.05);
    animation: ringPulse 4s ease-in-out infinite;
}

/* Ring inner content */
.ring-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.ring-logo {
    width: 210px;
    height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(88, 71, 214, 0.6)) drop-shadow(0 0 8px rgba(147,51,234,0.4));
    animation: floatPulse 5s ease-in-out infinite;
}

.ring-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1;
}

/* 'kenet' in white, '.telecom' in cyan-blue matching reference */
.rb-kenet { color: #ffffff; }
.rb-tld   { color: #38BDF8; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 6;
    opacity: 0;
    animation: fadeInUp 0.6s ease 2s forwards;
}

.scroll-indicator span {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: rgba(180, 180, 210, 0.65);
}

.scroll-chevron {
    font-size: 0.75rem;
    color: var(--c-primary-l);
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 22px; height: 34px;
    border: 1.5px solid rgba(180, 180, 210, 0.45);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 3px; height: 7px;
    background: rgba(180, 180, 210, 0.65);
    border-radius: 2px;
    animation: scrollAnim 1.8s ease-in-out infinite;
}

/* ─── ABOUT SECTION ──────────────────────────────── */
.about-section {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg2) 100%);
    padding-bottom: 60px;
}

.section-bg-dots {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(88, 71, 214, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.about-features { display: flex; flex-direction: column; gap: 16px; }

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.about-feat:hover {
    border-color: var(--c-border-h);
    background: rgba(88, 71, 214, 0.1);
    transform: translateX(6px);
}

.feat-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: var(--glow-sm);
}

.about-feat h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}

.about-feat p {
    font-size: 0.8rem;
    color: var(--c-text-m);
    margin: 0;
}

/* About Visual */
.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.about-logo-wrap {
    position: relative;
    width: 180px; height: 180px;
}

.about-logo-ring {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1.5px solid rgba(88, 71, 214, 0.35);
    animation: spin 12s linear infinite;
    background: conic-gradient(from 0deg, rgba(88, 71, 214, 0.3), transparent 60%, rgba(245, 166, 35, 0.3), transparent 90%);
}

.about-logo-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(88, 71, 214, 0.2);
}

.about-logo-img {
    width: 100%; height: 100%;
    object-fit: contain;
    background: var(--c-bg2);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 0 40px rgba(88, 71, 214, 0.2), 0 0 80px rgba(88, 71, 214, 0.08);
    animation: floatPulse 5s ease-in-out infinite;
}

.about-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.tech-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: default;
    text-align: center;
}

.tech-chip:hover {
    background: rgba(88, 71, 214, 0.15);
    border-color: var(--c-border-h);
    transform: translateY(-4px);
    box-shadow: var(--glow-sm);
}

.tech-chip i {
    font-size: 1.2rem;
    color: var(--c-primary-l);
}

.tech-chip span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--c-text-m);
}

/* Counters */
.counters-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 8px;
    margin-top: 60px;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.counter-card {
    padding: 28px 20px;
    text-align: center;
}

.counter-sep {
    width: 1px;
    height: 50px;
    background: var(--c-border);
}

.counter-icon {
    font-size: 1.3rem;
    color: var(--c-primary-l);
    margin-bottom: 10px;
    opacity: 0.8;
}

.counter-number {
    display: inline-flex;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}

.counter-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.counter-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-accent);
    line-height: 1;
    margin-top: 2px;
}

.counter-label {
    font-size: 0.78rem;
    color: var(--c-text-m);
    font-weight: 500;
    margin-top: 6px;
    white-space: nowrap;
}

/* ─── TV + INTERNET SECTION ──────────────────────── */
.tvinternet-section {
    background: linear-gradient(180deg, var(--c-bg2) 0%, var(--c-bg3) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.tvinternet-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-primary), transparent);
    opacity: 0.5;
}

.service-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 71, 214, 0.5), transparent);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--c-border-h);
    box-shadow: 0 25px 60px rgba(88, 71, 214, 0.15), var(--glow-sm);
}

.service-card:hover::before {
    background: linear-gradient(90deg, transparent, var(--c-primary-l), transparent);
}

.service-card-featured {
    background: linear-gradient(145deg, rgba(88, 71, 214, 0.15), rgba(123, 108, 232, 0.08));
    border-color: rgba(88, 71, 214, 0.4);
    box-shadow: 0 0 40px rgba(88, 71, 214, 0.12);
}

.sc-feat-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sc-icon-wrap {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: var(--glow-primary), 0 8px 20px rgba(88, 71, 214, 0.25);
    transition: var(--transition);
}

.service-card:hover .sc-icon-wrap {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 0 40px rgba(88, 71, 214, 0.5);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--c-text-m);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--c-text-m);
}

.sc-list li i { color: var(--c-accent); font-size: 0.8rem; }

.sc-glow {
    position: absolute;
    bottom: -60px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(88, 71, 214, 0.3) 0%, transparent 70%);
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover .sc-glow {
    bottom: -20px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(88, 71, 214, 0.45) 0%, transparent 70%);
}

/* ─── PLANS SECTION ──────────────────────────────── */
.plans-section {
    background: linear-gradient(180deg, var(--c-bg3) 0%, var(--c-bg2) 100%);
    position: relative;
    overflow: hidden;
}

.plans-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-primary), transparent);
    opacity: 0.3;
}

.plan-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 36px 28px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-primary-l));
    opacity: 0;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--c-border-h);
    box-shadow: 0 25px 60px rgba(88, 71, 214, 0.18), var(--glow-sm);
}

.plan-card:hover::before { opacity: 1; }

.plan-card-featured {
    background: linear-gradient(160deg, rgba(88, 71, 214, 0.18) 0%, rgba(123, 108, 232, 0.1) 100%);
    border-color: rgba(88, 71, 214, 0.5);
    box-shadow: 0 0 50px rgba(88, 71, 214, 0.15);
    transform: scale(1.03);
}

.plan-card-featured::before { opacity: 1; }

.plan-card-featured:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 30px 80px rgba(88, 71, 214, 0.3);
}

.plan-popular {
    position: absolute;
    top: 18px; right: 18px;
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-l));
    color: #07071A;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: var(--glow-accent);
    letter-spacing: 0.04em;
}

.plan-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-border);
}

.plan-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--glow-sm);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.plan-speed {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-primary-l);
    text-align: right;
}

.plan-speed span { font-size: 0.75rem; font-weight: 500; color: var(--c-text-m); }

.plan-price-wrap {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 24px;
}

.plan-cur {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text-m);
    margin-top: 8px;
}

.plan-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.plan-per {
    font-size: 0.85rem;
    color: var(--c-text-m);
    align-self: flex-end;
    padding-bottom: 8px;
}

.plan-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.plan-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--c-text-m);
}

.plan-list li.active { color: rgba(255, 255, 255, 0.85); }
.plan-list li.active i { color: var(--c-accent); }
.plan-list li.inactive i { color: rgba(255, 255, 255, 0.2); }
.plan-list li.inactive { opacity: 0.4; }
.plan-list li i { font-size: 0.9rem; }

.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(88, 71, 214, 0.12);
    border: 1px solid var(--c-border-h);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    margin-top: auto;
}

.btn-plan:hover {
    color: #fff;
    background: var(--c-primary);
    border-color: var(--c-primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.btn-plan-featured {
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-l));
    border-color: transparent;
    color: #07071A;
    font-weight: 700;
    box-shadow: var(--glow-accent);
}

.btn-plan-featured:hover {
    color: #07071A;
    background: linear-gradient(135deg, var(--c-accent-l), var(--c-accent));
    box-shadow: 0 0 45px rgba(245, 166, 35, 0.6), 0 6px 20px rgba(245, 166, 35, 0.3);
}

.plans-note {
    font-size: 0.85rem;
    color: var(--c-text-d);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plans-note i { color: var(--c-primary-l); }

/* Centavos no preço */
.plan-cents {
    font-size: 1.4rem;
    font-weight: 700;
    vertical-align: super;
    color: rgba(255,255,255,0.75);
}

/* Card Personalizado */
.plan-card-custom {
    border-color: rgba(56, 189, 248, 0.35);
    background: linear-gradient(160deg, rgba(8, 6, 28, 0.85) 0%, rgba(10, 25, 40, 0.85) 100%);
    position: relative;
    overflow: hidden;
}

.plan-card-custom::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.07) 0%, transparent 65%);
    pointer-events: none;
    border-radius: inherit;
}

.plan-card-custom:hover {
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 0 60px rgba(56, 189, 248, 0.2), 0 20px 50px rgba(0,0,0,0.4);
}

.plan-icon-custom {
    background: linear-gradient(135deg, #38BDF8, #818CF8) !important;
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.45) !important;
}

.plan-speed-custom {
    font-size: 1.3rem;
    font-weight: 800;
    color: #38BDF8;
    line-height: 1.25;
    margin-top: 6px;
    letter-spacing: -0.02em;
}

.plan-custom-desc {
    font-size: 0.88rem;
    color: rgba(180, 195, 230, 0.7);
    line-height: 1.65;
    margin-bottom: 20px;
    text-align: center;
}

.btn-plan-custom {
    background: linear-gradient(135deg, rgba(7,30,20,0.9), rgba(5,20,14,0.95));
    border: 1.5px solid rgba(37, 211, 102, 0.55);
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.btn-plan-custom i { color: #25D366; font-size: 1.1rem; }

.btn-plan-custom:hover {
    background: linear-gradient(135deg, rgba(10,50,30,0.95), rgba(7,35,20,1));
    border-color: rgba(37, 211, 102, 0.85);
    box-shadow: 0 0 36px rgba(37, 211, 102, 0.4), 0 6px 20px rgba(37, 211, 102, 0.2);
    color: #fff;
    transform: translateY(-4px);
}

/* ─── WHY SECTION ────────────────────────────────── */
.why-section {
    background: linear-gradient(180deg, var(--c-bg2) 0%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(88, 71, 214, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.why-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--c-border-h);
    box-shadow: 0 20px 50px rgba(88, 71, 214, 0.15);
}

.why-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: var(--glow-primary), 0 8px 20px rgba(88, 71, 214, 0.2);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 0 45px rgba(88, 71, 214, 0.5);
}

.why-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.82rem;
    color: var(--c-text-m);
    line-height: 1.65;
    margin: 0;
}

.why-glow {
    position: absolute;
    bottom: -50px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(88, 71, 214, 0.35) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition);
}

.why-card:hover .why-glow {
    bottom: -15px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(88, 71, 214, 0.5) 0%, transparent 70%);
}

/* ─── COVERAGE SECTION ───────────────────────────── */
.coverage-section {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg2) 100%);
    position: relative;
    overflow: hidden;
}

.coverage-types {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.cov-type {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.cov-type:hover {
    border-color: var(--c-border-h);
    background: rgba(88, 71, 214, 0.1);
    transform: translateX(6px);
}

.cov-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: var(--glow-sm);
}

.cov-type h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cov-type p {
    font-size: 0.8rem;
    color: var(--c-text-m);
    margin: 0;
}

/* Coverage Map */
.coverage-map-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.coverage-map-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 40% 50%, rgba(88, 71, 214, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.coverage-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
    margin-top: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--c-text-m);
}

.legend-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}

.ld-fiber { background: var(--c-primary); box-shadow: 0 0 8px rgba(88, 71, 214, 0.6); }
.ld-radio { background: var(--c-accent); box-shadow: 0 0 8px rgba(245, 166, 35, 0.6); }

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #080825 0%, #0F0A35 50%, #08071A 100%);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(88, 71, 214, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(245, 166, 35, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.cta-logo {
    width: 130px;
    margin: 0 auto 32px;
    filter: drop-shadow(0 0 20px rgba(88, 71, 214, 0.5));
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--c-text-m);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
    background: #050510;
    border-top: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.footer-top-glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(88, 71, 214, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.footer-main { padding-bottom: 60px; }

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(88, 71, 214, 0.3));
}

.footer-desc {
    font-size: 0.87rem;
    color: var(--c-text-m);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.s-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.55);
    transform: translateY(-4px) scale(1.1);
}

.s-instagram:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 25px rgba(221, 42, 123, 0.5);
    transform: translateY(-4px) scale(1.1);
}

.s-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.5);
    transform: translateY(-4px) scale(1.1);
}

.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-border);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav li a {
    font-size: 0.88rem;
    color: var(--c-text-m);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-nav li a::before {
    content: '›';
    color: var(--c-primary-l);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-nav li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--c-text-m);
}

.fc-item i {
    color: var(--c-primary-l);
    width: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-wa-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.footer-wa-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.5);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--c-border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--c-text-d);
    margin: 0;
}

/* ─── WHATSAPP FLOAT ─────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 990;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25D366;
}

.wa-float:hover .wa-tooltip { opacity: 1; }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes spinReverse {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.12); }
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--c-accent); }
    50%       { opacity: 0.4; box-shadow: 0 0 4px var(--c-accent); }
}

@keyframes scrollAnim {
    0%   { opacity: 1; transform: translateY(0); }
    60%  { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(0); }
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@keyframes ringPulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(147, 51, 234, 0.55),
            0 0 70px rgba(147, 51, 234, 0.28),
            0 0 120px rgba(56, 189, 248, 0.16),
            0 0 200px rgba(147, 51, 234, 0.1);
    }
    50% {
        box-shadow:
            0 0 50px rgba(147, 51, 234, 0.8),
            0 0 100px rgba(147, 51, 234, 0.45),
            0 0 160px rgba(56, 189, 248, 0.25),
            0 0 260px rgba(147, 51, 234, 0.15);
    }
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50%       { transform: translateY(5px); opacity: 1; }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.06); }
    66%       { transform: translate(-20px, 15px) scale(0.96); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px #4ADE80, 0 0 20px rgba(74,222,128,0.4); }
    50%       { opacity: 0.5; box-shadow: 0 0 4px #4ADE80; }
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ─── MEDIA QUERIES ──────────────────────────────── */

/* LG — 992px */
@media (max-width: 992px) {
    #header {
        top: 44px;
        width: calc(100% - 24px);
    }

    .header-container { padding: 12px 18px; }

    .header-nav { display: none; }
    .btn-assinante { display: none; }
    .hamburger { display: flex; }

    .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-neon-ring { width: 300px; height: 300px; }
    .ring-logo { width: 140px; height: 140px; }
    .ring-brand { font-size: 1.2rem; }

    .hero-content { text-align: center; padding: 100px 0 20px; padding-right: 0; }
    .hero-badge { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }

    .counters-row {
        grid-template-columns: 1fr 1fr;
        border-radius: var(--radius-lg);
        padding: 8px 4px;
    }
    .counter-sep { display: none; }
    .counter-card { padding: 22px 16px; }

    .plan-card-featured { transform: scale(1); }
    .plan-card-featured:hover { transform: translateY(-10px); }

    .about-visual { margin-top: 40px; }
}

/* MD — 768px */
@media (max-width: 768px) {
    :root { --header-h: 70px; }

    /* Esconde topbar em mobile — header assume o topo */
    .topbar { display: none; }

    #header {
        top: 8px;
        width: calc(100% - 20px);
    }

    .hero-container {
        padding-top: calc(var(--header-h) + 16px);
    }

    .section { padding: 70px 0; }

    .section-title { font-size: 1.75rem; }

    .counters-row {
        grid-template-columns: 1fr 1fr;
        padding: 8px 4px;
    }

    .counter-sep { display: none; }
    .counter-card { padding: 18px 12px; }
    .counter-val { font-size: 2rem; }
    .counter-plus { font-size: 1.6rem; }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px;
    }

    .hero-stat-sep {
        width: 60px;
        height: 1px;
    }

    .float-card { display: none; }

    .hero-buttons { flex-direction: column; align-items: center; }

    .btn-primary-glow, .btn-secondary-glow {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .service-card { padding: 28px 22px; }
    .plan-card { padding: 28px 22px 24px; }

    .coverage-map-wrap { margin-top: 20px; }

    .cta-buttons { flex-direction: column; align-items: center; }

    .about-tech-grid { grid-template-columns: repeat(2, 1fr); }

    .footer { padding-top: 60px; }
}

/* SM — 576px */
@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }

    .hero-badge span { display: none; }

    .hero-neon-ring { width: 240px; height: 240px; }
    .ring-logo { width: 110px; height: 110px; }
    .ring-brand { font-size: 1rem; }

    .why-card { padding: 24px 18px; }
    .why-icon { width: 56px; height: 56px; font-size: 1.3rem; }

    .plan-val { font-size: 2.8rem; }

    .footer-logo { width: 120px; }

    .wa-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 20px; }

    .cov-type, .about-feat { padding: 12px; gap: 12px; }

    .scroll-indicator { display: none; }
}

/* XS — 400px */
@media (max-width: 400px) {
    .hero-title { font-size: 1.7rem; }
    .section-title { font-size: 1.5rem; }
    .counter-val { font-size: 1.75rem; }
    .plan-val { font-size: 2.4rem; }
    .about-tech-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── HERO CTA BUTTONS (new primary/secondary) ───── */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: linear-gradient(135deg, #1a8a47 0%, #25D366 50%, #20BA5A 100%);
    background-size: 200% 200%;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.15),
        0 0 28px rgba(37, 211, 102, 0.45),
        0 6px 28px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.18);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease infinite;
    white-space: nowrap;
    cursor: pointer;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-cta-primary:hover::before { left: 160%; }

.btn-cta-primary:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.4),
        0 0 50px rgba(37, 211, 102, 0.7),
        0 12px 40px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-cta-primary i,
.btn-cta-primary span { position: relative; z-index: 1; }

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(88, 71, 214, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    color: #fff;
    background: rgba(88, 71, 214, 0.18);
    border-color: var(--c-primary-l);
    box-shadow: var(--glow-sm), 0 6px 20px rgba(88,71,214,0.2);
    transform: translateY(-3px);
    gap: 14px;
}

.btn-cta-secondary i { font-size: 0.85rem; transition: transform 0.25s ease; }
.btn-cta-secondary:hover i { transform: translateX(3px); }

/* ─── HERO TRUST STRIP ───────────────────────────── */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.7s ease 1.0s forwards;
    flex-wrap: wrap;
    row-gap: 8px;
}

.ht-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(200, 215, 255, 0.75);
    padding: 0 16px;
}

.ht-item:first-child { padding-left: 0; }

.ht-item i {
    color: #4ADE80;
    font-size: 0.85rem;
}

.ht-sep {
    width: 1px;
    height: 18px;
    background: rgba(88, 71, 214, 0.4);
    flex-shrink: 0;
}

/* ─── HERO CARD PRICE DECIMALS ───────────────────── */
.hb-cents {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    vertical-align: super;
    line-height: 1;
    margin-left: 2px;
}

.hb-dash {
    font-size: 1.1rem;
    color: rgba(200,200,230,0.4);
    font-weight: 400;
    margin: 0 4px;
}

/* ─── PROOF STRIP ────────────────────────────────── */
.proof-strip {
    padding: 28px 0;
    background: rgba(8, 6, 28, 0.95);
    border-top: 1px solid rgba(88, 71, 214, 0.18);
    border-bottom: 1px solid rgba(88, 71, 214, 0.18);
    position: relative;
    overflow: hidden;
}

.proof-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(88,71,214,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 32px;
    flex-shrink: 0;
}

.proof-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(88,71,214,0.25), rgba(123,108,232,0.15));
    border: 1px solid rgba(88,71,214,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--c-primary-l);
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.proof-val {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    white-space: nowrap;
}

.proof-label {
    font-size: 0.72rem;
    color: var(--c-text-m);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: rgba(88,71,214,0.25);
    flex-shrink: 0;
}

/* ─── BENEFITS SECTION ───────────────────────────── */
.benefits-section {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg2) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(88,71,214,0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-primary-l));
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--c-border-h);
    box-shadow: 0 20px 50px rgba(88,71,214,0.15), var(--glow-sm);
}

.benefit-card:hover::before { opacity: 1; }

.bc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: var(--glow-sm), 0 8px 20px rgba(88,71,214,0.2);
    transition: var(--transition);
}

.benefit-card:hover .bc-icon {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 0 40px rgba(88,71,214,0.5);
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.87rem;
    color: var(--c-text-m);
    line-height: 1.7;
    margin: 0;
}

/* ─── TESTIMONIALS SECTION ───────────────────────── */
.testimonials-section {
    background: linear-gradient(180deg, var(--c-bg2) 0%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(88,71,214,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(88,71,214,0.12);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-border-h);
    box-shadow: 0 20px 50px rgba(88,71,214,0.15);
}

.testimonial-card--featured {
    background: linear-gradient(145deg, rgba(88,71,214,0.18) 0%, rgba(123,108,232,0.08) 100%);
    border-color: rgba(88,71,214,0.45);
    box-shadow: 0 0 40px rgba(88,71,214,0.1);
}

.tc-stars {
    display: flex;
    gap: 4px;
}

.tc-stars i { color: var(--c-accent); font-size: 0.85rem; }

.tc-text {
    font-size: 0.9rem;
    color: rgba(200,215,255,0.8);
    line-height: 1.75;
    flex: 1;
    margin: 0;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
}

.tc-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: var(--glow-sm);
}

.tc-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tc-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.tc-plan {
    font-size: 0.75rem;
    color: var(--c-primary-l);
    font-weight: 500;
}

/* ─── CEP SEARCH ─────────────────────────────────── */
.cep-search {
    margin-bottom: 28px;
}

.cep-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(200,215,255,0.75);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.cep-form {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.cep-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.cep-pin {
    position: absolute;
    left: 14px;
    color: var(--c-primary-l);
    font-size: 0.9rem;
    pointer-events: none;
}

.cep-input {
    width: 100%;
    background: rgba(13,13,43,0.85);
    border: 1.5px solid rgba(88,71,214,0.35);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 13px 16px 13px 38px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(8px);
}

.cep-input::placeholder { color: rgba(150,150,200,0.5); }

.cep-input:focus {
    border-color: var(--c-primary-l);
    box-shadow: 0 0 0 3px rgba(88,71,214,0.15), var(--glow-sm);
}

.cep-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 22px;
    border-radius: var(--radius-md);
    border: none;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: var(--glow-sm);
    cursor: pointer;
}

.cep-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.cep-hint {
    font-size: 0.78rem;
    color: var(--c-text-d);
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cep-hint i { color: #25D366; }

/* ─── MOBILE STICKY CTA ──────────────────────────── */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 980;
    padding: 12px 16px;
    background: rgba(7,7,26,0.97);
    border-top: 1px solid rgba(37,211,102,0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.msc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a8a47, #25D366);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    width: 100%;
    text-align: center;
    box-shadow: 0 0 28px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.msc-btn:hover {
    color: #fff;
    box-shadow: 0 0 40px rgba(37,211,102,0.6);
}

.msc-btn i { font-size: 1.2rem; }

/* ─── PLAN ENHANCEMENTS ──────────────────────────── */
.plan-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.plan-use {
    font-size: 0.75rem;
    color: var(--c-text-d);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.plan-decimal {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    vertical-align: super;
    line-height: 1;
    align-self: flex-start;
    margin-top: 8px;
}

.plan-devices {
    margin-bottom: 20px;
    padding: 12px 14px;
    background: rgba(88,71,214,0.06);
    border: 1px solid rgba(88,71,214,0.12);
    border-radius: var(--radius-md);
}

.pd-label {
    font-size: 0.72rem;
    color: var(--c-text-d);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.pd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pd-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(88,71,214,0.12);
    border: 1px solid rgba(88,71,214,0.2);
    color: rgba(200,210,255,0.75);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.pd-tag i { color: var(--c-primary-l); font-size: 0.7rem; }

/* ─── RESPONSIVE — NEW COMPONENTS ───────────────── */
@media (max-width: 992px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-inner { gap: 0; }
    .proof-item { padding: 8px 20px; }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; gap: 16px; }

    .proof-item { padding: 10px 16px; }
    .proof-divider { display: none; }
    .proof-inner { gap: 4px; justify-content: flex-start; }

    .hero-trust { justify-content: center; }
    .ht-item { padding: 0 10px; font-size: 0.78rem; }

    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .cep-form { flex-direction: column; }
    .cep-btn { justify-content: center; }

    .mobile-sticky-cta { display: block; }

    .wa-float { bottom: 90px; }
}

@media (max-width: 576px) {
    .proof-strip { padding: 20px 0; }
    .proof-item { padding: 8px 12px; }
    .proof-val { font-size: 0.9rem; }
    .proof-icon { width: 34px; height: 34px; min-width: 34px; font-size: 0.8rem; }

    .benefit-card { padding: 24px 20px; }
    .benefits-grid { gap: 12px; }

    .testimonial-card { padding: 24px 20px; }

    .tc-text { font-size: 0.85rem; }

    .hb-price { font-size: 3rem; }
    .hb-cents { font-size: 1.3rem; }
}

/* XS — 400px */
@media (max-width: 400px) {
    .hero-title { font-size: 1.7rem; }
    .section-title { font-size: 1.5rem; }
    .counter-val { font-size: 1.75rem; }
    .plan-val { font-size: 2.4rem; }
    .about-tech-grid { grid-template-columns: 1fr 1fr; }
    .proof-item { padding: 6px 8px; }
}

/* ═══════════════════════════════════════════════════
   HERO CARROSSEL
   ═══════════════════════════════════════════════════ */
.hero-carousel-wrap {
    /* hero-section já tem position:relative e overflow:hidden —
       garantimos min-height mesmo sem filhos em fluxo (track é absolute) */
    min-height: 100vh;
}

/* Track: posição absoluta — sai do fluxo flex da hero-section,
   ocupa 200vw e é clipado pelo overflow:hidden do pai */
.hc-track {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 200%;
    min-height: 100%;
    z-index: 5; /* acima do hero-section::before (z-index:4) */
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.hc-slide {
    width: 50%;
    flex-shrink: 0;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: stretch;
}

/* Overlay do slide 1: o hero-section::before (z-index:4) já transparece
   pelo track transparente (z-index:5), então não é necessário duplicar aqui. */

/* Dentro de cada slide, o hero-container deve ocupar 100% da largura */
.hc-slide .hero-container {
    width: 100%;
    align-self: center;
}

/* Slide 1 herda o fundo original da .hero-section::after */
/* Slide 2 tem fundo próprio via pseudo-elemento */
.hc-slide--tracking::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg,
            rgba(7,7,26,0.92) 0%,
            rgba(13,13,43,0.80) 40%,
            rgba(20,15,55,0.55) 100%);
    z-index: 4;
    pointer-events: none;
}

/* Fundo do slide 2 — gradiente tecnológico automotivo */
.hc-slide--tracking::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(88,71,214,0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(56,189,248,0.2) 0%, transparent 55%),
        linear-gradient(160deg, #0a0a1e 0%, #0d0d2b 40%, #111133 100%);
    z-index: 0;
    pointer-events: none;
}

/* Grade decorativa GPS flutuante no slide 2 */
.hc-s2-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hc-s2-grid i {
    position: absolute;
    color: var(--c-primary-l);
    opacity: 0.07;
    font-size: clamp(2rem, 5vw, 4rem);
    animation: hcIconFloat 8s ease-in-out infinite;
}

.hc-s2-grid i:nth-child(1) { top: 10%; left: 5%;  animation-delay: 0s;    font-size: 3.5rem; }
.hc-s2-grid i:nth-child(2) { top: 20%; right: 8%; animation-delay: 1.5s;  font-size: 2.5rem; color: var(--c-accent); }
.hc-s2-grid i:nth-child(3) { top: 70%; left: 12%; animation-delay: 3s;    font-size: 3rem; }
.hc-s2-grid i:nth-child(4) { bottom: 20%; right: 5%; animation-delay: 4.5s; font-size: 2rem; }
.hc-s2-grid i:nth-child(5) { top: 50%; left: 3%;  animation-delay: 2s;    font-size: 2.8rem; color: var(--c-neon); }
.hc-s2-grid i:nth-child(6) { bottom: 8%; right: 20%; animation-delay: 0.8s; font-size: 3rem; }

@keyframes hcIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.07; }
    50%       { transform: translateY(-18px) rotate(8deg); opacity: 0.13; }
}

/* Overlay escuro slide 2 para texto */
.hc-s2-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(110deg,
        rgba(0,0,0,0.78) 0%,
        rgba(4,4,14,0.60) 50%,
        rgba(4,4,14,0.28) 100%);
}

/* Subtexto adicional do slide 2 */
.hc-s2-subtext {
    font-size: 1rem;
    color: rgba(180,210,255,0.75);
    margin-top: -20px;
    margin-bottom: 28px;
    max-width: 440px;
    line-height: 1.6;
}

/* Badge do slide 2 */
.hero-badge--tracking { border-color: rgba(245,166,35,0.4); }

/* Dot laranja */
.badge-dot--orange {
    background: var(--c-accent);
    box-shadow: 0 0 8px var(--c-accent);
}

/* ── Setas de navegação ── */
.hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(7,7,26,0.7);
    border: 1px solid rgba(88,71,214,0.4);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background var(--transition), border-color var(--transition),
                transform var(--transition-fast), box-shadow var(--transition);
    box-shadow: 0 0 20px rgba(88,71,214,0.2);
}

.hc-arrow--prev { left: 20px; }
.hc-arrow--next { right: 20px; }

.hc-arrow:hover {
    background: rgba(88,71,214,0.55);
    border-color: rgba(88,71,214,0.85);
    box-shadow: 0 0 30px rgba(88,71,214,0.55);
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 576px) {
    .hc-arrow { width: 38px; height: 38px; font-size: 0.9rem; }
    .hc-arrow--prev { left: 8px; }
    .hc-arrow--next { right: 8px; }
}

/* ── Indicadores (dots) ── */
.hc-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hc-dot {
    width: 10px; height: 10px;
    border-radius: 5px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: background var(--transition), width var(--transition), box-shadow var(--transition);
}

.hc-dot--active {
    width: 28px;
    background: var(--c-primary-l);
    box-shadow: 0 0 10px var(--c-primary-l);
}

/* ── Mock map card do slide 2 ── */
.hc-tracking-card { border-color: rgba(88,71,214,0.5); }
.hc-tracking-card:hover { border-color: rgba(88,71,214,0.8); }

.hb-seal--tracking {
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    color: #fff;
    box-shadow: 0 0 20px rgba(88,71,214,0.55);
}

.hc-map-mock {
    position: relative;
    height: 120px;
    background: rgba(5,5,20,0.8);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(88,71,214,0.25);
}

.hc-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(88,71,214,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88,71,214,0.1) 1px, transparent 1px);
    background-size: 24px 24px;
}

.hc-map-pulse { position: absolute; top: 40%; left: 45%; }

.hc-map-dot {
    width: 10px; height: 10px;
    background: var(--c-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--c-accent);
    position: relative;
    z-index: 2;
}

.hc-map-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 30px; height: 30px;
    border: 1.5px solid rgba(245,166,35,0.5);
    border-radius: 50%;
    animation: hcRingPulse 2s ease-out infinite;
}

.hc-map-ring--2 { animation-delay: 1s; }

@keyframes hcRingPulse {
    0%   { transform: translate(-50%,-50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

.hc-map-route {
    position: absolute;
    top: 55%; left: 10%;
    width: 70%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(88,189,248,0.6), var(--c-accent));
    border-radius: 2px;
}

.hc-map-icon {
    position: absolute;
    bottom: 10px; right: 15px;
    color: var(--c-primary-l);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 6px var(--c-primary-l));
}

/* ═══════════════════════════════════════════════════
   SEÇÃO RASTREAMENTO VEICULAR
   ═══════════════════════════════════════════════════ */
.tracking-section {
    background: linear-gradient(180deg, var(--c-bg3) 0%, var(--c-bg2) 50%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
}

.tracking-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-primary), transparent);
    opacity: 0.5;
}

/* Orbs de fundo */
.tracking-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    z-index: 0;
}

.tracking-bg-orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(88,71,214,0.15) 0%, transparent 70%);
    top: -150px; left: -150px;
}

.tracking-bg-orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, transparent 70%);
    bottom: -100px; right: -100px;
}

.tracking-section .container { position: relative; z-index: 1; }

/* ── Grid de Benefícios ── */
.tracking-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.tracking-benefit-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.tracking-benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88,71,214,0.55), transparent);
    transition: var(--transition);
}

.tracking-benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(88,71,214,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    border-radius: inherit;
}

.tracking-benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--c-border-h);
    box-shadow: 0 25px 60px rgba(88,71,214,0.15), var(--glow-sm);
}

.tracking-benefit-card:hover::after { opacity: 1; }

.tbc-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: var(--glow-sm), 0 8px 24px rgba(88,71,214,0.25);
    transition: var(--transition);
}

.tracking-benefit-card:hover .tbc-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: var(--glow-primary), 0 12px 32px rgba(88,71,214,0.4);
}

.tracking-benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.tracking-benefit-card p {
    font-size: 0.88rem;
    color: var(--c-text-m);
    line-height: 1.7;
    margin: 0;
}

/* ── Seção "Como Funciona" ── */
.tracking-how-row { margin-bottom: 80px; }

/* Painel GPS visual */
.tracking-gps-visual { position: relative; }

.tgv-screen {
    background: rgba(5,5,20,0.92);
    border: 1px solid rgba(88,71,214,0.35);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--glow-sm);
    backdrop-filter: blur(20px);
}

.tgv-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(88,71,214,0.2);
    background: rgba(88,71,214,0.06);
}

.tgv-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tgv-dot--green  { background: #4ADE80; box-shadow: 0 0 8px #4ADE80; }
.tgv-dot--yellow { background: #FCD34D; }
.tgv-dot--red    { background: #F87171; }

.tgv-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(200,210,255,0.7);
    margin-left: 8px;
}

.tgv-map {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tgv-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(88,71,214,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88,71,214,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.tgv-route-svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}

.tgv-route-path {
    stroke: rgba(56,189,248,0.6);
    stroke-width: 2.5;
    stroke-dasharray: 8 4;
    stroke-linecap: round;
    animation: routeDash 3s linear infinite;
}

@keyframes routeDash {
    to { stroke-dashoffset: -48; }
}

.tgv-vehicle-dot {
    fill: var(--c-accent);
    filter: drop-shadow(0 0 6px var(--c-accent));
    animation: vehiclePulse 2s ease-in-out infinite;
}

@keyframes vehiclePulse {
    0%, 100% { r: 7; opacity: 1; }
    50%       { r: 9; opacity: 0.8; }
}

.tgv-pulse-wrap {
    position: absolute;
    top: 36%; left: 62%;
    transform: translate(-50%,-50%);
}

.tgv-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 40px; height: 40px;
    border: 1.5px solid rgba(245,166,35,0.6);
    border-radius: 50%;
    animation: tgvPulse 2s ease-out infinite;
}

.tgv-pulse--2 { animation-delay: 1s; }

@keyframes tgvPulse {
    0%   { transform: translate(-50%,-50%) scale(0.4); opacity: 0.8; }
    100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}

.tgv-car-icon {
    position: relative;
    z-index: 2;
    color: var(--c-accent);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 6px var(--c-accent));
    animation: floatPulse 3s ease-in-out infinite;
}

.tgv-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px 20px;
    border-top: 1px solid rgba(88,71,214,0.2);
    background: rgba(88,71,214,0.04);
    gap: 8px;
}

.tgv-stat {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(200,215,255,0.8);
}

.tgv-stat i { color: var(--c-primary-l); }

.tgv-stat--live {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4ADE80;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    text-transform: uppercase;
}

.tgv-live-dot {
    width: 7px; height: 7px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ADE80;
    animation: glowPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Notificação flutuante */
.tgv-notification {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: rgba(13,13,43,0.95);
    border: 1px solid rgba(88,71,214,0.45);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(200,215,255,0.9);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), var(--glow-sm);
    backdrop-filter: blur(12px);
    animation: notifFloat 4s ease-in-out infinite;
    white-space: nowrap;
    z-index: 5;
}

.tgv-notification i { color: #4ADE80; }

@keyframes notifFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* Lista "Como funciona" */
.tracking-how-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.tracking-how-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(220,225,255,0.85);
    padding: 12px 16px;
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.tracking-how-list li:hover {
    border-color: var(--c-border-h);
    background: rgba(88,71,214,0.1);
    transform: translateX(6px);
}

.tracking-how-list li i {
    width: 32px; height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

/* ── Tipos de Rastreadores ── */
.tracking-types-row { margin-bottom: 20px; }

.tracking-type-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tracking-type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88,71,214,0.5), transparent);
}

.tracking-type-card:hover {
    transform: translateY(-10px);
    border-color: var(--c-border-h);
    box-shadow: 0 25px 60px rgba(88,71,214,0.15), var(--glow-sm);
}

.tracking-type-card--featured {
    border-color: rgba(88,71,214,0.5);
    background: rgba(88,71,214,0.08);
    box-shadow: 0 0 0 1px rgba(88,71,214,0.15), 0 20px 60px rgba(88,71,214,0.1);
}

.tracking-type-card--featured::before {
    background: linear-gradient(90deg, transparent, var(--c-primary-l), transparent);
    opacity: 0.8;
}

.ttc-popular {
    position: absolute;
    top: -1px; right: 24px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-transform: uppercase;
}

.ttc-icon-wrap {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-l));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: var(--glow-sm), 0 8px 24px rgba(88,71,214,0.25);
    margin-bottom: 16px;
    transition: var(--transition);
}

.tracking-type-card:hover .ttc-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--glow-primary), 0 12px 32px rgba(88,71,214,0.4);
}

.ttc-badge {
    display: inline-flex;
    align-items: center;
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    color: var(--c-primary-l);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.ttc-badge--featured {
    background: rgba(245,166,35,0.1);
    border-color: rgba(245,166,35,0.3);
    color: var(--c-accent);
}

.tracking-type-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.ttc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.ttc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(200,215,255,0.8);
    font-weight: 500;
}

.ttc-list li .fa-check-circle { color: #4ADE80; }

/* ── CTA de Rastreamento ── */
.tracking-cta-section { position: relative; overflow: hidden; }

.tracking-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%,
        rgba(88,71,214,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.tracking-cta-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: var(--glow-primary), 0 0 50px rgba(245,166,35,0.2);
    animation: floatPulse 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVO — CARROSSEL + RASTREAMENTO
   ═══════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .tracking-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-s2-subtext { display: none; }
}

@media (max-width: 768px) {
    .tracking-benefits-grid { grid-template-columns: 1fr; gap: 16px; }
    .tracking-how-row { margin-bottom: 50px; }
    .tgv-notification { display: none; }
    .tgv-map { height: 170px; }
    .tracking-type-card { padding: 28px 20px; }
    .ttc-icon-wrap { width: 58px; height: 58px; font-size: 1.4rem; }

    /* Slide 2 mobile: ancora conteúdo ao topo para evitar
       espaço vazio causado pelo align-items:center em 100vh */
    .hc-slide--tracking .hero-container {
        align-items: flex-start;
        padding-top: calc(var(--header-h) + 28px);
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .tracking-benefits-grid { gap: 12px; }
    .tracking-benefit-card { padding: 28px 20px; }
    .tbc-icon { width: 52px; height: 52px; font-size: 1.2rem; }
    .hc-s2-grid i { display: none; }
    .tracking-gps-visual { margin-bottom: 32px; }
    .tgv-stats { flex-wrap: wrap; gap: 6px; justify-content: center; }
}
