* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    overflow-x: hidden;
    background: #0a0e27;
    color: white;
    cursor: none;
}

/* Cursor personalizado */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s, border-color 0.3s;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Partículas globales para cada sección */
.particles-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Partículas para planes */
.plan-particle {
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    animation: floatParticle 15s infinite linear;
}

.plan-particle:nth-child(2n) {
    background: rgba(6, 137, 203, 0.805);
    box-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
}

/* Partículas para servicios */
.service-particle {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    animation: serviceParticle 20s infinite linear;
}

/* Partículas para cobertura */
.coverage-particle {
    width: 1px;
    height: 1px;
    background: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 3px rgba(59, 130, 246, 0.6);
    animation: coverageParticle 10s infinite linear;
}

/* Partículas para nosotros */
.about-particle {
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 4px rgba(0, 255, 136, 0.4);
    animation: aboutParticle 25s infinite linear;
}

/* Animaciones de partículas */
@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes serviceParticle {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
        transform: translateX(50px) translateY(50px) scale(1.2);
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100px) translateY(100px) scale(1);
        opacity: 0;
    }
}

@keyframes coverageParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) translateX(20px);
        opacity: 0.7;
    }
}

@keyframes aboutParticle {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        opacity: 0.3;
    }
    75% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-50px) translateX(50px) rotate(180deg);
        opacity: 0.1;
    }
}

/* Animación de partículas para la sección de planes */
@keyframes particlePlan {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ============ NAVBAR CORREGIDO ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999; /* z-index más alto */
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    padding: 15px 50px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

/* Logo como imagen - CORREGIDO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 40px; /* CAMBIADO DE 0px a 40px */
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #a8b2d1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    font-size: 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00ff88;
}

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

.nav-link.active {
    color: #00ff88;
}

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

/* Botón CTA en navbar */
.nav-cta {
    padding: 12px 30px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0e27;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(86, 101, 94, 0.5);
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10000; /* Mayor que el navbar */
    padding: 5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: #00ccff;
    transform: scale(1.1);
}

/* ============ HERO SECTION - Z-INDEX CORREGIDO ============ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    overflow: hidden;
    isolation: isolate;
    padding-top: 80px; /* Espacio para el navbar */
    border-radius: 0% 0% 70px 70px;
    margin: 5px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1; /* CAMBIADO DE 10 a 1 */
}

