/* ============================================================
   ANIMACIONES.CSS - TODOS LOS ESTILOS DE ANIMACIÓN
   HostPlayers - Animaciones persistentes
   ============================================================ */

/* ============================================================
   1. FONDO CON MOVIMIENTO DE DESPLAZAMIENTO SUTIL (GLOBAL)
   ============================================================ */
body {
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -2;
    background: 
        radial-gradient(circle at 30% 40%, rgba(156, 108, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(192, 132, 252, 0.06) 0%, transparent 50%);
    animation: fondoDesplazamiento 20s linear infinite;
}

@keyframes fondoDesplazamiento {
    0% {
        background-position: 0% 0%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 100%;
        transform: scale(1.05);
    }
    100% {
        background-position: 0% 0%;
        transform: scale(1);
    }
}

/* ============================================================
   2. FEATURES - MOVIMIENTO DE FLOTACIÓN
   ============================================================ */
.features-section .feature-card {
    animation: flotarCard 4s ease-in-out infinite;
}

@keyframes flotarCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Retrasos para features */
.features-section .feature-card:nth-child(1) { animation-delay: 0s; }
.features-section .feature-card:nth-child(2) { animation-delay: 0.4s; }
.features-section .feature-card:nth-child(3) { animation-delay: 0.8s; }
.features-section .feature-card:nth-child(4) { animation-delay: 1.2s; }
.features-section .feature-card:nth-child(5) { animation-delay: 1.6s; }
.features-section .feature-card:nth-child(6) { animation-delay: 2s; }

/* ============================================================
   3. STATS - MOVIMIENTO DE FLOTACIÓN
   ============================================================ */
.stats-section .stat-box {
    animation: flotarStat 3.5s ease-in-out infinite;
}

@keyframes flotarStat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Retrasos para stats */
.stats-section .stat-box:nth-child(1) { animation-delay: 0s; }
.stats-section .stat-box:nth-child(2) { animation-delay: 0.3s; }
.stats-section .stat-box:nth-child(3) { animation-delay: 0.6s; }
.stats-section .stat-box:nth-child(4) { animation-delay: 0.9s; }

/* ============================================================
   4. ÍCONOS DE FEATURES - OSCILACIÓN
   ============================================================ */
.features-section .feature-icon {
    animation: iconoMovimiento 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconoMovimiento {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

/* ============================================================
   5. BOTONES - MOVIMIENTO SUTIL
   ============================================================ */
.btn-primary,
.btn-outline-light {
    animation: botonMovimiento 3s ease-in-out infinite;
}

@keyframes botonMovimiento {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* ============================================================
   6. SUBRAYADO EMERGENTE PARA TÍTULOS
   ============================================================ */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9c6cff, #c084fc, #9c6cff, transparent);
    border-radius: 3px;
    animation: subrayadoEmergente 3s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes subrayadoEmergente {
    0%, 100% {
        width: 0%;
        opacity: 0;
    }
    25% {
        width: 30%;
        opacity: 0.5;
    }
    50% {
        width: 70%;
        opacity: 1;
    }
    75% {
        width: 40%;
        opacity: 0.7;
    }
}

/* ============================================================
   7. RESETEOS - ELEMENTOS SIN ANIMACIÓN
   ============================================================ */
.testimonials-section .testimonial-card {
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

.games-section .game-card {
    animation: none !important;
    transform: none !important;
}

/* ============================================================
   8. HERO - FONDO DE PARTÍCULAS FLOTANTES + PARTÍCULAS EN MOVIMIENTO
   ============================================================ */

/* Capa de partículas flotantes - PUNTOS QUE SE MUEVEN */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(156, 108, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 45% 65%, rgba(180, 130, 255, 0.16) 1px, transparent 1px),
        radial-gradient(circle at 70% 40%, rgba(156, 108, 255, 0.14) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(200, 150, 255, 0.12) 1px, transparent 1px),
        repeating-linear-gradient(45deg, rgba(156, 108, 255, 0.1) 0px, rgba(156, 108, 255, 0.1) 1px, transparent 1px, transparent 10px);
    background-size: 45px 45px, 55px 55px, 40px 40px, 50px 50px, 35px 35px;
    background-repeat: repeat;
    animation: particulasFlotar 20s linear infinite;
    opacity: 0.5;
}

@keyframes particulasFlotar {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 250px 250px, -180px 180px, 200px -150px, -220px -220px, 120px 120px;
    }
}

/* PARTÍCULAS QUE APARECEN, DESAPARECEN Y SE MUEVEN */
.hero .particulas-servidores {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .particulas-servidores span {
    position: absolute;
    background: #9c6cff;
    border-radius: 50%;
    opacity: 0;
    animation: particulaMovimiento 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(156, 108, 255, 0.9);
}

/* Partículas individuales - 24 partículas */
.hero .particulas-servidores span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; width: 6px; height: 6px; animation-duration: 3.5s; }
.hero .particulas-servidores span:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.4s; width: 8px; height: 8px; animation-duration: 4.2s; }
.hero .particulas-servidores span:nth-child(3) { top: 45%; left: 20%; animation-delay: 0.8s; width: 5px; height: 5px; animation-duration: 3.8s; }
.hero .particulas-servidores span:nth-child(4) { top: 60%; left: 75%; animation-delay: 1.2s; width: 7px; height: 7px; animation-duration: 4.5s; }
.hero .particulas-servidores span:nth-child(5) { top: 75%; left: 40%; animation-delay: 1.6s; width: 9px; height: 9px; animation-duration: 3.2s; }
.hero .particulas-servidores span:nth-child(6) { top: 85%; left: 55%; animation-delay: 2s; width: 6px; height: 6px; animation-duration: 4s; }
.hero .particulas-servidores span:nth-child(7) { top: 35%; left: 50%; animation-delay: 2.4s; width: 7px; height: 7px; animation-duration: 3.6s; }
.hero .particulas-servidores span:nth-child(8) { top: 55%; left: 90%; animation-delay: 2.8s; width: 5px; height: 5px; animation-duration: 4.3s; }
.hero .particulas-servidores span:nth-child(9) { top: 70%; left: 15%; animation-delay: 3.2s; width: 8px; height: 8px; animation-duration: 3.9s; }
.hero .particulas-servidores span:nth-child(10) { top: 20%; left: 60%; animation-delay: 3.6s; width: 6px; height: 6px; animation-duration: 4.1s; }
.hero .particulas-servidores span:nth-child(11) { top: 50%; left: 5%; animation-delay: 4s; width: 7px; height: 7px; animation-duration: 3.4s; }
.hero .particulas-servidores span:nth-child(12) { top: 80%; left: 95%; animation-delay: 4.4s; width: 5px; height: 5px; animation-duration: 4.7s; }
.hero .particulas-servidores span:nth-child(13) { top: 10%; left: 45%; animation-delay: 0.2s; width: 4px; height: 4px; animation-duration: 3.3s; }
.hero .particulas-servidores span:nth-child(14) { top: 40%; left: 95%; animation-delay: 1s; width: 6px; height: 6px; animation-duration: 4.4s; }
.hero .particulas-servidores span:nth-child(15) { top: 65%; left: 30%; animation-delay: 1.8s; width: 5px; height: 5px; animation-duration: 3.7s; }
.hero .particulas-servidores span:nth-child(16) { top: 90%; left: 70%; animation-delay: 2.6s; width: 7px; height: 7px; animation-duration: 4.6s; }
.hero .particulas-servidores span:nth-child(17) { top: 5%; left: 80%; animation-delay: 3.4s; width: 5px; height: 5px; animation-duration: 3.5s; }
.hero .particulas-servidores span:nth-child(18) { top: 30%; left: 15%; animation-delay: 4.2s; width: 6px; height: 6px; animation-duration: 4.2s; }
.hero .particulas-servidores span:nth-child(19) { top: 48%; left: 70%; animation-delay: 0.6s; width: 5px; height: 5px; animation-duration: 3.9s; }
.hero .particulas-servidores span:nth-child(20) { top: 62%; left: 45%; animation-delay: 1.4s; width: 7px; height: 7px; animation-duration: 4.3s; }
.hero .particulas-servidores span:nth-child(21) { top: 78%; left: 85%; animation-delay: 2.2s; width: 4px; height: 4px; animation-duration: 3.6s; }
.hero .particulas-servidores span:nth-child(22) { top: 18%; left: 35%; animation-delay: 3s; width: 6px; height: 6px; animation-duration: 4.5s; }
.hero .particulas-servidores span:nth-child(23) { top: 52%; left: 55%; animation-delay: 3.8s; width: 8px; height: 8px; animation-duration: 3.8s; }
.hero .particulas-servidores span:nth-child(24) { top: 82%; left: 20%; animation-delay: 4.6s; width: 5px; height: 5px; animation-duration: 4.1s; }

@keyframes particulaMovimiento {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.3);
    }
    15% {
        opacity: 0.7;
        transform: translate(-8px, -5px) scale(0.8);
    }
    30% {
        opacity: 1;
        transform: translate(5px, -12px) scale(1.2);
        background: #c084fc;
        box-shadow: 0 0 25px rgba(192, 132, 252, 1);
    }
    45% {
        opacity: 0.8;
        transform: translate(12px, -5px) scale(1);
    }
    60% {
        opacity: 0.5;
        transform: translate(5px, 3px) scale(0.7);
    }
    75% {
        opacity: 0.2;
        transform: translate(-5px, 8px) scale(0.4);
    }
    100% {
        opacity: 0;
        transform: translate(-12px, 15px) scale(0.2);
    }
}

