:root {
            --limon: #02ED02;
            --gris: #808080;
            --gris-oscuro: #333333;
            --negro: #000000;
            --blanco: #fbfbfb;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--negro);
            color: var(--blanco);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Efecto Parallax */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }

        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
            z-index: 0;
        }

        .parallax-content {
            position: relative;
            z-index: 1;
        }

        /* Header */
        .navbar {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.95);
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s ease;
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        .nav-link {
            color: var(--blanco) !important;
            margin: 0 10px;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--limon) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--limon);
            transition: width 0.3s ease;
        }

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

        .btn-primary {
            background-color: var(--limon);
            border-color: var(--limon);
            color: var(--negro);
            font-weight: 600;
            border-radius: 30px;
            padding: 8px 20px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--limon);
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(204, 255, 0, 0.5);
        }

        /* Secciones */
        section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        section.active {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            position: relative;
            margin-bottom: 50px;
            color: var(--limon);
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 100px;
            height: 4px;
            background-color: var(--limon);
            transition: width 0.5s ease;
        }

        .section-title:hover::after {
            width: 150px;
        }

        /* Slider */
        .carousel-item {
            height: 80vh;
            min-height: 400px;
            background-size: cover;
            background-position: center;
        }

        .carousel-caption {
            bottom: 30%;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 30px;
            border-radius: 10px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease;
        }

        .carousel-item.active .carousel-caption {
            transform: translateY(0);
            opacity: 1;
        }

        /* Planes */
        .plan-card {
            background: rgba(51, 51, 51, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            height: 100%;
            transform: translateY(0);
        }

        .plan-card:hover {
            border-color: var(--limon);
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .plan-card h3 {
            color: var(--limon);
            font-weight: 700;
        }

        .plan-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--limon);
            margin: 15px 0;
        }

        .plan-card .btn {
            background-color: transparent;
            border: 2px solid var(--limon);
            color: var(--limon);
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .plan-card .btn:hover {
            background-color: var(--limon);
            color: var(--negro);
        }

        /* Beneficios */
        .benefit-card {
            background: rgba(51, 51, 51, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            transform: scale(1);
        }

        .benefit-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--limon);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--limon);
            margin-bottom: 20px;
            transition: transform 0.5s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: rotate(360deg);
        }

        /* Clientes */
        .client-logo {
            max-width: 150px;
            max-height: 80px;
            filter: grayscale(100%);
            transition: all 0.5s ease;
            margin: 0 auto;
            opacity: 0.7;
        }

        .client-logo:hover {
            filter: grayscale(0);
            transform: scale(1.1);
            opacity: 1;
        }

        /* Control Parental */
        .parental-control {
            background: rgba(51, 51, 51, 0.7);
            border-radius: 15px;
            padding: 30px;
            border-left: 5px solid var(--limon);
            transition: all 0.3s ease;
        }

        .parental-control:hover {
            box-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
        }

        .tool-card {
            background: rgba(51, 51, 51, 0.9);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .tool-card i {
            color: var(--limon);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        /* Formulario de contacto */
        #contacto a {transition:0.6s;color: #fbfbfb; text-decoration: none;}
        #contacto a:hover{color: var(--limon);}
        .contact-form {
            background: rgba(51, 51, 51, 0.7);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .contact-form:hover {
            box-shadow: 0 0 25px rgba(204, 255, 0, 0.2);
        }

        .form-control {
            background-color: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--gris);
            color: var(--blanco);
            padding: 12px 15px;
            margin-bottom: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--limon);
            box-shadow: 0 0 0 0.25rem rgba(204, 255, 0, 0.25);
            transform: scale(1.02);
        }

        /* Estilos para el captcha */
        .g-recaptcha {
            margin-bottom: 20px;
            transform: scale(0.95);
            transform-origin: 0 0;
            transition: transform 0.3s ease;
        }

        .g-recaptcha:hover {
            transform: scale(1);
        }

        .captcha-error {
            color: #ff6b6b;
            font-size: 0.9rem;
            margin-top: -15px;
            margin-bottom: 15px;
            display: none;
        }

        /* Footer */
        footer {
            background-color: var(--gris-oscuro);
            padding: 60px 0 20px;
        }

        .footer-title {
            color: var(--limon);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 50px;
            height: 2px;
            background-color: var(--limon);
            transition: width 0.3s ease;
        }

        .footer-title:hover::after {
            width: 100%;
        }

        .footer-contact i {
            width: 25px;
            color: var(--limon);
            margin-right: 10px;
            transition: transform 0.3s ease;
        }

        .footer-contact p:hover i {
            transform: rotate(360deg);
        }

        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: var(--blanco);
            font-size: 1.2rem;
        }

        .social-icon:hover {
            background-color: var(--limon);
            color: var(--negro) !important;
            transform: translateY(-7px) rotate(5deg);
            box-shadow: 0 5px 15px rgba(204, 255, 0, 0.4);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: var(--gris);
        }

        /* Enlaces del Footer - Efectos Mejorados */
        footer a {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            color: #fbfbfb;
            position: relative;
            text-decoration: none;
        }

        footer a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--limon);
            transition: width 0.4s ease;
        }

        footer a:hover {
            color: var(--limon) !important;
            transform: translateX(5px);
        }

        footer a:hover::after {
            width: 100%;
        }

        footer .list-unstyled li a {
            display: block;
            padding: 10px 0;
            transition: all 0.3s ease;
        }

        footer .list-unstyled li a:hover {
            background: rgba(204, 255, 0, 0.1);
            padding-left: 15px;
            border-radius: 5px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            section {
                padding: 60px 0;
            }

            .carousel-item {
                height: 60vh;
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                height: 50vh;
            }

            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
            }

            .section-title:hover::after {
                width: 100px;
            }

            .navbar-nav {
                background-color: rgba(0, 0, 0, 0.9);
                padding: 15px;
                border-radius: 10px;
                margin-top: 10px;
            }

            .g-recaptcha {
                transform: scale(0.85);
                transform-origin: 0 0;
            }
        }
/* WebGL Banner */
#webgl-banner {
    position: relative;
    height: 80vh;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

#webgl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
}

.banner-content .slide {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    display: none;
}

.banner-content .slide.active {
    display: block;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    #webgl-banner {
        height: 60vh;
    }
}