:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #1a1a2e;
            --cyber-yellow: #d1f400;
            --matrix-green: #00ff9f;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-purple);
            color: white;
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)),
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            border-bottom: 1px solid var(--electric-blue);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            color: var(--neon-pink);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--electric-blue);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--electric-blue);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            color: var(--electric-blue);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 5px var(--electric-blue);
        }
        
        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            border-bottom: 2px solid var(--neon-pink);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--cyber-yellow);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--neon-pink);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 0 15px var(--neon-pink);
        }
        
        .btn:hover {
            background-color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
            transform: translateY(-3px);
        }
        
        .hero {
            text-align: center;
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                        rgba(255, 42, 109, 0.1) 0%, 
                        rgba(5, 217, 232, 0.1) 100%);
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: glow 2s infinite alternate;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--electric-blue), 0 0 20px var(--electric-blue);
            }
            to {
                text-shadow: 0 0 15px var(--electric-blue), 0 0 30px var(--electric-blue), 0 0 40px var(--matrix-green);
            }
        }
        
        .about {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.2);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-top: 2rem;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .products {
            text-align: center;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--electric-blue);
        }
        
        .product-card h3 {
            color: var(--matrix-green);
            margin-bottom: 1rem;
        }
        
        .product-card .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
        }
        
        .prices {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 0 30px rgba(209, 244, 0, 0.1);
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .price-card {
            background-color: rgba(26, 26, 46, 0.9);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--cyber-yellow);
            transition: all 0.3s;
        }
        
        .price-card.popular {
            border: 2px solid var(--neon-pink);
            position: relative;
            transform: scale(1.05);
        }
        
        .price-card.popular::before {
            content: 'MÁS POPULAR';
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--neon-pink);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .price-card h3 {
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--electric-blue);
            margin: 1rem 0;
        }
        
        .price span {
            font-size: 1rem;
            color: white;
        }
        
        .price-features {
            list-style: none;
            margin: 2rem 0;
        }
        
        .price-features li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
            font-weight: bold;
        }
        
        .gallery {
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            margin: 2rem auto;
        }
        
        .slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(26, 26, 46, 0.9);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 255, 159, 0.1);
        }
        
        .slide-content {
            text-align: center;
        }
        
        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid var(--electric-blue);
        }
        
        .client-name {
            font-weight: bold;
            color: var(--cyber-yellow);
            margin-bottom: 0.5rem;
        }
        
        .client-position {
            color: var(--matrix-green);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .client-text {
            font-style: italic;
            position: relative;
        }
        
        .client-text::before,
        .client-text::after {
            content: '"';
            color: var(--neon-pink);
            font-size: 1.5rem;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--electric-blue);
        }
        
        .faq {
            text-align: center;
        }
        
        .accordion {
            max-width: 800px;
            margin: 3rem auto 0;
        }
        
        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .accordion-header {
            background-color: rgba(5, 217, 232, 0.1);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .accordion-header:hover {
            background-color: rgba(5, 217, 232, 0.2);
        }
        
        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--electric-blue);
        }
        
        .accordion-header.active::after {
            content: '-';
        }
        
        .accordion-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(26, 26, 46, 0.7);
        }
        
        .accordion-content-inner {
            padding: 1.5rem 0;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background-color: rgba(26, 26, 46, 0.7);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--electric-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        footer {
            background-color: #0f0f1a;
            padding: 3rem 2rem;
            border-top: 1px solid var(--electric-blue);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
            color: var(--neon-pink);
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .footer-about p {
            margin-bottom: 1.5rem;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            color: var(--cyber-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--electric-blue);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .contact-icon {
            margin-right: 1rem;
            color: var(--electric-blue);
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 3rem;
            padding: 1rem;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 5px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 1.5rem;
            border-top: 1px solid var(--electric-blue);
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background-color: var(--matrix-green);
            color: var(--dark-purple);
            border: none;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }
        
        .cookie-accept:hover {
            background-color: var(--electric-blue);
            transform: translateY(-2px);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--dark-purple);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 30px var(--neon-pink);
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--electric-blue);
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }
            
            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                padding: 1rem;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            nav.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active .line2 {
                opacity: 0;
            }
            
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card.popular {
                transform: scale(1);
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Animaciones */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        .slide-up {
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 0.8s forwards;
        }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        .delay-4 {
            animation-delay: 0.8s;
        }
        
        .delay-5 {
            animation-delay: 1s;
        }

