/* ===== VARIABLES Y CONFIGURACIÓN ===== */
:root {
    /* COLORES FIJOS - TEMA SURF SUAVE PERSONALIZADO */
    --color-primary: #F5E8C8;
    --color-secondary: #8B7355;           /* Café roble */
    --color-accent: #4169E1;              /* Azul real */
    --color-background: #FDF5E6;
    --color-surface: #D2B48C;
    --color-text: #2F4F4F;
    --color-text-light: #E6D2AA;
    --color-success: #7FB174;
    --color-warning: #E8B796;
    --color-border: #8B7355;
    --color-card-bg: #FFFFFF;
    
    /* TIPOGRAFÍA FIJA - MODERNA */
    --font-primary: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-secondary: 'Montserrat', 'Arial', sans-serif;
    --font-accent: 'Inter', sans-serif;
    
    /* TAMAÑOS DE FUENTE */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
}

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 400;
    font-size: var(--text-base);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }

p {
    font-size: var(--text-base);
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.lead {
    font-size: var(--text-xl);
    font-weight: 300;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    color: var(--color-secondary);
    margin: 0;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.logo h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover h2::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--color-secondary);
    color: white;
}

/* Redes Sociales Desktop - OCULTAR EN MÓVIL */
.desktop-only {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--color-secondary);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    color: white;
}

/* ===== BOTÓN HAMBURGUESA ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-secondary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Estado activo del hamburguesa */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Redes Sociales Móvil - OCULTAR EN DESKTOP */
.mobile-social {
    display: none;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 115, 85, 0.3);
}

/* ===== HERO PARALLAX ===== */
.parallax-hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('../img/galeria/ga18.webp'); /* QUITAR "fixed" */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Asegurar que sea scroll normal */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Mantener esto */
}
/* Añade esto en tu CSS (en la sección base o utilidades) */
html {
    scroll-behavior: smooth;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content-modern {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
}

.modern-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    font-family: var(--font-secondary);
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255,255,255,0.3); }
    to { text-shadow: 0 0 30px rgba(255,255,255,0.6); }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: var(--font-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== BOTONES MODERNOS ===== */
.btn-modern {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: var(--font-primary);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--color-card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--color-secondary);
    font-family: var(--font-secondary);
}

.feature-card p {
    font-family: var(--font-primary);
}

