/* Fondo holográfico con partículas cuánticas para ExpoTIC */
.circuit-background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -10 !important;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%) !important;
    overflow: hidden !important;
    display: block !important;
    backdrop-filter: blur(0.5px);
}

/* Partículas cuánticas que se mueven en ondas electromagnéticas */
.quantum-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00aaff;
    border-radius: 50%;
    box-shadow: 0 0 4px #00aaff, 0 0 8px rgba(0, 170, 255, 0.4);
    animation: quantumWave 8s ease-in-out infinite;
    opacity: 0.6;
}

.quantum-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.quantum-particle:nth-child(2) {
    top: 40%;
    left: 30%;
    animation-delay: 1s;
}

.quantum-particle:nth-child(3) {
    top: 60%;
    left: 50%;
    animation-delay: 2s;
}

.quantum-particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
}

.quantum-particle:nth-child(5) {
    top: 30%;
    left: 60%;
    animation-delay: 4s;
}

.quantum-particle:nth-child(6) {
    top: 50%;
    left: 20%;
    animation-delay: 5s;
}

@keyframes quantumWave {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateX(50px) translateY(-30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateX(100px) translateY(20px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateX(150px) translateY(-40px) scale(1.1);
        opacity: 0.9;
    }
}

/* Efecto de pulso de energía que recorre los circuitos */
.energy-pulse {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ffff, 0 0 40px rgba(0, 255, 255, 0.8);
    animation: energyFlow 4s linear infinite;
}

.energy-pulse:nth-child(1) {
    top: 20%;
    left: 0%;
    animation-delay: 0s;
}

.energy-pulse:nth-child(2) {
    top: 40%;
    left: 0%;
    animation-delay: 1s;
}

.energy-pulse:nth-child(3) {
    top: 60%;
    left: 0%;
    animation-delay: 2s;
}

.energy-pulse:nth-child(4) {
    top: 80%;
    left: 0%;
    animation-delay: 3s;
}

@keyframes energyFlow {
    0% {
        left: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Circuitos base - Red de circuitos como en la imagen */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* Líneas horizontales simples y elegantes */
.circuit-horizontal {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00aaff, transparent);
    height: 1px;
    animation: simpleGlow 3s ease-in-out infinite;
    box-shadow: 0 0 4px #00aaff;
    border-radius: 1px;
}

/* Líneas verticales simples y elegantes */
.circuit-vertical {
    position: absolute;
    background: linear-gradient(180deg, transparent, #00aaff, transparent);
    width: 1px;
    animation: simpleGlow 3s ease-in-out infinite;
    box-shadow: 0 0 4px #00aaff;
    border-radius: 1px;
}

/* Líneas diagonales simples y elegantes */
.circuit-diagonal {
    position: absolute;
    background: linear-gradient(45deg, transparent, #00aaff, transparent);
    height: 1px;
    animation: simpleGlow 4s ease-in-out infinite;
    box-shadow: 0 0 4px #00aaff;
    border-radius: 1px;
    transform-origin: left center;
}

/* Líneas horizontales */
.circuit-horizontal:nth-child(1) {
    top: 15%;
    left: 10%;
    width: 80%;
    animation-delay: 0s;
}

.circuit-horizontal:nth-child(2) {
    top: 25%;
    left: 5%;
    width: 90%;
    animation-delay: 0.5s;
}

.circuit-horizontal:nth-child(3) {
    top: 35%;
    left: 15%;
    width: 70%;
    animation-delay: 1s;
}

.circuit-horizontal:nth-child(4) {
    top: 45%;
    left: 8%;
    width: 85%;
    animation-delay: 1.5s;
}

.circuit-horizontal:nth-child(5) {
    top: 55%;
    left: 12%;
    width: 75%;
    animation-delay: 2s;
}

.circuit-horizontal:nth-child(6) {
    top: 65%;
    left: 6%;
    width: 88%;
    animation-delay: 2.5s;
}

.circuit-horizontal:nth-child(7) {
    top: 75%;
    left: 18%;
    width: 65%;
    animation-delay: 3s;
}

.circuit-horizontal:nth-child(8) {
    top: 85%;
    left: 10%;
    width: 80%;
    animation-delay: 3.5s;
}

/* Líneas verticales */
.circuit-vertical:nth-child(9) {
    top: 10%;
    left: 20%;
    height: 80%;
    animation-delay: 0.2s;
}

.circuit-vertical:nth-child(10) {
    top: 5%;
    left: 40%;
    height: 90%;
    animation-delay: 0.7s;
}

.circuit-vertical:nth-child(11) {
    top: 15%;
    left: 60%;
    height: 70%;
    animation-delay: 1.2s;
}

.circuit-vertical:nth-child(12) {
    top: 8%;
    left: 80%;
    height: 85%;
    animation-delay: 1.7s;
}

.circuit-vertical:nth-child(13) {
    top: 12%;
    left: 30%;
    height: 75%;
    animation-delay: 2.2s;
}

.circuit-vertical:nth-child(14) {
    top: 6%;
    left: 70%;
    height: 88%;
    animation-delay: 2.7s;
}

/* Líneas diagonales */
.circuit-diagonal:nth-child(15) {
    top: 20%;
    left: 25%;
    width: 200px;
    transform: rotate(45deg);
    animation-delay: 0.3s;
}

.circuit-diagonal:nth-child(16) {
    top: 40%;
    left: 50%;
    width: 150px;
    transform: rotate(-45deg);
    animation-delay: 0.8s;
}

.circuit-diagonal:nth-child(17) {
    top: 60%;
    left: 15%;
    width: 180px;
    transform: rotate(30deg);
    animation-delay: 1.3s;
}

.circuit-diagonal:nth-child(18) {
    top: 80%;
    left: 45%;
    width: 160px;
    transform: rotate(-30deg);
    animation-delay: 1.8s;
}

.circuit-diagonal:nth-child(19) {
    top: 30%;
    left: 75%;
    width: 120px;
    transform: rotate(60deg);
    animation-delay: 2.3s;
}

.circuit-diagonal:nth-child(20) {
    top: 70%;
    left: 65%;
    width: 140px;
    transform: rotate(-60deg);
    animation-delay: 2.8s;
}

/* Nodos de circuitos - Puntos de conexión simples */
.circuit-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00aaff;
    border-radius: 50%;
    box-shadow: 0 0 4px #00aaff, 0 0 8px rgba(0, 170, 255, 0.4);
    animation: simplePulse 3s ease-in-out infinite;
    opacity: 0.5;
}

/* Nodos en intersecciones de líneas */
.circuit-node:nth-child(21) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.circuit-node:nth-child(22) {
    top: 25%;
    left: 40%;
    animation-delay: 0.3s;
}

.circuit-node:nth-child(23) {
    top: 35%;
    left: 60%;
    animation-delay: 0.6s;
}

.circuit-node:nth-child(24) {
    top: 45%;
    left: 80%;
    animation-delay: 0.9s;
}

.circuit-node:nth-child(25) {
    top: 55%;
    left: 30%;
    animation-delay: 1.2s;
}

.circuit-node:nth-child(26) {
    top: 65%;
    left: 50%;
    animation-delay: 1.5s;
}

.circuit-node:nth-child(27) {
    top: 75%;
    left: 70%;
    animation-delay: 1.8s;
}

.circuit-node:nth-child(28) {
    top: 85%;
    left: 20%;
    animation-delay: 2.1s;
}

.circuit-node:nth-child(29) {
    top: 20%;
    left: 50%;
    animation-delay: 2.4s;
}

.circuit-node:nth-child(30) {
    top: 40%;
    left: 30%;
    animation-delay: 2.7s;
}

.circuit-node:nth-child(31) {
    top: 60%;
    left: 10%;
    animation-delay: 3s;
}

.circuit-node:nth-child(32) {
    top: 80%;
    left: 60%;
    animation-delay: 3.3s;
}

/* Destellos eléctricos */
.electric-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ffff, 0 0 30px rgba(0, 255, 255, 0.8), 0 0 45px rgba(0, 255, 255, 0.4);
    animation: electricFlicker 0.3s ease-in-out infinite;
    opacity: 1;
}

.electric-spark:nth-child(9) {
    top: 25%;
    left: 18%;
    animation-delay: 0s;
}

.electric-spark:nth-child(10) {
    top: 45%;
    right: 25%;
    animation-delay: 0.2s;
}

.electric-spark:nth-child(11) {
    top: 65%;
    left: 35%;
    animation-delay: 0.4s;
}

.electric-spark:nth-child(12) {
    top: 85%;
    right: 40%;
    animation-delay: 0.1s;
}

.electric-spark:nth-child(13) {
    top: 15%;
    left: 35%;
    animation-delay: 0.3s;
}

.electric-spark:nth-child(14) {
    top: 35%;
    right: 45%;
    animation-delay: 0.5s;
}

.electric-spark:nth-child(15) {
    top: 55%;
    left: 65%;
    animation-delay: 0.7s;
}

.electric-spark:nth-child(16) {
    top: 75%;
    right: 55%;
    animation-delay: 0.9s;
}

/* Líneas de conexión verticales */
.circuit-vertical {
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg, transparent, #4154f1, #00ffff, #4154f1, transparent);
    animation: verticalFlow 4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(65, 84, 241, 0.6);
    border-radius: 1px;
}

.circuit-vertical:nth-child(13) {
    top: 0;
    left: 20%;
    height: 200px;
    animation-delay: 1s;
}

.circuit-vertical:nth-child(14) {
    top: 0;
    right: 30%;
    height: 300px;
    animation-delay: 3s;
}

.circuit-vertical:nth-child(15) {
    bottom: 0;
    left: 60%;
    height: 250px;
    animation-delay: 5s;
}

/* Efectos de partículas */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #4154f1;
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
}

.particle:nth-child(16) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(17) {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.particle:nth-child(18) {
    top: 50%;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(19) {
    top: 70%;
    right: 60%;
    animation-delay: 6s;
}

.particle:nth-child(20) {
    top: 90%;
    left: 40%;
    animation-delay: 8s;
}

/* Animaciones */
@keyframes circuitFlow {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px));
        opacity: 0;
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes electricFlicker {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes verticalFlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

@keyframes diagonalFlow {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes circuitGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 8px #00aaff, 0 0 16px rgba(0, 170, 255, 0.6);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 12px #00aaff, 0 0 24px rgba(0, 170, 255, 0.8), 0 0 36px rgba(0, 255, 255, 0.3);
    }
}

@keyframes holographicGlow {
    0%, 100% {
        opacity: 0.4;
        filter: blur(0.5px) hue-rotate(0deg);
        box-shadow:
            0 0 8px #00aaff,
            0 0 16px rgba(0, 170, 255, 0.4),
            0 0 24px rgba(0, 255, 255, 0.2);
    }
    25% {
        opacity: 0.8;
        filter: blur(0.3px) hue-rotate(90deg);
        box-shadow:
            0 0 12px #00ffff,
            0 0 24px rgba(0, 255, 255, 0.6),
            0 0 36px rgba(0, 170, 255, 0.3);
    }
    50% {
        opacity: 1;
        filter: blur(0.1px) hue-rotate(180deg);
        box-shadow:
            0 0 16px #00aaff,
            0 0 32px rgba(0, 170, 255, 0.8),
            0 0 48px rgba(0, 255, 255, 0.4);
    }
    75% {
        opacity: 0.7;
        filter: blur(0.4px) hue-rotate(270deg);
        box-shadow:
            0 0 10px #00ffff,
            0 0 20px rgba(0, 255, 255, 0.5),
            0 0 30px rgba(0, 170, 255, 0.3);
    }
}

@keyframes simplePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 8px #00aaff, 0 0 16px rgba(0, 170, 255, 0.4);
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 12px #00aaff, 0 0 24px rgba(0, 170, 255, 0.8);
    }
}