/* Asegurar que el contenido del hero esté por encima de las partículas */
.hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================================
   9. SERVIDORES-DE-JUEGOS.PHP - HERO CON PARTÍCULAS
   ============================================================ */

/* Fondo de partículas flotantes para games-hero */
.games-hero {
    position: relative;
    overflow: hidden;
}

.games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(156, 108, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 45% 65%, rgba(180, 130, 255, 0.16) 1px, transparent 1px),
        radial-gradient(circle at 70% 40%, rgba(156, 108, 255, 0.14) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(200, 150, 255, 0.12) 1px, transparent 1px),
        repeating-linear-gradient(45deg, rgba(156, 108, 255, 0.1) 0px, rgba(156, 108, 255, 0.1) 1px, transparent 1px, transparent 10px);
    background-size: 45px 45px, 55px 55px, 40px 40px, 50px 50px, 35px 35px;
    background-repeat: repeat;
    animation: particulasFlotarGames 20s linear infinite;
    opacity: 0.5;
}

@keyframes particulasFlotarGames {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 250px 250px, -180px 180px, 200px -150px, -220px -220px, 120px 120px;
    }
}

/* Partículas que aparecen, desaparecen y se mueven en games-hero */
.games-hero .particulas-servidores {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.games-hero .particulas-servidores span {
    position: absolute;
    background: #9c6cff;
    border-radius: 50%;
    opacity: 0;
    animation: particulaMovimientoGames 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(156, 108, 255, 0.9);
}

/* Partículas individuales - 24 partículas */
.games-hero .particulas-servidores span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; width: 6px; height: 6px; animation-duration: 3.5s; }
.games-hero .particulas-servidores span:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.4s; width: 8px; height: 8px; animation-duration: 4.2s; }
.games-hero .particulas-servidores span:nth-child(3) { top: 45%; left: 20%; animation-delay: 0.8s; width: 5px; height: 5px; animation-duration: 3.8s; }
.games-hero .particulas-servidores span:nth-child(4) { top: 60%; left: 75%; animation-delay: 1.2s; width: 7px; height: 7px; animation-duration: 4.5s; }
.games-hero .particulas-servidores span:nth-child(5) { top: 75%; left: 40%; animation-delay: 1.6s; width: 9px; height: 9px; animation-duration: 3.2s; }
.games-hero .particulas-servidores span:nth-child(6) { top: 85%; left: 55%; animation-delay: 2s; width: 6px; height: 6px; animation-duration: 4s; }
.games-hero .particulas-servidores span:nth-child(7) { top: 35%; left: 50%; animation-delay: 2.4s; width: 7px; height: 7px; animation-duration: 3.6s; }
.games-hero .particulas-servidores span:nth-child(8) { top: 55%; left: 90%; animation-delay: 2.8s; width: 5px; height: 5px; animation-duration: 4.3s; }
.games-hero .particulas-servidores span:nth-child(9) { top: 70%; left: 15%; animation-delay: 3.2s; width: 8px; height: 8px; animation-duration: 3.9s; }
.games-hero .particulas-servidores span:nth-child(10) { top: 20%; left: 60%; animation-delay: 3.6s; width: 6px; height: 6px; animation-duration: 4.1s; }
.games-hero .particulas-servidores span:nth-child(11) { top: 50%; left: 5%; animation-delay: 4s; width: 7px; height: 7px; animation-duration: 3.4s; }
.games-hero .particulas-servidores span:nth-child(12) { top: 80%; left: 95%; animation-delay: 4.4s; width: 5px; height: 5px; animation-duration: 4.7s; }
.games-hero .particulas-servidores span:nth-child(13) { top: 10%; left: 45%; animation-delay: 0.2s; width: 4px; height: 4px; animation-duration: 3.3s; }
.games-hero .particulas-servidores span:nth-child(14) { top: 40%; left: 95%; animation-delay: 1s; width: 6px; height: 6px; animation-duration: 4.4s; }
.games-hero .particulas-servidores span:nth-child(15) { top: 65%; left: 30%; animation-delay: 1.8s; width: 5px; height: 5px; animation-duration: 3.7s; }
.games-hero .particulas-servidores span:nth-child(16) { top: 90%; left: 70%; animation-delay: 2.6s; width: 7px; height: 7px; animation-duration: 4.6s; }
.games-hero .particulas-servidores span:nth-child(17) { top: 5%; left: 80%; animation-delay: 3.4s; width: 5px; height: 5px; animation-duration: 3.5s; }
.games-hero .particulas-servidores span:nth-child(18) { top: 30%; left: 15%; animation-delay: 4.2s; width: 6px; height: 6px; animation-duration: 4.2s; }
.games-hero .particulas-servidores span:nth-child(19) { top: 48%; left: 70%; animation-delay: 0.6s; width: 5px; height: 5px; animation-duration: 3.9s; }
.games-hero .particulas-servidores span:nth-child(20) { top: 62%; left: 45%; animation-delay: 1.4s; width: 7px; height: 7px; animation-duration: 4.3s; }
.games-hero .particulas-servidores span:nth-child(21) { top: 78%; left: 85%; animation-delay: 2.2s; width: 4px; height: 4px; animation-duration: 3.6s; }
.games-hero .particulas-servidores span:nth-child(22) { top: 18%; left: 35%; animation-delay: 3s; width: 6px; height: 6px; animation-duration: 4.5s; }
.games-hero .particulas-servidores span:nth-child(23) { top: 52%; left: 55%; animation-delay: 3.8s; width: 8px; height: 8px; animation-duration: 3.8s; }
.games-hero .particulas-servidores span:nth-child(24) { top: 82%; left: 20%; animation-delay: 4.6s; width: 5px; height: 5px; animation-duration: 4.1s; }

