/* style.css */
/* --- VARIABLES Y MODO OSCURO --- */
:root {
    --primary-green: #1B4332; 
    --secondary-green: #2D6A4F;
    --light-green: #74C69D;
    --gold: #D4AF37; 
    --gold-hover: #b5952f;
    --cream: #FBF9F1; 
    --dark-text: #2C3E50;
    --light-text: #ffffff;
    --bg-color: #ffffff;
    --text-color: #2C3E50;
    --danger: #dc3545;
    --success: #28a745;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.2);
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.05);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.6);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.dark-mode {
    --bg-color: #121212;
    --cream: #1e1e1e;
    --text-color: #e0e0e0;
    --primary-green: #D4AF37;
    --dark-text: #e0e0e0;
}

/* --- PRELOADER Y BARRA DE PROGRESO --- */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary-green); z-index: 999999; display: flex; justify-content: center; align-items: center; transition: 0.5s; }
#preloader img { width: 120px; border-radius: 50%; box-shadow: var(--glow-gold); }
#progressBar { position: fixed; top: 0; left: 0; height: 4px; background: var(--gold); z-index: 9999999; width: 0%; transition: width 0.2s ease; }

body { user-select: none; -webkit-user-select: none; font-family: 'Lato', sans-serif; color: var(--text-color); background-color: var(--bg-color); line-height: 1.7; transition: background-color 0.4s, color 0.4s; overflow-x: hidden; width: 100%; margin: 0; padding: 0;}

/* EXCEPCIÓN CORREGIDA: Habilita los clicks de vuelta en galerías y modales para que funcionen las vistas previas */
img { pointer-events: none; }
.modal-thumbnails img, .modal-main-img, .blog-img-wrapper img, .gallery-item img, .room-card img { pointer-events: auto !important; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 5px; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-green); transition: 0.4s; }
.bg-cream { background-color: var(--cream); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 30px; }
.shadow-img { border-radius: 12px; box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); border-radius: 15px; }
.shadow-sm { box-shadow: var(--shadow-sm); border-radius: 12px; }

/* --- ANIMACIONES Y EFECTOS --- */
.reveal { opacity: 0; transform: translateY(60px); transition: all 1s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes fadeInUpLoad { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-load { animation: fadeInUpLoad 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
@keyframes pulse-glow { 0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); } 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } }
.pulse-effect { animation: pulse-glow 2s infinite; }
@keyframes float-anim { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
.floating-anim { animation: float-anim 6s ease-in-out infinite; }
.floating-anim-reverse { animation: float-anim 8s ease-in-out infinite reverse; }

/* Glassmorphism */
.glass-effect { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.3); }