@keyframes simpleGlow {
    0%, 100% {
        opacity: 0.4;
        box-shadow: 0 0 4px #00aaff;
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 8px #00aaff, 0 0 16px rgba(0, 170, 255, 0.4);
    }
}

/* Efectos globales simples */
.circuit-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 170, 255, 0.05) 0%, transparent 70%);
    animation: simpleGlow 6s ease-in-out infinite;
}

/* Efecto de distorsión simple */
.holographic-distortion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 170, 255, 0.03) 50%, transparent 60%);
    animation: simpleGlow 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Animaciones complejas removidas - diseño simplificado */

/* Responsive */
@media (max-width: 768px) {
    .circuit-line {
        height: 1px;
    }

    .circuit-node {
        width: 6px;
        height: 6px;
    }

    .electric-spark {
        width: 3px;
        height: 3px;
    }
}

/* Efecto de overlay sutil */
.circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Asegurar que el fondo sea visible en todas las páginas */
body {
    background: transparent !important;
}

/* Sobrescribir estilos del template principal */
body.index-page {
    background: transparent !important;
}

/* Asegurar que las secciones no tengan fondo blanco */
section {
    background: transparent !important;
}

.hero {
    background: transparent !important;
}

/* Ajustar el contenido principal para que sea visible sobre el fondo */
.main {
    position: relative;
    z-index: 10;
    background: transparent !important;
    backdrop-filter: none;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

/* Mejorar legibilidad del texto de forma sutil */
p, h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
    color: #ffffff !important;
}

