/* ===================================
   Hotel Imperial Las Perlas - Main CSS
   =================================== */

/* Variables */
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #4a90e2;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-ocean: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

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

.btn-accent:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: white;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo img {
    height: 45px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transform: scaleX(1.3);
}

.nav-logo h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-logo span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-reservar {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
}

.btn-reservar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Ocultar cualquier texto de ubicación flotante en el hero */
.hero > div[style*="position: absolute"]:not(.hero-slider):not(.hero-content):not(.scroll-indicator),
.hero > div[style*="left"]:not(.hero-slider):not(.hero-content):not(.scroll-indicator),
.hero .location-text,
.hero .hotel-location,
.hero .address-overlay,
.hero > p,
.hero > span,
.hero > div:empty,
.hero > div:not(.hero-slider):not(.hero-content):not(.scroll-indicator):not(.hero-actions) {
    display: none !important;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 
                 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
}

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

.hero-features {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    color: white;
    z-index: 2;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    margin: 0 auto 10px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Quick Booking */
.quick-booking {
    background: var(--gradient-ocean);
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
}

.booking-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    margin: 1rem 0;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 2rem 0;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.about-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 1rem;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

.about-img.main {
    grid-row: span 2;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.room-badge.premium {
    background: var(--gradient-primary);
}

.room-content {
    padding: 1.5rem;
}

.room-title {
    margin-bottom: 0.5rem;
}

.room-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.room-features span {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.room-features i {
    margin-right: 4px;
    color: var(--secondary-color);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.period {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--gradient-ocean);
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-card.featured li {
    color: rgba(255,255,255,0.9);
}

.service-card li::before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    background: #f8f9fa;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    grid-auto-flow: dense;
}

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

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 516px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    color: white;
    font-weight: 500;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Experiences Section */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.experience-image {
    position: relative;
    height: 200px;
}

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

.experience-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.experience-content {
    padding: 1.5rem;
}

.experience-content h3 {
    margin-bottom: 0.75rem;
}

.experience-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.experience-details {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.experience-details i {
    margin-right: 4px;
    color: var(--secondary-color);
}

/* Location Section */
.location {
    background: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.location-feature {
    display: flex;
    gap: 1rem;
}

.location-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.location-feature h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.location-feature span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    contain: layout;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    z-index: 1;
    pointer-events: none;
}

/* Ocultar el texto de ubicación en el map-overlay en móviles */
@media (max-width: 768px) {
    .map-overlay p,
    .map-info p,
    .map-overlay h4,
    .map-info h4,
    .map-overlay,
    .map-info {
        display: none !important;
    }
}

.map-info {
    color: white;
}

.map-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

/* Reservations Section */
.reservations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reservation-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-info {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--secondary-color);
}

.reservation-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.reservation-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.reservation-form .form-group {
    margin-bottom: 1.5rem;
}

.reservation-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.reservation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.full-width {
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.footer-logo span {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p {
    margin: 1rem 0;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .location-content,
    .reservations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Ocultar información de ubicación en el slider móvil */
    .hero-location,
    .slide-location,
    .hero-address,
    .hero-overlay-info,
    .hero .location-info,
    .hero-content .location-text {
        display: none !important;
    }

    /* Ajustar tamaños de texto en el hero para móvil */
    .hero-subtitle {
        font-size: 0.85rem !important;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .hero-title {
        font-size: 1.75rem !important;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    /* Asegurar que el quick-booking se vea bien en móvil */
    .quick-booking {
        position: relative;
        z-index: 10;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .booking-form {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid,
    .services-grid,
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .location-features,
    .reservation-benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    /* Ajustes adicionales para pantallas muy pequeñas */
    .hero-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 0.5px;
    }

    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-description {
        font-size: 0.85rem !important;
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    /* Evitar que los números de teléfono se partan */
    .phone-number {
        white-space: nowrap;
        display: inline-block;
    }

    /* Ajustar tamaño de fuente si es necesario en móviles muy pequeños */
    .contact-info-card p {
        font-size: 14px;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-140px);
}

.whatsapp-tooltip {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateX(-150px) translateY(-50%);
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #25D366;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Phone Call Button */
.phone-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.4);
    z-index: 997;
    transition: all 0.3s;
}

.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.6);
}

/* Booking.com Integration Styles */
.booking-button {
    position: relative;
}

.booking-button::after {
    content: "Booking.com";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #003580;
    opacity: 0.7;
}

.booking-widget {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    border: 2px solid #003580;
}

.booking-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.booking-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 53, 128, 0.3);
}

.booking-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 53, 128, 0.4);
    background: linear-gradient(135deg, #0057b8 0%, #003580 100%);
}

.divider-or {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.divider-or::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider-or span {
    position: relative;
    background: white;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
}

.booking-redirect {
    animation: subtle-pulse 3s infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Update nav booking button */
.nav-link.booking-button {
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link.booking-button:hover {
    background: linear-gradient(135deg, #0057b8 0%, #003580 100%);
    transform: translateY(-1px);
}
/* Ajustes adicionales para botones flotantes en el lado derecho */
.whatsapp-tooltip {
    right: 70px;
    left: auto;
    transform: translateY(-50%);
}

.whatsapp-button:hover .whatsapp-tooltip {
    transform: translateY(-50%);
}

/* Asegurar que los botones estén bien posicionados en móviles */
@media (max-width: 768px) {
    .whatsapp-button {
        right: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
    }

    .phone-button {
        right: 20px;
        bottom: 85px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-tooltip {
        display: none; /* Ocultar tooltip en móviles */
    }

    /* Hacer que el formulario de reservas sea responsivo */
    .reservations-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .reservation-form {
        margin-top: 2rem;
    }
}

/* ===================================
   Popup Promocional WhatsApp - Nuevo Diseño
   =================================== */

/* Overlay de fondo */
.promo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.promo-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Popup principal - Nuevo diseño */
.promo-popup-new {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.95);
    width: 85%;
    max-width: 750px;
    height: 450px;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.92), rgba(0, 77, 115, 0.92)), url('/images/hotel/149112366.jpg') center/cover;
    border-radius: 30px;
    overflow: hidden;
    z-index: 10000 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.promo-popup-new.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Botón de cerrar */
.promo-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.promo-close-btn:hover {
    transform: rotate(90deg);
    background: #f0f0f0;
}

.promo-close-btn i {
    font-size: 20px;
    color: #333;
}

/* Container principal */
.promo-container {
    display: flex;
    height: 500px;
}

/* Lado izquierdo con imagen */
.promo-image-side {
    width: 45%;
    position: relative;
    overflow: hidden;
}

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

.promo-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
}

/* Badge del descuento */
.promo-badge-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.promo-discount-number {
    font-size: 80px;
    font-weight: bold;
    display: block;
    line-height: 1;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.promo-discount-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-top: 5px;
}

.promo-discount-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
    display: block;
    letter-spacing: 2px;
}

/* Lado derecho con contenido */
.promo-content-side {
    width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-title {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.promo-subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Features */
.promo-features {
    margin-bottom: 35px;
}

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

.promo-feature i {
    color: #25D366;
    font-size: 20px;
}

.promo-feature span {
    color: #555;
    font-size: 16px;
}

/* Botón CTA */
.promo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
}

.promo-cta-button:hover {
    background: #20BA5C;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.promo-cta-button i {
    font-size: 24px;
}

.promo-contact-info {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
}

.promo-contact-info strong {
    color: #333;
    font-weight: 600;
}

.promo-terms {
    color: #999;
    font-size: 12px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-popup-new {
        width: 95%;
        max-width: none;
    }

    .promo-container {
        flex-direction: column;
        height: auto;
    }

    .promo-image-side {
        width: 100%;
        height: 200px;
    }

    .promo-content-side {
        width: 100%;
        padding: 30px 20px;
    }

    .promo-discount-number {
        font-size: 60px;
    }

    .promo-discount-text {
        font-size: 20px;
    }

    .promo-title {
        font-size: 24px;
    }

    .promo-subtitle {
        font-size: 16px;
    }
}

.promo-popup {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    z-index: 10000 !important;
    width: 90%;
    max-width: 700px;
    min-height: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block !important;
}

.promo-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.promo-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.promo-close i {
    font-size: 18px;
    color: #333;
}

.promo-content {
    display: flex;
    align-items: center;
    padding: 60px;
    gap: 40px;
    height: 100%;
    min-height: 400px;
}

.promo-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 180px;
    height: 180px;
    min-width: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    }
}

.promo-percent {
    font-size: 56px;
    font-weight: bold;
    line-height: 1;
}

.promo-text {
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 8px;
}

.promo-info {
    flex: 1;
    text-align: center;
}

.promo-info h3 {
    color: #333;
    font-size: 36px;
    margin: 0 0 15px 0;
    font-family: 'Playfair Display', serif;
}

.promo-highlight {
    color: #667eea;
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
}

.promo-info p {
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
    font-size: 18px;
}

.promo-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.promo-whatsapp-btn:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.promo-whatsapp-btn i {
    font-size: 24px;
}

.promo-phone {
    color: #999;
    font-size: 14px;
    margin-top: 15px;
}

.promo-phone i {
    color: #667eea;
    margin-right: 5px;
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .promo-popup {
        width: 95%;
        max-width: none;
    }

    .promo-content {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .promo-badge {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .promo-percent {
        font-size: 28px;
    }

    .promo-info h3 {
        font-size: 24px;
    }

    .promo-highlight {
        font-size: 16px;
    }

    .promo-whatsapp-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}


/* ===== POPUP PROMOCIONAL - DISEÑO VISUAL CON IMAGEN DE FONDO ===== */
/* Popup principal con imagen de fondo */
.promo-popup-new.visual-style {
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.93), rgba(0, 77, 115, 0.93)), 
                url("/images/hotel/149112366.jpg") center/cover !important;
}

/* Container centrado */
.promo-container-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 50px;
    text-align: center;
    position: relative;
}

/* Badge animado de descuento */
.promo-badge-animated {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: -10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: glow-badge 2s ease-in-out infinite;
    position: relative;
}

.promo-badge-animated::before,
.promo-badge-animated::after {
    content: "✨";
    position: absolute;
    font-size: 20px;
    animation: sparkle-rotate 1.5s ease-in-out infinite;
}

.promo-badge-animated::before {
    left: -25px;
}

.promo-badge-animated::after {
    right: -25px;
    animation-delay: 0.75s;
}

@keyframes glow-badge {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
        transform: translateY(-3px);
    }
}

@keyframes sparkle-rotate {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2) rotate(180deg); 
    }
}