/* --- NAVBAR --- */
.navbar { background-color: transparent; padding: 25px 60px; display: flex; justify-content: space-between; align-items: center; position: fixed; width: 100%; top: 0; z-index: 1000; transition: var(--transition); }
.navbar.scrolled { background-color: rgba(27, 67, 50, 0.95); backdrop-filter: blur(15px); padding: 15px 60px; box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.logo-container .logo { height: 80px; border-radius: 50%; box-shadow: var(--glow-gold); transition: var(--transition); }
.navbar.scrolled .logo { height: 55px; }

.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; margin: 0; padding: 0;}
.nav-links a, .btn-dark-mode { color: #fff; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: var(--transition); text-shadow: 1px 1px 5px rgba(0,0,0,0.8); }
.navbar.scrolled .nav-links a { text-shadow: none; }
.nav-links a:hover, .btn-dark-mode:hover { color: var(--gold); transform: translateY(-2px); }
.btn-dark-mode { background: transparent; border: none; font-size: 1.2rem; cursor: pointer; outline: none; }

/* MENÚ HAMBURGUESA CORREGIDO */
.menu-toggle { display: none; color: #fff; font-size: 28px; cursor: pointer; z-index: 1001; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); margin-left: auto; }

/* --- BOTONES FLOTANTES --- */
.whatsapp-float { position: fixed; width: 65px; height: 65px; bottom: 40px; left: 40px; background-color: #25d366; color: #FFF; border-radius: 50%; text-align: center; font-size: 35px; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); z-index: 100; display: flex; justify-content: center; align-items: center; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.15) rotate(-5deg); }

/* --- HERO (SECCIÓN PRINCIPAL) --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; padding: 120px 0 60px 0; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -1; animation: kenburns 25s infinite alternate linear; }
.hero-content { max-width: 1000px; padding: 0 20px; position: relative; z-index: 1; }

.trust-badge { display: inline-block; background: rgba(0,0,0,0.5); padding: 8px 20px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; letter-spacing: 1px; color: var(--gold); margin-bottom: 25px; border: 1px solid var(--gold); backdrop-filter: blur(5px); }
.subtitle-hero { font-family: 'Lato', sans-serif; font-size: 1.3rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; text-shadow: 1px 1px 5px rgba(0,0,0,0.9);}
.hero-content h1 { font-size: 6rem; color: #fff; margin-bottom: 25px; text-shadow: 3px 5px 15px rgba(0,0,0,0.8); line-height: 1.1; letter-spacing: -1px;}
.hero-content p { font-size: 1.6rem; margin-bottom: 50px; font-weight: 300; text-shadow: 2px 3px 8px rgba(0,0,0,0.9); }

/* Barra Inteligente */
.booking-bar { display: flex; justify-content: space-between; align-items: center; padding: 15px 25px; border-radius: 50px; margin-top: 40px; box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.booking-input { display: flex; flex-direction: column; text-align: left; border-right: 1px solid rgba(255,255,255,0.3); padding-right: 25px; flex-grow: 1; margin-right: 20px;}
.booking-input:last-of-type { border-right: none; }
.booking-input label { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; font-weight: bold; text-shadow: 1px 1px 3px rgba(0,0,0,0.8);}
.booking-input input, .booking-input select { background: transparent; border: none; color: white; font-family: 'Lato', sans-serif; font-size: 1.1rem; font-weight: bold; outline: none; cursor: pointer; text-shadow: 1px 1px 2px rgba(0,0,0,0.8);}
.booking-input input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.booking-input select option { background: var(--primary-green); color: white; }

.btn-primary { background-color: var(--gold); color: #1B4332 !important; padding: 16px 40px; text-decoration: none; font-weight: bold; font-size: 1.1rem; border: none; border-radius: 35px; cursor: pointer; transition: var(--transition); display: inline-block; text-align: center; position: relative; overflow: hidden; }
.btn-primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: 0.5s; }
.btn-primary:hover::after { left: 150%; }
.btn-primary:hover:not(:disabled) { background-color: var(--gold-hover); transform: translateY(-5px); box-shadow: var(--glow-gold); color: #fff !important;}

/* --- SECCIONES COMUNES --- */
.section-title { font-size: 3.5rem; text-align: center; margin-bottom: 15px; margin-top: 0; position: relative;}
.section-title::after { content: ''; display: block; width: 80px; height: 4px; background-color: var(--gold); margin: 20px auto 0; border-radius: 2px;}
.section-title.left-align { text-align: left; margin-top: 0; }
.section-title.left-align::after { margin: 20px 0 0 0; }
.section-subtitle { text-align: center; font-size: 1.3rem; color: #666; margin-bottom: 80px; font-weight: 300;}
.tour-subtitle { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 2.2rem; text-align: center; margin-bottom: 30px; letter-spacing: 1px;}
.experience-section, .services-section, .rooms-section, .gallery-section, .blog-section { padding: 150px 0; }
.banner-separator { padding: 100px 0; background-attachment: fixed; background-size: cover; background-position: center;}

/* --- EXPERIENCIA Y SERVICIOS --- */
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.experience-text p { font-size: 1.2rem; margin-bottom: 25px;}
.features-list { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; align-items: center; gap: 20px; font-size: 1.2rem; font-weight: bold; color: var(--primary-green); }
.feature-item i { color: var(--gold); font-size: 1.8rem; background: var(--cream); padding: 15px; border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.05);}

.img-collage { position: relative; height: 550px; }
.img-main { width: 75%; height: 450px; object-fit: cover; position: absolute; z-index: 1; left: 0; top: 0; transition: var(--transition); border-radius: 20px;}
.img-sub { width: 55%; height: 280px; object-fit: cover; position: absolute; border: 8px solid var(--bg-color); z-index: 2; transition: var(--transition); border-radius: 15px;}
.img-sub-1 { right: 0; top: 40px; }
.img-sub-2 { right: 5%; bottom: -20px; }
.img-collage:hover .img-main { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.img-sub:hover { transform: scale(1.1) !important; z-index: 3; box-shadow: var(--shadow-lg); border-color: var(--gold);}

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.service-card { background: var(--bg-color); padding: 50px 40px; border-radius: 15px; text-align: center; transition: var(--transition); border-bottom: 4px solid transparent; position: relative; overflow: hidden;}
.service-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.icon-circle { width: 90px; height: 90px; background-color: var(--cream); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 30px; transition: var(--transition);}
.service-card:hover .icon-circle { background-color: var(--primary-green); transform: scale(1.1) rotateY(360deg); transition: all 0.8s ease;}
.icon-circle i { font-size: 2.5rem; color: var(--primary-green); transition: var(--transition);}
.service-card:hover .icon-circle i { color: var(--gold); }

/* --- BLOG TURÍSTICO (SEO) --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.blog-card { background: var(--bg-color); border-radius: 15px; overflow: hidden; transition: var(--transition); border: 1px solid var(--cream); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.blog-img-wrapper { height: 240px; overflow: hidden; position: relative; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.15); }
.blog-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-content h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--primary-green); transition: var(--transition); }
.blog-card:hover .blog-content h3 { color: var(--gold); }
.blog-content p { font-size: 1.05rem; color: var(--text-color); line-height: 1.6; }

/* --- HABITACIONES --- */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.room-card { background: var(--bg-color); border-radius: 15px; overflow: hidden; cursor: pointer; transition: var(--transition); border: 1px solid var(--cream); position: relative;}
.hover-shine::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: 0.7s; z-index: 10; pointer-events: none;}
.room-card:hover::before { left: 150%; }
.room-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: var(--gold);}
.room-img-wrapper { position: relative; height: 280px; overflow: hidden; }
.room-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.room-card:hover .room-img-wrapper img { transform: scale(1.15); filter: brightness(1.1);}
.room-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to top, rgba(27,67,50,0.95), transparent); display: flex; justify-content: center; align-items: flex-end; padding-bottom: 30px; opacity: 0; transition: var(--transition); z-index: 2;}
.room-card:hover .room-overlay { opacity: 1; }
.room-overlay span { color: var(--gold); font-weight: bold; border: 2px solid var(--gold); padding: 12px 25px; border-radius: 30px; background: rgba(0,0,0,0.5); font-size: 1.1rem; backdrop-filter: blur(5px); transform: translateY(20px); transition: 0.4s; opacity: 0;}
.room-card:hover .room-overlay span { transform: translateY(0); opacity: 1; }
.room-info { padding: 35px 25px; text-align: center; position: relative; z-index: 3;}
.room-info h3 { font-size: 1.8rem; margin-bottom: 15px; }
.room-capacity { color: var(--gold); font-weight: bold; margin-bottom: 15px; font-size: 1.1rem;}
.room-short-desc { margin-bottom: 25px; font-size: 1.05rem; line-height: 1.6;}
.btn-outline { background: transparent; border: 2px solid var(--primary-green); color: var(--primary-green); padding: 10px 25px; border-radius: 30px; font-weight: bold; cursor: pointer; transition: var(--transition); font-size: 1.1rem;}
.room-card:hover .btn-outline { background: var(--primary-green); color: var(--gold); box-shadow: var(--glow-gold);}

/* --- MEMBRESIA BACKGROUND PATTERN --- */
.pattern-bg::before { content: ""; position: absolute; top:0; left:0; width:100%; height:100%; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); z-index: 0; pointer-events: none; }
.membership-card { background: var(--bg-color); color: var(--text-color); border-radius: 20px; max-width: 650px; margin: 0 auto; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); transform: translateY(0); transition: 0.4s; position: relative; z-index: 1;}
.membership-card:hover { transform: translateY(-10px); box-shadow: 0 40px 80px rgba(0,0,0,0.7); }

