* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #240046;
            color: #e0aaff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(90deg, #240046, #9d4edd);
            color: #e0aaff;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #e0aaff;
            text-decoration: none;
            text-shadow: 0 0 10px #c77dff;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: #e0aaff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: #c77dff;
            text-shadow: 0 0 5px #c77dff;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #e0aaff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(36, 0, 70, 0.8), rgba(157, 78, 221, 0.8)), url('../img/17.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: #e0aaff;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/22.webp');
            background-size: cover;
            opacity: 0.1;
            z-index: -1;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(-20px, -20px) rotate(5deg);
            }
            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #e0aaff;
            text-shadow: 0 0 15px #c77dff;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, #9d4edd, #c77dff);
            color: #240046;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(199, 125, 255, 0.4);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(199, 125, 255, 0.6);
        }
        
        .about {
            padding: 80px 0;
            background: linear-gradient(180deg, #240046, #3c096c);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #e0aaff;
            margin-bottom: 15px;
            text-shadow: 0 0 10px #c77dff;
        }
        
        .section-title p {
            font-size: 18px;
            color: #c77dff;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            color: #e0aaff;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(199, 125, 255, 0.3);
        }
        
        .about-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            padding: 80px 0;
            background: linear-gradient(180deg, #3c096c, #5a189a);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: linear-gradient(145deg, #240046, #3c096c);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(199, 125, 255, 0.3);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(199, 125, 255, 0.4);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 22px;
            color: #e0aaff;
            margin-bottom: 10px;
        }
        
        .product-info p {
            margin-bottom: 15px;
            color: #c77dff;
        }
        
        .product-price {
            font-size: 20px;
            font-weight: bold;
            color: #e0aaff;
        }
        
        .prices {
            padding: 80px 0;
            background: linear-gradient(180deg, #5a189a, #7209b7);
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background: linear-gradient(145deg, #3c096c, #5a189a);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid rgba(199, 125, 255, 0.3);
        }
        
        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(199, 125, 255, 0.5);
            border: 1px solid rgba(224, 170, 255, 0.5);
        }
        
        .price-card.featured::before {
            content: "Más Popular";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #9d4edd, #c77dff);
            color: #240046;
            padding: 5px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
        }
        
        .price-card h3 {
            font-size: 24px;
            color: #e0aaff;
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 40px;
            color: #e0aaff;
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-card li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(199, 125, 255, 0.2);
        }
        
        .price-card li:last-child {
            border-bottom: none;
        }
        
        .gallery {
            padding: 80px 0;
            background: linear-gradient(180deg, #7209b7, #9d4edd);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(36, 0, 70, 0.7), rgba(157, 78, 221, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay p {
            color: #e0aaff;
            font-size: 18px;
            text-align: center;
            padding: 0 20px;
        }
        
        .feedback {
            padding: 80px 0;
            background: linear-gradient(180deg, #9d4edd, #c77dff);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }
        
        .feedback-item img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
            border: 3px solid #240046;
        }
        
        .feedback-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #240046;
        }
        
        .feedback-item p {
            font-style: italic;
            margin-bottom: 15px;
            color: #240046;
        }
        
        .feedback-rating {
            color: #240046;
            margin-bottom: 20px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(36, 0, 70, 0.3);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: #240046;
        }
        
        .faq {
            padding: 80px 0;
            background: linear-gradient(180deg, #c77dff, #e0aaff);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: linear-gradient(145deg, #9d4edd, #c77dff);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid rgba(224, 170, 255, 0.5);
        }
        
        .faq-question {
            padding: 20px;
            font-size: 18px;
            font-weight: bold;
            color: #240046;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: "+";
            font-size: 24px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: #240046;
        }
        
        .contact {
            padding: 80px 0;
            background: linear-gradient(180deg, #e0aaff, #f8f9fa);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(145deg, #c77dff, #e0aaff);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #240046;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: 5px;
            font-size: 16px;
            background-color: rgba(255, 255, 255, 0.7);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
        }
        
        footer {
            background: linear-gradient(180deg, #240046, #3c096c);
            color: #e0aaff;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #c77dff;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #e0aaff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: #c77dff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(199, 125, 255, 0.2);
            font-size: 14px;
        }
        
        .disclaimer {
            background: linear-gradient(145deg, #3c096c, #5a189a);
            padding: 20px;
            border-radius: 10px;
            margin-top: 50px;
            text-align: center;
            color: #e0aaff;
            font-size: 14px;
            border: 1px solid rgba(199, 125, 255, 0.3);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: linear-gradient(145deg, #240046, #3c096c);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
            border: 1px solid rgba(199, 125, 255, 0.3);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            margin-bottom: 0;
            font-size: 14px;
            color: #e0aaff;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background: linear-gradient(45deg, #9d4edd, #c77dff);
            color: #240046;
        }
        
        .cookie-accept:hover {
            background: linear-gradient(45deg, #c77dff, #e0aaff);
        }
        
        .cookie-reject {
            background-color: rgba(224, 170, 255, 0.2);
            color: #e0aaff;
            border: 1px solid rgba(224, 170, 255, 0.5);
        }
        
        .cookie-reject:hover {
            background-color: rgba(224, 170, 255, 0.3);
        }
        
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(36, 0, 70, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: linear-gradient(145deg, #240046, #3c096c);
            padding: 30px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: translateY(-50px);
            transition: transform 0.3s ease;
            border: 1px solid rgba(199, 125, 255, 0.3);
        }
        
        .modal.show .modal-content {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #e0aaff;
        }
        
        .modal-close:hover {
            color: #c77dff;
        }
        
        .modal h3 {
            color: #e0aaff;
            margin-bottom: 15px;
        }
        
        .modal p {
            color: #c77dff;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: linear-gradient(180deg, #240046, #3c096c);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.3);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

