@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

        :root {
            --primary-color: #00FFC2;
            --secondary-color: #2F004F;
            --accent-color: #FF007F;
            --text-color: #E0E0E0;
            --bg-color: #120023;
            --dark-bg: #0A0015;
            --font-main: 'Orbitron', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-secondary);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: var(--font-main);
            color: var(--primary-color);
            text-transform: uppercase;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-family: var(--font-main);
            text-transform: uppercase;
            font-weight: 700;
            border-radius: 5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: var(--accent-color);
            color: var(--text-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 255, 194, 0.4);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 0, 35, 0.9);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary-color);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-main);
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            font-family: var(--font-main);
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            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(--primary-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(18, 0, 35, 0.8), rgba(18, 0, 35, 0.8)), url('img/09.webp') center/cover no-repeat;
            background-attachment: fixed;
            padding-top: 6rem;
        }
        .hero-content {
            z-index: 10;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: fadeInDown 1s ease-in-out;
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-in-out 0.5s;
            animation-fill-mode: both;
        }

        section {
            padding: 6rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-title h2 {
            display: inline-block;
            position: relative;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -15px;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }

        .about .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }
        .about .about-content .text {
            flex: 1;
            transform: translateX(-100%);
            opacity: 0;
            transition: all 1s ease-out;
        }
        .about .about-content .image {
            flex: 1;
            transform: translateX(100%);
            opacity: 0;
            transition: all 1s ease-out;
        }
        .about .about-content .image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            animation: glow 2s infinite alternate;
        }
        .about-content.visible .text, .about-content.visible .image {
            transform: translateX(0);
            opacity: 1;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .product-card {
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 0, 127, 0.1), rgba(0, 255, 194, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .product-card:hover::before {
            opacity: 1;
        }
        .product-card:hover {
            transform: translateY(-10px);
        }
        .product-card h3 {
            margin-bottom: 1rem;
        }
        .product-card p {
            color: var(--text-color);
        }
        .product-card img{
            max-height: 300px;
        }
    

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .price-card {
            background-color: var(--dark-bg);
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .price-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(0, 255, 194, 0.1);
            transform: rotate(45deg);
            z-index: 0;
            transition: transform 0.5s ease;
        }
        .price-card:hover::after {
            transform: rotate(0deg);
        }
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 255, 194, 0.3);
        }
        .price-card-content {
            position: relative;
            z-index: 1;
        }
        .price-card h3 {
            margin-bottom: 1rem;
        }
        .price-card .price-value {
            font-family: var(--font-main);
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        .price-card ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .price-card ul 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;
        }
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 255, 194, 0.3);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(100%);
            transition: filter 0.5s ease;
        }
        .gallery-item:hover img {
            filter: grayscale(0%);
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .feedback-slide {
            min-width: 100%;
            padding: 2rem;
            background-color: var(--secondary-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        .feedback-slide p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .feedback-slide h4 {
            color: var(--primary-color);
            font-weight: 700;
        }
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        .nav-btn {
            background: none;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            width: 15px;
            height: 15px;
            border-radius: 50%;
            cursor: pointer;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        .nav-btn.active {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            transform: scale(1.2);
        }

        .faq-accordion .accordion-item {
            border-bottom: 1px solid var(--secondary-color);
            margin-bottom: 1rem;
        }
        .accordion-item .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            background-color: var(--secondary-color);
            cursor: pointer;
            font-family: var(--font-main);
            color: var(--primary-color);
            transition: background-color 0.3s ease;
        }
        .accordion-item .accordion-header:hover {
            background-color: #3f0064;
        }
        .accordion-item .accordion-header span {
            transition: transform 0.3s ease;
        }
        .accordion-item.active .accordion-header span {
            transform: rotate(180deg);
        }
        .accordion-item .accordion-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            background-color: var(--dark-bg);
        }
        .accordion-item.active .accordion-content {
            max-height: 200px;
            padding: 1.5rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .contact-form input, .contact-form textarea {
            background-color: var(--dark-bg);
            border: 1px solid var(--primary-color);
            padding: 1rem;
            color: var(--text-color);
            border-radius: 5px;
            font-family: var(--font-secondary);
        }
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px var(--accent-color);
        }
        .contact-form input::placeholder, .contact-form textarea::placeholder {
            color: rgba(224, 224, 224, 0.6);
        }

        .disclaimer {
            background-color: var(--dark-bg);
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(224, 224, 224, 0.7);
            border-top: 1px solid rgba(0, 255, 194, 0.2);
            margin-top: 4rem;
        }
        .disclaimer p {
            max-width: 800px;
            margin: 0 auto;
        }

        footer {
            background-color: var(--secondary-color);
            padding: 2rem 0;
            border-top: 2px solid var(--primary-color);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            text-align: center;
            font-family: var(--font-secondary);
        }
        .footer-logo {
            font-family: var(--font-main);
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .footer-links ul {
            list-style: none;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-contact {
            margin-top: 1rem;
        }
        .footer-contact p {
            margin-bottom: 0.5rem;
        }
        .footer-copyright {
            width: 100%;
            text-align: center;
            margin-top: 2rem;
            font-size: 0.8rem;
        }
        .footer-contact-item {
            color: var(--text-color);
        }
        .footer-contact-item a {
            color: var(--text-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 0, 35, 0.9);
            color: var(--text-color);
            padding: 1.5rem;
            text-align: center;
            z-index: 1002;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .cookie-banner.visible {
            transform: translateY(0);
        }
        .cookie-banner .btn {
            white-space: nowrap;
        }
        
        .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;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.3s ease;
        }
        .modal.visible {
            visibility: visible;
            opacity: 1;
        }
        .modal-content {
            background-color: var(--secondary-color);
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--primary-color);
            animation: popIn 0.5s ease-out;
        }
        .modal-content h3 {
            margin-bottom: 1rem;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes glow {
            from {
                box-shadow: 0 0 15px var(--primary-color);
            }
            to {
                box-shadow: 0 0 30px var(--accent-color);
            }
        }
        @keyframes popIn {
            from {
                transform: scale(0.5);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100%;
                background-color: var(--secondary-color);
                padding-top: 8rem;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
                transition: right 0.5s ease;
            }
            h2{
                font-size: 1.5em;
            }
            h3{
                font-size: 1em;
            }
            .nav-menu.active {
                right: 0;
            }
            .nav-menu li {
                margin: 0;
                padding: 1.5rem 2rem;
                border-bottom: 1px solid rgba(224, 224, 224, 0.1);
            }
            .nav-menu li a {
                display: block;
                width: 100%;
            }

            .burger-menu {
                display: flex;
            }
            .burger-menu.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .burger-menu.active span:nth-child(2) {
                opacity: 0;
            }
            .burger-menu.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .about .about-content {
                flex-direction: column;
                text-align: center;
            }
            .about-content .image, .about-content .text {
                transform: none !important;
                opacity: 1 !important;
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
            .footer-links ul {
                flex-direction: column;
            }
            .footer-contact {
                text-align: center;
            }
        }

