/* ==========================================================================
   CGEBOX PREMIUM - Dark Neon / Glassmorphism + Gold Accent
   Basado en flyer CGEBOX - Dorado (#d4af37) + Cian (#13b1cd)
   ========================================================================== */

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

:root {
    --cge-black: #03060C;
    --cge-deep: #0A121F;
    --cge-surface: rgba(10, 18, 31, 0.85);
    --cge-glass: rgba(18, 28, 45, 0.72);
    --cge-cyan: #13b1cd;
    --cge-cyan-glow: rgba(19, 177, 205, 0.45);
    --cge-cyan-light: #2acee8;
    --cge-gold: #d4af37;
    --cge-gold-light: #ffe9a8;
    --cge-gold-glow: rgba(212, 175, 55, 0.4);
    --cge-white: #F0F4FA;
    --cge-muted: #8B9BB4;
}

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

html {
    overflow-x: hidden;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', 'Lato', sans-serif;
    font-size: 1rem;
    color: #F0F4FA;
    line-height: 1.6;
    background-color: #03060C;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    font-weight: 400;
    color: #D1D9F0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #13b1cd;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
a:hover {
    color: #2acee8;
    text-decoration: underline;
}

::selection {
    color: #fff;
    background: #13b1cd;
    text-shadow: none;
}

/* ===== FONDO PREMIUM ===== */
.cge-bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(19, 177, 205, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #0A121F 0%, #03060C 100%);
}

.cge-grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(19, 177, 205, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 177, 205, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    pointer-events: none;
}

.cge-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 12s ease-in-out infinite;
}
.cge-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(19, 177, 205, 0.15), transparent 70%);
    top: -10%; left: -5%;
    animation-delay: 0s;
}
.cge-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    bottom: -5%; right: -5%;
    animation-delay: -4s;
}
.cge-orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(19, 177, 205, 0.08), transparent 70%);
    top: 40%; right: 20%;
    animation-delay: -8s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.cge-scanlines {
    position: fixed;
    inset: 0;
    z-index: 2;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    opacity: 0.5;
}

/* ===== FONDO ANIMADO (slider mixto) ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at 30% 10%, #0A121F, #010101);
}
.bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    will-change: opacity;
}
.bg-slide.active { opacity: 1; z-index: 2; }
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.bg-video.active { opacity: 1; z-index: 2; }
.animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 3;
    pointer-events: none;
}

/* ===== CONTENIDO PRINCIPAL ===== */
.main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 5px 20px 5px;
    min-height: auto;
    pointer-events: auto;
}

/* ===== HERO PREMIUM ===== */
.cge-hero {
    text-align: center;
    padding: 40px 20px 10px;
    position: relative;
    z-index: 10;
}

.cge-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(19, 177, 205, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cge-gold-light);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); }
}

.cge-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cge-hero .cge-title-main {
    background: linear-gradient(135deg, #fff 0%, var(--cge-cyan-light) 50%, var(--cge-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 40px rgba(19, 177, 205, 0.3));
}

.cge-hero .cge-title-sub {
    font-size: clamp(0.85rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--cge-muted);
    font-family: 'Inter', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cge-hero-desc {
    max-width: 600px;
    margin: 24px auto 0;
    color: var(--cge-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== DIVIDER PREMIUM ===== */
.cge-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 15px 0 20px;
    position: relative;
    z-index: 10;
}
.cge-divider-line {
    height: 1px;
    flex: 1;
    max-width: 200px;
    background: linear-gradient(90deg, transparent, var(--cge-cyan), transparent);
}
.cge-divider-icon {
    color: var(--cge-gold);
    font-size: 1.2rem;
    animation: starSpin 8s linear infinite;
}
@keyframes starSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== CARRUSEL PREMIUM ===== */
.main-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 10px;
    pointer-events: auto;
}
.vehicles-slider {
    width: 100%;
    padding: 20px 0 50px;
    overflow: hidden;
}
.vehicles-slider .swiper-wrapper {
    align-items: center;
}
.vehicles-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-button-carousel {
    pointer-events: auto;
    border: none;
    background: linear-gradient(145deg, rgba(18, 28, 45, 0.9), rgba(10, 18, 31, 0.95));
    cursor: pointer;
    padding: 24px 16px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    width: min(280px, 70vw);
    height: auto;
    aspect-ratio: 1/1;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards, floatCarousel 4s infinite ease-in-out;
    border-radius: 24px;
    border: 1px solid rgba(19, 177, 205, 0.15);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.nav-button-carousel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cge-cyan), var(--cge-gold), var(--cge-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.nav-button-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(19, 177, 205, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.nav-button-carousel img {
    width: 70%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
    position: relative;
    z-index: 1;
}

.nav-button-carousel:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(19, 177, 205, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(19, 177, 205, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation-play-state: paused;
}

.nav-button-carousel:hover::before,
.nav-button-carousel:hover::after {
    opacity: 1;
}

.nav-button-carousel:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

@keyframes floatCarousel {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 10px;
    pointer-events: auto;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--cge-cyan), var(--cge-gold));
    opacity: 1;
    transform: scale(1.2);
}
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--cge-cyan);
    background: rgba(0,0,0,0.6);
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev { display: none; }
    .main-slider-container { padding: 20px 15px; }
    .nav-button-carousel { width: min(260px, 80vw); padding: 18px 12px; }
}

/* ===== BOTÓN FLOTANTE PREMIUM ===== */
.float-modal-btn {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(19, 177, 205, 0.2), rgba(19, 177, 205, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(19, 177, 205, 0.3);
    border-radius: 16px;
    width: 52px;
    height: 52px;
    color: var(--cge-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.float-modal-btn:hover {
    background: linear-gradient(135deg, var(--cge-cyan), var(--cge-cyan-light));
    color: var(--cge-black);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(19, 177, 205, 0.5);
}

/* ===== DOCK PREMIUM ===== */
.bottom-controls {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    background: linear-gradient(180deg, rgba(18, 28, 45, 0.9), rgba(10, 18, 31, 0.95));
    backdrop-filter: blur(30px);
    padding: 12px 28px;
    border-radius: 15px;
    border: 1px solid rgba(19, 177, 205, 0.2);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(19, 177, 205, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    pointer-events: auto;
}

.control-btn {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    width: 48px;
    height: 48px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-size: 1.1rem;
    position: relative;
}

.control-btn:hover {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(135deg, rgba(19, 177, 205, 0.3), rgba(19, 177, 205, 0.1));
    border-color: rgba(19, 177, 205, 0.4);
    box-shadow: 0 10px 25px rgba(19, 177, 205, 0.3);
}

.control-btn.gold:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.control-btn:active {
    transform: translateY(-2px) scale(0.95);
}

.cge-dock-sep {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, transparent, rgba(19, 177, 205, 0.3), transparent);
    margin: 0 4px;
}

/* ===== MODALES ===== */
.modal-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 12000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; backdrop-filter: blur(0); }
    to { opacity: 1; backdrop-filter: blur(12px); }
}
.modal-fullscreen.active { display: flex; }
.modal-fullscreen-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-media-container {
    position: relative;
    width: 100%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}
.modal-media-container img,
.modal-media-container video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
.modal-video-controls {
    margin-top: 15px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: auto;
}
.modal-video-controls button {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}
.modal-video-controls button:hover {
    background: #13b1cd;
    color: #fff;
    transform: scale(1.1);
}
.modal-video-controls input[type="range"] {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    outline: none;
}
.modal-video-controls input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #13b1cd;
    border-radius: 50%;
    cursor: pointer;
}
.modal-close {
    position: absolute;
    top: -50px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.modal-close:hover {
    background: #c54041;
    transform: scale(1.1) rotate(90deg);
}

.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 13000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}
.info-modal.active { display: flex; }
.info-modal-content {
    background: rgba(20,20,30,0.95);
    border-radius: 16px;
    max-width: 680px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(19,177,205,0.3);
    transform: scale(0.95);
    animation: modalContentPop 0.3s ease forwards;
}
@keyframes modalContentPop {
    to { transform: scale(1); }
}
.info-modal-content img.logo {
    width: 180px;
    margin-bottom: 25px;
}
.info-modal-content h2 {
    color: #13b1cd;
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.info-modal-content h3 {
    color: #13b1cd;
    margin-top: 30px;
    font-size: 1.4rem;
}
.info-modal-content p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: justify;
}
.info-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}
.info-modal-close:hover {
    background: #c54041;
    transform: scale(1.1) rotate(90deg);
}

/* ==========================================================================
   SECCIONES DE LA LANDING PAGE (Premium)
   ========================================================================== */