@keyframes particulaMovimientoGames {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.3);
    }
    15% {
        opacity: 0.7;
        transform: translate(-8px, -5px) scale(0.8);
    }
    30% {
        opacity: 1;
        transform: translate(5px, -12px) scale(1.2);
        background: #c084fc;
        box-shadow: 0 0 25px rgba(192, 132, 252, 1);
    }
    45% {
        opacity: 0.8;
        transform: translate(12px, -5px) scale(1);
    }
    60% {
        opacity: 0.5;
        transform: translate(5px, 3px) scale(0.7);
    }
    75% {
        opacity: 0.2;
        transform: translate(-5px, 8px) scale(0.4);
    }
    100% {
        opacity: 0;
        transform: translate(-12px, 15px) scale(0.2);
    }
}

/* Asegurar que el contenido del hero esté por encima de las partículas */
.games-hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================================
   10. GAME FEATURES - MOVIMIENTO DE FLOTACIÓN
   ============================================================ */
.game-feature {
    animation: flotarFeature 3.5s ease-in-out infinite;
}

@keyframes flotarFeature {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Retrasos diferentes para cada feature */
.game-feature:nth-child(1) { animation-delay: 0s; }
.game-feature:nth-child(2) { animation-delay: 0.3s; }
.game-feature:nth-child(3) { animation-delay: 0.6s; }
.game-feature:nth-child(4) { animation-delay: 0.9s; }

/* ============================================================
   11. BOTONES DE JUEGOS - MOVIMIENTO SUTIL
   ============================================================ */
.btn-game-card {
    animation: botonJuegoMovimiento 3s ease-in-out infinite;
}

@keyframes botonJuegoMovimiento {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* ============================================================
   12. VPS.PHP - HERO CON PARTÍCULAS
   ============================================================ */

/* Fondo de partículas flotantes para vps-hero */
.vps-hero {
    position: relative;
    overflow: hidden;
}

.vps-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(156, 108, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 45% 65%, rgba(180, 130, 255, 0.16) 1px, transparent 1px),
        radial-gradient(circle at 70% 40%, rgba(156, 108, 255, 0.14) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(200, 150, 255, 0.12) 1px, transparent 1px),
        repeating-linear-gradient(45deg, rgba(156, 108, 255, 0.1) 0px, rgba(156, 108, 255, 0.1) 1px, transparent 1px, transparent 10px);
    background-size: 45px 45px, 55px 55px, 40px 40px, 50px 50px, 35px 35px;
    background-repeat: repeat;
    animation: particulasFlotarVPS 20s linear infinite;
    opacity: 0.5;
}

@keyframes particulasFlotarVPS {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 250px 250px, -180px 180px, 200px -150px, -220px -220px, 120px 120px;
    }
}