.discount-number {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.discount-label {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contenido central */
.promo-content-center {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.promo-title-center {
    color: white;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 10px;
    font-family: "Playfair Display", serif;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.promo-subtitle-center {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    margin-bottom: 35px;
    margin-top: 0;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Features inline */
.promo-features-inline {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.promo-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-feature-item i {
    color: #FFD700;
    font-size: 16px;
}

/* CTA WhatsApp Button */
.promo-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
    margin-bottom: 25px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.promo-cta-whatsapp::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.promo-cta-whatsapp:hover::before {
    width: 400px;
    height: 400px;
}

.promo-cta-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
}

.promo-cta-whatsapp i {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.promo-cta-whatsapp span {
    position: relative;
    z-index: 1;
}

.promo-contact-alt {
    color: white;
    font-size: 17px;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promo-contact-alt strong {
    color: #FFD700;
    font-weight: 800;
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive móvil */
@media (max-width: 768px) {
    .promo-popup-new {
        width: 95%;
        height: auto;
        min-height: 450px;
    }
    
    .promo-container-center {
        padding: 30px 20px;
    }
    
    .promo-title-center {
        font-size: 26px;
    }
    
    .promo-subtitle-center {
        font-size: 16px;
    }
    
    .promo-features-inline {
        gap: 10px;
    }
    
    .promo-feature-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .promo-cta-whatsapp {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .discount-number {
        font-size: 22px;
    }
    
    .discount-label {
        font-size: 14px;
    }
}

/* ===== GALLERY LIGHTBOX STYLES ===== */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

.gallery-lightbox.active {
    display: block;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    max-width: 1200px;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    display: none;
}

.lightbox-loader i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Botones de navegación */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 20px;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.lightbox-next {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-50%);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* Caption */
.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    max-width: 80%;
}

.lightbox-caption-text {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.lightbox-counter {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-container {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        bottom: 10px;
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* Mejora para las imágenes de la galería */
.gallery-item-clean {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item-clean::after {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item-clean:hover::after {
    opacity: 0.8;
}

/* === BOOKING CTA IMPROVEMENTS === */
@keyframes pulse-reserve {
    0% { box-shadow: 0 4px 15px rgba(230,126,34,0.4); }
    50% { box-shadow: 0 4px 25px rgba(230,126,34,0.7); }
    100% { box-shadow: 0 4px 15px rgba(230,126,34,0.4); }
}

.floating-reserve-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(230,126,34,0.7) !important;
}

/* Mobile: stack floating buttons */
@media (max-width: 768px) {
    .floating-reserve-btn {
        bottom: 85px !important;
        right: 15px !important;
        padding: 12px 18px !important;
        font-size: 13px !important;
    }
    .btn-reserve-header {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
}

/* Sticky bottom booking bar on mobile */
@media (max-width: 768px) {
    .mobile-booking-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
        padding: 12px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    }
    .mobile-booking-bar a {
        color: white;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    /* Move floating buttons up when mobile bar is present */
    .whatsapp-button { bottom: 140px !important; }
    .phone-button { bottom: 200px !important; }
    .floating-reserve-btn { display: none !important; }
}

/* ============================================
   IMPROVED NAVBAR - Transparent → White
   ============================================ */
.navbar.navbar-transparent {
    background: transparent;
    box-shadow: none;
}
.navbar.navbar-transparent .nav-link {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.navbar.navbar-transparent .nav-link:hover,
.navbar.navbar-transparent .nav-link.active {
    color: #f39c12;
}
.navbar.navbar-transparent .nav-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.5));
    transition: all 0.4s ease;
}
.navbar.navbar-transparent .language-selector .lang-btn {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Scrolled state */
.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar.navbar-scrolled .nav-link {
    color: #333;
    text-shadow: none;
}
.navbar.navbar-scrolled .nav-link:hover,
.navbar.navbar-scrolled .nav-link.active {
    color: #0077be;
}
.navbar.navbar-scrolled .nav-logo-img {
    height: 45px;
    filter: none;
}
.navbar.navbar-scrolled .language-selector .lang-btn {
    color: #333;
    text-shadow: none;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: all 0.4s ease;
}

.btn-reserve-header {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230,126,34,0.4);
    transition: all 0.3s;
    animation: pulse-reserve 2s infinite;
    white-space: nowrap;
}

/* ============================================
   IMPROVED SLIDER
   ============================================ */
.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 25s ease-in-out infinite alternate;
}

/* Different Ken Burns directions per slide */
.slide:nth-child(1) .slide-bg { animation-name: kenBurns1; }
.slide:nth-child(2) .slide-bg { animation-name: kenBurns2; }
.slide:nth-child(3) .slide-bg { animation-name: kenBurns3; }
.slide:nth-child(4) .slide-bg { animation-name: kenBurns4; }

@keyframes kenBurns1 {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, -1%); }
}
@keyframes kenBurns2 {
    0% { transform: scale(1.1) translate(-1%, 0); }
    100% { transform: scale(1) translate(1%, -1%); }
}
@keyframes kenBurns3 {
    0% { transform: scale(1) translate(1%, 1%); }
    100% { transform: scale(1.12) translate(-1%, 0); }
}
@keyframes kenBurns4 {
    0% { transform: scale(1.08) translate(0, -1%); }
    100% { transform: scale(1) translate(0, 1%); }
}

/* Better gradient overlay */
.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.2) 70%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
}

/* Slider dots/indicators */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.slider-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
}
.hero:hover .slider-arrow {
    opacity: 1;
}
.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Improved hero content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    max-width: 850px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    color: rgba(255,255,255,0.9);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll indicator improved */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
    .slider-arrow { display: none !important; }
    .slider-dots { bottom: 60px; }
    .navbar.navbar-transparent { background: rgba(255,255,255,0.95); box-shadow: 0 1px 5px rgba(0,0,0,0.1); }
    .navbar.navbar-transparent .nav-link { color: #333; text-shadow: none; }
    .navbar.navbar-transparent .nav-logo-img { filter: none; height: 40px; }
}

/* Logo switching: white on transparent navbar, color on scrolled */
.navbar.navbar-transparent .nav-logo-white { display: block !important; }
.navbar.navbar-transparent .nav-logo-color { display: none !important; }
.navbar.navbar-transparent .nav-logo-img { filter: none !important; }
.navbar.navbar-scrolled .nav-logo-white { display: none !important; }
.navbar.navbar-scrolled .nav-logo-color { display: block !important; }
.nav-logo-img { height: 50px; width: auto; object-fit: contain; }

/* Fix navbar spacing - prevent reserve button overlapping Blog */
.nav-menu { gap: 0; }
.nav-menu li { margin: 0; }
.nav-link { padding: 8px 12px !important; font-size: 13px !important; }
.btn-reserve-header { padding: 8px 18px !important; font-size: 12px !important; margin-left: 8px; }
.nav-container { gap: 8px; }
.language-selector { gap: 4px; margin-left: 4px; }
.language-selector .lang-btn { padding: 4px 8px; font-size: 12px; }

/* ===================================
   VISUAL UPGRADE v2 — 2026-03-15
   Modern polish, improved responsive
   =================================== */

/* --- Improved Color Palette --- */
:root {
    --primary-ocean: #0a4d7a;
    --primary-sky: #0077be;
    --accent-gold: #d4a843;
    --accent-coral: #e8734a;
    --bg-warm: #faf8f5;
    --bg-sand: #f5f0e8;
    --text-dark: #1a1a2e;
    --text-body: #3d3d5c;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- Smoother Typography --- */
body {
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

/* --- Navbar Improvements --- */
.navbar {
    padding: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
    padding: 0.75rem 20px;
}

.nav-logo img {
    height: 40px;
    transform: none;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--primary-sky);
}

.nav-link.active {
    color: var(--primary-sky);
    font-weight: 600;
}

.nav-link::after {
    height: 2.5px;
    background: var(--primary-sky);
    border-radius: 2px;
}

.nav-menu {
    gap: 1.5rem;
}

.btn-reserve-header {
    background: linear-gradient(135deg, var(--accent-coral), #e67e22) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 15px rgba(230,126,34,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-reserve-header:hover {
    box-shadow: 0 6px 25px rgba(230,126,34,0.5) !important;
}

/* --- Hero Section Polish --- */
.hero {
    min-height: 100vh;
    min-height: 100svh;
}

.hero-content {
    width: 90%;
    max-width: 750px;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.15);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-actions .btn {
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
}

.hero-actions .btn-secondary {
    border-width: 2px;
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.1);
}

.hero-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-ocean);
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* --- Quick Booking Bar --- */
.quick-booking {
    background: var(--primary-ocean);
    padding: 24px 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(10,77,122,0.3);
}

.booking-form {
    gap: 1rem;
    align-items: flex-end;
}

.booking-form .form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.booking-form .form-group input,
.booking-form .form-group select {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.2);
}

.booking-form .btn-accent {
    background: linear-gradient(135deg, var(--accent-coral), #e67e22);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* --- About Section --- */
.about {
    background: var(--bg-warm);
    padding: 100px 0;
}

.about-content {
    gap: 5rem;
}

.section-subtitle {
    color: var(--accent-coral);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    margin: 0.8rem 0 1.5rem;
}

.about-features {
    grid-template-columns: 1fr 1fr;
}

.about-feature {
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.image-grid {
    grid-template-rows: 220px 220px;
    gap: 0.75rem;
}

.about-img {
    border-radius: 16px;
}

/* --- Room Cards --- */
.rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.room-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.room-card:hover {
    transform: translateY(-8px);
}

.room-image {
    height: 280px;
}

.room-content {
    padding: 28px;
}

.room-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.room-features span {
    background: var(--bg-warm);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--text-body);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.room-features span i {
    color: var(--primary-sky);
    font-size: 0.85rem;
}

.room-badge {
    background: linear-gradient(135deg, var(--accent-gold), #c89b3c);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    padding: 6px 16px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-ocean), #0a6da8);
    color: white;
    border: none;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: white;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0,119,190,0.1), rgba(0,119,190,0.05));
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--primary-sky);
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.15);
}

.service-card.featured .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.service-card li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-body);
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-sky);
    font-weight: bold;
}

.service-card.featured li::before {
    color: var(--accent-gold);
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 100px 0 !important;
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer h3, .footer h4 {
    color: white;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    font-size: 0.92rem;
}

.footer a:hover {
    color: white;
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-sky);
    color: white;
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* --- WhatsApp & Floating Buttons --- */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9998;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    display: none;
}

.whatsapp-button:hover .whatsapp-tooltip {
    display: block;
    position: absolute;
    left: 65px;
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
}

.phone-button {
    position: fixed;
    bottom: 90px;
    left: 25px;
    width: 48px;
    height: 48px;
    background: var(--primary-sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,119,190,0.3);
    z-index: 9998;
    transition: all 0.3s;
}

.phone-button:hover {
    transform: scale(1.1);
}

.floating-reserve-btn {
    bottom: 25px !important;
    right: 25px !important;
    padding: 12px 22px !important;
    font-size: 0.82rem !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 25px rgba(230,126,34,0.4) !important;
}

/* --- Promo Popup --- */
.promo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
}

