:root {
            --primary-color: #f72585;
            --secondary-color: #3a0ca3;
            --accent-color: #4361ee;
            --text-color: #f0e6ef;
            --bg-color: #2b0c3d;
            --card-bg-color: rgba(67, 97, 238, 0.2);
            --transition-speed: 0.5s;
        }

        @font-face {
            font-family: 'RetroFont';
            src: url('https://fonts.gstatic.com/s/pressstart2p/v15/87_rO4_OGYyYnfoqygBPR-8.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'RetroFont', sans-serif;
            text-shadow: 1px 1px 2px var(--secondary-color);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        header {
            width: 100%;
            background-color: rgba(43, 12, 61, 0.9);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        
        header .logo {
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }

        header nav a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 2rem;
            font-size: 1rem;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        header nav a:hover {
            color: var(--primary-color);
            text-shadow: 0 0 5px var(--primary-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease-in-out;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
        }

        @media (max-width: 768px) {
            .nav-links {
              
                position: fixed;
                top: 80px;
                right: 0;
                
                width: 70%;
                background-color: rgba(23, 9, 31, 1);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                flex-direction: column;
               
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links li {
                opacity: 0;
                transition: opacity 0.5s ease;
            }
            .nav-links.active li {
                opacity: 1;
                transition: opacity 0.5s ease-in 0.5s;
            }
            .nav-links li a {
                display: block;
                padding: 1rem;
                text-align: center;
            }
            .burger-menu {
                display: flex;
            }
            h1{
                font-size: 2.5em !important;
            }
            h2{
                font-size: 1.5em !important;
            }
        }

        main {
            padding-top: 100px;
        }

        section {
            padding: 6rem 2rem;
            position: relative;
            z-index: 1;
        }

        h1, h2, h3 {
            text-align: center;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
        }

        .hero {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
            padding: 0 2rem;
            color: var(--text-color);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/07.webp');
            background-size: cover;
            background-position: center;
            filter: brightness(0.4);
            z-index: -1;
            transform: scale(1.1);
            animation: zoomOut 20s infinite alternate ease-in-out;
        }

        @keyframes zoomOut {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.1);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeIn 2s ease-in-out;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
            animation: fadeIn 2s 0.5s ease-in-out both;
        }

        .cta-button {
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 1rem 2rem;
            text-decoration: none;
            text-transform: uppercase;
            border-radius: 5px;
            font-size: 1rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 0 15px var(--accent-color);
            animation: pulse 2s infinite;
        }

        .cta-button:hover {
            transform: scale(1.05);
            background-color: var(--primary-color);
            box-shadow: 0 0 20px var(--primary-color);
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--bg-color);
            border-radius: 10px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
            margin-top: 2rem;
            transition: all 0.8s ease-out;
        }

        .about.visible, .products.visible, .prices.visible, .gallery.visible, .feedback.visible, .faq.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .content-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about p {
            max-width: 800px;
            margin: 0 auto 2rem;
            text-align: justify;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: var(--card-bg-color);
            padding: 2rem;
            border-radius: 10px;
            border: 2px solid var(--accent-color);
            transition: transform 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.4), rgba(247, 37, 133, 0.4));
            z-index: -1;
            opacity: 0.1;
            transition: opacity 0.5s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .product-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .product-card p {
            text-align: justify;
            margin-bottom: 1rem;
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .price-card {
            background-color: var(--card-bg-color);
            padding: 2rem;
            border-radius: 10px;
            border: 2px solid var(--accent-color);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .price-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .price-card ul {
            list-style: none;
            padding-left: 0;
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .price-card li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .price-card li::before {
            content: '✔';
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            transition: transform 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slides-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            background-color: var(--card-bg-color);
            padding: 2rem;
            border-radius: 10px;
            border: 2px solid var(--accent-color);
            text-align: center;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .feedback-card .author {
            font-weight: bold;
            color: var(--primary-color);
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--accent-color);
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            background-color: var(--card-bg-color);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--accent-color);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 1rem;
            background-color: rgba(67, 97, 238, 0.1);
            transition: max-height 0.5s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 1rem;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-form input, .contact-form button {
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid var(--accent-color);
            background-color: rgba(67, 97, 238, 0.1);
            color: var(--text-color);
        }

        .contact-form input::placeholder {
            color: rgba(240, 230, 239, 0.7);
        }

        .contact-form button {
            background-color: var(--primary-color);
            color: var(--text-color);
            cursor: pointer;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: var(--secondary-color);
        }

        footer {
            background-color: rgba(43, 12, 61, 0.9);
            padding: 2rem;
            text-align: center;
            border-top: 2px solid var(--primary-color);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-content p {
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .disclaimer {
            padding: 1rem;
            font-size: 0.8rem;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.2);
            border-top: 1px solid var(--accent-color);
            margin-top: 2rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(43, 12, 61, 0.95);
            color: var(--text-color);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
            margin-left: 0.5rem;
        }

        .cookie-banner button {
            background-color: var(--accent-color);
            color: var(--text-color);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cookie-banner button:hover {
            background-color: var(--primary-color);
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1002;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--bg-color);
            padding: 2rem;
            border-radius: 10px;
            border: 2px solid var(--primary-color);
            text-align: center;
            animation: fadeIn 0.5s ease-in-out;
            position: relative;
        }
        
        .modal-content h3 {
            color: var(--primary-color);
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-color);
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--primary-color);
        }