/* Partículas que aparecen, desaparecen y se mueven en vps-hero */
.vps-hero .particulas-servidores {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.vps-hero .particulas-servidores span {
    position: absolute;
    background: #9c6cff;
    border-radius: 50%;
    opacity: 0;
    animation: particulaMovimientoVPS 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(156, 108, 255, 0.9);
}

/* Partículas individuales - 24 partículas */
.vps-hero .particulas-servidores span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; width: 6px; height: 6px; animation-duration: 3.5s; }
.vps-hero .particulas-servidores span:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.4s; width: 8px; height: 8px; animation-duration: 4.2s; }
.vps-hero .particulas-servidores span:nth-child(3) { top: 45%; left: 20%; animation-delay: 0.8s; width: 5px; height: 5px; animation-duration: 3.8s; }
.vps-hero .particulas-servidores span:nth-child(4) { top: 60%; left: 75%; animation-delay: 1.2s; width: 7px; height: 7px; animation-duration: 4.5s; }
.vps-hero .particulas-servidores span:nth-child(5) { top: 75%; left: 40%; animation-delay: 1.6s; width: 9px; height: 9px; animation-duration: 3.2s; }
.vps-hero .particulas-servidores span:nth-child(6) { top: 85%; left: 55%; animation-delay: 2s; width: 6px; height: 6px; animation-duration: 4s; }
.vps-hero .particulas-servidores span:nth-child(7) { top: 35%; left: 50%; animation-delay: 2.4s; width: 7px; height: 7px; animation-duration: 3.6s; }
.vps-hero .particulas-servidores span:nth-child(8) { top: 55%; left: 90%; animation-delay: 2.8s; width: 5px; height: 5px; animation-duration: 4.3s; }
.vps-hero .particulas-servidores span:nth-child(9) { top: 70%; left: 15%; animation-delay: 3.2s; width: 8px; height: 8px; animation-duration: 3.9s; }
.vps-hero .particulas-servidores span:nth-child(10) { top: 20%; left: 60%; animation-delay: 3.6s; width: 6px; height: 6px; animation-duration: 4.1s; }
.vps-hero .particulas-servidores span:nth-child(11) { top: 50%; left: 5%; animation-delay: 4s; width: 7px; height: 7px; animation-duration: 3.4s; }
.vps-hero .particulas-servidores span:nth-child(12) { top: 80%; left: 95%; animation-delay: 4.4s; width: 5px; height: 5px; animation-duration: 4.7s; }
.vps-hero .particulas-servidores span:nth-child(13) { top: 10%; left: 45%; animation-delay: 0.2s; width: 4px; height: 4px; animation-duration: 3.3s; }
.vps-hero .particulas-servidores span:nth-child(14) { top: 40%; left: 95%; animation-delay: 1s; width: 6px; height: 6px; animation-duration: 4.4s; }
.vps-hero .particulas-servidores span:nth-child(15) { top: 65%; left: 30%; animation-delay: 1.8s; width: 5px; height: 5px; animation-duration: 3.7s; }
.vps-hero .particulas-servidores span:nth-child(16) { top: 90%; left: 70%; animation-delay: 2.6s; width: 7px; height: 7px; animation-duration: 4.6s; }
.vps-hero .particulas-servidores span:nth-child(17) { top: 5%; left: 80%; animation-delay: 3.4s; width: 5px; height: 5px; animation-duration: 3.5s; }
.vps-hero .particulas-servidores span:nth-child(18) { top: 30%; left: 15%; animation-delay: 4.2s; width: 6px; height: 6px; animation-duration: 4.2s; }
.vps-hero .particulas-servidores span:nth-child(19) { top: 48%; left: 70%; animation-delay: 0.6s; width: 5px; height: 5px; animation-duration: 3.9s; }
.vps-hero .particulas-servidores span:nth-child(20) { top: 62%; left: 45%; animation-delay: 1.4s; width: 7px; height: 7px; animation-duration: 4.3s; }
.vps-hero .particulas-servidores span:nth-child(21) { top: 78%; left: 85%; animation-delay: 2.2s; width: 4px; height: 4px; animation-duration: 3.6s; }
.vps-hero .particulas-servidores span:nth-child(22) { top: 18%; left: 35%; animation-delay: 3s; width: 6px; height: 6px; animation-duration: 4.5s; }
.vps-hero .particulas-servidores span:nth-child(23) { top: 52%; left: 55%; animation-delay: 3.8s; width: 8px; height: 8px; animation-duration: 3.8s; }
.vps-hero .particulas-servidores span:nth-child(24) { top: 82%; left: 20%; animation-delay: 4.6s; width: 5px; height: 5px; animation-duration: 4.1s; }