/* Contenedor que mantiene al cohete dentro del hero */
.rocket-boundary {
    position: absolute;
    top: 100px;
    left: 50px;
    right: 50px;
    bottom: 150px;
    pointer-events: none;
    z-index: 100;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Cohete que sigue al cursor dentro del hero */
.rocket-container {
    position: absolute;
    width: 120px;
    height: 200px;
    z-index: 100;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.rocket {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease-out;
    filter: drop-shadow(0 0 20px rgba(76, 201, 240, 0.7));
}

.rocket.floating {
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Partículas de luz del cohete */
.light-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.light-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00ff88;
    border-radius: 50%;
    filter: blur(1px);
    animation: particleFloat 2s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(0);
        opacity: 0;
    }
}

/* Cuerpo del cohete */
.rocket-body {
    position: relative;
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, #4cc9f0 0%, #4361ee 100%);
    margin: 0 auto;
    border-radius: 50% 50% 0 0;
    box-shadow: 
        0 0 30px rgba(76, 201, 240, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
}

.rocket-window {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #87ceeb 0%, #4a90a4 100%);
    border-radius: 50%;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #2c3e50;
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(76, 201, 240, 0.6);
}

.rocket-fin {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.rocket-fin.left {
    border-width: 0 30px 40px 0;
    border-color: transparent #4361ee transparent transparent;
    bottom: 0;
    left: -25px;
}

.rocket-fin.right {
    border-width: 0 0 40px 30px;
    border-color: transparent transparent transparent #4361ee;
    bottom: 0;
    right: -25px;
}

.rocket-flame {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background: linear-gradient(180deg, #ff9e00 0%, #ff5400 50%, transparent 100%);
    border-radius: 50% 50% 50% 50%;
    animation: flame 0.1s infinite alternate;
    filter: blur(2px);
}

@keyframes flame {
    0% {
        transform: translateX(-50%) scaleY(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scaleY(1.3);
        opacity: 0.8;
    }
}

/* Contenido del Hero */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 50px;
}

.typewriter-container {
    min-height: 120px;
    margin-bottom: 30px;
}

.typewriter {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: #00ff88;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.typed-text {
    display: inline-block;
    border-right: 4px solid #00ff88;
    animation: blink 0.7s infinite;
    padding-right: 5px;
}

@keyframes blink {
    0%, 50% { border-color: #00ff88; }
    51%, 100% { border-color: transparent; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: #a8b2d1;
    margin: 30px 0;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s 3.5s forwards;
    font-weight: 300;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s 4s forwards;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: #a8b2d1;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    opacity: 0;
    animation: fadeInUp 1s 4.5s forwards;
}

.btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0e27;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff88;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s 5s forwards;
}

.scroll-text {
    font-size: 0.9rem;
    color: #a8b2d1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #00ff88;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #00ff88;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ============ SECCIÓN PLANES CON EFECTOS DE SCROLL ============ */
.planes-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    padding: 120px 20px 100px;
    position: relative;
    overflow: hidden;
    margin-top: -35px;
    z-index: 2; /* Menor que el navbar */
}

.planes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    z-index: 1;
    border-radius: 70px 70px 0 0;
}

/* Título con efecto de scroll */
.planes-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 80px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.planes-title.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grid de planes */
.planes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Tarjetas de planes con efectos de scroll */
.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.1);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    z-index: 2;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

.plan-card:nth-child(1) {
    transition-delay: 0.1s;
}

.plan-card:nth-child(2) {
    transition-delay: 0.3s;
}

.plan-card:nth-child(3) {
    transition-delay: 0.5s;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.plan-card:hover::before {
    left: 100%;
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #00ff8896;
    box-shadow: 
        0 25px 60px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(0, 255, 136, 0.1);
}

.plan-card.featured {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.05);
}

.plan-card.featured.scroll-visible {
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0e27;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-speed {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 30px 0 10px;
}

.plan-speed span {
    font-size: 1.8rem;
    color: #a8b2d1;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 20px 0;
}

.plan-price span {
    font-size: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.plan-features li {
    color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.plan-features li::before {
    content: '✅';
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px #00ff88);
}

.plan-btn {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.2rem;
    border: 2px solid #00ff88;
    background: transparent;
    color: #00ff88;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s;
}

.plan-btn:hover {
    background: #00ff88;
    color: #0a0e27;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.plan-btn:hover::before {
    left: 100%;
}

/* ============ LEYENDA DE PLANES ============ */
.planes-disclaimer {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.8s;
}

.planes-disclaimer.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

.planes-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    max-width: 600px;
    margin: 0 auto;
}

.planes-disclaimer p:hover {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
    transition: all 0.3s ease;
}

/* Estilos para el enlace de términos y condiciones */
.terms-link {
    color: #00ff88;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    padding-bottom: 1px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.terms-link:hover {
    color: #00ccff;
    border-bottom-color: #00ccff;
    border-bottom-width: 2px;
}

.terms-link::after {
    content: ' ↗';
    font-size: 0.8em;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.terms-link:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

/* ============ SECCIÓN SERVICIOS MODIFICADA ============ */
:root {
    --primary: #6366f1;
    --secondary: #10b981;
    --accent: #8b5cf6;
    --dark: #111827;
    --light: #f9fafb;
}

/* Efectos de fondo para servicios */
.bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    opacity: 0.5;
}

/* Contenedor principal de servicios */
.servicios-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    z-index: 2;
}

/* Sección de servicios - cada una ocupa toda la pantalla */
.service-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 50px;
    position: relative;
    overflow: hidden;
}

/* Layout para contenido alternado */
.service-content-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-text-left .service-content-wrapper {
    grid-template-areas: "image text";
}

.service-text-right .service-content-wrapper {
    grid-template-areas: "text image";
}

/* Texto principal - pantalla completa */
.servicios-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.servicios-hero-text {
    max-width: 900px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.servicios-hero-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.servicios-hero-text.fade-out {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease;
}

.servicios-hero-text h1 {
    font-size: clamp(4.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.servicios-hero-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text-servicios {
    background: linear-gradient(135deg, #00ff88, #00ccff, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    text-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

/* Contenedor de texto del servicio */
.service-text-container-custom {
    grid-area: text;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-text-left .service-text-container-custom {
    transform: translateX(-100px);
}

.service-text-container-custom.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-text-container-custom.fade-out {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.service-text-left .service-text-container-custom.fade-out {
    transform: translateX(100px);
}

.service-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
}

.service-text-container-custom.visible .service-number {
    opacity: 1;
    transform: translateY(0);
}

.service-title-custom {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f9fafb, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.service-text-container-custom.visible .service-title-custom {
    opacity: 1;
    transform: translateY(0);
}

.service-description-custom {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.7s;
}

.service-text-container-custom.visible .service-description-custom {
    opacity: 1;
    transform: translateY(0);
}

.features-list-custom {
    list-style: none;
    margin-bottom: 3rem;
}

.features-list-custom li {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
}

.service-text-container-custom.visible .features-list-custom li:nth-child(1) {
    transition: all 1s ease 0.9s;
    opacity: 1;
    transform: translateX(0);
}

.service-text-container-custom.visible .features-list-custom li:nth-child(2) {
    transition: all 1s ease 1.1s;
    opacity: 1;
    transform: translateX(0);
}

.service-text-container-custom.visible .features-list-custom li:nth-child(3) {
    transition: all 1s ease 1.3s;
    opacity: 1;
    transform: translateX(0);
}

.features-list-custom i {
    color: #00ff88;
    font-size: 1.3rem;
    min-width: 24px;
}

.price-tag-custom {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 1.5s;
}

.service-text-container-custom.visible .price-tag-custom {
    opacity: 1;
    transform: translateY(0);
}

.service-button-custom {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0e27;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 1.7s;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    cursor: pointer;
    border: none;
}

.service-text-container-custom.visible .service-button-custom {
    opacity: 1;
    transform: translateY(0);
}

.service-button-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

/* Contenedor de imagen del servicio */
.service-image-container-custom {
    grid-area: image;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Imagen del Servicio 1 - Fibra Óptica */
#service1-image-custom {
    transform: translateX(-100px) scale(0.9) rotate(-5deg);
    perspective: 1000px;
}

.service1-image-custom {
    width: 100%;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 255, 136, 0.3);
    transform-style: preserve-3d;
    transform: rotateY(-10deg);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#service1-image-custom.visible {
    transform: translateX(0) scale(1) rotate(0);
}

#service1-image-custom.fade-out {
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 1s ease;
}

/* Imagen del Servicio 2 - Antena */
#service2-image-custom {
    transform: translateX(100px) scale(0.9) rotate(5deg);
}

.service2-image-custom {
    width: 100%;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 255, 136, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: clip-path 1.2s ease;
}

#service2-image-custom.visible {
    transform: translateX(0) scale(1) rotate(0);
}

#service2-image-custom.fade-out {
    opacity: 0;
    transform: translateX(-100px) scale(0.9);
    transition: all 1s ease;
}

/* Imagen del Servicio 3 - Enlace Dedicado */
#service3-image-custom {
    transform: translateX(-100px) scale(0.9);
}

.service3-image-custom {
    width: 100%;
    height: 550px;
    border-radius: 25px 0 25px 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 30px 60px rgba(0, 255, 136, 0.3),
        inset 0 0 0 4px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

#service3-image-custom.visible {
    transform: translateX(0) scale(1);
}

#service3-image-custom.fade-out {
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 1s ease;
}

/* Estilos comunes para imágenes */
.service-image-container-custom.visible {
    opacity: 1;
}

.service-image-container-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efectos hover específicos para cada imagen */
.service1-image-custom:hover {
    transform: rotateY(0deg) scale(1.02);
}

.service1-image-custom:hover img {
    transform: scale(1.1) rotate(1deg);
}

.service2-image-custom:hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.service2-image-custom:hover img {
    transform: scale(1.08);
}

.service3-image-custom:hover {
    border-color: #00ccff;
    box-shadow: 
        0 30px 60px rgba(0, 255, 136, 0.5),
        inset 0 0 0 4px rgba(0, 255, 136, 0.2);
}

.service3-image-custom:hover img {
    transform: scale(1.05);
}

/* Overlay de imagen diferente para cada servicio */
.image-overlay-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service1-image-custom .image-overlay-custom {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.019), rgba(0, 204, 255, 0.15));
}

.service2-image-custom .image-overlay-custom {
    background: linear-gradient(45deg, rgba(0, 255, 136, 0), rgba(0, 204, 255, 0.15));
}

.service3-image-custom .image-overlay-custom {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 204, 255, 0.15));
}

