@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   LT MÍDIA DIGITAL - STYLESHEET (PROFISSIONAL COM FOTOS HD E LIGHTBOX)
   Cores Principais: Dark Slate / Obsidian (#0a0d14), Ouro/Dourado (#f59e0b)
   ========================================================================== */

:root {
    --bg-main: #000000;
    --bg-darker: #000000;
    --bg-card: #0a0a0a;
    --bg-card-hover: #141414;
    --bg-glass: rgba(0, 0, 0, 0.85);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-gold: rgba(255, 255, 255, 0.2);

    --gold-primary: #ffffff;
    --gold-light: #f5f5f5;
    --gold-dark: #cccccc;
    --gold-gradient: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #a0a0a0 100%);
    --gold-glow: rgba(255, 255, 255, 0.05);

    --accent-cyan: #e2e8f0;
    --accent-green: #e2e8f0;

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 12px rgba(255, 255, 255, 0.02);
    --shadow-md: 0 8px 24px rgba(255, 255, 255, 0.04);
    --shadow-lg: 0 16px 40px rgba(255, 255, 255, 0.06);
    --shadow-gold: 0 10px 30px rgba(255, 255, 255, 0.08);

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography & Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold-light) !important;
}

.highlight-gold {
    color: var(--gold-light);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 60%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #d4d4d4 100%);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #000;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-nav {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
}

.btn-nav:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 1.15rem 2.5rem;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

.btn-block {
    width: 100%;
}