@keyframes particulaMovimientoVPS {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.3);
    }
    15% {
        opacity: 0.7;
        transform: translate(-8px, -5px) scale(0.8);
    }
    30% {
        opacity: 1;
        transform: translate(5px, -12px) scale(1.2);
        background: #c084fc;
        box-shadow: 0 0 25px rgba(192, 132, 252, 1);
    }
    45% {
        opacity: 0.8;
        transform: translate(12px, -5px) scale(1);
    }
    60% {
        opacity: 0.5;
        transform: translate(5px, 3px) scale(0.7);
    }
    75% {
        opacity: 0.2;
        transform: translate(-5px, 8px) scale(0.4);
    }
    100% {
        opacity: 0;
        transform: translate(-12px, 15px) scale(0.2);
    }
}

/* Asegurar que el contenido del hero esté por encima de las partículas */
.vps-hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================================
   13. VPS FEATURE BOXES - MOVIMIENTO DE FLOTACIÓN
   ============================================================ */
.vps-feat-animate {
    animation: flotarVPSFeature 3.5s ease-in-out infinite;
}

@keyframes flotarVPSFeature {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Retrasos diferentes para cada feature */
.vps-feat-animate:nth-child(1) { animation-delay: 0s; }
.vps-feat-animate:nth-child(2) { animation-delay: 0.3s; }
.vps-feat-animate:nth-child(3) { animation-delay: 0.6s; }
.vps-feat-animate:nth-child(4) { animation-delay: 0.9s; }
.vps-feat-animate:nth-child(5) { animation-delay: 1.2s; }

/* ============================================================
   14. BOTONES DE VPS - MOVIMIENTO SUTIL
   ============================================================ */
.btn-pricing {
    animation: botonVPSMovimiento 3s ease-in-out infinite;
}

@keyframes botonVPSMovimiento {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* ============================================================
   15. CONTACTO.PHP - HERO CON PARTÍCULAS
   ============================================================ */

/* Fondo de partículas flotantes para contact-hero */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(156, 108, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 45% 65%, rgba(180, 130, 255, 0.16) 1px, transparent 1px),
        radial-gradient(circle at 70% 40%, rgba(156, 108, 255, 0.14) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(200, 150, 255, 0.12) 1px, transparent 1px),
        repeating-linear-gradient(45deg, rgba(156, 108, 255, 0.1) 0px, rgba(156, 108, 255, 0.1) 1px, transparent 1px, transparent 10px);
    background-size: 45px 45px, 55px 55px, 40px 40px, 50px 50px, 35px 35px;
    background-repeat: repeat;
    animation: particulasFlotarContacto 20s linear infinite;
    opacity: 0.5;
}

@keyframes particulasFlotarContacto {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 250px 250px, -180px 180px, 200px -150px, -220px -220px, 120px 120px;
    }
}

