@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

        :root {
            --primary-color: #4A148C;
            --secondary-color: #880E4F;
            --accent-color: #FFC107;
            --background-color: #F8F4E1;
            --text-color: #333333;
            --light-text-color: #FFFFFF;
            --shadow-color: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 16px;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px var(--shadow-color);
            z-index: 1000;
            transition: transform 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            padding: 0 20px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--light-text-color);
            letter-spacing: 1px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: var(--light-text-color);
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        
        .burger-menu span {
            width: 30px;
            height: 3px;
            background-color: var(--light-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);
        }
        
        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        h1 {
            font-size: 3.5rem;
            text-align: center;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        p {
            margin-bottom: 15px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--accent-color);
            color: var(--primary-color);
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .text-center {
            text-align: center;
        }

        .hero {
            background-image: linear-gradient(rgba(74, 20, 140, 0.7), rgba(136, 14, 79, 0.7)), url(../img/04.webp);
            background-size: cover;
            background-position: center;
            color: var(--light-text-color);
            text-align: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 1s ease-out;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideIn 1s forwards 0.5s;
        }

        .hero h1 {
            color: var(--light-text-color);
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .about {
            background-color: var(--background-color);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
            transform: translateX(-50px);
            opacity: 0;
            animation: slideInLeft 1s forwards;
            animation-timeline: view();
            animation-range-start: 10%;
            animation-range-end: 50%;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px var(--shadow-color);
        }
        
        .about-content {
            transform: translateX(50px);
            opacity: 0;
            animation: slideInRight 1s forwards;
            animation-timeline: view();
            animation-range-start: 10%;
            animation-range-end: 50%;
        }

        .products {
            background-color: var(--secondary-color);
            color: var(--light-text-color);
        }
        
        .products h2 {
            color: var(--light-text-color);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background-color: var(--background-color);
            color: var(--text-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
            animation: fadeInFromBottom 1s forwards;
            animation-timeline: view();
            animation-range-start: 10%;
            animation-range-end: 50%;
        }
        
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.4s; }

        .product-card img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .product-card h3 {
            color: var(--secondary-color);
        }
        
        .prices {
            background-color: var(--background-color);
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
            animation: slideInUp 1s forwards;
            animation-timeline: view();
            animation-range-start: 10%;
            animation-range-end: 50%;
        }
        
        .price-card {
            background-color: #FFFFFF;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow-color);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px var(--shadow-color);
        }

        .price-card h3 {
            color: var(--secondary-color);
        }

        .price-card .price {
            font-size: 3rem;
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin: 20px 0;
        }
        
        .price-card .price small {
            font-size: 1.2rem;
            color: #666;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .price-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .price-card ul li:last-child {
            border-bottom: none;
        }
        
        .gallery {
            background-color: var(--primary-color);
        }
        
        .gallery h2 {
            color: var(--light-text-color);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 40px;
            animation: fadeIn 1s forwards;
            animation-timeline: view();
            animation-range-start: 10%;
            animation-range-end: 50%;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .feedback {
            background-color: var(--background-color);
        }

        .feedback-slider-container {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0;
            overflow: hidden;
        }
        
        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            animation: slideInUp 1s forwards;
            animation-timeline: view();
            animation-range-start: 10%;
            animation-range-end: 50%;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 20px;
            background-color: #FFFFFF;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow-color);
            text-align: center;
            font-style: italic;
        }
        
        .feedback-slide p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .feedback-slide .author {
            font-weight: 700;
            color: var(--secondary-color);
            font-style: normal;
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-nav span {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-nav span.active {
            background-color: var(--primary-color);
        }

        .faq {
            background-color: var(--secondary-color);
            color: var(--light-text-color);
        }

        .faq h2 {
            color: var(--light-text-color);
        }
        
        .faq-accordion {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .accordion-item {
            background-color: #FFFFFF;
            color: var(--text-color);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .accordion-header.active::after {
            content: '-';
            transform: rotate(180deg);
        }

        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }
        
        .accordion-content p {
            padding: 20px 0;
            border-top: 1px solid #eee;
        }

        #disclaimer {
            padding: 40px 0;
            background-color: var(--text-color);
            color: #BDBDBD;
            text-align: center;
            font-size: 0.9rem;
        }
        
        #disclaimer p {
            margin: 0;
        }

        footer {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-logo {
            flex-basis: 100%;
            margin-bottom: 20px;
        }
        
        .footer-logo .logo {
            font-size: 2.5rem;
        }
        
        .footer-links, .footer-contact {
            text-align: left;
        }
        
        .footer-links h3, .footer-contact h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links a {
            color: var(--light-text-color);
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .footer-contact p {
            margin-bottom: 8px;
        }

        .footer-bottom {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
        }

        .contact-form-section {
            background-color: var(--secondary-color);
            color: var(--light-text-color);
        }
        
        .contact-form-section h2 {
            color: var(--light-text-color);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 40px auto 0;
            padding: 30px;
            background-color: var(--primary-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.9);
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
        }
        
        .contact-form .btn {
            width: 100%;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 20px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
            z-index: 1001;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        .cookie-banner .btn {
            padding: 10px 20px;
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .popup {
            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: 2000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s, opacity 0.3s;
        }
        
        .popup.show {
            visibility: visible;
            opacity: 1;
        }
        
        .popup-content {
            background-color: #FFFFFF;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            max-width: 400px;
        }
        
        .popup-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            color: #999;
            cursor: pointer;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInFromBottom {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(100px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Media Queries */
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                animation: fadeIn 1s forwards;
            }
            
            .about-content {
                animation: fadeIn 1s forwards;
            }
            
            .prices-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 3rem;
            }
            
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                text-align: center;
                padding: 20px 0;
                box-shadow: 0 4px 10px var(--shadow-color);
            }
            
            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .footer-content {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-links, .footer-contact {
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }

