:root {
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --dark-purple: #1a1a2e;
            --cyber-teal: #00ff9d;
            --matrix-green: #00ff41;
            --electric-purple: #bc13fe;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-purple);
            color: #d1f7ff;
            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-1518611012118-696072aa579a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }

        header {
            position: fixed;
            top: 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-purple);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            color: var(--neon-blue);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-blue);
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--neon-pink);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 8px var(--neon-blue);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2, h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
            text-shadow: 0 0 8px var(--neon-blue);
        }

        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }

        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-teal);
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-purple));
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px var(--neon-pink);
        }

        .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(5, 217, 232, 0.1) 0%, rgba(26, 26, 46, 0.9) 70%);
            z-index: -1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
            }
            to {
                text-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue), 0 0 40px var(--electric-purple);
            }
        }

        .about {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 50px;
            margin: 50px auto;
            box-shadow: 0 0 30px rgba(188, 19, 254, 0.2);
            border: 1px solid var(--neon-pink);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-img {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px var(--neon-pink);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .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: 30px;
            margin-top: 50px;
        }

        .product-card {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.1);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--neon-blue);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid var(--neon-pink);
        }

        .prices {
            text-align: center;
        }

        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 40px 30px;
            width: 300px;
            transition: all 0.3s ease;
            border: 1px solid var(--cyber-teal);
            position: relative;
            overflow: hidden;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                transparent,
                transparent,
                transparent,
                rgba(0, 255, 157, 0.1)
            );
            transform: rotate(30deg);
            transition: all 0.6s ease;
        }

        .price-card:hover::before {
            left: 100%;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--cyber-teal);
        }

        .price-card h3 {
            margin-bottom: 30px;
        }

        .price {
            font-size: 2.5rem;
            color: var(--neon-pink);
            margin: 20px 0;
            font-weight: bold;
        }

        .price span {
            font-size: 1rem;
            color: #ccc;
        }

        .price-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .price-features li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }

        .price-features li::before {
            content: '✓';
            color: var(--matrix-green);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .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(255, 42, 109, 0.3);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 0 30px var(--neon-pink);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback {
            text-align: center;
        }

        .feedback-slider {
            max-width: 800px;
            margin: 50px auto;
            position: relative;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
            border: 1px solid var(--electric-purple);
        }

        .slide-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--neon-blue);
            margin-bottom: 20px;
        }

        .client-name {
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 10px;
        }

        .client-position {
            color: var(--cyber-teal);
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .client-review {
            font-style: italic;
            margin-bottom: 20px;
        }

        .stars {
            color: var(--matrix-green);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--neon-pink);
            transform: scale(1.2);
        }

        .faq {
            text-align: center;
        }

        .accordion {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .accordion-item {
            margin-bottom: 15px;
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            overflow: hidden;
            background-color: rgba(26, 26, 46, 0.7);
        }

        .accordion-header {
            padding: 20px;
            background-color: rgba(5, 217, 232, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background-color: rgba(5, 217, 232, 0.2);
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.3rem;
        }

        .accordion-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content-inner {
            padding: 0 20px;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 20px;
        }

        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(26, 26, 46, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.2);
            border: 1px solid var(--neon-pink);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--neon-blue);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 10px var(--neon-pink);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        .disclaimer {
            background-color: rgba(255, 42, 109, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 80px;
            border: 1px solid var(--neon-pink);
            font-size: 0.9rem;
        }

        footer {
            background-color: rgba(26, 26, 46, 0.95);
            padding: 50px 20px 30px;
            border-top: 1px solid var(--neon-blue);
        }

        .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-blue);
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-about p {
            margin-bottom: 20px;
        }

        .footer-links h3,
        .footer-contact h3 {
            color: var(--neon-pink);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
            padding-left: 5px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            color: var(--cyber-teal);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: var(--dark-purple);
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 30px var(--electric-purple);
            position: relative;
            animation: modalFadeIn 0.5s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--neon-pink);
            transform: rotate(90deg);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-top: 1px solid var(--neon-blue);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 20px;
        }

        .cookie-banner p {
            margin-bottom: 0;
        }

        .cookie-banner a {
            color: var(--neon-blue);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cookie-accept {
            background-color: var(--neon-pink);
            color: white;
            border: none;
        }

        .cookie-accept:hover {
            background-color: #e8246d;
        }

        .cookie-decline {
            background-color: transparent;
            color: var(--neon-blue);
            border: 1px solid var(--neon-blue);
        }

        .cookie-decline:hover {
            background-color: rgba(5, 217, 232, 0.1);
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(26, 26, 46, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s ease;
                z-index: 999;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                margin: 20px 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);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                padding: 100px 20px;
            }

            section {
                padding: 60px 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

        /* Animaciones */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .slide-up {
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease 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;
        }

