* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }

        :root {
            --primary: #2c5f2d;
            --secondary: #97bc62;
            --accent: #d4af37;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --text: #333333;
            --text-light: #f5f5f5;
        }

        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(44, 95, 45, 0.95);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--text-light);
            text-decoration: none;
            font-family: 'Playfair Display', 'Georgia', serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Georgia', serif;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
            background-image: url('../img/03.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(44, 95, 45, 0.7);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: fadeIn 1.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--text-light);
            font-family: 'Playfair Display', 'Georgia', serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--text-light);
            font-style: italic;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--accent);
            color: var(--dark);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
            background-color: #e6c35c;
        }

        /* About Section */
        .about {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .about.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-content {
            flex: 1;
            min-width: 300px;
            padding-right: 50px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border: 5px solid var(--accent);
        }

        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            padding-bottom: 15px;
        }

        .about h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }

        .about p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* Products Section */
        .products {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            background-color: rgba(151, 188, 98, 0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .products.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .products h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .products h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent);
        }

        .product-cards {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .product-card {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-top: 5px solid var(--accent);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .product-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .product-card p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* Prices Section */
        .prices {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .prices.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .prices h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .prices h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent);
        }

        .price-cards {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .price-card {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border: 2px solid var(--accent);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent);
            margin: 20px 0;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .price-card li {
            margin-bottom: 10px;
            font-size: 1.1rem;
            position: relative;
            padding-left: 25px;
        }

        .price-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            background-color: rgba(151, 188, 98, 0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .gallery.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .gallery h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 5px solid #fff;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Section */
        .feedback {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .feedback.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feedback h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .feedback h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent);
        }

        .testimonial-container {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial {
            display: none;
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--accent);
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
            text-align: justify;
            color: var(--text);
        }

        .testimonial-author {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--primary);
            text-align: right;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(44, 95, 45, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background-color: var(--accent);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: rgba(151, 188, 98, 0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .faq.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .faq h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent);
        }

        .faq-item {
            background-color: #fff;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .faq-question:hover {
            background-color: rgba(151, 188, 98, 0.1);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text);
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-plus {
            font-size: 1.5rem;
            transition: all 0.3s ease;
            color: var(--accent);
        }

        .faq-item.active .faq-plus {
            transform: rotate(45deg);
        }

        /* Contact Form */
        .contact-form {
            padding: 100px 20px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .contact-form.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-form h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .contact-form h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent);
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: var(--primary);
            font-family: 'Georgia', serif;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid rgba(44, 95, 45, 0.3);
            background-color: #fff;
            color: var(--text);
            font-size: 1rem;
            font-family: 'Georgia', serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
        }

        .submit-button {
            padding: 15px 30px;
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
            background-color: #e6c35c;
        }

        /* Popup */
        .popup {
            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;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-top: 5px solid var(--accent);
            transform: scale(0.7);
            transition: all 0.3s ease;
        }

        .popup.active .popup-content {
            transform: scale(1);
        }

        .popup h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .popup p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text);
        }

        .popup-close {
            padding: 10px 20px;
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .popup-close:hover {
            background-color: #e6c35c;
            transform: translateY(-3px);
        }

        /* Disclaimer */
        .disclaimer {
            padding: 20px;
            background-color: rgba(44, 95, 45, 0.1);
            text-align: center;
            font-size: 0.9rem;
            color: var(--text);
            border-top: 1px solid rgba(44, 95, 45, 0.2);
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            padding: 50px 20px 20px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent);
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: all 0.5s ease;
            border-left: 5px solid var(--accent);
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-text p {
            margin-bottom: 0;
            font-size: 0.9rem;
            color: var(--text);
        }

        .cookie-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-button {
            padding: 10px 20px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cookie-accept {
            background-color: var(--accent);
            color: var(--dark);
        }

        .cookie-decline {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .cookie-button:hover {
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 100%;
                background-color: rgba(44, 95, 45, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: all 0.5s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 20px 0;
            }

            .burger {
                display: block;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about {
                flex-direction: column;
            }

            .about-content {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