.landing-page {
    background: linear-gradient(135deg, #0a0a0f 0%, #14141a 100%);
    color: #fff;
    padding: 80px 5% 100px;
    position: relative;
    z-index: 20;
}
.landing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.landing-hero,
.about-cge,
.s-promo-block,
.s-plan,
.s-process,
.s-team,
.landing-stats,
.landing-testimonials,
.landing-cta,
.parallax-section {
    opacity: 0;
    transform: translateY(30px);
    animation: sectionFadeUp 0.8s ease forwards;
}
.landing-hero { animation-delay: 0.1s; }
.about-cge { animation-delay: 0.2s; }
.s-promo-block { animation-delay: 0.25s; }
.s-plan { animation-delay: 0.3s; }
.s-process { animation-delay: 0.35s; }
.s-team { animation-delay: 0.4s; }
.landing-stats { animation-delay: 0.45s; }
.landing-testimonials { animation-delay: 0.5s; }
.landing-cta { animation-delay: 0.6s; }
.parallax-section { animation-delay: 0.15s; }
@keyframes sectionFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.landing-hero {
    text-align: center;
    padding: 60px 20px;
}
.landing-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.gradient-text {
    background: linear-gradient(135deg, #fff, #13b1cd, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.landing-hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}
.btn-landing {
    display: inline-block;
    background: rgba(19,177,205,0.2);
    border: 1px solid #13b1cd;
    color: #13b1cd;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(5px);
}
.btn-landing:hover {
    background: #13b1cd;
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(19,177,205,0.5);
}

.about-cge {
    background: rgba(20,20,30,0.5);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px 30px;
    margin: 60px 0;
    border: 1px solid rgba(19,177,205,0.2);
}
.about-cge h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #13b1cd;
}
.about-cge p {
    color: #f0f0f0;
}
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.mv-card {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}
.mv-card:hover {
    transform: translateY(-8px);
    background: rgba(19,177,205,0.1);
    border: 1px solid rgba(19,177,205,0.3);
}
.mv-card i {
    font-size: 2.5rem;
    color: #13b1cd;
    margin-bottom: 15px;
}
.mv-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.mv-card p {
    color: #ddd;
}

.s-promo-block {
    margin: 80px 0;
    text-align: center;
}
.s-promo-block__square-effect {
    position: relative;
    padding: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 48px;
    border: 1px solid rgba(19,177,205,0.2);
}
.s-promo-block__square-effect:before {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 4px solid rgba(19,177,205,0.3);
    content: " ";
    border-radius: 24px;
}
.s-promo-block__square-effect:after {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 4px solid rgba(19,177,205,0.3);
    content: " ";
    border-radius: 24px;
}
.s-promo-block h2 {
    color: #fff;
    font-size: 2.2rem;
}
.s-promo-block p {
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.s-plan {
    margin: 80px 0;
}
.s-plan h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.s-plan-v1 {
    background: rgba(0,0,0,0.4);
    border-radius: 32px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.s-plan-v1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(19,177,205,0.2);
    border: 1px solid rgba(19,177,205,0.5);
}
.s-plan-v1__price-mark {
    font-size: 1.8rem;
    vertical-align: top;
    color: #13b1cd;
}
.s-plan-v1__price-tag {
    font-size: 2.8rem;
    font-weight: 700;
    color: #13b1cd;
}
.s-plan-v1 ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.s-plan-v1 li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.btn-plan {
    background: rgba(19,177,205,0.2);
    border: 1px solid #13b1cd;
    color: #13b1cd;
    padding: 10px 20px;
    border-radius: 40px;
    transition: all 0.3s;
}
.btn-plan:hover {
    background: #13b1cd;
    color: #fff;
}

.s-process {
    margin: 80px 0;
}
.s-process h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.s-process-v1 {
    text-align: center;
    position: relative;
    padding: 20px;
}
.s-process-v1:last-child:before { display: none; }
.s-process-v1 i {
    font-size: 3rem;
    color: #13b1cd;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.s-process-v1 h3 {
    color: #fff;
}
.s-process-v1 p {
    color: #ccc;
}

.s-team {
    margin: 80px 0;
}
.s-team h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.s-team-v1 {
    background: rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.s-team-v1:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(19,177,205,0.2);
    border: 1px solid rgba(19,177,205,0.4);
}
.s-team-v1 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #13b1cd;
}
.s-team-v1 h4 {
    color: #fff;
    margin-bottom: 5px;
}
.s-team-v1 p {
    color: #13b1cd;
    font-weight: 600;
}

.services-section {
    margin: 80px 0;
}
.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 600;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 30px 25px;
    width: 300px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-decoration: none;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 25px 35px -15px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}
.service-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.service-card:hover i {
    transform: scale(1.1);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.service-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.landing-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 80px 0;
    text-align: center;
}
.stat-item {
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    padding: 20px 40px;
    min-width: 180px;
    transition: all 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(19,177,205,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
}
.stat-label {
    font-size: 1rem;
    color: #eee;
}

.landing-testimonials {
    margin: 80px 0;
    text-align: center;
}
.landing-testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 30px 25px;
    width: 300px;
    text-align: left;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(19,177,205,0.1);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
.testimonial-card i {
    color: #d4af37;
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #f0f0f0;
}
.testimonial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}
.testimonial-card span {
    font-size: 0.85rem;
    color: #d4af37;
}

.landing-cta {
    text-align: center;
    margin-top: 100px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(19,177,205,0.1), rgba(0,0,0,0.6));
    border-radius: 60px;
}
.landing-cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}
.btn-landing-large {
    background: #25D366;
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}
.btn-landing-large:hover {
    transform: scale(1.08) translateY(-5px);
    background: #20b859;
    box-shadow: 0 15px 30px rgba(37,211,102,0.5);
}

.s-back-to-top {
    position: fixed;
    right: 30px;
    bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 9999;
    background: linear-gradient(135deg, #13b1cd, #0e8ca3);
    border-radius: 50%;
    color: #0A0F1A;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.s-back-to-top i {
    font-size: 1.2rem;
}
.s-back-to-top:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #fff;
    transform: translateY(-5px);
    opacity: 1;
}
.s-back-to-top.-is-visible {
    bottom: 30px;
}

.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 80px 0;
    border-radius: 20px;
    overflow: hidden;
}
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.parallax-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}
.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}
.parallax-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* ===== FEATURES PREMIUM ===== */
.cge-features {
    margin: 60px 0 120px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}
.cge-features-header {
    text-align: center;
    margin-bottom: 50px;
}
.cge-features-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.cge-features-header p {
    color: var(--cge-muted);
    font-size: 0.95rem;
    margin-top: 8px;
}
.cge-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.cge-feature-card {
    background: linear-gradient(145deg, rgba(18, 28, 45, 0.7), rgba(10, 18, 31, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    width: 100%;
    color: inherit;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}
.cge-feature-card:hover {
    border-color: rgba(19, 177, 205, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.cge-feature-card:hover .cge-feature-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px var(--cge-cyan-glow));
}
.cge-feature-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    transition: all 0.4s;
    display: inline-block;
}
.cge-feature-icon.cyan { color: var(--cge-cyan); }
.cge-feature-icon.gold { color: var(--cge-gold); }
.cge-feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.cge-feature-card p {
    color: var(--cge-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== MODALES FORMULARIOS PREMIUM ===== */
.modal-presupuesto {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 20000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}
.modal-presupuesto.active { display: flex; }
.modal-presupuesto-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    padding: 35px 30px;
    border: 1px solid rgba(19,177,205,0.3);
    transform: scale(0.95);
    animation: modalContentPop 0.3s ease forwards;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: relative;
}
.modal-presupuesto-content h2 {
    color: #13b1cd;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
}
.modal-presupuesto-content > p {
    text-align: center;
    color: #aaa;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.modal-compra-landing {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 20001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}
.modal-compra-landing.active { display: flex; }
.modal-compra-landing-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    padding: 35px 30px;
    border: 1px solid rgba(19,177,205,0.3);
    transform: scale(0.95);
    animation: modalContentPop 0.3s ease forwards;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: relative;
}
.modal-compra-landing-content h2 {
    color: #13b1cd;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
}
.modal-compra-landing-content > p {
    text-align: center;
    color: #aaa;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #13b1cd;
    box-shadow: 0 0 10px rgba(19,177,205,0.3);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}
.btn-enviar {
    width: 100%;
    background: linear-gradient(135deg, #13b1cd, #0e8ca3);
    border: none;
    color: white;
    padding: 14px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
}
.btn-enviar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(19,177,205,0.4);
}
.btn-cerrar-modal {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}
.btn-cerrar-modal:hover {
    background: rgba(244,67,54,0.6);
    border-color: #f44336;
}
.mensaje-form {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}
.mensaje-form.success {
    background: rgba(76,175,80,0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
    display: block;
}
.mensaje-form.error {
    background: rgba(244,67,54,0.2);
    border: 1px solid #f44336;
    color: #f44336;
    display: block;
}
.nota-compra {
    background: rgba(19,177,205,0.1);
    border-left: 3px solid #13b1cd;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #ccc;
}

.btn-presupuesto-flotante {
    position: fixed;
    bottom: 140px;
    right: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}
.btn-presupuesto-flotante:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37,211,102,0.5);
}

/* ===== LANDING PAGE ACORDEÓN ===== */
.sistemas-showcase {
    background: rgba(0,0,0,0.3);
    border-radius: 40px;
    padding: 50px 30px;
    margin: 60px 0;
    text-align: center;
    border: 1px solid rgba(19,177,205,0.2);
}
.sistemas-showcase h2 {
    color: #13b1cd;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}
.sistemas-showcase p {
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 30px;
}
.demo-badge {
    display: inline-block;
    background: rgba(19,177,205,0.2);
    border: 1px solid #13b1cd;
    border-radius: 40px;
    padding: 8px 20px;
    color: #13b1cd;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.demo-badge:hover {
    background: #13b1cd;
    color: #0a0a0f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(19,177,205,0.4);
}
.demo-badge i { margin-right: 8px; }

.landing-accordion-section {
    margin: 60px 0;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(19,177,205,0.2);
}
.landing-accordion-header {
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(19,177,205,0.1), rgba(0,0,0,0.4));
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.landing-accordion-header:hover {
    background: linear-gradient(135deg, rgba(19,177,205,0.2), rgba(0,0,0,0.5));
}
.landing-accordion-header h3 {
    color: #13b1cd;
    font-size: 1.8rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
}
.landing-accordion-header i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}
.landing-accordion-header .fa-chevron-down {
    color: #13b1cd;
    font-size: 1.5rem;
}
.landing-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.landing-accordion-content.active {
    max-height: 800px;
}
.landing-accordion-inner {
    padding: 30px 40px;
}
.landing-demo-text {
    text-align: center;
    margin-bottom: 30px;
}
.landing-demo-text p {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.btn-ver-landing {
    background: linear-gradient(135deg, #13b1cd, #0e8ca3);
    border: none;
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(19,177,205,0.3);
    font-family: 'Inter', sans-serif;
}
.btn-ver-landing:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(19,177,205,0.5);
}
.iframe-container {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    margin: 25px 0;
    border: 1px solid rgba(19,177,205,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.iframe-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}
.btn-comprar-landing {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
    font-family: 'Inter', sans-serif;
}
.btn-comprar-landing:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37,211,102,0.5);
}

/* ===== ANIMACIONES ===== */
.cge-animate-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}
.cge-delay-1 { animation-delay: 0.1s; }
.cge-delay-2 { animation-delay: 0.2s; }
.cge-delay-3 { animation-delay: 0.3s; }
.cge-delay-4 { animation-delay: 0.4s; }
.cge-delay-5 { animation-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .landing-hero h1 { font-size: 2.5rem; }
    .landing-hero p { font-size: 1.1rem; }
    .about-cge { padding: 30px 20px; }
    .mv-card { padding: 20px; }
    .service-card { width: calc(100% - 40px); }
    .stat-item { min-width: 140px; padding: 15px 25px; }
    .stat-number { font-size: 2rem; }
    .bottom-controls { bottom: 60px; gap: 8px; padding: 10px 20px; }
    .control-btn { width: 42px; height: 42px; font-size: 1rem; }
    .float-modal-btn { width: 45px; height: 45px; font-size: 1.2rem; top: 15px; left: 15px; }
    .s-back-to-top { width: 42px; height: 42px; }
    .modal-media-container { max-height: 68vh; }
    .s-process-v1:before { display: none; }
    .s-promo-block__square-effect:before,
    .s-promo-block__square-effect:after {
        width: 60px;
        height: 60px;
    }
    .parallax-section {
        background-attachment: scroll;
        height: 200px;
    }
    .parallax-content h2 { font-size: 1.5rem; }
    .parallax-content p { font-size: 1rem; }
    .cge-features-grid { grid-template-columns: 1fr; }
    .cge-hero { padding: 40px 15px 20px; }
    .cge-hero h1 { font-size: 2rem; }
    .nav-button-carousel { width: min(220px, 75vw); padding: 16px 10px; }
    .iframe-container iframe { height: 300px; }
    .landing-accordion-header { padding: 20px 25px; }
    .landing-accordion-inner { padding: 20px 25px; }
    .landing-accordion-header h3 { font-size: 1.3rem; }
    .btn-presupuesto-flotante {
        bottom: 130px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    .modal-presupuesto-content, .modal-compra-landing-content { padding: 25px 20px; }
}

/* ===== UTILIDADES ===== */
.g-color--primary { color: #13b1cd !important; }
.g-bg-color--primary { background-color: #13b1cd !important; }
.g-font-family--primary { font-family: 'Lato', sans-serif !important; }
.g-font-family--secondary { font-family: 'Montserrat', sans-serif !important; }
.g-font-weight--300 { font-weight: 300 !important; }
.g-font-weight--400 { font-weight: 400 !important; }
.g-font-weight--600 { font-weight: 600 !important; }
.g-font-weight--700 { font-weight: 700 !important; }
.g-text-center { text-align: center !important; }
.g-margin-b-20 { margin-bottom: 1.25rem !important; }
.g-margin-b-30 { margin-bottom: 1.875rem !important; }
.g-margin-b-40 { margin-bottom: 2.5rem !important; }
.g-margin-t-20 { margin-top: 1.25rem !important; }
.g-padding-x-20 { padding-left: 1.25rem; padding-right: 1.25rem; }
.g-overflow-hidden { overflow: hidden; }

/* ===== MODAL FLYER (imagen sin bordes) ===== */
.modal-flyer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 15000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.25s ease;
    padding: 60px 20px 20px;
}
.modal-flyer.active { display: flex; }
.modal-flyer-content {
    position: relative;
    max-width: 90vw;
    max-height: 82vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-flyer-content img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.modal-flyer-close {
    position: fixed;
    top: 15px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 15001;
    backdrop-filter: blur(10px);
}
.modal-flyer-close:hover {
    background: #c54041;
    transform: scale(1.1) rotate(90deg);
}

/* Botón Ver Flyer dentro de cada slide */
.btn-ver-flyer {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.7));
    border: none;
    color: #03060C;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}
.btn-ver-flyer:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #ffe9a8, #d4af37);
}
.btn-ver-flyer i {
    margin-right: 6px;
}


/* ==========================================================================
   NUEVOS ESTILOS - CANALES TV HLS + FEATURES MODALES
   ========================================================================== */

/* ===== BOTÓN ÚNICO "MÁS CANALES" — FUTURISTA / VANGUARDIA ===== */
.cge-more-channels-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 6px auto 10px;
    padding: 0 20px;
}