.image-caption-custom {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.5s;
}

.service-image-container-custom.visible .image-caption-custom {
    opacity: 1;
    transform: translateY(0);
}

/* Indicador de scroll para servicios - AHORA DENTRO DEL CONTENEDOR */
.scroll-indicator-servicios {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-indicator-servicios.active {
    opacity: 1;
    visibility: visible;
}

.scroll-dot-servicios {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.8s ease;
    cursor: pointer;
    position: relative;
}

.scroll-dot-servicios::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s ease;
}

.scroll-dot-servicios.active {
    background-color: #00ff88;
    transform: scale(1.3);
}

.scroll-dot-servicios.active::before {
    opacity: 0.3;
    transform: scale(1);
}

.scroll-dot-servicios:hover {
    transform: scale(1.2);
    background-color: rgba(0, 255, 136, 0.5);
}

/* Separadores entre secciones */
.section-divider-custom {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
    overflow: hidden;
}

.section-divider-custom.visible {
    opacity: 1;
}

.section-divider-custom.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 1s ease;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Flechas de scroll para servicios - AHORA DENTRO DEL CONTENEDOR */
.scroll-hint-servicios {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    color: #00ff88;
    font-size: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    animation: float 2s infinite;
    cursor: pointer;
}

.scroll-hint-servicios.active {
    opacity: 0.7;
    visibility: visible;
}

