/* Reset y estilos base */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #a8d8ea;
            --secondary: #aa96da;
            --accent: #fcbad3;
            --text: #5a5a5a;
            --light: #ffffd2;
            --dark: #484848;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }
        .container { width: 90%; max-width: 1200px; margin: 0 auto; }
        section { padding: 80px 0; }
        h1, h2, h3 { color: var(--dark); margin-bottom: 20px; }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; text-align: center; }
        h3 { font-size: 1.8rem; }
        p { margin-bottom: 15px; }
        img { max-width: 100%; height: auto; }
        
        /* Header */
        header {
            position: fixed;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { font-size: 1.8rem; font-weight: bold; color: var(--secondary); }
        nav ul { display: flex; list-style: none; }
        nav li { margin-left: 25px; }
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        nav a:hover { color: var(--secondary); }
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        .burger span {
            height: 3px;
            width: 100%;
            background: var(--dark);
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(168,216,234,0.7), rgba(170,150,218,0.5)), 
                        url('https://plus.unsplash.com/premium_photo-1665990295018-5d5e62cec8e9?q=80&w=688&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }
        .hero-content h1 { color: white; font-size: 3.5rem; }
        .hero-content p { font-size: 1.3rem; margin-bottom: 30px; }
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s, background 0.3s;
        }
        .btn:hover { transform: translateY(-3px); background: #f8a8c6; }
        
        /* About */
        .about { background: white; }
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        /* Products */
        .products { background: #f8f8f8; }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .product-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .product-card:hover { transform: translateY(-10px); }
        .product-icon { font-size: 3rem; margin-bottom: 15px; color: var(--secondary); }
        
        /* Prices */
        .prices { background: white; }
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .pricing-card {
            background: #f8f8f8;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            position: relative;
        }
        .popular { border: 2px solid var(--accent); transform: scale(1.05); }
        .price { font-size: 2.5rem; color: var(--secondary); margin: 15px 0; }
        
        /* Gallery */
        .gallery { background: #f8f8f8; }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img { transform: scale(1.1); }
        
        /* Feedback */
        .feedback { background: white; }
        .slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        .slide {
            min-width: 100%;
            padding: 30px;
            text-align: center;
        }
        .client-info { margin-top: 20px; font-style: italic; }
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        .slider-dot.active { background: var(--secondary); }
        
        /* FAQ */
        .faq { background: #f8f8f8; }
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        .faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }
        
        /* Contact */
        .contact { background: white; }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 5px; }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
        }
        .form-group textarea { height: 150px; }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Disclaimer */
        .disclaimer {
            background: var(--dark);
            color: white;
            padding: 30px 0;
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--dark);
            color: white;
            padding: 20px;
            z-index: 1500;
            display: none;
        }
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .cookie-buttons { margin-top: 10px; }
        .cookie-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            margin-left: 10px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 { color: white; margin-bottom: 20px; }
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }
        .footer-section a:hover { color: white; }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #555; }
        
        /* Responsive */
        @media (max-width: 768px) {
            .burger { display: flex; }
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s;
            }
            nav ul.active { left: 0; }
            nav li { margin: 15px 0; }
            .about-content { grid-template-columns: 1fr; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .hero-content h1 { font-size: 2.5rem; }
            .popular { transform: none; }
            .cookie-content { flex-direction: column; text-align: center; }
            .cookie-buttons { margin-top: 15px; }
        }
        
        /* Animaciones */
        .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

