:root {
            --color-primary: #820875;
            --color-secondary: #ff33c3;
            --color-accent: #e5f400;
            --color-background: #0d010c;
            --color-text: #fff;
            --font-main: 'Arial', sans-serif;
            --font-retro: 'Courier New', monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        h1, h2, h3 {
            font-family: var(--font-retro);
            color: var(--color-accent);
            text-shadow: 2px 2px var(--color-primary);
            animation: text-glitch 1s infinite;
        }

        @keyframes text-glitch {
            0% { transform: skewX(0deg); }
            20% { transform: skewX(-5deg); }
            40% { transform: skewX(5deg); }
            60% { transform: skewX(0deg); }
            80% { transform: skewX(-2deg); }
            100% { transform: skewX(0deg); }
        }

        header {
            background-color: rgba(13, 1, 12, 0.8);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 5%;
            top: 0;
            left: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: transform 0.3s ease-in-out;
        }

        .header-hidden {
            transform: translateY(-100%);
        }

        header .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--color-secondary);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .nav-menu a {
            color: var(--color-text);
            text-decoration: none;
            font-size: 1rem;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--color-secondary);
            transform-origin: bottom right;
            transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1010;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--color-text);
            transition: all 0.3s ease;
        }

        .burger-menu.open .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
        .burger-menu.open .bar2 { opacity: 0; }
        .burger-menu.open .bar3 { transform: rotate(45deg) translate(-5px, -6px); }

        .mobile-nav {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 1, 12, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1005;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .mobile-nav.open {
            transform: translateX(0);
        }

        .mobile-nav a {
            color: var(--color-text);
            font-size: 1.5rem;
            text-transform: uppercase;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--color-secondary);
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 6rem 5%;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(130, 8, 117, 0.7), rgba(0, 0, 0, 0.7)), url('../img/07.webp') no-repeat center center/cover;
            padding: 0 5%;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: text-pulse 2s infinite;
        }

        @keyframes text-pulse {
            0% { letter-spacing: 0; }
            50% { letter-spacing: 2px; }
            100% { letter-spacing: 0; }
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .btn {
            background-color: var(--color-secondary);
            color: var(--color-background);
            padding: 0.8rem 2.5rem;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 50px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 51, 195, 0.4);
        }

        .about {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about .about-content {
            flex: 1;
        }

        .about .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .about .about-content p {
            margin-bottom: 1.5rem;
        }

        .about .about-image {
            flex: 1;
            max-width: 500px;
        }
        
        .about .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 51, 195, 0.5);
            filter: grayscale(100%);
            transition: filter 0.5s;
        }
        
        .about .about-image img:hover {
            filter: grayscale(0);
        }

        .products {
            background-color: var(--color-primary);
            text-align: center;
        }

        .products h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: var(--color-background);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .product-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .product-card p {
            font-size: 1rem;
        }

        .prices {
            text-align: center;
        }

        .prices h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .price-plans {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .price-card {
            background: rgba(255, 51, 195, 0.1);
            border: 2px solid var(--color-secondary);
            border-radius: 10px;
            padding: 2rem;
            max-width: 350px;
            width: 100%;
            text-align: center;
            transition: transform 0.3s ease-in-out;
            transform: perspective(1000px) rotateY(0deg);
            position: relative;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: var(--color-secondary);
            z-index: -1;
            filter: blur(20px);
            opacity: 0.5;
            transition: opacity 0.5s;
        }

        .price-card:hover {
            transform: perspective(1000px) rotateY(10deg);
        }

        .price-card h3 {
            font-size: 2rem;
            color: var(--color-secondary);
            margin-bottom: 1rem;
            text-shadow: none;
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--color-accent);
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
            padding-left: 20px;
            position: relative;
        }

        .price-card ul li::before {
            content: '>';
            position: absolute;
            left: 0;
            color: var(--color-accent);
        }

        .gallery {
            background-color: var(--color-primary);
            text-align: center;
        }

        .gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 5px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--color-accent);
        }

        .feedback {
            text-align: center;
        }

        .feedback h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .slider-container {
            position: relative;
            max-width: 800px;
            margin: auto;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            padding: 2rem;
            background: rgba(13, 1, 12, 0.7);
            border: 1px solid var(--color-secondary);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(255, 51, 195, 0.3);
            text-align: center;
            font-style: italic;
        }

        .slide p {
            margin-bottom: 1rem;
        }

        .slide h4 {
            font-weight: normal;
            font-style: normal;
            color: var(--color-accent);
        }

        .slider-nav {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .dot {
            height: 10px;
            width: 10px;
            background-color: #555;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: var(--color-secondary);
        }

        .faq {
            background-color: var(--color-primary);
        }

        .faq h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 51, 195, 0.3);
            padding: 1.5rem 0;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding-top: 0;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding-top: 1rem;
        }

        .contact-form-section {
            padding: 6rem 5%;
        }

        .contact-form-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .contact-form-wrapper {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(13, 1, 12, 0.7);
            border-radius: 10px;
            padding: 2rem;
            border: 1px solid var(--color-secondary);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-form input {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--color-background);
            border: 1px solid var(--color-secondary);
            border-radius: 5px;
            color: var(--color-text);
        }

        .contact-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .contact-form .btn {
            align-self: flex-end;
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: var(--color-secondary);
            color: var(--color-background);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 51, 195, 0.5);
            z-index: 2000;
            display: none;
            opacity: 0;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
            text-align: center;
        }

        .popup.active {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .popup h3 {
            color: var(--color-background);
            text-shadow: none;
            margin-bottom: 0.5rem;
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1999;
            display: none;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--color-background);
            color: var(--color-text);
            padding: 1rem 2rem;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(255, 51, 195, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            z-index: 1000;
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner a {
            color: var(--color-accent);
            text-decoration: underline;
        }

        .cookie-banner .btn {
            padding: 0.5rem 1.5rem;
            font-size: 0.9rem;
        }
        
        footer {
            background-color: var(--color-primary);
            padding: 3rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }

        footer .footer-section {
            flex: 1;
            min-width: 250px;
        }

        footer .footer-section h4 {
            color: var(--color-accent);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        footer .footer-section ul {
            list-style: none;
        }

        footer .footer-section ul li a {
            color: var(--color-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        footer .footer-section ul li a:hover {
            color: var(--color-secondary);
        }

        .disclaimer {
            text-align: center;
            padding: 1rem 5%;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            background-color: var(--color-background);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .about {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .about .about-image {
                max-width: 100%;
            }

            .contact-form-section {
                padding: 4rem 5%;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
                padding: 1.5rem;
            }

            footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            h2 {
                font-size: 2rem;
            }

            .price-plans {
                flex-direction: column;
                align-items: center;
            }
        }