.scroll-down-servicios {
    bottom: 2rem;
}

.scroll-up-servicios {
    top: 2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============ COBERTURA SECTION ============ */
:root {
    --primary: #3b82f6;
    --secondary: #10b981;
    --antenna: #ec4899;
    --whatsapp: #25D366;
    --dark: #0f172a;
    --light: #f8fafc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Efectos Scroll Trigger - MODIFICADOS */
.scroll-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-element-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-element-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-element-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-element-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Sección del Mapa */
.cobertura-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 1s ease 0.5s;
}

.section-title.visible h2::after {
    width: 200px;
}

.section-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* Contenedor del Mapa */
.map-container {
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(59, 246, 59, 0.3);
    position: relative;
    box-shadow: 0 30px 60px rgba(99, 123, 241, 0.3);
    z-index: 2;
}

#map {
    width: 100%;
    height: 550px;
    box-shadow: 0 30px 60px rgba(99, 241, 99, 0.3);
}

/* Tooltip SIMPLE y CLARO */
.marker-tooltip {
    position: absolute;
    background: white;
    color: #1f2937;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 180px;
    border-left: 4px solid;
    text-align: center;
}

.marker-tooltip.fiber {
    border-left-color: var(--secondary);
    background: rgba(16, 185, 129, 0.1);
}

.marker-tooltip.antenna {
    border-left-color: var(--antenna);
    background: rgba(236, 72, 153, 0.1);
}

.marker-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.marker-tooltip h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tooltip-service {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 5px 0;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
}

.tooltip-service.fiber {
    color: var(--secondary);
    background: rgba(16, 185, 129, 0.15);
}

.tooltip-service.antenna {
    color: var(--antenna);
    background: rgba(72, 113, 236, 0.15);
}

/* Leyenda */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
}

