@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Montserrat:wght@400;700&display=swap');

        :root {
            --color-primary: #8e44ad; /* Púrpura */
            --color-secondary: #f39c12; /* Naranja */
            --color-text-dark: #2c3e50; /* Azul oscuro */
            --color-text-light: #ecf0f1; /* Gris claro */
            --color-background-light: #ecf0f1;
            --color-background-dark: #34495e; /* Azul oscuro */
            --color-accent: #e74c3c; /* Rojo */
        }

        * {
            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;
            line-height: 1.6;
            color: var(--color-text-dark);
            background-color: var(--color-background-light);
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(44, 62, 80, 0.9);
            color: var(--color-text-light);
            padding: 1rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--color-secondary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: var(--color-text-light);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li a {
            color: var(--color-text-light);
            text-decoration: none;
            padding: 0.5rem 1rem;
            font-weight: 400;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-menu li a:hover {
            color: var(--color-secondary);
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--color-secondary);
            transition: width 0.3s ease, left 0.3s ease;
        }
        
        .nav-menu li a:hover::after {
            width: 100%;
            left: 0;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            position: relative;
            z-index: 1000;
        }
        
        .burger-menu span {
            height: 3px;
            width: 25px;
            background: var(--color-text-light);
            margin-bottom: 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px; /* Offset for fixed header */
        }
        
        section {
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        section h2, section h3 {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 2rem;
            color: var(--color-primary);
        }

        h1, h2, h3 {
            text-transform: uppercase;
        }

        h1 {
            font-size: 3rem;
            line-height: 1.2;
            color: var(--color-text-light);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-text-light);
            background: url('../img/03.webp') no-repeat center center/cover;
            background-attachment: fixed;
            animation: fadeIn 2s ease-in-out;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-content {
            z-index: 2;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .btn {
            background: var(--color-secondary);
            color: var(--color-text-light);
            padding: 0.8rem 2rem;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 700;
        }
        
        .btn:hover {
            background: var(--color-primary);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .about {
            background-color: var(--color-background-light);
            color: var(--color-text-dark);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: center;
        }
        
        .about-text h3 {
            text-align: left;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            animation: slideInLeft 1s ease-in-out;
        }

        .products {
            background-color: var(--color-background-dark);
            color: var(--color-text-light);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
            opacity: 0.1;
            z-index: -1;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .product-card img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .prices {
            background-color: var(--color-background-light);
        }
        
        .prices h2 {
            color: var(--color-primary);
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .price-card {
            background: var(--color-text-light);
            border: 2px solid var(--color-primary);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        .price-card h3 {
            color: var(--color-secondary);
            margin-bottom: 1rem;
        }
        
        .price-card .price-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        
        .price-card li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed var(--color-text-dark);
        }

        .gallery {
            background-color: var(--color-background-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .feedback {
            background-color: var(--color-background-light);
        }
        
        .feedback-slider {
            display: flex;
            overflow-x: hidden;
            scroll-snap-type: x mandatory;
            gap: 2rem;
            padding: 1rem;
        }

        .feedback-card {
            flex: 0 0 100%;
            scroll-snap-align: center;
            background: var(--color-text-light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            border: 1px solid var(--color-primary);
        }
        
        .feedback-card blockquote {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--color-text-dark);
        }
        
        .feedback-card .author {
            font-weight: 700;
            color: var(--color-secondary);
        }
        
        .faq {
            background-color: var(--color-background-dark);
            color: var(--color-text-light);
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem 0;
            cursor: pointer;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            padding-top: 0;
        }
        
        .faq-answer.active {
            max-height: 200px; /* Adjust as needed */
            padding-top: 1rem;
        }

        .contact-form {
            background: var(--color-background-light);
            padding: 4rem 2rem;
            text-align: center;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-container h2 {
            margin-bottom: 2rem;
            color: var(--color-primary);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: 2px solid var(--color-primary);
            border-color: var(--color-primary);
        }
        
        .form-group button {
            width: 100%;
            background: var(--color-primary);
            color: var(--color-text-light);
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .form-group button:hover {
            background: var(--color-secondary);
        }

        footer {
            background: var(--color-text-dark);
            color: var(--color-text-light);
            padding: 2rem;
            text-align: center;
        }

        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .footer-info, .footer-links {
            flex: 1 1 300px;
            text-align: left;
        }

        .footer-info h4, .footer-links h4 {
            color: var(--color-secondary);
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li a {
            color: var(--color-text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--color-primary);
        }

        .copyright {
            width: 100%;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            text-align: center;
        }

        .disclaimer {
            background: var(--color-accent);
            color: var(--color-text-light);
            padding: 1rem;
            text-align: center;
            font-size: 0.9rem;
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.3s ease;
            z-index: 2000;
        }

        .popup-overlay.active {
            visibility: visible;
            opacity: 1;
        }

        .popup-content {
            background: var(--color-background-light);
            color: var(--color-text-dark);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .popup-overlay.active .popup-content {
            transform: scale(1);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(44, 62, 80, 0.9);
            color: var(--color-text-light);
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            z-index: 1500;
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin: 0;
        }

        .cookie-banner a {
            color: var(--color-secondary);
            text-decoration: underline;
        }

        .cookie-btn {
            background: var(--color-primary);
            color: var(--color-text-light);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .cookie-btn:hover {
            background: var(--color-secondary);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes fadeInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .animated {
            opacity: 0;
            transition: all 1s ease-out;
        }

        .animated.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(44, 62, 80, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 1.5rem 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            h1 {
                font-size: 2rem;
            }

            .hero-content {
                padding: 0 1rem;
            }
        }