.btn-mas-canales-hub {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 28px 10px 10px;
    border: 1px solid rgba(19, 177, 205, 0.35);
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(9, 15, 25, 0.92), rgba(16, 26, 40, 0.85));
    backdrop-filter: blur(18px);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1),
                box-shadow 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1),
                border-color 0.4s ease;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Barrido de luz (shimmer) que recorre el botón */
.btn-mas-canales-hub::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(19, 177, 205, 0.25) 45%, rgba(212, 175, 55, 0.3) 55%, transparent 80%);
    background-size: 250% 100%;
    background-position: 130% 0;
    z-index: 0;
    transition: background-position 1s ease;
    pointer-events: none;
}

/* Anillo de contorno degradado, animado suavemente */
.btn-mas-canales-hub::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 1px;
    background: linear-gradient(120deg, var(--cge-cyan), transparent 35%, transparent 65%, var(--cge-gold));
    background-size: 250% 250%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    animation: bmcRingRotate 5s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bmcRingRotate {
    0%   { background-position: 0% 0%; }
    100% { background-position: 250% 250%; }
}

.bmc-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cge-cyan), #0d7f93);
    color: #eafcff;
    font-size: 1.05rem;
    box-shadow: 0 0 0 4px rgba(19, 177, 205, 0.12), 0 0 18px rgba(19, 177, 205, 0.5);
    animation: bmcPulse 2.4s ease-in-out infinite;
}

