/* ─── HERO PRINCIPAL ─── */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 150px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(22,50,91,0.45) 0%, rgba(22,50,91,0.15) 50%, rgba(22,50,91,0.55) 100%); z-index: 0; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge { display: inline-block; background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.6); color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 18px; border-radius: 999px; margin-bottom: 20px; backdrop-filter: blur(4px); }
.hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); color: #fff; line-height: 1.08; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.88); font-weight: 300; letter-spacing: 0.01em; margin-bottom: 48px; line-height: 1.6; }
.hero-actions{ display: flex; justify-content: center; gap: 18px; margin-bottom: 38px; flex-wrap: wrap; }
.hero-btn-primary, .hero-btn-secondary{ padding: 14px 30px; border-radius: 999px; text-decoration: none; font-family: 'Lato', sans-serif; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.82rem; transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
.hero-btn-primary{ background: var(--gold); color: white; box-shadow: 0 10px 25px rgba(245,166,35,0.35); }
.hero-btn-primary:hover{ background: var(--gold-dark); transform: translateY(-3px); }
.hero-btn-secondary{ border: 1.5px solid rgba(255,255,255,0.4); color: white; backdrop-filter: blur(6px); background: rgba(255,255,255,0.08); }
.hero-btn-secondary:hover{ background: white; color: var(--navy); transform: translateY(-3px); }
.hero-stats{ display: flex; justify-content: center; gap: 50px; margin-bottom: 42px; flex-wrap: wrap; }
.hero-stat{ display: flex; flex-direction: column; align-items: center; color: white; }
.hero-stat strong{ font-size: 1.8rem; font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 4px; }
.hero-stat span{ font-size: 0.85rem; opacity: 0.85; letter-spacing: 0.04em; }

/* ─── BOOKING WIDGET ─── */
.booking-bar { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border-radius: 16px; padding: 20px 24px; display: flex; align-items: flex-end; gap: 12px; box-shadow: 0 20px 60px rgba(22,50,91,0.35), 0 4px 16px rgba(0,0,0,0.1); flex-wrap: wrap; max-width: 760px; margin: 0 auto; }
.booking-field { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 130px; text-align: left; }
.booking-field label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.booking-field-inner { display: flex; align-items: center; border: 1.5px solid #e0e7f0; border-radius: 10px; padding: 9px 12px; gap: 8px; background: #fff; transition: border-color 0.2s; }
.booking-field-inner:focus-within { border-color: var(--gold); }
.booking-field-inner svg { color: var(--navy); flex-shrink: 0; opacity: 0.6; }
.booking-field-inner input, .booking-field-inner select { border: none; outline: none; font-family: 'Lato', sans-serif; font-size: 0.88rem; color: var(--text-dark); background: transparent; width: 100%; cursor: pointer; }
.booking-field-divider { width: 1px; height: 52px; background: #e0e7f0; flex-shrink: 0; }
.btn-check { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #fff; border: none; padding: 13px 28px; border-radius: 10px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; white-space: nowrap; align-self: flex-end; flex-shrink: 0; box-shadow: 0 4px 15px rgba(245,166,35,0.4); text-align: center; }
.btn-check:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,166,35,0.5); }

/* ─── ABOUT SECTION ─── */
.about-section { padding: 80px 48px 120px; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-images { position: relative; height: 400px; }
.about-images .img-main { width: 80%; height: 350px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 40px rgba(22,50,91,0.15); }
.about-images .img-sub { position: absolute; bottom: 0; right: 0; width: 50%; height: 250px; object-fit: cover; border-radius: 20px; border: 8px solid var(--white); box-shadow: 0 20px 40px rgba(22,50,91,0.2); }

/* ─── SERVICES GRID ─── */
.services-section { background: var(--off-white); padding: 80px 48px 120px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto; }
.service-item { background: var(--white); padding: 30px 20px; border-radius: 16px; text-align: center; box-shadow: 0 8px 24px rgba(22,50,91,0.06); transition: transform 0.3s; }
.service-item:hover { transform: translateY(-5px); }
.service-icon { display: flex; justify-content: center; align-items: center; color: var(--gold); margin-bottom: 15px; }
.service-item h4 { color: var(--navy); margin-bottom: 10px; font-family: 'Lato', sans-serif; }
.service-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ─── GALLERY SECTION ─── */
.gallery-section { padding: 80px 48px 120px; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 15px; max-width: 1200px; margin: 0 auto; }
.gallery-item { border-radius: 16px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

/* ─── CTA SECTION ─── */
.cta-section{ position: relative; padding: 90px 24px 110px; overflow: hidden; background: linear-gradient(rgba(22,50,91,0.78), rgba(22,50,91,0.82)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80') center/cover no-repeat; }
.cta-overlay{ position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(245,166,35,0.25), transparent 30%); pointer-events: none; }
.cta-content{ position: relative; z-index: 2; max-width: 850px; margin: 0 auto; text-align: center; }
.cta-content h2{ font-size: clamp(2.5rem, 5vw, 4.5rem); color: white; line-height: 1.1; margin-bottom: 24px; }
.cta-content h2 em{ color: var(--gold); font-style: italic; }
.cta-content p{ max-width: 700px; margin: 0 auto 40px; color: rgba(255,255,255,0.88); font-size: 1.08rem; line-height: 1.8; }
.cta-buttons{ display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.cta-btn-primary, .cta-btn-secondary{ padding: 15px 34px; border-radius: 999px; text-decoration: none; font-family: 'Lato', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
.cta-btn-primary{ background: var(--gold); color: white; box-shadow: 0 10px 30px rgba(245,166,35,0.35); }
.cta-btn-primary:hover{ background: var(--gold-dark); transform: translateY(-3px); }
.cta-btn-secondary{ border: 1.5px solid rgba(255,255,255,0.4); color: white; background: rgba(255,255,255,0.08); backdrop-filter: blur(6px); }
.cta-btn-secondary:hover{ background: white; color: var(--navy); transform: translateY(-3px); }

/* RESPONSIVE INDEX Y ROOMS */
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 1024px) {
  .services-grid, .gallery-grid, .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 768px) {
  .hero { padding: 80px 20px 120px; }
  .hero h1 { font-size: 2.6rem; }
  .booking-bar { flex-direction: column; align-items: stretch; padding: 18px; }
  .booking-field-divider { display: none; }
  .btn-check { width: 100%; text-align: center; padding: 14px; }
  .about-inner { grid-template-columns: 1fr; text-align: center; gap: 40px;}
  .about-images { height: 300px; }
  .about-images .img-main { width: 100%; height: 250px; }
  .about-images .img-sub { width: 60%; height: 180px; bottom: -20px; right: 50%; transform: translateX(50%); }
  .services-section, .gallery-section { padding: 60px 20px 80px; }
  .services-grid, .gallery-grid, .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 200px; }
  .gallery-item.large { grid-column: span 1; }
  .hero-actions{ flex-direction: column; align-items: center; }
  .hero-btn-primary, .hero-btn-secondary{ width: 100%; max-width: 280px; text-align: center; }
  .hero-stats{ gap: 24px; }
  .hero-stat strong{ font-size: 1.4rem; }
  .cta-section{ padding: 90px 20px; }
  .cta-content h2{ font-size: 2.3rem; }
  .cta-content p{ font-size: 1rem; }
  .cta-buttons{ flex-direction: column; align-items: center; }
  .cta-btn-primary, .cta-btn-secondary{ width: 100%; max-width: 300px; text-align: center; }
}

/* --- ESTILOS PARA LA SECCIÓN NOSOTROS EN INDEX --- */
.tradicion-section { background-color: #ffffff; padding: 80px 20px 0; text-align: center; }
.container-text { max-width: 900px; margin: 0 auto; padding-bottom: 60px; }
.container-text p { color: #444; line-height: 1.8; font-size: 1.15rem; text-align: justify; margin: 0; }

.nosotros-section { background-color: #f9f9f9; padding: 80px 20px 0; }
.nosotros-row { display: flex; flex-wrap: wrap; max-width: 1200px; margin: 0 auto 60px auto; gap: 40px; align-items: stretch; }
.nosotros-text-col, .nosotros-img-col { flex: 1; min-width: 300px; display: flex; flex-direction: column; }
.nosotros-text-card { background-color: #ffffff; padding: 40px; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.nosotros-text-card p { color: #444; line-height: 1.8; font-size: 1.15rem; text-align: justify; margin: 0; }
.nosotros-img-col img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

@media (max-width: 768px) { .nosotros-row { flex-direction: column; } }