:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #1a1a2e;
            --cyber-yellow: #d4f437;
            --matrix-green: #00ff9d;
        }
        
        * {
            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.95);
            border-bottom: 1px solid var(--neon-pink);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 15px var(--electric-blue);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            color: var(--neon-pink);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--electric-blue);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--electric-blue);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        
        nav ul li a:hover::after {
            transform: scaleX(1);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
        }
        
        h1 {
            font-size: 3rem;
            background: linear-gradient(to right, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s infinite alternate;
        }
        
        h2 {
            font-size: 2.5rem;
            border-bottom: 2px solid var(--neon-pink);
            padding-bottom: 10px;
            display: inline-block;
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--cyber-yellow);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.7);
        }
        
        .hero {
            text-align: center;
            padding: 150px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,42,109,0.1) 0%, rgba(26,26,46,0.9) 70%);
            z-index: -1;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .about {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            text-align: center;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: rgba(26, 26, 46, 0.8);
            border: 1px solid var(--electric-blue);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s;
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(5, 217, 232, 0.3);
            border-color: var(--neon-pink);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .prices {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(212, 244, 55, 0.1);
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background-color: rgba(26, 26, 46, 0.9);
            border: 1px solid var(--matrix-green);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            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;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--neon-pink);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .price-card h3 {
            color: var(--matrix-green);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--electric-blue);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 1rem;
            color: white;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-features li {
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }
        
        .price-features li:last-child {
            border-bottom: none;
        }
        
        .gallery {
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px 10px 10px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .feedback {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.1);
        }
        
        .slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(26, 26, 46, 0.9);
            border: 1px solid var(--electric-blue);
            border-radius: 10px;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 2px solid var(--neon-pink);
        }
        
        .client-name {
            font-weight: bold;
            color: var(--cyber-yellow);
        }
        
        .client-rating {
            color: var(--matrix-green);
            margin-top: 5px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .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(--neon-pink);
        }
        
        .faq {
            text-align: center;
        }
        
        .accordion {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .accordion-header {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 15px 20px;
            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(255, 42, 109, 0.2);
        }
        
        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        
        .accordion-item.active .accordion-header::after {
            transform: rotate(45deg);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(26, 26, 46, 0.6);
        }
        
        .accordion-item.active .accordion-content {
            max-height: 500px;
        }
        
        .accordion-body {
            padding: 20px;
            text-align: left;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(26, 26, 46, 0.8);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--cyber-yellow);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            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: 120px;
            resize: vertical;
        }
        
        footer {
            background-color: rgba(26, 26, 46, 0.95);
            padding: 50px 20px 20px;
            border-top: 1px solid var(--neon-pink);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            color: var(--neon-pink);
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-about p {
            margin-bottom: 20px;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--electric-blue);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--electric-blue);
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .disclaimer {
            background-color: rgba(255, 42, 109, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 50px;
            font-size: 0.9rem;
            border-left: 3px solid var(--neon-pink);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 20px;
            border-top: 1px solid var(--electric-blue);
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-btn {
            background-color: var(--electric-blue);
            color: var(--dark-purple);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .cookie-btn:hover {
            background-color: var(--neon-pink);
            color: white;
        }
        
        .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: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--neon-pink);
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--electric-blue);
        }
        
        @keyframes glow {
            0% {
                text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
            }
            100% {
                text-shadow: 0 0 20px rgba(5, 217, 232, 0.7);
            }
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
                border-bottom: 1px solid var(--electric-blue);
            }
            
            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .about-content {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero {
                padding: 100px 20px;
            }
            
            .price-card.popular {
                transform: scale(1);
            }
        }