/* Resaltar el logo de forma elegante - SIN glassmorphism */
.logo-black, img[alt*="ExpoTIC"] {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6))
            brightness(1.1)
            contrast(1.05);
    /* Sin efectos de glassmorphism para la imagen */
}

/* Efecto glassmorphism para contenedores */
.glassmorphism-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 10px;
}

/* Efecto glassmorphism para cards */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin: 8px;
}

/* Efecto glassmorphism para secciones */
.glassmorphism-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 30px;
    margin: 15px;
}

/* Mejorar botones de forma sutil */
.btn, .btn-get-started, .btn-watch-video {
    background: rgba(233, 30, 99, 0.9) !important;
    border: 1px solid rgba(233, 30, 99, 1) !important;
    color: #ffffff !important;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
}

.btn:hover, .btn-get-started:hover, .btn-watch-video:hover {
    background: rgba(233, 30, 99, 1) !important;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.6);
    transform: translateY(-1px);
}

/* Mejorar navegación de forma sutil */
.navmenu ul li a {
    color: #ffffff !important;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

.navmenu ul li a:hover {
    color: #00aaff !important;
    text-shadow: 0 0 5px rgba(0, 170, 255, 0.6);
}

/* Aplicar glassmorphism a elementos específicos */
.hero {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 40px;
    margin: 20px;
}

/* Aplicar glassmorphism a cards existentes */
.card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Aplicar glassmorphism a contenedores de información */
.info-container, .stats-container, .feature-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 10px;
}

