:root {
    --gold: #ffcc00;
    --bg: #030303;
    --card: #0d0d11;
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: #a1a1aa;
    --glass: rgba(13, 13, 17, 0.75);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* FIX: NAVBAR VIP COM GLASSMORPHISM REAL E PREVENÇÃO DE ENCAVALAMENTO */
.navbar-vip {
    background: var(--glass) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar-brand {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--gold);
}

.navbar-vip .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.navbar-vip .nav-link:hover {
    color: var(--gold) !important;
}

/* HERO NOVO COM SUPORTE A BACKGROUND EM VÍDEO CINEMATOGRÁFICO */
.hero-new {
    position: relative;
    min-height: 100vh;
    padding-top: 130px; /* Alinha o conteúdo abaixo da Navbar fixa de forma segura */
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35; /* Controla a opacidade do vídeo para não atrapalhar a leitura */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.6) 0%, #030303 100%),
                radial-gradient(circle at 70% 50%, rgba(255, 204, 0, 0.12) 0%, transparent 60%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border: 1px solid rgba(255, 204, 0, 0.25);
    background: rgba(255, 204, 0, 0.05);
    border-radius: 50px;
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.hero-new h1 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-new h1 span {
    display: block;
    color: var(--gold);
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-new p {
    font-size: 18px;
    line-height: 1.7;
    color: #c4c4c7;
    max-width: 640px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-hero-primary {
    background: var(--gold);
    color: #000 !important;
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.4);
}

.btn-hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    padding: 18px 38px;
    border-radius: 50px;
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* CARD VISUAL HERO FLUTUANTE */
.hero-visual {
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-core {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 0%, #cc9900 100%);
    color: #000;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 204, 0, 0.4);
    z-index: 3;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 40px rgba(255, 204, 0, 0.3); }
    100% { box-shadow: 0 0 70px rgba(255, 204, 0, 0.6); transform: scale(1.03); }
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 25, 0.85);
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 4;
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.08) translateY(-5px);
    border-color: var(--gold);
}

.card-1 { top: 10%; left: 10%; }
.card-2 { top: 15%; right: 5%; }
.card-3 { left: 0%; bottom: 25%; }
.card-4 { right: 0%; bottom: 30%; }
.card-5 { bottom: 5%; left: 20%; }
.card-6 { top: 45%; right: 15%; }

/* SEÇÕES GENÉRICAS CONFIGURAÇÕES ENTERPRISE */
.section-tag {
    color: var(--gold);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
}

.ecosystem-premium, .experiencias-section, .brain-section, .nation-section, .domination-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg);
}

/* ORBITA VISUAL 360° REFEITA */
.ecosystem-orbit-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.ecosystem-orbit {
    position: relative;
    width: 500px;
    height: 500px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-vip {
    width: 140px;
    height: 140px;
    background: #111;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    z-index: 5;
    box-shadow: 0 0 30px rgba(255,204,0,0.15);
}

.orbit-item {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #0d0d11;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.orbit-item i { font-size: 20px; color: var(--gold); }
.orbit-item:hover {
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255,204,0,0.3);
}

/* Distribuindo os itens ao redor do circulo da órbita */
.o1 { top: -45px; left: calc(50% - 45px); }
.o2 { top: 40px; right: 20px; }
.o3 { right: -45px; top: calc(50% - 45px); }
.o4 { bottom: 40px; right: 20px; }
.o5 { bottom: -45px; left: calc(50% - 45px); }
.o6 { bottom: 40px; left: 20px; }
.o7 { left: -45px; top: calc(50% - 45px); }
.o8 { top: 40px; left: 20px; }

/* SEÇÃO NUMEROS & CONTADORES */
.numbers-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #030303 0%, #09090d 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.number-card {
    text-align: center;
    padding: 20px;
}

