/* Google Fonts: Forzar font-display: swap */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display'), url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYh2E.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: local('Inter'), url('https://fonts.gstatic.com/s/inter/v12/UcCO3H6m3s5wqk2wFAM.woff2') format('woff2');
  font-display: swap;
}

/* FontAwesome: Forzar font-display: swap */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
  font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.6);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2cc990;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-placeholder {
    background-color: #f8f9fa;
    margin-right: 10px;
    border-radius: 50%;
}

.logo-aht {
    height: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links li a:hover {
    color: #2cc990;
}

.nav-reserve-btn {
    background: #2cc990;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-reserve-btn:hover {
    background: #25b37e;
    color: #f8f9fa !important;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('img/background.webp') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    animation: zoomInOut 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(44, 201, 144, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.hero-play-button:hover {
    background: rgba(44, 201, 144, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(44, 201, 144, 0.6);
}

.hero-play-button i {
    font-size: 2.5rem;
    color: white;
    margin-left: 8px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content video {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
}

.video-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    color: #2cc990;
    background: rgba(0, 0, 0, 0.7);
}

.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 201, 144, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    z-index: 10001;
}

.video-nav:hover {
    background: #2cc990;
    transform: translateY(-50%) scale(1.1);
}

.video-prev {
    left: 20px;
}

.video-next {
    right: 20px;
}

.video-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10001;
}

.video-title {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 30px;
    border-radius: 25px;
    z-index: 10001;
}

.reservation-form-hero {
    background: rgba(44, 62, 80, 0.6);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: center;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    color: white;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 150px;
    font-family: 'Inter', sans-serif;
}

.form-group input[type="date"] {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
}

.btn-reserve {
    background: #2cc990;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: end;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-reserve:hover {
    background: #25b37e;
    transform: translateY(-2px);
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2cc990;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: #2cc990;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature {
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: scale(1.03);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #2cc990;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
    columns: 3;
    column-gap: 15px;
}

