:root {
            --primary: #FF4D80;
            --secondary: #00E5CC;
            --accent: #FFE066;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --retro-font: 'Courier New', monospace;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--retro-font);
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 77, 128, 0.1) 0%, rgba(0, 229, 204, 0.05) 90%);
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--primary);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        nav ul li a:hover {
            color: var(--primary);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            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: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        section {
            padding: 5rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            text-align: center;
            color: var(--light);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 77, 128, 0.5);
            animation: glow 2s infinite alternate;
        }
        @keyframes glow {
            from {
                text-shadow: 0 0 5px rgba(255, 77, 128, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(255, 77, 128, 0.8), 0 0 30px rgba(255, 77, 128, 0.6);
            }
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--secondary);
        }
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            margin: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-secondary:hover {
            background-color: var(--primary);
            color: var(--light);
        }
        .about {
            background-color: var(--light);
            color: var(--dark);
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--primary);
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s;
        }
        .about-image:hover img {
            transform: scale(1.05);
        }
        .products {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        .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;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--primary);
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        .product-info {
            padding: 1.5rem;
        }
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .product-info p {
            margin-bottom: 1.5rem;
        }
        .prices {
            background-color: var(--light);
            color: var(--dark);
        }
        .price-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        .price-card {
            background-color: var(--dark);
            color: var(--light);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            transition: transform 0.3s;
            border: 2px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        .price-card:hover {
            transform: translateY(-10px);
        }
        .price-card.popular::before {
            content: 'MÁS POPULAR';
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--primary);
            color: var(--light);
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            font-weight: bold;
            border-bottom-left-radius: 10px;
        }
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1.5rem 0;
            color: var(--primary);
        }
        .price-card .price span {
            font-size: 1rem;
            color: var(--light);
        }
        .price-card ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        .price-card ul li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }
        .gallery {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('https://images.unsplash.com/photo-1545389336-cf090694435e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: transform 0.3s;
        }
        .gallery-item:hover {
            transform: scale(1.05);
            z-index: 1;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 1rem;
            color: var(--light);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .gallery-item:hover .overlay {
            opacity: 1;
        }
        .feedback {
            background-color: var(--light);
            color: var(--dark);
        }
        .testimonials {
            max-width: 1000px;
            margin: 3rem auto 0;
            position: relative;
        }
        .testimonial {
            background-color: var(--dark);
            color: var(--light);
            padding: 2rem;
            border-radius: 10px;
            margin: 0 1rem;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .testimonial .quote {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        .testimonial .author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .testimonial .author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 3px solid var(--primary);
        }
        .testimonial .author-info h4 {
            color: var(--secondary);
            margin-bottom: 0.3rem;
        }
        .testimonial .author-info p {
            font-size: 0.9rem;
            color: #aaa;
        }
        .slick-dots {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            list-style: none;
        }
        .slick-dots li {
            margin: 0 0.5rem;
        }
        .slick-dots li button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            border: none;
            font-size: 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .slick-dots li.slick-active button {
            background-color: var(--primary);
        }
        .faq {
            background-color: var(--dark);
        }
        .accordion {
            max-width: 800px;
            margin: 3rem auto 0;
        }
        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--primary);
            border-radius: 5px;
            overflow: hidden;
        }
        .accordion-header {
            background-color: rgba(255, 77, 128, 0.1);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        .accordion-header:hover {
            background-color: rgba(255, 77, 128, 0.2);
        }
        .accordion-header h3 {
            font-size: 1.2rem;
            color: var(--secondary);
        }
        .accordion-header .icon {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        .accordion-item.active .accordion-header .icon {
            transform: rotate(45deg);
        }
        .accordion-content {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
        }
        .accordion-item.active .accordion-content {
            padding: 1rem;
            max-height: 500px;
        }
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--primary);
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light);
        }
        .form-group textarea {
            min-height: 150px;
        }
        .disclaimer {
            background-color: rgba(255, 77, 128, 0.1);
            padding: 1.5rem;
            border-radius: 5px;
            margin-top: 3rem;
            font-size: 0.9rem;
            border-left: 4px solid var(--primary);
        }
        .disclaimer p {
            margin-bottom: 0.5rem;
        }
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 3rem 2rem;
            border-top: 1px solid var(--primary);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        .contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        .contact-info p i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark);
            color: var(--light);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            border-top: 2px solid var(--primary);
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-banner p {
            margin-right: 1rem;
            flex: 1;
            min-width: 200px;
        }
        .cookie-banner .btn {
            margin: 0.5rem;
        }
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            background-color: var(--dark);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            border: 2px solid var(--primary);
        }
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
            transition: color 0.3s;
        }
        .modal-close:hover {
            color: var(--primary);
        }
        .modal h2 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .modal p {
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: clip-path 0.5s ease-out;
                pointer-events: none;
            }
            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            nav ul li {
                margin: 1rem 0;
            }
            .burger {
                display: block;
            }
            .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;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .about-content {
                flex-direction: column;
            }
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            .price-card {
                width: 100%;
                max-width: 350px;
            }
        }