.number-card h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
    background: linear-gradient(180deg, #fff 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.number-card span {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* CARDS DE EXPERIÊNCIAS PREMIUM (DYNAMIC DATA GRID) */
.premium-experience-card {
    background: #0d0d12;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.premium-experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #15151a;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-experience-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.badge-points {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.card-info-content {
    padding: 25px;
}

.card-info-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-info-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* MOTOR DE IA INTELECTUAL */
.brain-wrapper {
    position: relative;
    height: 500px;
    margin-top: 50px;
}

.brain-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.brain-core {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #d4aa00 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000;
    box-shadow: 0 0 50px rgba(255,204,0,0.3);
}

.brain-core i { font-size: 36px; }

.brain-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gold);
    filter: blur(100px);
    opacity: 0.15;
    left: -70px;
    top: -70px;
}

.brain-node {
    position: absolute;
    padding: 16px 24px;
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    color: #white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.node1 { top: 10%; left: 15%; }
.node2 { top: 15%; right: 15%; }
.node3 { left: 10%; bottom: 35%; }
.node4 { right: 10%; bottom: 35%; }
.node5 { left: 25%; bottom: 10%; }
.node6 { right: 25%; bottom: 10%; }

/* MAPA DO BRASIL ILUMINADO */
.brasil-map-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #09090d 0%, #12121c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.brasil-map-card i {
    font-size: 100px;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(255, 204, 0, 0.4);
    z-index: 2;
}

.map-glow-layer {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--gold);
    filter: blur(120px);
    opacity: 0.1;
}

/* COMPONENTES DE HARDWARE E TOTEM INTERATIVO */
.totem-visual-hardware {
    position: relative;
    width: 220px;
    height: 420px;
    background: linear-gradient(180deg, #111 0%, #000 100%);
    border: 3px solid #222;
    border-radius: 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(255,204,0,0.05);
}

.totem-laser-glow {
    position: absolute;
    top: 10%;
    width: 80%;
    height: 4px;
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
    animation: scanLine 3s infinite ease-in-out;
}

@keyframes scanLine {
    0% { top: 15%; opacity: 1; }
    50% { top: 85%; opacity: 1; }
    100% { top: 15%; opacity: 1; }
}

.hardware-icon {
    font-size: 70px;
    color: rgba(255,255,255,0.1);
}

.totem-label {
    margin-top: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid rgba(255,204,0,0.3);
    padding: 4px 12px;
    border-radius: 4px;
}

.mini-stat-box {
    background: #0d0d12;
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.mini-stat-box h4 {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 4px;
}

.mini-stat-box span {
    font-size: 12px;
    color: var(--muted);
}

/* DOMINAÇÃO REGIONAL COORDENADAS */
.domination-card {
    background: linear-gradient(180deg, #0d0d12 0%, #060609 100%);
    border: 1px solid var(--card-border);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
}

.domination-card strong {
    display: block;
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(180deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.domination-card span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.b2b-cta-box-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.05) !important;
}

/* LISTA DE LISTAGEM DE MAPA DE CALOR */
.heatmap-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
}

/* EPIC CTA BOX FINAL (APPLE / TESLA METHODOLOGY) */
.cta-ultimate {
    padding: 160px 0;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.08) 0%, #030303 70%);
    border-top: 1px solid rgba(255,255,255,0.03);
}

.cta-box {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h1 {
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-box p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 45px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn-vip-main {
    background: #ffffff;
    color: #000000 !important;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-vip-main:hover {
    transform: translateY(-2px);
    background: var(--gold);
}

.btn-vip-outline {
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff !important;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-vip-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

/* FOOTER MARCA E ENERGIAS */
.footer-viplovers {
    background: #010103;
    padding: 60px 0 40px 0;
    text-align: center;
}

.footer-brand h2 {
    font-weight: 900;
    font-size: 32px;
}

.footer-brand span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--muted); }

.partner-logo-wrap {
    background: #09090c;
    border: 1px solid rgba(255,255,255,0.03);
    font-size: 13px;
    font-weight: 600;
}