.promo-popup-new {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    z-index: 10001;
    display: none;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    text-align: center;
}

.promo-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
}

.promo-close-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.promo-badge-animated {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-coral), #e67e22);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.discount-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.discount-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.promo-title-center {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.promo-subtitle-center {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.promo-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.promo-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.promo-cta-whatsapp i {
    font-size: 1.3rem;
}

.promo-contact-alt {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-body);
}

/* --- Reservations Page --- */
.reservation-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.reservation-benefits .benefit i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0,119,190,0.1), rgba(0,119,190,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-sky);
    font-size: 1rem;
    flex-shrink: 0;
}

.reservation-benefits .benefit span {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* --- Language Selector --- */
.language-selector {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-body);
}

.lang-btn.active {
    background: var(--primary-sky);
    color: white;
    border-color: var(--primary-sky);
}

.lang-btn .flag {
    font-size: 14px;
}

/* ===================================
   RESPONSIVE IMPROVEMENTS
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.82rem;
    }

    .about-content {
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 0;
        background: white;
    }

    .nav-container {
        padding: 10px 16px;
        min-height: 56px;
    }

    .nav-logo img {
        height: 32px;
    }

    .btn-reserve-header {
        display: none !important;
    }

    .language-selector {
        display: none;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: all 0.3s;
    }

    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        z-index: 999;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 30px rgba(0,0,0,0.15);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
        font-weight: 500;
    }

    .nav-menu .nav-link.active {
        color: var(--primary-sky);
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content {
        width: 92%;
        padding: 0 16px;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        padding: 6px 16px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }

    .slider-dots { bottom: 60px; }

    /* Quick Booking Mobile */
    .quick-booking {
        padding: 20px 0;
    }

    .booking-form {
        flex-direction: column;
        gap: 12px;
    }

    .booking-form .form-group {
        min-width: 100%;
    }

    .booking-form .btn-accent {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 0.95rem;
    }

    /* Sections Mobile */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* About Mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        padding: 20px;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
    }

    .about-img.main {
        grid-column: span 2;
        grid-row: span 1;
        height: 200px;
    }

    /* Rooms Mobile */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-image {
        height: 220px;
    }

    .room-content {
        padding: 20px;
    }

    .room-card:hover {
        transform: none;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 28px 20px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 0 !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .testimonials-grid > div {
        padding: 30px 20px !important;
    }

    /* Reservations Mobile */
    .reservations-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .reservation-form {
        padding: 24px 20px !important;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

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

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

    /* Floating Buttons Mobile */
    .whatsapp-button {
        width: 52px;
        height: 52px;
        bottom: 20px;
        left: 16px;
        font-size: 24px;
    }

    .phone-button {
        width: 44px;
        height: 44px;
        bottom: 80px;
        left: 16px;
        font-size: 18px;
    }

    .floating-reserve-btn {
        bottom: 16px !important;
        right: 16px !important;
        padding: 12px 20px !important;
        font-size: 0.78rem !important;
    }

    .floating-reserve-btn span {
        display: none;
    }

    .floating-reserve-btn i {
        font-size: 20px;
    }

    /* Mobile booking bar */
    .mobile-booking-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        display: none;
    }

    .mobile-booking-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--accent-coral), #e67e22);
        color: white;
        padding: 16px;
        font-weight: 700;
        font-size: 0.9rem;
        text-decoration: none;
        letter-spacing: 0.5px;
    }

    /* Promo popup mobile */
    .promo-popup-new {
        width: 92%;
        padding: 36px 24px;
        border-radius: 20px;
    }

    .discount-number {
        font-size: 2.5rem;
    }

    .promo-title-center {
        font-size: 1.3rem;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .nav-container {
        padding: 8px 12px;
    }
}

