        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
        }

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

        /* Header */
        .header {
            background: #fff;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo-icon {
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo-icon img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        .logo h1 {
            font-family: 'Playfair Display', serif;
            color: #495f4f;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
            line-height: 1.2;
            display: flex;
            align-items: center;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav a {
            text-decoration: none;
            color: #495f4f;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: #3a4a3a;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #495f4f;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            height: 70vh;
            overflow: hidden;
        }

        .hero-image {
            width: 100%;
            height: 100%;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Control de imágenes hero según dispositivo */
        .hero-desktop {
            display: block;
        }

        .hero-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .hero-desktop {
                display: none;
            }

            .hero-mobile {
                display: block;
            }
        }

        /* Main Content */
        .main-content {
            background: #f8f9fa;
            padding: 20px 0 20px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: start;
            max-width: 800px;
            margin: 0 auto;
        }

        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: #495f4f;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }

        .description {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .description.elegant-text {
            font-family: 'Cormorant Garamond', 'Georgia', serif;
            font-size: 20px;
            font-weight: 400;
            color: #555;
            letter-spacing: 0.3px;
            line-height: 1.5;
            text-align: center;
        }

        .services h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: #495f4f;
            margin-bottom: 20px;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            justify-items: center;
        }

        .service-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .service-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #495f4f;
            border-radius: 8px;
            margin-bottom: 5px;
        }

        .service-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .service-item span {
            display: block;
            color: #495f4f;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .content-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .image-thumbnail {
            width: 200px;
            height: 150px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .image-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .btn-reservar {
            background: #495f4f;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(73, 95, 79, 0.3);
            font-family: 'Playfair Display', serif;
            width: 100%;
            max-width: 300px;
        }

        .btn-reservar:hover {
            background: #3a4a3a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(73, 95, 79, 0.4);
        }

        /* Plans */
        .plans {
            padding: 10px 0 80px 0;
            background: #f8f9fa;
        }

        .plans h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: #495f4f;
            text-align: center;
            margin-bottom: 50px;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .plan-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .plan-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .plan-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .plan-card:hover .plan-image img {
            transform: scale(1.05);
        }

        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .plan-header {
            background: linear-gradient(135deg, #495f4f, #3a4a3a);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .plan-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .plan-price {
            font-size: 36px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .plan-price span {
            font-size: 18px;
            font-weight: 400;
            opacity: 0.9;
        }

        .plan-content {
            padding: 30px;
        }

        .plan-features h4 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            color: #495f4f;
            margin-bottom: 15px;
        }

        .plan-features ul {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .plan-features li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #666;
        }

        .plan-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #495f4f;
            font-weight: bold;
        }

        .plan-schedule {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .schedule-item {
            margin-bottom: 10px;
            color: #666;
        }

        .schedule-item:last-child {
            margin-bottom: 0;
        }

        .plan-location {
            background: #e8f5e8;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #495f4f;
            font-weight: 500;
        }

        .plan-info {
            text-align: center;
            margin-bottom: 25px;
        }

        .plan-info a {
            color: #495f4f;
            text-decoration: none;
            font-weight: 500;
        }

        .plan-info a:hover {
            text-decoration: underline;
        }

        .btn-plan {
            width: 100%;
            background: #495f4f;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Playfair Display', serif;
        }

        .btn-plan:hover {
            background: #3a4a3a;
            transform: translateY(-2px);
        }

        /* Gallery */
        .gallery {
            padding: 20px 0 80px 0;
            background: white;
        }

        .gallery h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: #36533D;
            text-align: center;
            margin-bottom: 50px;
        }

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

        .gallery-item {
            position: relative;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

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

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .gallery-item img.gallery-img-top {
            object-position: center 20% !important;
        }

        /* Asegurar que el estilo se aplique incluso después del scroll */
        .gallery-item img[src*="1.jpg"].gallery-img-top,
        .gallery-item img[src*="3.jpg"].gallery-img-top {
            object-position: center 20% !important;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Location */
        .location {
            padding: 20px 0 80px 0;
            background: #f8f9fa;
        }

        .location h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: #36533D;
            text-align: center;
            margin-bottom: 20px;
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .location-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: #36533D;
            margin-bottom: 20px;
        }

        .location-info p {
            font-size: 16px;
            color: #666;
            margin-bottom: 15px;
        }

        .directions h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #36533D;
            margin: 30px 0 15px 0;
        }

        .directions ol {
            padding-left: 20px;
        }

        .directions li {
            margin-bottom: 10px;
            color: #666;
        }

        .map {
            height: 300px;
            background: #e0e0e0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
            overflow: hidden;
            position: relative;
        }

        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

        .btn-maps {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25d366;
            color: white;
            text-decoration: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            margin-top: 15px;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .btn-maps:hover {
            background: #128c7e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .btn-maps span {
            font-size: 20px;
        }

        .map-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Reviews Section */
        .reviews {
            padding: 80px 0;
            background: white;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .reviews-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: #36533D;
            margin-bottom: 20px;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f8f9fa;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            color: #495f4f;
        }

        .google-badge svg {
            width: 24px;
            height: 24px;
        }

        .reviews-grid {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 10px 0 20px 0;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        .reviews-grid::-webkit-scrollbar {
            height: 8px;
        }

        .reviews-grid::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .reviews-grid::-webkit-scrollbar-thumb {
            background: #495f4f;
            border-radius: 10px;
        }

        .reviews-grid::-webkit-scrollbar-thumb:hover {
            background: #3a4a3a;
        }

        .review-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            flex: 0 0 280px;
            min-width: 280px;
            max-width: 280px;
        }

        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #495f4f 0%, #3a4a3a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
            flex-shrink: 0;
            overflow: hidden;
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .review-author-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            color: #36533D;
            margin: 0 0 3px 0;
        }

        .review-author-info p {
            font-size: 12px;
            color: #666;
            margin: 0;
        }

        .review-rating {
            display: flex;
            gap: 2px;
            flex-shrink: 0;
        }

        .review-rating svg {
            width: 16px;
            height: 16px;
            fill: #FFA500;
        }

        .review-text {
            color: #555;
            line-height: 1.6;
            margin-bottom: 12px;
            font-size: 13px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .review-date {
            font-size: 11px;
            color: #999;
            text-align: right;
        }

        .review-placeholder {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            background: #f8f9fa;
            border-radius: 12px;
            border: 2px dashed #ddd;
        }

        .review-placeholder p {
            color: #666;
            margin: 10px 0;
        }

        .review-note {
            font-size: 14px;
            color: #999;
            font-style: italic;
        }

        .reviews-footer {
            text-align: center;
            margin-top: 40px;
        }

        .btn-google-reviews {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #495f4f;
            color: white;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(73, 95, 79, 0.3);
        }

        .btn-google-reviews:hover {
            background: #3a4a3a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(73, 95, 79, 0.4);
        }

        .btn-google-reviews svg {
            width: 20px;
            height: 20px;
        }

        /* Booking System */
        .booking-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
        }

        .booking-accordion {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .booking-accordion-header {
            width: 100%;
            background: linear-gradient(135deg, #495f4f 0%, #3a4a3a 100%);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .booking-accordion-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }

        .booking-accordion-header:hover::before {
            left: 100%;
        }

        .booking-accordion-header:hover {
            background: linear-gradient(135deg, #3a4a3a 0%, #495f4f 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(73, 95, 79, 0.3);
        }

        .booking-accordion-header.active {
            background: linear-gradient(135deg, #3a4a3a 0%, #495f4f 100%);
        }

        .accordion-header-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 35px 50px;
            position: relative;
            z-index: 1;
        }

        .accordion-icon-wrapper {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .booking-accordion-header:hover .accordion-icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        .booking-accordion-header.active .accordion-icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .accordion-icon {
            width: 24px;
            height: 24px;
            color: white;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            stroke-width: 2.5;
        }

        .booking-accordion-header.active .accordion-icon {
            transform: rotate(180deg);
        }

        .booking-accordion-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: white;
            margin: 0;
            font-weight: 600;
            flex: 1;
        }

        .accordion-subtitle {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            font-weight: 400;
            margin-left: auto;
            transition: opacity 0.3s;
        }

        .booking-accordion-header.active .accordion-subtitle {
            opacity: 0.7;
        }

        .booking-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                        opacity 0.4s ease-out 0.1s,
                        padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            padding: 0;
            visibility: hidden;
        }

        .booking-accordion-content.open {
            max-height: 3000px;
            opacity: 1;
            padding: 50px 50px 50px 50px;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .booking-section .container {
                padding: 0 10px;
            }

            .booking-accordion {
                margin: 0;
                border-radius: 15px;
            }

            .accordion-header-content {
                padding: 20px 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .booking-accordion-header h2 {
                font-size: 24px;
                flex: none;
                text-align: center;
            }

            .accordion-subtitle {
                width: 100%;
                margin-left: 0;
                margin-top: 8px;
            }

            .booking-accordion-content.open {
                padding: 20px 10px;
            }
        }

        .booking-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .booking-form {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .booking-form h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: #495f4f;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #495f4f;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }

        .form-group input[type="file"] {
            padding: 10px;
            cursor: pointer;
            background: #f8f9fa;
        }

        .form-group input[type="file"]:focus {
            border-color: #495f4f;
            background: #fff;
        }

        .form-group small {
            display: block;
            margin-top: 8px;
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #495f4f;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
        }

        .checkbox-label input[type="checkbox"] {
            width: auto;
            margin-right: 10px;
        }

        .btn-booking {
            width: 100%;
            background: #495f4f;
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Playfair Display', serif;
        }

        .btn-booking:hover {
            background: #3a4a3a;
            transform: translateY(-2px);
        }

        .booking-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .booking-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: #495f4f;
            margin-bottom: 20px;
        }

        .info-card {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #495f4f;
        }

        .info-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            color: #495f4f;
            margin-bottom: 15px;
        }

        .info-card p {
            margin-bottom: 10px;
            color: #666;
            line-height: 1.6;
        }

        .btn-whatsapp-info {
            background: #25d366;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .btn-whatsapp-info:hover {
            background: #128c7e;
            transform: translateY(-2px);
        }

        .calendar-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: #36533D;
            text-align: center;
            margin-bottom: 50px;
        }

        .calendar-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .calendar-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: #36533D;
        }

        .calendar-btn {
            background: #36533D;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s;
        }

        .calendar-btn:hover {
            background: #2a3d2e;
            transform: scale(1.1);
        }

        .calendar {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .calendar-day.available {
            background: white;
            color: #36533D;
            border: 2px solid #ddd;
        }

        .calendar-day.available:hover {
            background: #f0f0f0;
            color: #36533D;
            border: 2px solid #495f4f;
        }

        .calendar-day.unavailable {
            background: #f5f5f5;
            color: #ccc;
            cursor: not-allowed;
        }

        .calendar-day.reservada {
            background: #4a90e2;
            color: white;
            border: 2px solid #357abd;
            cursor: not-allowed;
            font-weight: 600;
        }
        
        .calendar-day.reserved {
            background: #4a90e2;
            color: white;
            border: 2px solid #357abd;
            cursor: not-allowed;
            font-weight: 600;
        }
        
        .calendar-day.pendiente {
            background-color: #fff9c4;
            color: #856404;
            cursor: not-allowed;
            border: 2px solid #ffc107;
            font-weight: 600;
        }
        
        .calendar-day.bloqueada {
            background-color: #e0e0e0;
            color: #666666;
            cursor: not-allowed;
            opacity: 0.6;
            border: 2px solid #999999;
        }
        
        .calendar-day.past {
            background-color: #f5f5f5;
            color: #999999;
            cursor: not-allowed;
        }

        .calendar-day.other-month {
            color: #ccc;
        }

        .availability-calendar-wrapper {
            margin-bottom: 30px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            overflow-x: hidden;
        }
        
        .availability-calendar-wrapper h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #495f4f;
            margin-bottom: 20px;
            text-align: center;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .calendar-container {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow-x: hidden;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .calendar-header h5 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            color: #495f4f;
            margin: 0;
        }
        
        .calendar-nav {
            background: #495f4f;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .calendar-nav:hover {
            background: #3a4a3a;
            transform: scale(1.1);
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .calendar-legend {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 4px;
        }

        .legend-color.available {
            background: white;
            border: 1px solid #ddd;
        }

        .legend-color.unavailable {
            background: #f5f5f5;
            border: 1px solid #ccc;
        }

        .legend-color.reserved {
            background: #4a90e2;
            border: 1px solid #357abd;
        }
        
        .legend-color.reservada {
            background: #4a90e2;
            border: 1px solid #357abd;
        }
        
        .legend-color.pendiente {
            background: #fff9c4;
            border: 1px solid #ffc107;
        }
        
        .legend-color.bloqueada {
            background: #e0e0e0;
            border: 1px solid #999999;
        }

        /* Action Buttons */
        .action-buttons {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .buttons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 600px;
            margin: 0 auto;
        }

        .btn-whatsapp, .btn-reservar-main {
            padding: 20px 30px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-whatsapp {
            background: #25d366;
            color: white;
        }

        .btn-whatsapp:hover {
            background: #128c7e;
            transform: translateY(-2px);
        }

        .btn-reservar-main {
            background: #36533D;
            color: white;
        }

        .btn-reservar-main:hover {
            background: #2a3d2e;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: #36533D;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3, .footer-section h4 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
        }

        .footer-section p {
            margin-bottom: 10px;
            color: #e0e0e0;
        }

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

        .social-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 6px;
        }

        .social-links a:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .social-links a svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5d4a;
            color: #e0e0e0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav a {
                display: none;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .location-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .location .container {
                padding: 0 20px;
            }

            .map-container {
                width: 100%;
                padding: 0;
            }

            .map {
                height: 300px;
                width: 100%;
                margin: 0;
            }

            .btn-maps {
                width: 100%;
                max-width: 100%;
                justify-content: center;
                font-size: 14px;
                padding: 12px 20px;
            }

            .buttons-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-section {
                text-align: center;
            }

            .footer-section p {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            .social-links {
                justify-content: center;
            }

            .calendar-legend {
                flex-direction: column;
                gap: 15px;
            }

            /* Botón Reservar expandido en móviles */
            .btn-reservar {
                width: 100%;
                max-width: none;
                margin: 0 20px;
                padding: 18px 30px;
                font-size: 18px;
            }

            .content-right {
                padding: 0 20px;
            }

            /* Planes responsive */
            .plans-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 20px;
            }

            .plan-card {
                margin: 0;
            }

            .plan-header {
                padding: 25px 20px;
            }

            .plan-header h3 {
                font-size: 20px;
            }

            .plan-price {
                font-size: 28px;
            }

            .plan-content {
                padding: 25px 20px;
            }

            .plan-image {
                height: 150px;
            }

            /* Booking responsive */
            .booking-section {
                padding: 40px 0;
            }

            .booking-section .container {
                padding: 0 5px;
                max-width: 100%;
            }

            .booking-accordion {
                margin: 0;
                border-radius: 15px;
                width: 100%;
            }

            .booking-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 5px;
                width: 100%;
                max-width: 100%;
            }

            .booking-form {
                padding: 20px 10px;
                border-radius: 12px;
                width: 100%;
                box-sizing: border-box;
                margin: 0;
            }

            .booking-form h3 {
                font-size: 20px;
                margin-bottom: 20px;
                word-wrap: break-word;
                overflow-wrap: break-word;
                line-height: 1.3;
            }

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

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 16px;
                padding: 14px 16px;
            }

            .availability-calendar-wrapper {
                padding: 15px 0;
                margin: 0 -15px 20px -15px;
                overflow-x: hidden;
                width: calc(100% + 30px);
            }

            .availability-calendar-wrapper h4 {
                font-size: 16px;
                margin-bottom: 15px;
                padding: 0 15px;
                line-height: 1.3;
            }

            .calendar-container {
                padding: 10px 15px;
                overflow-x: hidden;
                width: 100%;
                box-sizing: border-box;
            }

            .calendar-header {
                margin-bottom: 12px;
                padding: 0;
            }

            .calendar-header h5 {
                font-size: 14px;
                white-space: nowrap;
            }

            .calendar-nav {
                width: 32px;
                height: 32px;
                font-size: 16px;
                flex-shrink: 0;
            }

            .calendar-grid {
                gap: 2px;
                width: 100%;
                padding: 0;
            }

            .calendar-day {
                font-size: 12px;
                min-height: 35px;
                padding: 4px 2px;
            }

            .calendar-legend {
                flex-direction: column;
                gap: 8px;
                margin-top: 15px;
                font-size: 10px;
                padding: 0 5px;
            }
            
            /* Encabezados de días de la semana más pequeños en móvil */
            .calendar-grid > div:first-child,
            .calendar-grid > div:nth-child(2),
            .calendar-grid > div:nth-child(3),
            .calendar-grid > div:nth-child(4),
            .calendar-grid > div:nth-child(5),
            .calendar-grid > div:nth-child(6),
            .calendar-grid > div:nth-child(7) {
                font-size: 10px !important;
                padding: 4px 2px !important;
                font-weight: bold;
            }
            
            /* Prevenir overflow horizontal */
            .booking-accordion-content {
                overflow-x: hidden;
            }
            
            .booking-container {
                overflow-x: hidden;
            }
            
            .booking-form {
                overflow-x: hidden;
            }

            .legend-item {
                gap: 6px;
            }

            .legend-color {
                width: 14px;
                height: 14px;
            }

            .booking-info {
                gap: 15px;
            }

            .info-card {
                padding: 20px 15px;
            }

            .info-card h4 {
                font-size: 16px;
            }

            .btn-booking {
                padding: 16px 24px;
                font-size: 16px;
            }

            /* Reviews responsive */
            .reviews {
                padding: 40px 0;
            }

            .reviews-header h2 {
                font-size: 32px;
            }

            .reviews-grid {
                gap: 15px;
                padding: 10px 0 15px 0;
            }

            .review-card {
                flex: 0 0 250px;
                min-width: 250px;
                max-width: 250px;
                padding: 15px;
            }

            .review-card {
                padding: 20px;
            }

            .review-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .review-rating {
                align-self: flex-start;
            }

            .btn-google-reviews {
                padding: 12px 24px;
                font-size: 14px;
            }
        }
