@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

        :root {
            --primary-color: #5d5d81;
            --secondary-color: #8c73c3;
            --accent-color: #c95163;
            --background-dark: #121212;
            --background-light: #f4f4f9;
            --text-color: #f4f4f9;
            --text-color-dark: #121212;
            --glass-bg: rgba(255, 255, 255, 0.1);
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            background: var(--background-dark);
            color: var(--text-color);
            overflow-x: hidden;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
            color: var(--text-color);
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            color: var(--text-color);
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: var(--accent-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--background-dark);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: var(--text-color);
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--accent-color);
            bottom: -5px;
            left: 0;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        nav ul li a:hover::after {
            transform: scaleX(1);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .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);
        }

        @media (max-width: 768px) {
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--background-dark);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-in-out;
            }

            nav.active {
                max-height: 500px; 
            }

            nav ul {
                flex-direction: column;
                padding: 1rem 2rem;
            }

            nav ul li {
                margin: 0 0 1rem 0;
            }

            .burger-menu {
                display: flex;
            }
            h1{
                font-size: 2.5em !important;
            }
            h2{
                font-size: 2em !important;
            }

            .cookie-banner{
                flex-direction: column;
                width: 80%;
            }
        }

        section {
            padding: 6rem 0 3rem;
            position: relative;
        }

        section:nth-of-type(odd) {
            background-color: var(--background-dark);
        }
        
        section:nth-of-type(even) {
            background-color: var(--background-dark);
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../img/08.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            z-index: 10;
        }

        .hero h1 {
            font-size: 4rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        .hero p {
            font-size: 1.5rem;
            margin-top: 1rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }
        
        .cta-button {
            display: inline-block;
            background: var(--accent-color);
            color: var(--text-color);
            padding: 0.8rem 2rem;
            border-radius: 5px;
            margin-top: 1.5rem;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .cta-button:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }

        .about .container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        .about h2 {
            margin-bottom: 2rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .about-text {
            animation: fadeIn 1s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .about-text h3 {
            color: var(--secondary-color);
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            animation: slideInRight 1s ease-out forwards;
            opacity: 0;
        }

        .products .container {
            text-align: center;
        }

        .products h2 {
            margin-bottom: 2rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 2rem;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/01.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: -1;
            transition: transform 0.5s ease;
        }

        .product-card:hover::before {
            transform: scale(1.1);
        }

        .product-card h3 {
            color: var(--accent-color);
        }

        .prices .container {
            text-align: center;
        }
        
        .prices h2 {
            margin-bottom: 2rem;
        }

        .price-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .price-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            z-index: -1;
        }

        .price-card:hover::before {
            transform: scale(2);
            opacity: 0.2;
        }

        .price-card:hover {
            transform: translateY(-15px);
        }

        .price-card h3 {
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        
        .price-card ul {
            list-style: none;
            margin: 1rem 0;
            text-align: left;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .price-card ul li::before {
            content: '✓';
            color: var(--accent-color);
            margin-right: 0.5rem;
        }

        .price-card .cta-button {
            margin-top: 1rem;
        }
        
        .gallery {
            background-color: var(--background-dark);
            padding: 6rem 0;
        }

        .gallery h2 {
            margin-bottom: 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .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 .container {
            text-align: center;
        }

        .feedback h2 {
            margin-bottom: 2rem;
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 2rem;
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin: 0 1rem;
        }
        
        .feedback-slide img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid var(--accent-color);
        }

        .feedback-slide p {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--text-color);
        }

        .feedback-slide .author {
            font-weight: 600;
            color: var(--secondary-color);
            margin-top: 1rem;
        }
        
        .slider-nav {
            margin-top: 1rem;
        }

        .slider-nav span {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-nav span.active {
            background: var(--accent-color);
        }

        .faq h2 {
            margin-bottom: 2rem;
        }
        
        .accordion-item {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 1rem;
            border-radius: 5px;
            overflow: hidden;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--secondary-color);
            position: relative;
        }
        
        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .accordion-header.active::after {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            padding: 0 1.5rem;
            color: var(--text-color);
        }
        
        .accordion-content p {
            padding-bottom: 1rem;
        }

        .contact-form {
            background-color: var(--background-dark);
            padding: 6rem 0;
        }

        .contact-form h2 {
            margin-bottom: 2rem;
        }
        
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem;
            border-radius: 10px;
        }

        form label {
            font-weight: 600;
        }

        form input {
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            transition: border-color 0.3s ease;
        }
        
        form input:focus {
            outline: none;
            border-color: var(--secondary-color);
        }
        
        form button {
            background: var(--accent-color);
            color: var(--text-color);
            padding: 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            transition: background 0.3s ease;
        }

        form button:hover {
            background: var(--secondary-color);
        }

        footer {
            background: var(--background-dark);
            color: var(--text-color);
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-links {
            display: flex;
            gap: 1rem;
        }
        
        .footer-links a {
            color: var(--text-color);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: #aaa;
            margin-top: 1rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--background-dark);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 2000;
            width: 100%;
        }

        .cookie-banner-text {
            flex-grow: 1;
        }
        
        .cookie-banner-button {
            background: var(--accent-color);
            color: var(--text-color);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
        }

        .cookie-banner-button:hover {
            background: var(--secondary-color);
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 3000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .popup.active {
            display: flex;
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: var(--background-dark);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            width: 90%;
            max-width: 400px;
            position: relative;
            transform: translateY(-50px);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .popup.active .popup-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--accent-color);
            font-size: 1.5rem;
            cursor: pointer;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }

            .cookie-banner{
                width: 90%;
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
        }