.shadow-gold {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

/* Badge Pills */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e5e7eb;
    margin-bottom: 1.25rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-green);
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Sections Common */
.section {
    padding: 6rem 0;
    position: relative;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.black-section {
    background: radial-gradient(circle at 50% 0%, #151a27 0%, var(--bg-darker) 70%);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.35rem;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
    background-color: #06080d;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.8rem;
    padding: 0.45rem 0;
    color: var(--text-secondary);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gold-light);
    font-weight: 600;
}

.top-link:hover {
    color: #fff;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 13, 20, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(6, 8, 13, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1c2333 0%, #0d111a 100%);
    border: 1.5px solid var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.logo-letters {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: -0.5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-glow {
    position: absolute;
    inset: -2px;
    background: var(--gold-gradient);
    border-radius: 12px;
    opacity: 0.3;
    filter: blur(6px);
    z-index: -1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.1;
}

.brand-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-mobile {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-mobile .bar {
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #0d111a;
    border-left: 1px solid var(--border-glass);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-content {
    padding: 5.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-link:hover {
    color: var(--gold-light);
    padding-left: 0.5rem;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ==========================================================================
   HERO SECTION & TV MOCKUP
   ========================================================================== */
.hero {
    padding: 4.5rem 0 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: #ffffff;
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #ffffff;
    bottom: -50px;
    right: 5%;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111111;
    border: 2px solid var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.925rem;
    color: #fff;
}

.trust-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* TV Mockup Container */
.tv-mockup-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-ambient-glow {
    position: absolute;
    width: 90%;
    height: 75%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    top: 5%;
}

.tv-device {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-frame {
    width: 100%;
    background: linear-gradient(145deg, #2a3142, #111520);
    padding: 10px 10px 14px 10px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 20px rgba(245, 158, 11, 0.15);
    position: relative;
}

.tv-camera {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #4b5563;
    border-radius: 50%;
}

.tv-screen {
    width: 100%;
    aspect-ratio: 16 / 9.5;
    background-color: #060911;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9);
}

/* TV Screen Header */
.tv-screen-header {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 5;
}

.screen-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.screen-logo-badge {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    font-size: 0.65rem;
    padding: 1px 4px;
    border-radius: 3px;
}

.screen-brand-name {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

.screen-live-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.live-pill {
    background: #ef4444;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
    animation: blinkLive 1.5s infinite;
}

@keyframes blinkLive {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.screen-time {
    font-weight: 700;
    color: #fff;
}

/* Slides Wrapper */
.tv-slides-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.tv-slide {
    position: absolute;
    inset: 0;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    background-size: cover;
    background-position: center;
}

.tv-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.tv-slide[data-slide="0"] {
    background: radial-gradient(circle at center, #1b263b 0%, #0a0e17 100%);
}

.tv-slide[data-slide="1"] {
    background: radial-gradient(circle at center, #1e1b4b 0%, #0b091a 100%);
}

.tv-slide[data-slide="2"] {
    background: radial-gradient(circle at center, #2e1065 0%, #0d061c 100%);
}

.tv-slide[data-slide="3"] {
    background: radial-gradient(circle at center, #1c1917 0%, #0c0a09 100%);
}

.slide-badge {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.slide-headline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.slide-offer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.offer-tag {
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.offer-desc {
    font-size: 0.75rem;
    color: #cbd5e1;
}

.slide-footer-info {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* TV Ticker Bar */
.tv-ticker-bar {
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.65rem;
    height: 24px;
    overflow: hidden;
}

.ticker-label {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    padding: 0 8px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.6rem;
}

.ticker-marquee {
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
}

.ticker-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 18s linear infinite;
    color: #e2e8f0;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* TV Stand */
.tv-neck {
    width: 60px;
    height: 16px;
    background: linear-gradient(to bottom, #1f2533, #111520);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tv-base-stand {
    width: 170px;
    height: 8px;
    background: linear-gradient(to bottom, #2b3345, #141824);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

.tv-controls-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tv-dots {
    display: flex;
    gap: 6px;
}

.dot-btn {
    width: 24px;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot-btn.active {
    background: var(--gold-light);
    width: 32px;
}

/* ==========================================================================
   NOSSA REDE — HERO SECTION DESTAQUE PRINCIPAL
   ========================================================================== */

.rede-hero-section {
    position: relative;
    padding: 6rem 0 0 0;
    overflow: hidden;
    background: #000;
    border-top: 1px solid var(--border-glass);
}

/* Background glows */
.rede-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.rede-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
}

.rede-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation: redeGlowPulse 8s ease-in-out infinite alternate;
}

.rede-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #c0c0c0 0%, transparent 70%);
    bottom: -100px;
    right: 10%;
    animation: redeGlowPulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes redeGlowPulse {
    from { opacity: 0.12; transform: scale(0.95); }
    to { opacity: 0.22; transform: scale(1.05); }
}

.rede-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Hero container — duas colunas */
.rede-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
}

/* Coluna esquerda */
.rede-hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.rede-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #e5e7eb;
    width: fit-content;
}

.rede-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #fff;
}

.rede-hero-title-accent {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.rede-hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

/* Números de impacto */
.rede-impact-numbers {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    width: fit-content;
}

.rede-impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1.75rem;
    gap: 0.35rem;
}

.rede-impact-value {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.05em;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rede-impact-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rede-impact-divider {
    width: 1px;
    height: 56px;
    background: var(--border-glass);
    flex-shrink: 0;
}

/* Botões da rede */
.rede-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Coluna direita — mosaico */
.rede-hero-right {
    position: relative;
}

.rede-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: 480px;
    position: relative;
}

.rede-mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rede-mosaic-card {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    flex-shrink: 0;
}

.rede-mosaic-card:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.rede-card-lg {
    flex: 2.5;
}

.rede-card-md {
    flex: 1.8;
}

.rede-card-sm {
    flex: 1;
}

.rede-col-tall {
    /* slight height adjustment for alternation */
    margin-top: -20px;
    margin-bottom: 20px;
}

.rede-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    gap: 2px;
    transition: background 0.3s ease;
}

.rede-mosaic-card:hover .rede-mosaic-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.05) 100%);
}

.rede-mosaic-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

.rede-mosaic-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.rede-point-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Badge flutuante sobre o mosaico */
.rede-mosaic-float-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 18, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.rede-mosaic-float-badge svg {
    color: #fff;
    flex-shrink: 0;
}

.rede-mosaic-float-badge div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.rede-mosaic-float-badge strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
}

.rede-mosaic-float-badge span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Barra de regiões */
.rede-regions-bar {
    background: rgba(255,255,255,0.025);
    border-top: 1px solid var(--border-glass);
    padding: 1.25rem 0;
    margin-top: 3rem;
}

.rede-regions-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.rede-region-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.rede-region-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
    display: inline-block;
    flex-shrink: 0;
}

.rede-region-item strong {
    font-weight: 800;
    color: #fff;
}

.rede-region-sep {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.2);
    line-height: 1;
}

/* Responsivo — Nossa Rede Hero */
@media (max-width: 900px) {
    .rede-hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 3rem;
    }

    .rede-hero-title {
        font-size: 2rem;
    }

    .rede-mosaic {
        height: 320px;
    }

    .rede-col-tall {
        margin-top: 0;
        margin-bottom: 0;
    }

    .rede-mosaic-float-badge {
        bottom: -12px;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 600px) {
    .rede-hero-section {
        padding: 4rem 0 0 0;
    }

    .rede-hero-title {
        font-size: 1.75rem;
    }

    .rede-impact-numbers {
        width: 100%;
        justify-content: space-between;
    }

    .rede-impact-item {
        padding: 1rem 1.1rem;
    }

    .rede-impact-value {
        font-size: 1.5rem;
    }

    .rede-mosaic {
        height: 260px;
        gap: 6px;
    }

    .rede-mosaic-card {
        border-radius: 8px;
    }

    .rede-hero-actions {
        flex-direction: column;
    }

    .rede-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .rede-regions-list {
        gap: 0.5rem 1rem;
    }

    .rede-region-sep {
        display: none;
    }

    .rede-mosaic-float-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    background: linear-gradient(180deg, #0e121a 0%, #080b12 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.5rem 1rem;
    border-right: 1px solid var(--border-glass);
}

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

.stat-icon {
    font-size: 2rem;
    line-height: 1;
}

.stat-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   NETWORK CAROUSEL SECTION (10 PONTOS REAIS COM TRATAMENTO HD)
   ========================================================================== */
.network-section {
    background: radial-gradient(circle at 50% 10%, #151a26 0%, var(--bg-darker) 60%);
    overflow: hidden;
}

.carousel-control-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.network-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.carousel-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.slide-counter {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.slide-counter #currentSlideNum {
    color: var(--gold-light);
    font-size: 1.25rem;
}

.carousel-buttons {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #171e2c;
    border: 1px solid var(--border-glass);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
    transform: scale(1.05);
}

/* Carousel Container & Track */
.network-carousel-container {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    padding: 10px 0 20px 0;
    cursor: grab;
}

.network-carousel-container:active {
    cursor: grabbing;
}

.network-carousel-track {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Individual Point Slide Card */
.point-slide-card {
    flex: 0 0 calc(33.333% - 1.2rem);
    min-width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
}

.point-slide-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.2);
}

.point-card-header {
    padding: 1.25rem 1.5rem 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.point-badge-screens {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.point-category-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Real Image Showcase Container with Precision Framing */
.point-card-visual {
    height: 165px;
    position: relative;
    margin: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.25);
    background: #000;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9), 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.point-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, filter 0.45s ease;
    display: block;
    filter: contrast(1.1) brightness(1.05) saturate(1.12);
    image-rendering: -webkit-optimize-contrast;
}

.point-card-visual:hover .point-real-img {
    transform: scale(1.08);
    filter: contrast(1.15) brightness(1.08) saturate(1.18);
}

.point-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 13, 20, 0.85) 0%, rgba(10, 13, 20, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.point-zoom-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--gold-light);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    opacity: 0;
    transform: translateY(-4px);
    transition: var(--transition);
    z-index: 3;
}

.point-card-visual:hover .point-zoom-badge {
    opacity: 1;
    transform: translateY(0);
}

.visual-point-num {
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.point-card-body {
    padding: 1.25rem 1.5rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.point-name {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.point-address {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.point-address svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.point-highlights {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.phigh-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phigh-label {
    color: var(--text-muted);
}

/* Dots Indicator */
.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--gold-light);
    width: 28px;
    border-radius: var(--radius-full);
}

/* Callout Banner */
.network-cta-banner {
    background: linear-gradient(135deg, #171d2b 0%, #0d121c 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.banner-text h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: #fff;
}

.banner-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Flyer & Lightbox Modals */
.flyer-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.flyer-modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;
    z-index: 10;
    background: #121722;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-card {
    max-width: 620px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modal-body {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    margin-bottom: 1.5rem;
    background: #000;
}

.lightbox-body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #060911;
    padding: 0.5rem;
}

.lightbox-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    filter: contrast(1.1) brightness(1.05);
}

.flyer-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   ADVANTAGES SECTION
   ========================================================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.adv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.adv-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.1);
}

.adv-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.adv-icon-box svg {
    width: 26px;
    height: 26px;
}

.adv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.adv-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.adv-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(245, 158, 11, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   ANUNCIE & COMPARISON TABLE
   ========================================================================== */
.package-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition);
}

.feat-box:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.feat-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gold-light);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feat-content h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feat-content p {
    font-size: 0.875rem;
    line-height: 1.55;
}

/* Comparison Table */
.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.comp-title {
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

.comp-table-wrapper {
    overflow-x: auto;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

.comp-table th, .comp-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-glass);
}

.comp-table th {
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.th-highlight, .td-highlight {
    background: rgba(245, 158, 11, 0.07);
}

.th-highlight {
    color: var(--gold-light) !important;
    border-top: 2px solid var(--gold-primary);
}

.td-highlight {
    color: #fff;
    border-left: 1px solid rgba(245, 158, 11, 0.2);
    border-right: 1px solid rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   SIMULATOR / CALCULATOR
   ========================================================================== */
.calc-wrapper {
    background: linear-gradient(135deg, #131824 0%, #0a0d14 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.1);
}

.calc-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.calc-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.calc-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}

.control-group label strong {
    color: var(--gold-light);
    font-size: 1.15rem;
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #1e2638;
    border-radius: 4px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    box-shadow: 0 0 12px var(--gold-primary);
    border: 2px solid #fff;
    transition: var(--transition);
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0 4px;
}

.custom-select {
    width: 100%;
    background: #171e2c;
    border: 1px solid var(--border-glass);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-md);
    outline: none;
    cursor: pointer;
}

.custom-select:focus {
    border-color: var(--gold-primary);
}

.calc-note {
    background: rgba(245, 158, 11, 0.08);
    border-left: 3px solid var(--gold-primary);
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.calc-results-card {
    background: #171e2c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.res-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(245, 158, 11, 0.12);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.res-metric {
    margin-bottom: 1.75rem;
}

.res-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.res-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.res-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 1.75rem;
    font-size: 0.85rem;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-row span {
    color: var(--text-secondary);
}

/* ==========================================================================
   PARTNER SECTION
   ========================================================================== */
.partner-card-glass {
    background: linear-gradient(135deg, rgba(20, 26, 38, 0.9) 0%, rgba(10, 13, 20, 0.95) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-lg);
}

.partner-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.partner-title {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.partner-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.partner-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ben-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    color: #fff;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.partner-interactive-box {
    background: #151a26;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.pbox-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.pbox-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.pbox-inner h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.pbox-inner p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pbox-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.pfeat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #e2e8f0;
}

.pbox-contact {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
}

.pbox-contact small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pbox-contact strong {
    font-size: 1.1rem;
    color: var(--gold-light);
}

/* ==========================================================================
   HOW IT WORKS (STEPS)
   ========================================================================== */
.steps-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    position: relative;
    transition: var(--transition);
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gold-light);
    background: rgba(245, 158, 11, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.4), transparent);
}

.step-body h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.step-body p {
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 1.35rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-light);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ==========================================================================
   CTA & CONTACT LEAD FORM
   ========================================================================== */
.cta-section {
    padding: 6rem 0;
}

.cta-box-wrapper {
    background: linear-gradient(135deg, #131926 0%, #0b0e17 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 35px rgba(245, 158, 11, 0.15);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cinfo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.cinfo-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.cinfo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cinfo-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.cinfo-item strong {
    font-size: 0.95rem;
    color: #fff;
}

.cta-form-card {
    background: #171e2c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
    color: #fff;
}

.form-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
}

.form-group input,
.form-group select {
    background: #0f141f;
    border: 1px solid var(--border-glass);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.925rem;
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #05070a;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2rem 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.brand-col .logo {
    margin-bottom: 1.25rem;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact-line {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FLOATING BUTTONS & UTILITIES
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 990;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.float-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
}

.float-tooltip {
    position: absolute;
    right: 75px;
    background: #0f141f;
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.floating-whatsapp:hover .float-tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 990;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(23, 30, 44, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .point-slide-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

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

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

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

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

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

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .point-slide-card {
        flex: 0 0 100%;
        min-width: 280px;
    }

    .carousel-control-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .carousel-nav-wrapper {
        justify-content: space-between;
    }

    .top-bar {
        display: none;
    }

    .nav-menu, .nav-actions .btn-nav {
        display: none;
    }

    .menu-mobile {
        display: flex;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .network-cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-actions {
        justify-content: center;
    }

    .calc-wrapper, .partner-card-glass, .cta-box-wrapper {
        padding: 2rem 1.25rem;
    }

    .steps-flow {
        grid-template-columns: 1fr;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
    }
}