/* --- TOAST NOTIFICATIONS --- */
.toast-container { position: fixed; bottom: 30px; right: 30px; z-index: 999999; display: flex; flex-direction: column; gap: 15px; pointer-events: none; }
.toast { background: var(--bg-color); border-left: 5px solid var(--gold); box-shadow: 0 15px 35px rgba(0,0,0,0.2); border-radius: 12px; padding: 15px; width: 350px; display: flex; align-items: center; gap: 15px; transform: translateX(120%); opacity: 0; transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s; pointer-events: auto; }
.toast.show { transform: translateX(0); opacity: 1; }
.toast img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; }
.toast-content { flex: 1; }
.toast-content h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: var(--primary-green); font-family: 'Lato', sans-serif;}
.toast-content p { margin: 0; font-size: 0.85rem; color: var(--text-color); line-height: 1.3; }
.toast-close { background: transparent; border: none; font-size: 1.2rem; color: #999; cursor: pointer; padding: 5px; margin-left: -5px; transition: 0.3s; }
.toast-close:hover { color: var(--danger); }

/* --- MODAL GENERAL --- */
.modal { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100vw; height: 100vh; background-color: rgba(10,25,15,0.85); backdrop-filter: blur(8px); overflow-y: auto; justify-content: center; align-items: center;}
.modal-content { background-color: var(--bg-color); margin: auto; width: 90%; max-width: 950px; border-radius: 15px; position: relative; animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 25px 50px rgba(0,0,0,0.5); overflow: hidden; }
@keyframes modalIn { from { transform: scale(0.8) translateY(50px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.close-modal { position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.9); color: var(--primary-green); width: 40px; height: 40px; border-radius: 50%; border: none; font-size: 1.5rem; cursor: pointer; z-index: 10; transition: var(--transition);}
.close-modal:hover { background: var(--primary-green); color: var(--gold); transform: rotate(90deg); }

/* Modal Habitación Clásica */
.modal-grid { display: flex; flex-direction: row; }
.modal-gallery { width: 55%; display: flex; flex-direction: column; }
.modal-main-img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.modal-thumbnails img { width: 80px; height: 60px; object-fit: cover; cursor: pointer; opacity: 0.6; transition: 0.3s; border: 2px solid transparent; border-radius: 5px;}
.modal-thumbnails img:hover, .modal-thumbnails img.active { opacity: 1; border-color: var(--gold); }
.modal-info { width: 45%; padding: 40px; display: flex; flex-direction: column; justify-content: center;}
.modal-info h2 { font-size: 2.2rem; margin-bottom: 5px; }
.modal-cap { color: var(--gold); font-size: 1.1rem; font-weight: bold; margin-bottom: 15px; }
.modal-features { list-style: none; margin-bottom: 30px; display: grid; grid-template-columns: 1fr; gap: 12px; padding: 0;}
.modal-features li { font-size: 1rem; font-weight: bold; display: flex; align-items: center;}
.modal-features i { color: var(--light-green); margin-right: 10px; background: rgba(116, 198, 157, 0.2); padding: 5px; border-radius: 50%;}
.modal-book-btn { width: 100%; padding: 16px; border-radius: 8px; margin-top: auto;}

/* --- GALERÍA EXPANDIDA MASONRY --- */
.masonry-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 20px; }
.gallery-item { overflow: hidden; border-radius: 15px; position: relative; cursor: pointer;}
.gallery-item::after { content: '\f00e'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top:50%; left:50%; transform: translate(-50%, -50%) scale(0); color: white; font-size: 3rem; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity: 0; z-index: 2;}
.gallery-item::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(27,67,50,0.6); opacity: 0; transition: 0.4s; z-index: 1;}
.masonry-gallery img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.8s; display: block;}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.gallery-item:hover img { transform: scale(1.15); }

