@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');
        
        :root {
            --color-primary: #1F2739;
            --color-secondary: #C85C5C;
            --color-accent: #E0B19E;
            --color-text: #F8EFEA;
            --color-bg: #1F2739;
            --color-contrast: #F8EFEA;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            background-color: var(--color-bg);
            color: var(--color-text);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: var(--color-primary);
            color: var(--color-contrast);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-accent);
            text-decoration: none;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            height: 3px;
            width: 25px;
            background-color: var(--color-contrast);
            margin: 4px 0;
            transition: all 0.3s ease-in-out;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--color-contrast);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--color-accent);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../img/01.webp');
            background-size: cover;
            background-position: center;
            color: var(--color-contrast);
            padding-top: 60px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(31, 39, 57, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeIn 1s forwards;
            animation-delay: 0.5s;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            background-color: var(--color-secondary);
            color: var(--color-contrast);
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            font-weight: 700;
        }

        .btn:hover {
            background-color: var(--color-accent);
            transform: scale(1.05);
        }

        .section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--color-accent);
            position: relative;
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 450px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .about-text {
            flex: 2;
        }
        
        .product-card {
            background-color: var(--color-primary);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            transition: transform 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
            min-height: 450px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .product-card:hover {
            transform: translateY(0);
        }

        .product-card h3 {
            font-family: 'Playfair Display', serif;
            color: var(--color-secondary);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .products .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .price-card {
            background-color: var(--color-primary);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease;
        }
        
        .price-card h3 {
            color: var(--color-accent);
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }

        .price-card .price-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 10px;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .price-card ul li {
            margin: 10px 0;
            position: relative;
        }

        .price-card .btn {
            width: 100%;
        }

        .prices .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .gallery .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .gallery img:hover {
            transform: scale(1.05);
        }
        
        .feedback .slider {
            position: relative;
            overflow: hidden;
        }

        .feedback-item {
            display: none;
            text-align: center;
            padding: 20px;
            background-color: var(--color-primary);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.8s forwards;
        }

        .feedback-item p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .feedback-item .author {
            font-weight: 700;
            color: var(--color-accent);
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-nav button {
            background-color: var(--color-secondary);
            color: var(--color-contrast);
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            margin: 0 5px;
            transition: background-color 0.3s ease;
        }

        .slider-nav button:hover {
            background-color: var(--color-accent);
        }

        .faq .accordion-item {
            margin-bottom: 15px;
            border: 1px solid var(--color-secondary);
            border-radius: 5px;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease;
        }
        
        .faq .accordion-header {
            background-color: var(--color-primary);
            color: var(--color-contrast);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
        }

        .faq .accordion-header:hover {
            background-color: #2a344d;
        }

        .faq .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background-color: #2a344d;
        }

        .faq .accordion-content p {
            padding: 15px 0;
        }

        .contact-form-container {
            background-color: var(--color-primary);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-form-container h3 {
            text-align: center;
            margin-bottom: 20px;
            color: var(--color-accent);
        }

        .contact-form-container form {
            display: grid;
            gap: 15px;
        }
        
        .contact-form-container input[type="text"],
        .contact-form-container input[type="email"],
        .contact-form-container input[type="tel"] {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--color-secondary);
            border-radius: 5px;
            background-color: #2a344d;
            color: var(--color-contrast);
        }

        .contact-form-container input::placeholder {
            color: #999;
        }

        .contact-form-container .btn {
            display: block;
            width: 100%;
            text-align: center;
        }

        footer {
            background-color: var(--color-primary);
            color: var(--color-contrast);
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            text-align: left;
            margin-bottom: 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 20px;
        }

        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            color: var(--color-accent);
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: var(--color-contrast);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--color-secondary);
        }

        .disclaimer {
            text-align: center;
            font-size: 0.8rem;
            color: #ccc;
            margin-top: 20px;
            padding: 10px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .disclaimer p {
            margin-bottom: 5px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(31, 39, 57, 0.95);
            color: var(--color-text);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
            z-index: 2000;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin: 0;
        }
        
        .cookie-banner .btn {
            margin-left: 20px;
            padding: 8px 15px;
        }

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.5s;
        }

        .modal.is-open {
            visibility: visible;
            opacity: 1;
        }

        .modal-content {
            background-color: var(--color-primary);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            text-align: center;
            max-width: 400px;
            position: relative;
        }

        .modal-content h3 {
            color: var(--color-accent);
            margin-bottom: 15px;
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--color-secondary);
        }
        
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .parallax-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(31, 39, 57, 0.6);
        }

        .parallax-bg .section-title {
            position: relative;
            z-index: 1;
            color: var(--color-contrast);
        }

        .prices-bg {
            background-image: url('../img/02.webp');
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0px;
                left: 0;
                width: 100%;
                background-color: var(--color-primary);
                transform: translateY(-100%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
                padding: 20px 0;
            }

            nav.active {
                top: 60px;
                transform: translateY(0);
            }

            nav ul {
                flex-direction: column;
                text-align: center;
            }

            nav ul li {
                margin: 10px 0;
            }

            .about .container {
                flex-direction: column;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

