@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

        :root {
            --color-primary: #8e7c6d;
            --color-secondary: #c9bdae;
            --color-tertiary: #5e4a3d;
            --color-dark: #2e2621;
            --color-light: #f5f0e9;
            --font-main: 'Raleway', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--color-dark);
            background-color: var(--color-light);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--color-light);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease-in-out;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--color-tertiary);
            text-decoration: none;
            font-weight: 700;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--color-dark);
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            transition: color 0.3s ease;
        }
        
        nav a:hover {
            color: var(--color-primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--color-primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--color-dark);
            margin: 4px 0;
            transition: 0.4s;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                background-color: var(--color-light);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                text-align: center;
                padding: 20px 0;
            }

            nav.active {
                display: flex;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 15px 0;
            }

            .burger-menu {
                display: flex;
            }
            .burger-menu.active .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .burger-menu.active .bar2 { opacity: 0; }
            .burger-menu.active .bar3 { transform: rotate(45deg) translate(-5px, -6px); }
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--color-light);
            background-image: url('../img/01.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(46, 38, 33, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 4rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease-in-out;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-in-out 0.5s;
            animation-fill-mode: both;
        }

        .btn {
            background-color: var(--color-primary);
            color: var(--color-light);
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
            animation: zoomIn 1s ease-in-out 1s;
            animation-fill-mode: both;
        }
        
        .btn:hover {
            background-color: var(--color-tertiary);
        }

        section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about {
            background-color: var(--color-light);
        }
        
        .about .container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text h2 {
            font-family: var(--font-heading);
            font-size: 3rem;
            color: var(--color-tertiary);
            margin-bottom: 20px;
        }
        
        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .products {
            background-color: var(--color-secondary);
        }

        .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2 {
            text-align: center;
            font-family: var(--font-heading);
            font-size: 3rem;
            color: var(--color-dark);
            margin-bottom: 50px;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--color-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .product-card-content {
            padding: 25px;
        }

        .product-card-content h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--color-tertiary);
            margin-bottom: 15px;
        }

        .product-card-content p {
            font-size: 1rem;
            color: var(--color-dark);
        }

        .prices .price-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .price-card {
            background-color: var(--color-light);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .price-card h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--color-tertiary);
            margin-bottom: 20px;
        }

        .price-card .price {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 10px;
        }

        .price-card .price small {
            font-size: 1.2rem;
            font-weight: 400;
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-card ul li {
            padding: 8px 0;
            font-size: 1.1rem;
            border-bottom: 1px dashed var(--color-secondary);
        }
        
        .price-card ul li:last-child {
            border-bottom: none;
        }

        .gallery {
            background-color: var(--color-secondary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-grid img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .feedback {
            background-color: var(--color-light);
        }

        .slider-container {
            position: relative;
            max-width: 800px;
            margin: auto;
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-card {
            min-width: 100%;
            padding: 40px;
            background-color: var(--color-light);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .feedback-card p {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .feedback-author {
            font-weight: 700;
            color: var(--color-tertiary);
        }

        .slider-dots {
            text-align: center;
            margin-top: 20px;
        }

        .dot {
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: var(--color-secondary);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: var(--color-primary);
        }

        .faq {
            background-color: var(--color-secondary);
        }

        .faq-item {
            border-bottom: 1px solid var(--color-primary);
            margin-bottom: 20px;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 20px 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--color-dark);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            content: '−';
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 20px;
        }

        .faq-answer p {
            padding-bottom: 20px;
        }

        .contact-form {
            background-color: var(--color-light);
            padding: 80px 0;
        }

        .contact-form .container {
            max-width: 600px;
            text-align: center;
        }
        
        .contact-form h2 {
            font-family: var(--font-heading);
            font-size: 3rem;
            color: var(--color-tertiary);
            margin-bottom: 30px;
        }
        
        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-form input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--color-secondary);
            border-radius: 5px;
            font-size: 1rem;
            background-color: var(--color-light);
        }

        .contact-form button {
            background-color: var(--color-primary);
            color: var(--color-light);
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: var(--color-tertiary);
        }

        footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            padding: 50px 0 20px;
            text-align: center;
        }
        
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--color-light);
            text-decoration: none;
            margin-bottom: 20px;
        }
        
        .footer-nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-nav a {
            text-decoration: none;
            color: var(--color-light);
            transition: color 0.3s ease;
        }
        
        .footer-nav a:hover {
            color: var(--color-primary);
        }

        .footer-contact {
            text-align: right;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-contact p {
            margin: 5px 0;
        }

        .disclaimer {
            background-color: var(--color-tertiary);
            color: var(--color-light);
            text-align: center;
            padding: 15px 0;
            font-size: 0.9rem;
            margin-top: 30px;
        }
        
        #cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: var(--color-dark);
            color: var(--color-light);
            padding: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            z-index: 2000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        #cookie-banner p {
            margin: 0;
            font-size: 1rem;
        }
        
        #cookie-banner a {
            color: var(--color-primary);
            text-decoration: underline;
        }
        
        #accept-cookies {
            background-color: var(--color-primary);
            color: var(--color-light);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            transition: background-color 0.3s ease;
        }
        
        #accept-cookies:hover {
            background-color: var(--color-tertiary);
        }

        .popup {
            display: none;
            position: fixed;
            z-index: 2001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        
        .popup.show {
            display: flex;
            opacity: 1;
        }
        
        .popup-content {
            background-color: var(--color-light);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            max-width: 400px;
            width: 90%;
            transform: scale(0.9);
            transition: transform 0.3s ease-in-out;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 25px;
            color: var(--color-dark);
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-btn:hover {
            color: var(--color-primary);
        }

        @keyframes fadeInDown {
            0% { opacity: 0; transform: translateY(-50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes zoomIn {
            0% { opacity: 0; transform: scale(0.5); }
            100% { opacity: 1; transform: scale(1); }
        }

        @media (max-width: 992px) {
            .about .container {
                flex-direction: column;
            }
            .prices .price-grid {
                flex-direction: column;
            }
            .price-card {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            .hero-content p {
                font-size: 1.2rem;
            }
            .about-text h2, .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2, .contact-form h2 {
                font-size: 2.5rem;
            }
            footer .container {
                flex-direction: column;
            }
            .footer-contact {
                text-align: center;
            }
        }

