        /* Variables y estilos generales */
        :root {
            --primary-color: #ff85a2;
            --secondary-color: #ffd5e5;
            --accent-color: #a239ca;
            --dark-color: #4a4a4a;
            --light-color: #ffffff;
            --transition: all 0.3s ease-in-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #fafafa;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4, h5 {
            font-weight: 600;
            color: var(--dark-color);
        }

        p {
            line-height: 1.8;
            color: #666;
        }

        a {
            text-decoration: none;
            color: var(--accent-color);
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-color);
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255, 133, 162, 0.3);
        }

        .btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(162, 57, 202, 0.4);
            color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 36px;
            display: inline-block;
            padding-bottom: 10px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--light-color);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader.fade-out {
            opacity: 0;
        }

        .preloader .spinner {
            width: 60px;
            height: 60px;
            position: relative;
        }

        .preloader .spinner::before,
        .preloader .spinner::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            animation: pulse 1.8s infinite ease-in-out;
        }

        .preloader .spinner::before {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 133, 162, 0.7);
            animation-delay: -0.9s;
        }

        .preloader .spinner::after {
            width: 40px;
            height: 40px;
            background-color: rgba(162, 57, 202, 0.7);
            top: 10px;
            left: 10px;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(0);
                opacity: 1;
            }
            50% {
                transform: scale(1);
                opacity: 0.5;
            }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        header.sticky {
            padding: 5px 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-color);
        }

        .logo-text span {
            color: var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: var(--dark-color);
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            transition: var(--transition);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

         .burger {
                    display: none;
                    cursor: pointer;
                    
                }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--dark-color);
            margin: 5px;
            transition: var(--transition);
        }

        /* Hero Section */
        #inicio {
            height: 100vh;
            background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('/api/placeholder/1920/1080') no-repeat center center/cover;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-title {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-title span {
            color: var(--primary-color);
        }

        .hero-text {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-btn {
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .shape {
            position: absolute;
            z-index: 0;
            border-radius: 50%;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background-color: rgba(255, 213, 229, 0.3);
            top: -100px;
            left: -100px;
            animation: float 8s infinite ease-in-out;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background-color: rgba(162, 57, 202, 0.2);
            bottom: -50px;
            right: -50px;
            animation: float 10s infinite ease-in-out reverse;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background-color: rgba(255, 133, 162, 0.2);
            bottom: 100px;
            left: 15%;
            animation: float 12s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sobre Nosotros */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img-inner {
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/600/400') no-repeat center center/cover;
            transition: var(--transition);
        }

        .about-img:hover .about-img-inner {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .about-text p {
            margin-bottom: 30px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        /* Galería */
        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 8px 20px;
            margin: 5px;
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            border-radius: 30px;
            color: var(--dark-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .gallery-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            height: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
            opacity: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
            padding: 20px;
            text-align: center;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: white;
            font-size: 20px;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: var(--transition);
            opacity: 0;
        }

        .gallery-item:hover .gallery-title {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-category {
            color: var(--secondary-color);
            font-size: 14px;
            margin-bottom: 15px;
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.1s;
            opacity: 0;
        }

        .gallery-item:hover .gallery-category {
            transform: translateY(0);
            opacity: 1;
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal.open {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            position: relative;
            max-width: 900px;
            width: 100%;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            transform: scale(0.8);
            transition: var(--transition);
        }

        .modal.open .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .modal-close:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .modal-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .modal-info {
            padding: 30px;
        }

        .modal-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .modal-category {
            color: var(--primary-color);
            margin-bottom: 20px;
            display: inline-block;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-desc {
            margin-bottom: 20px;
        }

        .modal-details {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .detail-item {
            display: flex;
            align-items: center;
        }

        .detail-icon {
            margin-right: 10px;
            color: var(--accent-color);
        }

        /* Precios */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }

        .pricing-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-header {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            padding: 30px;
            text-align: center;
        }

        .pricing-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 36px;
            font-weight: 700;
        }

        .pricing-price span {
            font-size: 16px;
            font-weight: 400;
        }

        .pricing-features {
            padding: 30px;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .pricing-feature i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        .pricing-btn {
            display: block;
            text-align: center;
            margin: 0 30px 30px;
        }

        .pricing-badge {
            position: absolute;
            top: 0;
            right: 20px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 15px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 0 0 10px 10px;
        }

        /* Reservaciones */
        #reservaciones {
            background-color: #fef8fb;
        }

        .reservation-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .reservation-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 133, 162, 0.2);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .reservation-info {
            padding: 20px;
        }

        .reservation-steps {
            counter-reset: step-counter;
        }

        .step-item {
            position: relative;
            padding-left: 70px;
            margin-bottom: 30px;
        }

        .step-item::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            font-weight: 600;
        }

        .step-title {
            font-size: 20px;
            margin-bottom: 10px;
        }

        /* Contacto */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .contact-details h4 {
            margin-bottom: 5px;
            font-size: 18px;
        }

        .contact-details p, .contact-details a {
            color: #666;
        }

        .contact-social {
            margin-top: 30px;
        }

        .contact-social h4 {
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .map-container {
            height: 250px;
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 30px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background-color: #222;
            color: white;
            padding: 60px 0 0;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .footer-info h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-info p {
            color: #bbb;
            margin-bottom: 15px;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-newsletter p {
            color: #bbb;
            margin-bottom: 20px;
        }

        .newsletter-form {
            position: relative;
        }

        .newsletter-input {
            width: 100%;
            padding: 12px 15px;
            padding-right: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 5px;
            color: white;
        }

        .newsletter-input::placeholder {
            color: #bbb;
        }

        .newsletter-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover {
            background-color: var(--accent-color);
        }

        .footer-bottom {
            padding: 20px 0;
            text-align: center;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: #bbb;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: -60px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 99;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .back-to-top.active {
            bottom: 30px;
        }

        .back-to-top:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content, 
            .reservation-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .about-img {
                order: -1;
                margin-bottom: 30px;
            }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-content {
                position: relative;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                height: 0;
                overflow: hidden;
                transition: var(--transition);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }

            nav.active {
                height: auto;
                padding: 20px 0;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .section-title h2 {
                font-size: 28px;
            }

            .hero-title {
                font-size: 36px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .footer-top {
                grid-template-columns: 1fr;
            }

            .pricing-container {
                grid-template-columns: 1fr;
            }

            .modal-img {
                height: 250px;
            }

            .modal-details {
                grid-template-columns: 1fr;
            }
        }