/* Smooth scroll behavior for all anchors */
html {
    scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--primary-sky);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(0,119,190,0.2);
    color: var(--text-dark);
}

/* Print styles */
@media print {
    .navbar, .whatsapp-button, .phone-button, .floating-reserve-btn, .mobile-booking-bar, .promo-popup-new, .promo-overlay {
        display: none !important;
    }
}
/* ===================================
   MOBILE FIX v3 — 2026-03-15
   Fix: overflow horizontal + popup size
   =================================== */

/* --- FIX: Prevent horizontal overflow globally --- */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

*, *::before, *::after {
    max-width: 100%;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* --- FIX: Popup too big on mobile --- */
/* Override the original .promo-popup-new styles for mobile */
@media (max-width: 768px) {
    .promo-popup-new {
        width: 90% !important;
        max-width: 360px !important;
        height: auto !important;
        max-height: 85vh !important;
        max-height: 85dvh !important;
        overflow-y: auto !important;
        border-radius: 20px !important;
        padding: 0 !important;
    }
    
    .promo-popup-new.visual-style {
        background: white !important;
        padding: 32px 24px !important;
        height: auto !important;
    }
    
    .promo-container {
        flex-direction: column !important;
        height: auto !important;
    }
    
    .promo-image-side {
        width: 100% !important;
        height: 140px !important;
    }
    
    .promo-content-side {
        width: 100% !important;
        padding: 24px 20px !important;
    }
    
    .promo-badge-new {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }
    
    .promo-discount-number {
        font-size: 48px !important;
    }
    
    .promo-discount-text {
        font-size: 16px !important;
    }
    
    .promo-title {
        font-size: 20px !important;
    }
    
    .promo-subtitle {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    
    .promo-feature {
        margin-bottom: 10px !important;
    }
    
    .promo-feature i {
        font-size: 16px !important;
    }
    
    .promo-feature span {
        font-size: 13px !important;
    }
    
    .promo-cta-button {
        padding: 14px 28px !important;
        font-size: 15px !important;
    }
    
    .promo-cta-button i {
        font-size: 20px !important;
    }
    
    .promo-close-btn {
        top: 12px !important;
        right: 12px !important;
        width: 32px !important;
        height: 32px !important;
    }
    
    .promo-close-btn i {
        font-size: 16px !important;
    }
    
    /* Centered style popup (promo-popup-new.visual-style) */
    .promo-badge-animated {
        padding: 14px 24px !important;
        margin-bottom: 16px !important;
    }
    
    .promo-badge-animated .discount-number,
    .discount-number {
        font-size: 2rem !important;
    }
    
    .promo-title-center {
        font-size: 1.2rem !important;
    }
    
    .promo-subtitle-center {
        font-size: 0.85rem !important;
        margin-bottom: 16px !important;
    }
    
    .promo-cta-whatsapp {
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
    }
    
    .promo-contact-alt {
        font-size: 0.8rem !important;
    }
    
    /* --- FIX: Testimonials section overflow --- */
    .testimonials-section {
        padding: 50px 0 !important;
        overflow: hidden !important;
    }
    
    .testimonials-section .container {
        padding: 0 16px !important;
    }
    
    /* Quote decorative icons - too big on mobile */
    .testimonials-section > div[style*="position: absolute"] {
        display: none !important;
    }
    
    .testimonials-section .section-header h2,
    .testimonials-section h2 {
        font-size: 1.8rem !important;
    }
    
    /* Stats bar in testimonials */
    .testimonials-section div[style*="gap: 40px"] {
        gap: 20px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .testimonials-section div[style*="font-size: 48px"] {
        font-size: 36px !important;
    }
    
    /* Hide vertical dividers on mobile */
    .testimonials-section div[style*="width: 2px"][style*="height: 60px"] {
        display: none !important;
    }
    
    /* --- FIX: About section images grid --- */
    .image-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    
    .about-img.main {
        grid-column: span 1 !important;
        height: 200px !important;
    }
    
    .about-img {
        height: 160px !important;
    }
    
    /* --- FIX: Hero button too wide on mobile --- */
    .hero-actions .btn-primary {
        font-size: 0.9rem !important;
        padding: 14px 28px !important;
    }
    
    /* --- FIX: Habitaciones inline grids --- */
    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr 1fr !important;
    }
    
    /* --- FIX: Reservas grid on mobile --- */
    .reservations-content {
        grid-template-columns: 1fr !important;
    }
    
    /* --- FIX: Quick booking form-group min-width --- */
    .booking-form .form-group {
        min-width: unset !important;
        width: 100% !important;
    }
    
    /* --- FIX: Container overflow protection --- */
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* --- FIX: h3 inline titles too big --- */
    h3[style*="font-size: 1.5rem"] {
        font-size: 1.2rem !important;
    }
    
    /* --- FIX: Footer grid --- */
    .footer-content {
        grid-template-columns: 1fr !important;
    }
    
    /* --- FIX: Floating buttons overlap with bottom bar --- */
    .floating-reserve-btn {
        bottom: 70px !important;
    }
    
    .whatsapp-button {
        bottom: 70px !important;
    }
    
    .phone-button {
        bottom: 130px !important;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .promo-popup-new {
        width: 94% !important;
        max-width: none !important;
    }
    
    .promo-popup-new.visual-style {
        padding: 28px 18px !important;
    }
    
    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 0.82rem !important;
    }
    
    .testimonials-section div[style*="font-size: 48px"] {
        font-size: 28px !important;
    }
}