.legend-color.fiber {
    background: var(--secondary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.legend-color.antenna {
    background: var(--antenna);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.legend-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Sección de Consulta */
.consult-section {
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.consult-container {
    max-width: 800px;
    margin: 0 auto;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    padding: 4rem;
    border-radius: 25px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(118, 241, 99, 0.3);
    z-index: 2;
}

.whatsapp-icon {
    font-size: 4.5rem;
    color: var(--whatsapp);
    margin-bottom: 2rem;
    text-align: center;
    filter: drop-shadow(0 5px 15px rgba(37, 211, 102, 0.3));
}

.consult-container h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    font-weight: 700;
}

.consult-container p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.2rem;
}

/* Formulario */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.whatsapp-btn {
    width: 100%;
    padding: 1.4rem;
    background: linear-gradient(90deg, var(--whatsapp), #128C7E);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.location-btn {
    width: 100%;
    padding: 1.2rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.location-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

/* Stats Counter */
.stats-counter {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 180px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* ================= INTRO ================= */
.intro-wrapper {
    height: 250vh;
    position: relative;
    z-index: 2;
}

.intro {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
}

.intro-card {
    width: min(1200px, 92%);
    height: 90vh;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,.55);
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.intro-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
}

.intro-content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    padding: 5rem;
    z-index: 2;
}

.intro-title {
    font-size: clamp(3rem,5vw,4.5rem);
    font-weight: 900;
    line-height: 1;
}

.intro-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin-top: 1.2rem;
    background: linear-gradient(90deg,#38bdf8,#22c55e);
    border-radius: 4px;
}

.intro-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e5e7eb;
    max-width: 520px;
}

/* ================= STACK ================= */
.stack-wrapper {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.stack {
    height: 100vh;
    position: relative;
}

/* TEXTO FONDO */
.back-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.back-track {
    display: flex;
    gap: 6rem;
    white-space: nowrap;
    font-size: clamp(3rem,8vw,7rem);
    font-weight: 900;
    opacity: .35;
}

/* ================= CARDS ================= */
.card {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-inner {
    width: min(1200px,92%);
    height: 92vh;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,.55);
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.05));
}

.card-content {
    position: absolute;
    inset: 0;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(40px);
}

.card-top h2 {
    font-size: 3rem;
    font-weight: 900;
}

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

.card-bottom p,
.card-bottom li {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ffffff;
}

.card-bottom ul {
    list-style: none;
}

.card-bottom li {
    margin-bottom: .5rem;
    padding-left: 1.4rem;
    position: relative;
}

.card-bottom li::before {
    content: "*";
    position: absolute;
    left: 0;
    color: #38f88e;
}

.card2,
.card3 {
    visibility: hidden;
}

/* ================= FOOTER ================= */
.footer-global {
    background: #0a0e27;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(0, 255, 136, 0.2);
    padding: 60px 20px 30px;
    z-index: 2;
}

.footer-content-global {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 3;
}

.footer-column-global {
    display: flex;
    flex-direction: column;
}

.footer-column-global h3 {
    color: #00ff88;
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    position: relative;
    padding-bottom: 10px;
}

.footer-column-global h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.footer-column-global p {
    margin: 0;
}

.footer-column-global a {
    color: #a8b2d1;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 6px 0;
    line-height: 1.5;
    border-bottom: 1px solid transparent;
}

.footer-column-global a:hover {
    color: #00ff88;
    transform: translateX(8px);
    border-bottom-color: rgba(0, 255, 136, 0.3);
}

/* Estilos específicos para la lista de contacto */
.contact-info-global {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-global li {
    color: #a8b2d1;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.contact-info-global i {
    color: #00ff88;
    font-size: 16px;
    min-width: 20px;
    margin-top: 3px;
}

.contact-info-global br {
    display: block;
    content: "";
    margin: 5px 0;
}

/* ============================================ */
/* SECCIÓN PLANES NETCODEJS - TARIFAS IFT      */
/* ============================================ */

.netcodejs-planes-section {
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: -35px;
    z-index: 2;
    border-radius: 70px 70px 0 0;
}

/* Partículas para la sección de planes */
.netcodejs-planes-section .particles-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.netcodejs-planes-section .plan-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: particlePlan 20s infinite linear;
}

.netcodejs-planes-section .plan-particle:nth-child(2n) {
    background: rgba(0, 204, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 30px;
    }
    
    .navbar.scrolled {
        padding: 15px 30px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .rocket-boundary {
        left: 30px;
        right: 30px;
    }
    
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .service-text-left .service-content-wrapper,
    .service-text-right .service-content-wrapper {
        grid-template-areas: 
            "text"
            "image";
    }

    .service-text-container-custom,
    .service-text-left .service-text-container-custom {
        transform: translateY(50px);
    }

    .service-text-container-custom.fade-out {
        transform: translateY(-50px);
    }

    .service-text-left .service-text-container-custom.fade-out {
        transform: translateY(-50px);
    }

    .service-image-container-custom,
    .service-text-left .service-image-container-custom {
        transform: translateY(50px) scale(0.95);
    }

    .service-image-container-custom.fade-out {
        transform: translateY(-50px) scale(0.95);
    }

    .service-text-container-custom.visible,
    .service-image-container-custom.visible {
        transform: translateY(0) scale(1);
    }

    .scroll-indicator-servicios {
        right: 1.5rem;
    }

    .service1-image-custom,
    .service2-image-custom,
    .service3-image-custom {
        height: 400px;
    }
    
    .cobertura-section {
        padding: 6rem 5%;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    #map {
        height: 500px;
    }
    
    .stats-counter {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem;
    }

    .card-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .navbar.scrolled {
        padding: 12px 20px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Menú hamburguesa visible */
    .menu-toggle {
        display: block;
    }
    
    /* Menú de navegación oculto por defecto */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
        padding: 80px 30px 30px;
        border-left: 1px solid rgba(0, 255, 136, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    .rocket-boundary {
        top: 80px;
        left: 20px;
        right: 20px;
        bottom: 120px;
    }
    
    .rocket-container {
        width: 80px;
        height: 140px;
    }

    .rocket-body {
        width: 40px;
        height: 80px;
    }

    .rocket-window {
        width: 20px;
        height: 20px;
        top: 20px;
    }

    .hero-content {
        margin-top: 30px;
    }

    .stats-container {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured.scroll-visible {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .servicios-hero-text h1 {
        font-size: 3.5rem;
    }

    .servicios-hero-text p {
        font-size: 1.4rem;
    }

    .service-title-custom {
        font-size: 3rem;
    }

    .service-description-custom {
        font-size: 1.2rem;
    }

    .service1-image-custom,
    .service2-image-custom,
    .service3-image-custom {
        height: 300px;
    }

    .scroll-indicator-servicios {
        right: 1rem;
    }

    .scroll-dot-servicios {
        width: 12px;
        height: 12px;
    }
    
    .cobertura-section {
        padding: 4rem 5%;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    #map {
        height: 400px;
    }
    
    .consult-container {
        padding: 2.5rem;
    }
    
    .consult-container h3 {
        font-size: 2rem;
    }
    
    .stats-counter {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .marker-tooltip {
        min-width: 160px;
        font-size: 0.85rem;
        padding: 10px;
    }

    .footer-content-global {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column-global a {
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }
    
    .navbar.scrolled {
        padding: 10px 15px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    .rocket-boundary {
        top: 70px;
        left: 15px;
        right: 15px;
        bottom: 100px;
    }
    
    .rocket-container {
        width: 60px;
        height: 100px;
    }

    .rocket-body {
        width: 30px;
        height: 60px;
    }

    .rocket-window {
        width: 15px;
        height: 15px;
        top: 15px;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    
    .typewriter {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

    .footer-content-global {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column-global {
        text-align: center;
    }
    
    .footer-column-global h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column-global a {
        text-align: center;
    }
    
    .footer-column-global a:hover {
        transform: translateY(-3px);
    }
    
    .contact-info-global li {
        justify-content: center;
        text-align: center;
    }
}
/* ============ BOTONES DE PLANES CORREGIDOS ============ */
.plan-card .nav-cta {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0e27;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.plan-card .nav-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00ccff, #00ff88);
}

.plan-card.featured .nav-cta {
    background: #00ff88;
    color: #0a0e27;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.plan-card.featured .nav-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.7);
}

/* Ajustes responsivos para los botones */
@media (max-width: 768px) {
    .plan-card .nav-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}