@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Orbitron:wght@400;700&display=swap');
        
        :root {
            --primary-color: #8A2BE2; /* Violeta */
            --secondary-color: #00FFFF; /* Cian */
            --accent-color: #FF8C00; /* Naranja */
            --text-color: #E0E0E0;
            --bg-color: #1a1a2e;
            --card-bg: #2e2e4e;
            --font-main: 'Montserrat', sans-serif;
            --font-display: 'Orbitron', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            background-color: var(--bg-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        h1, h2, h3 {
            font-family: var(--font-display);
            color: var(--secondary-color);
            text-shadow: 2px 2px var(--primary-color);
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.9);
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(5px);
            border-bottom: 2px solid var(--primary-color);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .logo span {
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            font-size: 1.1rem;
            font-weight: 700;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 6rem 5%;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--accent-color);
            color: var(--bg-color);
            font-family: var(--font-display);
            font-weight: 700;
            border-radius: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .btn:hover {
            transform: scale(1.05);
            background-color: #ff6600;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('../img/03.webp');
            background-size: cover;
            background-position: center;
            animation: fadeIn 2s ease-in-out;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
        }

        .hero-content {
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: slideInLeft 1s ease-out;
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            animation: slideInRight 1s ease-out;
        }

        /* About */
        .about {
            background-color: var(--card-bg);
            border-bottom: 2px solid var(--primary-color);
            transform: translateY(0);
            transition: transform 1s ease-out, opacity 1s ease-out;
        }
        
        .about .container {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            margin-bottom: 1.5rem;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            transition: transform 0.5s ease;
        }

        .about-image img:hover {
            transform: scale(1.05);
        }

        /* Products */
        .products {
            background-color: var(--bg-color);
            border-bottom: 2px solid var(--primary-color);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--secondary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
        }

        .product-card h3 {
            margin-bottom: 1rem;
        }

        .product-card p {
            font-size: 1.1rem;
        }

        /* Prices */
        .prices {
            background-color: var(--card-bg);
            border-bottom: 2px solid var(--primary-color);
        }

        .price-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .price-card {
            background-color: var(--bg-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--primary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 350px;
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.4);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.4);
        }

        .price-card h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-family: var(--font-display);
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .price span {
            font-size: 1.5rem;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 20px;
        }

        .price-card ul li::before {
            content: '✓';
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }

        /* Gallery */
        .gallery {
            background-color: var(--bg-color);
            border-bottom: 2px solid var(--primary-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            border: 2px solid var(--card-bg);
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback */
        .feedback {
            background-color: var(--card-bg);
            border-bottom: 2px solid var(--primary-color);
            position: relative;
        }

        .feedback-slider-container {
            position: relative;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            padding: 2rem;
            text-align: center;
        }

        .feedback-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 1rem;
            border: 2px solid var(--accent-color);
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .feedback-card h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 1rem;
        }
        
        .slider-nav button {
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .slider-nav button:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        /* FAQ */
        .faq {
            background-color: var(--bg-color);
            border-bottom: 2px solid var(--primary-color);
        }
        
        .faq-item {
            background-color: var(--card-bg);
            border: 1px solid var(--secondary-color);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            color: var(--accent-color);
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(0, 255, 255, 0.1);
        }

        .faq-question span {
            font-size: 1.5rem;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
        }
        
        /* Contact Form */
        .contact-form {
            background-color: var(--card-bg);
            border-bottom: 2px solid var(--primary-color);
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-container form {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .form-group input {
            padding: 1rem;
            border-radius: 5px;
            border: 2px solid var(--primary-color);
            background-color: rgba(0, 0, 0, 0.2);
            color: var(--text-color);
            font-size: 1rem;
            font-family: var(--font-main);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        /* Footer */
        footer {
            background-color: var(--bg-color);
            padding: 3rem 5%;
            text-align: center;
            border-top: 2px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
        }

        .footer-logo {
            font-size: 2rem;
            font-family: var(--font-display);
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--card-bg);
            text-align: center;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--bg-color);
            padding: 1.5rem 5%;
            border-top: 1px solid var(--primary-color);
            text-align: center;
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Modals */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease-in-out;
        }
        
        .modal-content {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            position: relative;
            transform: translateY(-50px);
            animation: slideInUp 0.5s ease-out forwards;
            border: 2px solid var(--secondary-color);
        }

        .modal-content h3 {
            margin-bottom: 1rem;
        }

        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: var(--accent-color);
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }
        
        /* Cookie Banner */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.9);
            color: var(--text-color);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1002;
            backdrop-filter: blur(5px);
            border-top: 2px solid var(--accent-color);
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        #cookie-banner.show {
            transform: translateY(0);
        }
        
        #cookie-banner p {
            margin-right: 1rem;
        }

        #cookie-banner .btn {
            padding: 0.7rem 1.5rem;
            white-space: nowrap;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }



        /* Media Queries */
        @media (max-width: 900px) {
            .nav-menu {
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(26, 26, 46, 0.95);
                padding-top: 6rem;
                transition: right 0.5s ease;
                align-items: center;
                border-left: 2px solid var(--accent-color);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 1.5rem 0;
            }

            .nav-menu a {
                font-size: 1.5rem;
            }

            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .about .container {
                flex-direction: column;
                text-align: center;
            }

            .price-grid {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-section h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            h1{
                font-size: 2em !important;
            }
            h2{
                font-size: 1.5em !important;
            }
        }