/* --- FOOTER --- */
footer { background-color: #0a1a13; color: #ccc; padding: 80px 0 30px; border-top: 5px solid var(--gold);}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 60px; margin-bottom: 50px; }
.footer-logo { height: 90px; margin-bottom: 25px; filter: grayscale(100%) brightness(200%); transition: var(--transition);}
.footer-logo:hover { filter: grayscale(0%) brightness(100%); transform: scale(1.05); }
.footer-col h3 { color: var(--gold); margin-bottom: 25px; text-transform: uppercase; font-size: 1.2rem; letter-spacing: 1px;}
.social-link { color: #ccc; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); font-size: 1.1rem;}
.social-link:hover { color: var(--gold); transform: translateX(8px);}
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.95rem; }

/* ==========================================
   MOBILE RESPONSIVE BRUTAL
   ========================================== */
@media (max-width: 1024px) {
    .experience-grid { grid-template-columns: 1fr; }
    .img-collage { height: 450px; }
    .hero-content h1 { font-size: 4.5rem; }
    .booking-bar { flex-direction: column; border-radius: 15px; gap: 15px;}
    .booking-input { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-right: 0; padding-bottom: 15px; width: 100%;}
    .booking-input:last-of-type { border-bottom: none; padding-bottom: 0;}
    .booking-bar .btn-primary { width: 100%; margin-top: 15px !important;}
}

@media (max-width: 768px) {
    .parallax { background-attachment: scroll !important; }
    
    /* REAJUSTE NAVBAR */
    .navbar { padding: 15px 25px; background: rgba(27, 67, 50, 0.98); backdrop-filter: blur(10px); justify-content: flex-start; }
    .logo-container .logo { height: 50px; }
    .menu-toggle { display: block; margin-left: auto; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 75%; height: 100vh; background: rgba(27, 67, 50, 0.98); backdrop-filter: blur(15px); flex-direction: column; justify-content: flex-start; padding-top: 100px; gap: 30px; transition: 0.4s ease-in-out; border-left: 2px solid var(--gold); box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
    .nav-links.active { right: 0; }
    
    /* REAJUSTE HERO Y FORMULARIO */
    .hero { min-height: 100vh; height: auto; padding-top: 120px; padding-bottom: 60px; }
    .hero-content h1 { font-size: 2.8rem; margin-bottom: 15px; }
    .hero-content p { font-size: 1.1rem; margin-bottom: 30px; }
    .subtitle-hero { font-size: 1rem; margin-bottom: 15px; }
    .trust-badge { margin-bottom: 15px; font-size: 0.8rem; }
    
    .booking-bar { margin-top: 20px; padding: 20px; gap: 10px; }
    .booking-input { margin-right: 0; padding-bottom: 10px; }
    .booking-input input, .booking-input select { width: 100%; box-sizing: border-box; font-size: 1rem; }
    .booking-input label { font-size: 0.8rem; }

    .section-title { font-size: 2.5rem; }
    .experience-section, .services-section, .rooms-section, .gallery-section, .jardines-section, .blog-section { padding: 80px 0; }
    .img-collage { height: 350px; margin-top: 30px;}
    .img-main { height: 280px; width: 85%; }
    .img-sub { height: 180px; width: 60%; }
    .masonry-gallery { grid-template-columns: 1fr; gap: 15px; }
    .masonry-gallery img { height: 250px; }
    .modal-grid { flex-direction: column; }
    .modal-gallery { width: 100%; }
    .modal-info { width: 100%; padding: 25px; }
    .modal-main-img { height: 250px; border-radius: 12px 12px 0 0; }
    
    .whatsapp-float { width: 55px; height: 55px; font-size: 30px; left: 20px; bottom: 20px;}
    .toast-container { bottom: 20px; right: 20px; left: 20px; }
    .toast { width: auto; max-width: 100%; }
}