.gallery-item {
    background: linear-gradient(135deg, #2cc990, #25b37e);
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    break-inside: avoid;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.gallery-item-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(44, 201, 144, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    backdrop-filter: blur(5px);
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Accommodation Types */
.accommodations {
    background: #f8f9fa;
}

.accommodation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.accommodation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.accommodation-card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-header {
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 30px;
    text-align: center;
}

.card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.card-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.card-content {
    padding: 40px;
    flex: 1;
}

.card-content ul {
    list-style: none;
}

.card-content li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-content li i {
    color: #2cc990;
    font-size: 1.1rem;
    width: 20px;
}

.common-features {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.common-features h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.common-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.common-features ul {
    list-style: none;
    width: 100%;
    max-width: 300px;
}

.common-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
}

.common-features li i {
    color: #2cc990;
    font-size: 1.1rem;
    width: 20px;
}

/* Partner Discounts Section */
.partner-discounts {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

.discounts-banner {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #2cc990;
}

.discounts-banner h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.discounts-banner h3 i {
    color: #2cc990;
    margin-right: 10px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.partner-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.partner-card:hover {   
    box-shadow: 0 10px 30px rgba(44, 201, 144, 0.2);
    border-color: #2cc990;
    background: white;
}

.partner-card:hover::before {
    transform: scale(1.02);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.partner-info {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-info {
    opacity: 1;
    max-height: 300px;
}

.partner-card:hover .partner-logo {
    height: 40px;
    margin-bottom: 10px;
}

.partner-info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.partner-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

.partner-info .payment-method {
    color: #2cc990;
    font-weight: 600;
    margin-top: 8px;
}

.partner-info .validity {
    color: #e67e22;
    font-weight: 600;
    margin-top: 8px;
}

.partner-info .note {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.discounts-note {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2cc990;
}

.discounts-note i {
    color: #2cc990;
    margin-right: 8px;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.google-rating-summary {
    text-align: center;
    margin-bottom: 60px;
}

.rating-box {
    background: white;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 40px;
    min-width: auto;
    max-width: 800px;
    margin: 0 auto;
}

.rating-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid #e0e0e0;
    padding-right: 40px;
}

.rating-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.rating-score {
    font-size: 4.5rem;
    font-weight: 700;
    color: #2cc990;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 1.8rem;
    color: #ffa500;
}

.rating-count {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285f4;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    align-self: center;
}

.google-link:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.testimonial-stars {
    color: #ffa500;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    background: #f0f9f6;
    color: #2cc990;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.testimonial-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
}

.testimonial-ratings span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-ratings strong {
    color: #2c3e50;
}

.testimonial-highlights {
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
}

.testimonial-highlights strong {
    color: #2cc990;
    display: block;
    margin-bottom: 5px;
}

/* Reservation Form Section */
.reservation {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.reservation h2 {
    color: white;
}

.reservation-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.9);
}

.reservation-form input[type="date"] {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
}

.reservation-form textarea {
    resize: vertical;
    height: 120px;
}

/* Map */
.map {
    background: #f8f9fa;
}

.map-container {
    text-align: center;
}

.map-info {
    margin-bottom: 40px;
}

.map-info h3 {
    color: #2cc990;
    margin-bottom: 20px;
}

.map-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-info i {
    color: #2cc990;
    width: 20px;
}

.map-frame {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #2cc990;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #2cc990;
}

.footer-section i {
    width: 20px;
    color: #2cc990;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.membership-aht {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Botones de promociones y galería */
.promo-btn,
.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 201, 144, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.promo-btn:hover,
.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 201, 144, 0.4);
    background: linear-gradient(135deg, #25b37e, #22a06b);
    color: white;
}

.promo-btn i,
.gallery-btn i {
    font-size: 1.2rem;
}

/* Animación para galería adicional */
.additional-gallery {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.municipio img {
    height: 50px;
    border-radius: 10px;
}

/* Events Cards Hover */
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #2cc990;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 201, 144, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: #2cc990;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10000;
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(44, 201, 144, 0.4);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: #2cc990;
    color: #2cc990;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    border-color: #2cc990;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item-hidden {
    display: none;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 201, 144, 0.3);
    font-family: 'Inter', sans-serif;
    margin: 20px auto;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 201, 144, 0.4);
    background: linear-gradient(135deg, #25b37e, #22a06b);
}

.load-more-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 24px;
        padding: 15px 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-play-button {
        width: 80px;
        height: 80px;
    }

    .hero-play-button i {
        font-size: 2rem;
    }

    .video-modal-content {
        max-width: 95%;
    }

    .video-modal-close {
        font-size: 30px;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .video-nav {
        font-size: 24px;
        padding: 15px 10px;
    }

    .video-prev {
        left: 10px;
    }

    .video-next {
        right: 10px;
    }

    .video-title {
        font-size: 0.9rem;
        top: 60px;
        padding: 8px 20px;
    }

    .video-counter {
        bottom: 20px;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(44, 62, 80, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .reservation-form-hero {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 1;
    }

    .accommodation-cards {
        grid-template-columns: 1fr;
    }

    .gallery-btn {
        font-size: 1rem;
        padding: 12px 20px;
        margin: 5px;
    }

    .section {
        padding: 60px 0;
    }

    .navbar {
        padding: 10px 0;
    }

    .membership-aht {
        flex-direction: column;
        gap: 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: auto;
    }

    .rating-box {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }

    .rating-left {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 25px;
        width: 100%;
    }

    .rating-right {
        align-items: center;
        text-align: center;
    }

    .rating-score {
        font-size: 3.5rem;
    }

    .google-link {
        align-self: center;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        min-height: auto;
    }

    .partner-info {
        opacity: 1;
        max-height: none;
    }

    .partner-logo {
        height: 50px;
    }

    .partner-logo img {
        filter: grayscale(0%);
    }

    .discounts-banner {
        padding: 30px 20px;
    }

    .discounts-banner h3 {
        font-size: 1.5rem;
    }
}