/* Aplicar glassmorphism a formularios */
.form-container, .login-form, .contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 25px;
    margin: 15px;
}

/* Clases específicas para aplicar glassmorphism manualmente */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    margin: 1rem 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 3rem 0;
}

/* Estilos para títulos de sección */
.section-title h2 {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.section-title p {
    color: #e2e8f0 !important;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Estilos para iconos en las cards */
.glass-card i {
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.glass-card h3 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.glass-card p {
    color: #e2e8f0 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

/* Estilos para la sección de estadísticas */
.stats-item {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.stats-item i {
    font-size: 2.5rem;
    margin-right: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.stats-item span {
    color: #e91e63 !important;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.stats-item p {
    color: #e2e8f0 !important;
    margin: 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* Estilos para servicios */
.service-item {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e91e63 !important;
    text-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
}

.service-item h3 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.service-item p {
    color: #e2e8f0 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-item .read-more {
    color: #e91e63 !important;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
}

.service-item .read-more:hover {
    color: #c2185b !important;
    text-shadow: 0 0 15px rgba(194, 24, 91, 0.6);
}

/* Estilos para la sección de pricing/sponsors */
.pricing-tem {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-tem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-tem .featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e91e63 !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.pricing-tem h3 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.pricing-tem .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.pricing-tem ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-tem ul li {
    color: #e2e8f0 !important;
    padding: 0.5rem 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-tem ul li:last-child {
    border-bottom: none;
}

.pricing-tem .btn-buy {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%) !important;
    color: white !important;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.pricing-tem .btn-buy:hover {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    color: white !important;
}

/* Estilos para sponsor-info y benefit-item */
.sponsor-info {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    margin: 1rem 0;
}

.sponsor-info h4 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.sponsor-info .lead {
    color: #e2e8f0 !important;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-item i {
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.benefit-item h5 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.benefit-item p {
    color: #e2e8f0 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

/* Efectos de sliding glow para todas las secciones */
.glass-card::before,
.stats-item::before,
.service-item::before,
.pricing-tem::before,
.benefit-item::before,
.portfolio-content::before,
.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.glass-card:hover::before,
.stats-item:hover::before,
.service-item:hover::before,
.pricing-tem:hover::before,
.benefit-item:hover::before,
.portfolio-content:hover::before,
.info-item:hover::before {
    left: 100%;
}

/* Asegurar que el contenido esté por encima del efecto */
.glass-card > *,
.stats-item > *,
.service-item > *,
.pricing-tem > *,
.benefit-item > *,
.portfolio-content > *,
.info-item > * {
    position: relative;
    z-index: 2;
}

/* Estilos adicionales para mejorar la legibilidad */
.section {
    background: transparent !important;
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02) !important;
}

/* Mejorar el contraste de los iconos */
.glass-card i[style*="color: #4154f1"],
.glass-card i[style*="color: #012970"] {
    color: #e91e63 !important;
    text-shadow: 0 0 15px rgba(233, 30, 99, 0.5) !important;
}

/* Estilos para la sección de Portfolio/Galería */
.portfolio-content {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.portfolio-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-content:hover img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.portfolio-info h4 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.portfolio-info p {
    color: #e2e8f0 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-info .preview-link,
.portfolio-info .details-link {
    color: #e91e63 !important;
    text-decoration: none;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
}

.portfolio-info .preview-link:hover,
.portfolio-info .details-link:hover {
    color: #c2185b !important;
    text-shadow: 0 0 15px rgba(194, 24, 91, 0.6);
    transform: scale(1.1);
}

/* Filtros del portfolio */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.portfolio-filters li {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    color: #e2e8f0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
    background: rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.4);
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
    transform: translateY(-2px);
}

/* Estilos para la sección de Aliados/Clientes */
.clients {
    background: rgba(255, 255, 255, 0.02) !important;
    padding: 4rem 0;
}

.clients .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.clients .swiper-slide:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.clients .swiper-slide img {
    max-height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.1);
}

.clients .swiper-slide:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Mejorar el espaciado y contenedor de clientes */
.clients .swiper-wrapper {
    align-items: center;
    padding: 1rem 0;
}

.clients .swiper {
    padding: 0 2rem;
    overflow: visible;
}

/* Efecto de carrusel continuo */
.clients .swiper-slide {
    flex-shrink: 0;
    width: auto !important;
}

/* Animación suave para el carrusel */
.clients .swiper-wrapper {
    transition-timing-function: linear;
}

/* Efecto de desvanecimiento en los bordes */
.clients::before,
.clients::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.clients::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.clients::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

/* Asegurar que los logos se vean bien */
.clients .swiper-slide img.logo-black {
    filter: brightness(1.3) contrast(1.2) !important;
    opacity: 0.95 !important;
}

.clients .swiper-slide img:not(.logo-black) {
    filter: brightness(1.1) contrast(1.1) !important;
    opacity: 0.9 !important;
}

/* Mejorar el efecto de carrusel continuo */
.clients .swiper-slide {
    width: 200px !important;
    flex-shrink: 0;
}

/* Animación CSS para carrusel infinito */
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Efecto de pausa en hover */
.clients .swiper:hover .swiper-wrapper {
    animation-play-state: paused;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .clients .swiper-slide {
        width: 150px !important;
        padding: 1.5rem 1rem;
        min-height: 100px;
    }

    .clients .swiper-slide img {
        max-height: 60px;
    }

    .clients::before,
    .clients::after {
        width: 50px;
    }
}

/* Paginación del swiper */
.clients .swiper-pagination {
    margin-top: 2rem;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background: #e91e63;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

/* Estilos para la sección de Contacto */
.contact {
    background: rgba(255, 255, 255, 0.02) !important;
    padding: 4rem 0;
}

.info-item {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.info-item i {
    font-size: 2.5rem;
    color: #e91e63 !important;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
}

.info-item h3 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.info-item p {
    color: #e2e8f0 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    line-height: 1.6;
    margin: 0;
}

/* Estilos para el formulario de contacto */
.php-email-form {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 2rem;
}

.php-email-form .form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px;
    color: #ffffff !important;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.php-email-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.php-email-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #e91e63 !important;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25) !important;
    color: #ffffff !important;
}

.php-email-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.php-email-form button[type="submit"] {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%) !important;
    color: white !important;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.php-email-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Mensajes del formulario */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
    color: #e2e8f0 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.php-email-form .sent-message {
    color: #4ade80 !important;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.php-email-form .error-message {
    color: #f87171 !important;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

/* Efecto glassmorphism para contenedores de información específicos */
.countdown-container, .info-cards, .event-details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 10px;
}

/* Efecto glassmorphism para módulos individuales */
.glass-module {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin: 8px;
}

/* ===== EFECTOS DE LA PÁGINA PRÓXIMAMENTE ===== */

/* Countdown Timer Section */
.countdown-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
}

.countdown-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="countdown-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23countdown-pattern)"/></svg>');
    opacity: 0.4;
}

.countdown-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    opacity: 0.6;
}

.countdown-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.countdown-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.countdown-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.countdown-item::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;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5),
                 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Animación de flotación para el logo */
.hero-logo, .hero-img {
    animation: float 3s ease-in-out infinite;
}

.hero-logo img, .hero-img img {
    filter: drop-shadow(0 10px 30px rgba(65, 84, 241, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover img, .hero-img:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(65, 84, 241, 0.4));
}

/* Hero Logo Responsive - Tamaños específicos */
.hero-logo {
    max-width: 500px !important;
    width: 100% !important;
    height: auto !important;
    filter: drop-shadow(0 10px 30px rgba(65, 84, 241, 0.3)) !important;
    transition: all 0.3s ease !important;
    animation: float 6s ease-in-out infinite !important;
}

/* Contenedor del logo para centrado perfecto */
.hero-img {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.hero-logo:hover {
    transform: scale(1.05) !important;
    filter: drop-shadow(0 15px 40px rgba(65, 84, 241, 0.4)) !important;
}

/* Responsive Logo Sizes */
@media (max-width: 1200px) {
    .hero-logo {
        max-width: 450px !important;
    }
}

@media (max-width: 992px) {
    .hero-logo {
        max-width: 400px !important;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 350px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .hero-img {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        max-width: 280px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .hero-img {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .hero-img {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (max-width: 360px) {
    .hero-logo {
        max-width: 220px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .hero-img {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

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

/* Partículas flotantes mejoradas */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle linear infinite;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Efectos de hover con brillo deslizante */
.info-card,
.countdown-item,
.glass-card,
.glass-module,
.btn,
.btn-get-started,
.btn-watch-video {
    position: relative;
    overflow: hidden;
}

.info-card::before,
.countdown-item::before,
.glass-card::before,
.glass-module::before,
.btn::before,
.btn-get-started::before,
.btn-watch-video::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;
}

.info-card:hover::before,
.countdown-item:hover::before,
.glass-card:hover::before,
.glass-module:hover::before,
.btn:hover::before,
.btn-get-started:hover::before,
.btn-watch-video:hover::before {
    left: 100%;
}

/* Mejoras en sombras de texto */
h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

p {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ===== ESTILOS PARA NAVBAR Y FOOTER ===== */

/* Navbar Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Logo del navbar */
.header .logo img {
    filter: drop-shadow(0 4px 15px rgba(65, 84, 241, 0.3));
    transition: all 0.3s ease;
}

.header .logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(65, 84, 241, 0.4));
}

/* Navegación del navbar */
.navmenu ul li a {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.navmenu ul li a:hover {
    color: #60a5fa !important;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
    transform: translateY(-1px);
}

.navmenu ul li a.active {
    color: #60a5fa !important;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
    position: relative;
}

.navmenu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    z-index: 1;
}

/* Estilos del botón y dropdown movidos a responsive-nav.css para evitar conflictos */

/* Mobile nav toggle */
.mobile-nav-toggle {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    position: relative;
}

.mobile-nav-toggle:hover {
    color: #60a5fa !important;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
    transform: scale(1.1);
}

/* Mobile Navigation Styles */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        display: block !important;
        margin-left: 15px;
    }

    .navmenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(15px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav-active .navmenu {
        opacity: 1;
        visibility: visible;
    }

    .navmenu ul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 2.5rem 2rem;
        margin: 0;
        list-style: none;
        width: 85%;
        max-width: 350px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .navmenu ul li {
        margin: 0;
        padding: 0;
    }

    .navmenu ul li a {
        display: block;
        padding: 18px 25px;
        color: #ffffff !important;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-radius: 12px;
        margin: 8px 0;
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
        overflow: hidden;
        border: 1px solid transparent;
    }

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

    .navmenu ul li a:hover::before {
        left: 100%;
    }

    .navmenu ul li a:hover,
    .navmenu ul li a.active {
        background: rgba(233, 30, 99, 0.2);
        color: #e91e63 !important;
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
        border: 1px solid rgba(233, 30, 99, 0.3);
    }

    .mobile-nav-active .mobile-nav-toggle {
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 10000;
        color: #ffffff !important;
        font-size: 32px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-nav-active .mobile-nav-toggle:hover {
        color: #ff4757 !important;
        transform: scale(1.1);
        background: rgba(255, 71, 87, 0.2);
    }

    /* Prevenir scroll del body cuando el menú está abierto */
    .mobile-nav-active {
        overflow: hidden;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        font-size: 22px;
        margin-left: 10px;
    }

    .navmenu ul {
        padding: 2rem 1.5rem;
        width: 90%;
        max-width: 320px;
    }

    .navmenu ul li a {
        padding: 15px 20px;
        font-size: 15px;
        margin: 6px 0;
    }

    .mobile-nav-active .mobile-nav-toggle {
        top: 20px;
        right: 20px;
        font-size: 28px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navmenu ul {
        padding: 1.5rem 1rem;
        width: 95%;
        max-width: 280px;
    }

    .navmenu ul li a {
        padding: 12px 15px;
        font-size: 14px;
        margin: 5px 0;
    }

    .mobile-nav-active .mobile-nav-toggle {
        top: 15px;
        right: 15px;
        font-size: 24px;
        width: 40px;
        height: 40px;
    }
}

/* Ajustes específicos para el header en móvil */
@media (max-width: 1199px) {
    .header {
        padding: 10px 0;
        height: 60px;
    }

    .header .container-fluid {
        padding: 0 15px;
    }

    .logo img {
        max-height: 35px;
        width: auto;
    }

    .btn-getstarted {
        font-size: 13px;
        padding: 8px 16px;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 55px;
        padding: 8px 0;
    }

    .header .container-fluid {
        padding: 0 10px;
    }

    .logo img {
        max-height: 30px;
    }

    .btn-getstarted {
        font-size: 12px;
        padding: 6px 12px;
        margin-right: 8px;
    }

    .mobile-nav-toggle {
        font-size: 20px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 50px;
        padding: 5px 0;
    }

    .logo img {
        max-height: 25px;
    }

    .btn-getstarted {
        font-size: 11px;
        padding: 5px 10px;
        margin-right: 5px;
    }

    .mobile-nav-toggle {
        font-size: 18px;
        margin-left: 5px;
    }
}

/* Mejoras específicas para móvil - Secciones principales */
@media (max-width: 768px) {
    /* Hero section responsive */
    .hero {
        padding: 80px 0 60px 0;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Countdown responsive */
    .countdown-container {
        padding: 1rem;
        margin: 2rem 0;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    /* Pricing section responsive */
    .pricing-tem {
        margin-bottom: 2rem;
    }

    .pricing-tem.featured-card {
        transform: none;
        margin-top: 0;
    }

    .pricing-tem.featured-card:hover {
        transform: translateY(-5px);
    }

    /* Glass cards responsive */
    .glass-card, .glass-module, .glass-effect {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* About section responsive */
    .stats-highlight {
        padding: 1rem;
        margin: 1rem 0;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

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

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    /* Contact section responsive */
    .info-item {
        margin-bottom: 2rem;
        text-align: center;
    }

    .info-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Form responsive */
    .php-email-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }

    .php-email-form button[type="submit"] {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Hero section extra small */
    .hero {
        padding: 70px 0 50px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    /* Countdown extra small */
    .countdown-item {
        min-width: 50px;
        padding: 0.6rem 0.4rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    /* Glass cards extra small */
    .glass-card, .glass-module, .glass-effect {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    /* Stats extra small */
    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Footer para Página de Próximamente */
.proximamente-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.proximamente-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
    opacity: 0.3;
}

.proximamente-footer .footer-top {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.proximamente-footer .footer-section {
    margin-bottom: 2rem;
}

.proximamente-footer .footer-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

.proximamente-footer .footer-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.proximamente-footer .footer-icon:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.proximamente-footer .footer-icon i {
    font-size: 1.2rem;
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

.proximamente-footer .footer-content h4 {
    color: white;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.proximamente-footer .footer-content p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.proximamente-footer .social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.proximamente-footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.proximamente-footer .social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.proximamente-footer .footer-logo {
    margin-bottom: 1rem;
}

.proximamente-footer .footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.proximamente-footer .footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

.proximamente-footer .footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.proximamente-footer .copyright {
    color: #cbd5e1;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.proximamente-footer .copyright strong {
    color: white;
    font-weight: 600;
}

.proximamente-footer .logo-tmdev {
    transition: all 0.3s ease;
    opacity: 0.7;
}

.proximamente-footer .logo-tmdev:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive para countdown */
@media (max-width: 768px) {
    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }

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

    .countdown-label {
        font-size: 0.8rem;
    }

    /* Footer responsive */
    .proximamente-footer .footer-top {
        padding: 3rem 0 1.5rem;
    }

    .proximamente-footer .footer-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .proximamente-footer .footer-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    .proximamente-footer .social-links {
        justify-content: center;
    }

    .proximamente-footer .footer-bottom {
        text-align: center;
    }

    .proximamente-footer .footer-bottom .col-md-6:last-child {
        text-align: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0.3rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    /* Footer responsive para móviles pequeños */
    .proximamente-footer .footer-top {
        padding: 2rem 0 1rem;
    }

    .proximamente-footer .footer-content h4 {
        font-size: 1rem;
    }

    .proximamente-footer .footer-content p {
        font-size: 0.9rem;
    }

    .proximamente-footer .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .proximamente-footer .footer-logo-img {
        max-height: 50px;
    }

    .proximamente-footer .copyright {
        font-size: 0.8rem;
    }
}

/* Forzar que el fondo sea visible */
html, body {
    background: transparent !important;
    min-height: 100vh !important;
}

/* Asegurar que el fondo animado esté siempre visible */
.circuit-background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -999 !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f1419 100%) !important;
    overflow: hidden !important;
    display: block !important;
    pointer-events: none !important;
}

/* Ajustar secciones específicas */
.hero {
    background: transparent !important;
    backdrop-filter: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    box-shadow: none;
}

/* Ajustar formularios de login */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