/* ===== SECCIONES ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-surface));
    padding: 80px 0;
}

.grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: 10px;
    font-family: var(--font-primary);
}

/* ===== EXPERIENCIAS ÚNICAS ===== */
.experience-card {
    background: var(--color-card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-content {
    padding: 25px;
}

.experience-content h3 {
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.experience-price {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 15px;
    display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: var(--color-card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.testimonial-author strong {
    font-family: var(--font-secondary);
    color: var(--color-secondary);
}

.testimonial-author span {
    display: block;
    font-size: var(--text-sm);
    opacity: 0.7;
    margin-top: 5px;
    font-family: var(--font-primary);
}

/* ===== CTA & BOOKING SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.cta-section p {
    font-family: var(--font-primary);
}

.booking-widget {
    background: var(--color-card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 40px auto 0;
}

.booking-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-primary);
}

.form-control {
    padding: 15px;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: var(--font-primary);
    width: 100%;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    margin-right: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--color-text), var(--color-secondary));
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    font-family: var(--font-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 8px 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-family: var(--font-primary);
}

.footer-section ul li:hover {
    opacity: 1;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--color-accent);
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.footer-section a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-family: var(--font-primary);
}

/* ===== UTILIDADES ===== */
.text-center {
    text-align: center;
}

/* ===== CORRECCIÓN MENÚ HAMBURGUESA ===== */
.nav-menu.active {
    display: flex !important;
    right: 0 !important;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    display: block !important;
}

body.menu-open {
    overflow: hidden !important;
}

/* ===== BOTONES FLOTANTES ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.share {
    background: linear-gradient(135deg, var(--color-accent), #6A5ACD);
}

/* Tooltip para los botones */
.floating-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Animación de entrada */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-btn {
    animation: floatIn 0.5s ease-out;
}

.floating-btn.share {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Efecto de pulso para WhatsApp */
.floating-btn.whatsapp {
    animation: floatIn 0.5s ease-out, pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Navbar móvil */
    .nav-menu {
        display: none;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo h2 {
        font-size: 1.4rem;
        letter-spacing: 0.3px;
    }
    
    /* Botón hamburguesa VISIBLE */
    .hamburger-menu {
        display: flex !important;
        background: #8B7355 !important;
        padding: 12px 10px !important;
        border-radius: 8px !important;
        border: 2px solid #8B7355 !important;
        margin-left: 15px;
    }
    
    .hamburger-menu span {
        background-color: white !important;
    }
    
    /* Menú móvil */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: 100px !important;
        transition: right 0.4s ease !important;
        z-index: 999 !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu li {
        margin: 20px 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav-link {
        font-size: 1.3rem !important;
        padding: 15px 40px !important;
        display: block !important;
        width: 100% !important;
        border-radius: 0 !important;
        border-bottom: 1px solid rgba(139, 115, 85, 0.1) !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: var(--color-primary) !important;
        color: var(--color-secondary) !important;
    }
    
    /* Ocultar redes sociales desktop */
    .desktop-only {
        display: none !important;
    }
    
    /* Mostrar redes sociales en menú móvil */
    .mobile-social {
        display: flex !important;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(139, 115, 85, 0.3);
    }
    
    /* Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    body.menu-open .menu-overlay {
        display: block !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
    }
    
    /* Ajustes generales responsive */
    .modern-title {
        font-size: 3rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .btn-modern {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .booking-widget {
        margin: 20px;
        padding: 30px 20px;
    }
     .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .floating-btn::after {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

}

@media (max-width: 480px) {
    .nav-menu {
        width: 100% !important;
        max-width: none !important;
    }
    
    .logo h2 {
        font-size: 1.1rem !important;
    }
    
    .hamburger-menu {
        padding: 10px 8px !important;
    }
    
    .nav-link {
        font-size: 1.1rem !important;
        padding: 12px 20px !important;
    }

     .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===== ESTILOS PARA HABITACIONES ===== */
/* ===== ESTILOS PARA HABITACIONES - 2 POR FILA ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    background: var(--color-card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.room-carousel {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-text);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev:hover, .carousel-next:hover {
    background: white;
    color: var(--color-accent);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.room-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    color: var(--color-secondary);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}

.room-content p {
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text);
}

.room-features i {
    color: var(--color-accent);
    width: 14px;
    font-size: 0.9rem;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-secondary);
}

.room-price .btn-modern {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ===== MODAL PARA IMÁGENES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-slide {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-accent);
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    z-index: 2001;
}

.modal-prev:hover, .modal-next:hover {
    background: rgba(255,255,255,0.3);
    color: var(--color-accent);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 20px;
    max-width: 80%;
}

/* ===== RESPONSIVE HABITACIONES ===== */
@media (max-width: 1024px) {
    .rooms-grid {
        gap: 25px;
    }
    
    .room-carousel {
        height: 250px;
    }
    
    .room-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }
    
    .room-carousel {
        height: 300px;
    }
    
    .room-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-price {
        flex-direction: row;
        align-items: center;
    }
    
    .modal-prev, .modal-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-caption {
        font-size: 0.9rem;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .room-carousel {
        height: 250px;
    }
    
    .carousel-prev, .carousel-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .room-content {
        padding: 15px;
    }
    
    .room-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .room-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .room-price .btn-modern {
        width: 100%;
    }
}

/* ===== GALERÍA SIMPLE ===== */
.simple-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.expand-btn,
.play-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.expand-btn:hover,
.play-btn:hover {
    background: white;
    color: var(--color-accent);
    transform: scale(1.1);
}

.video-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: white;
    margin-top: 20px;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-accent);
}

/* ===== RESPONSIVE GALERÍA SIMPLE ===== */
@media (max-width: 1024px) {
    .simple-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .simple-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .simple-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .expand-btn,
    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 15px;
    }
}
/* ===== SECCIÓN UBICACIÓN ===== */

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 500px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card, .directions-card {
    background: var(--color-card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--color-border);
}

.info-card h3, .directions-card h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
}

.info-card h3 i, .directions-card h3 i {
    color: var(--color-accent);
}

.info-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-details h4 {
    color: var(--color-text);
    margin: 20px 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.contact-details h4 i {
    color: var(--color-accent);
    width: 20px;
}

.contact-details a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Opciones de transporte */
.transport-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

.transport-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transport-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
    background: rgba(65, 105, 225, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.transport-item h4 {
    color: var(--color-secondary);
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}

.transport-item p {
    color: var(--color-text);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Atracciones cercanas */
.nearby-places {
    background: linear-gradient(135deg, var(--color-primary), rgba(245, 232, 200, 0.3));
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.place-card {
    background: var(--color-card-bg);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.place-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.place-card h4 {
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.place-card p {
    color: var(--color-text);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.distance {
    display: inline-block;
    background: rgba(65, 105, 225, 0.1);
    color: var(--color-accent);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}
/* ===== UBICACIÓN ULTRA SIMPLE ===== */
.simple-location {
    padding: 0;
}

.simple-map {
    width: 100%;
}

.simple-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.simple-location-btn {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-background);
}

.simple-btn {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.simple-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    color: white;
}

.simple-btn i {
    margin-right: 10px;
}

/* Selector de idioma súper simple */
.idioma-simple {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    font-size: 14px;
}

.idioma-link {
    color: var(--color-text);  /* o el color que tengan tus links */
    text-decoration: none;
    padding: 0 3px;
    font-weight: 500;
}

.idioma-link.active {
   background-color: var(--color-secondary);
    color: white;
}

.idioma-separador {
    color: rgba(255,255,255,0.3);
    margin: 0 2px;
}

/* Modal para videos */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.close-video:hover {
    color: #ff6b6b;
}
/* Estilo especial para items de video */
.video-item {
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255, 0, 0, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-overlay i {
    color: white;
    font-size: 30px;
}

.video-item:hover .video-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease;
}