/* Partículas que aparecen, desaparecen y se mueven en contact-hero */
.contact-hero .particulas-servidores {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-hero .particulas-servidores span {
    position: absolute;
    background: #9c6cff;
    border-radius: 50%;
    opacity: 0;
    animation: particulaMovimientoContacto 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(156, 108, 255, 0.9);
}

/* Partículas individuales - 24 partículas */
.contact-hero .particulas-servidores span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; width: 6px; height: 6px; animation-duration: 3.5s; }
.contact-hero .particulas-servidores span:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.4s; width: 8px; height: 8px; animation-duration: 4.2s; }
.contact-hero .particulas-servidores span:nth-child(3) { top: 45%; left: 20%; animation-delay: 0.8s; width: 5px; height: 5px; animation-duration: 3.8s; }
.contact-hero .particulas-servidores span:nth-child(4) { top: 60%; left: 75%; animation-delay: 1.2s; width: 7px; height: 7px; animation-duration: 4.5s; }
.contact-hero .particulas-servidores span:nth-child(5) { top: 75%; left: 40%; animation-delay: 1.6s; width: 9px; height: 9px; animation-duration: 3.2s; }
.contact-hero .particulas-servidores span:nth-child(6) { top: 85%; left: 55%; animation-delay: 2s; width: 6px; height: 6px; animation-duration: 4s; }
.contact-hero .particulas-servidores span:nth-child(7) { top: 35%; left: 50%; animation-delay: 2.4s; width: 7px; height: 7px; animation-duration: 3.6s; }
.contact-hero .particulas-servidores span:nth-child(8) { top: 55%; left: 90%; animation-delay: 2.8s; width: 5px; height: 5px; animation-duration: 4.3s; }
.contact-hero .particulas-servidores span:nth-child(9) { top: 70%; left: 15%; animation-delay: 3.2s; width: 8px; height: 8px; animation-duration: 3.9s; }
.contact-hero .particulas-servidores span:nth-child(10) { top: 20%; left: 60%; animation-delay: 3.6s; width: 6px; height: 6px; animation-duration: 4.1s; }
.contact-hero .particulas-servidores span:nth-child(11) { top: 50%; left: 5%; animation-delay: 4s; width: 7px; height: 7px; animation-duration: 3.4s; }
.contact-hero .particulas-servidores span:nth-child(12) { top: 80%; left: 95%; animation-delay: 4.4s; width: 5px; height: 5px; animation-duration: 4.7s; }
.contact-hero .particulas-servidores span:nth-child(13) { top: 10%; left: 45%; animation-delay: 0.2s; width: 4px; height: 4px; animation-duration: 3.3s; }
.contact-hero .particulas-servidores span:nth-child(14) { top: 40%; left: 95%; animation-delay: 1s; width: 6px; height: 6px; animation-duration: 4.4s; }
.contact-hero .particulas-servidores span:nth-child(15) { top: 65%; left: 30%; animation-delay: 1.8s; width: 5px; height: 5px; animation-duration: 3.7s; }
.contact-hero .particulas-servidores span:nth-child(16) { top: 90%; left: 70%; animation-delay: 2.6s; width: 7px; height: 7px; animation-duration: 4.6s; }
.contact-hero .particulas-servidores span:nth-child(17) { top: 5%; left: 80%; animation-delay: 3.4s; width: 5px; height: 5px; animation-duration: 3.5s; }
.contact-hero .particulas-servidores span:nth-child(18) { top: 30%; left: 15%; animation-delay: 4.2s; width: 6px; height: 6px; animation-duration: 4.2s; }
.contact-hero .particulas-servidores span:nth-child(19) { top: 48%; left: 70%; animation-delay: 0.6s; width: 5px; height: 5px; animation-duration: 3.9s; }
.contact-hero .particulas-servidores span:nth-child(20) { top: 62%; left: 45%; animation-delay: 1.4s; width: 7px; height: 7px; animation-duration: 4.3s; }
.contact-hero .particulas-servidores span:nth-child(21) { top: 78%; left: 85%; animation-delay: 2.2s; width: 4px; height: 4px; animation-duration: 3.6s; }
.contact-hero .particulas-servidores span:nth-child(22) { top: 18%; left: 35%; animation-delay: 3s; width: 6px; height: 6px; animation-duration: 4.5s; }
.contact-hero .particulas-servidores span:nth-child(23) { top: 52%; left: 55%; animation-delay: 3.8s; width: 8px; height: 8px; animation-duration: 3.8s; }
.contact-hero .particulas-servidores span:nth-child(24) { top: 82%; left: 20%; animation-delay: 4.6s; width: 5px; height: 5px; animation-duration: 4.1s; }

@keyframes particulaMovimientoContacto {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.3);
    }
    15% {
        opacity: 0.7;
        transform: translate(-8px, -5px) scale(0.8);
    }
    30% {
        opacity: 1;
        transform: translate(5px, -12px) scale(1.2);
        background: #c084fc;
        box-shadow: 0 0 25px rgba(192, 132, 252, 1);
    }
    45% {
        opacity: 0.8;
        transform: translate(12px, -5px) scale(1);
    }
    60% {
        opacity: 0.5;
        transform: translate(5px, 3px) scale(0.7);
    }
    75% {
        opacity: 0.2;
        transform: translate(-5px, 8px) scale(0.4);
    }
    100% {
        opacity: 0;
        transform: translate(-12px, 15px) scale(0.2);
    }
}

/* Asegurar que el contenido del hero esté por encima de las partículas */
.contact-hero .container {
    position: relative;
    z-index: 2;
}