@keyframes bmcPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(19, 177, 205, 0.12), 0 0 18px rgba(19, 177, 205, 0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(19, 177, 205, 0.05), 0 0 26px rgba(19, 177, 205, 0.75); }
}

.bmc-text {
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, var(--cge-cyan) 60%, var(--cge-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.bmc-arrow {
    position: relative;
    z-index: 1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--cge-gold);
    font-size: 0.7rem;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), background 0.3s ease;
}

.btn-mas-canales-hub:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(19, 177, 205, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn-mas-canales-hub:hover::before {
    background-position: -20% 0;
}
.btn-mas-canales-hub:hover .bmc-arrow {
    transform: translateX(4px);
    background: rgba(212, 175, 55, 0.25);
}
.btn-mas-canales-hub:active {
    transform: translateY(-1px) scale(0.99);
}

@media (max-width: 480px) {
    .bmc-text { font-size: 0.8rem; letter-spacing: 1.2px; }
    .btn-mas-canales-hub { gap: 10px; padding: 8px 20px 8px 8px; }
    .bmc-icon { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ===== FEATURE CARDS COMO BOTONES ===== */
.cge-feature-card:hover {
    border-color: rgba(19, 177, 205, 0.25);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(19, 177, 205, 0.1);
}
.cge-feature-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* ===== MODALES FEATURES AVANZADOS ===== */
.modal-feature {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 19000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
    padding: 20px;
}
.modal-feature.active { display: flex; }

.modal-feature-content {
    background: linear-gradient(145deg, rgba(18, 28, 45, 0.95), rgba(10, 18, 31, 0.98));
    border-radius: 28px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 35px;
    border: 1px solid rgba(19, 177, 205, 0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    position: relative;
    text-align: center;
    transform: scale(0.95);
    animation: modalContentPop 0.3s ease forwards;
}
.modal-feature-wide {
    max-width: 700px;
}

.modal-feature-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.modal-feature-close:hover {
    background: #c54041;
    transform: scale(1.1) rotate(90deg);
}

.modal-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.modal-feature-icon.cyan { color: #13b1cd; box-shadow: 0 0 30px rgba(19, 177, 205, 0.2); }
.modal-feature-icon.gold { color: #d4af37; box-shadow: 0 0 30px rgba(212, 175, 55, 0.2); }

.modal-feature-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.modal-feature-content > p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-feature-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 20px;
    color: #555;
    font-size: 0.9rem;
}
.modal-feature-empty i {
    font-size: 3rem;
    opacity: 0.5;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.game-card {
    background: linear-gradient(145deg, rgba(25, 35, 50, 0.8), rgba(15, 25, 40, 0.9));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    color: inherit;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}
.game-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.15);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(15, 25, 40, 0.95));
}
.game-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.game-card:hover .game-icon {
    transform: scale(1.15);
}
.game-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-family: 'Orbitron', sans-serif;
}
.game-card span {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .tv-player-window {
        width: 95vw;
        aspect-ratio: 16/9;
    }
    .tv-mute-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .modal-feature-content { padding: 30px 20px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .game-card { padding: 20px 15px; }
    .game-icon { font-size: 2rem; }
}

/* ==========================================================================
   REPRODUCTOR HLS DENTRO DE VENTANA DEL SISTEMA
   ========================================================================== */

.tv-win-player {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
}
.tv-win-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tv-win-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 5;
    gap: 12px;
    color: #13b1cd;
    font-size: 0.9rem;
}
.tv-win-loading .spinner {
    border: 3px solid rgba(19,177,205,0.2);
    border-top: 3px solid #13b1cd;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 0.8s linear infinite;
}

.tv-win-error {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.8);
    z-index: 6;
    gap: 12px;
    color: #f44336;
    font-size: 1rem;
}
.tv-win-error i { font-size: 2.2rem; }

.tv-win-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}
.tv-win-controls.active {
    opacity: 1;
    pointer-events: auto;
}

.tv-win-mute-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.tv-win-mute-btn:hover {
    transform: scale(1.1);
    background: rgba(19, 177, 205, 0.35);
    border-color: #13b1cd;
    box-shadow: 0 0 20px rgba(19, 177, 205, 0.4);
}
.tv-win-mute-btn.muted {
    color: #ff5f56;
    border-color: rgba(255, 95, 86, 0.4);
}
.tv-win-mute-btn.muted:hover {
    background: rgba(255, 95, 86, 0.25);
    box-shadow: 0 0 20px rgba(255, 95, 86, 0.3);
}

@media (max-width: 480px) {
    .games-grid { grid-template-columns: 1fr; }
    .tv-player-window {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        max-width: none;
    }
}