/* ===========================
   HOTEL CAROLINA DEL MAR
   Estilos principales
   =========================== */

/* --- Variables --- */
:root {
  --navy:      #1a2b4a;
  --teal:      #0B7A75;
  --dark-teal: #0a6b66;
  --sand:      #f5f0e8;
  --white:     #ffffff;
  --text-dark: #1a1a1a;
  --text-grey: #666666;
  --divider:   #e0dcd4;
  --font-body: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-w: 1200px;
  --nav-h: 64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utilidades --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.bg-white  { background: var(--white); }
.bg-sand   { background: var(--sand); }
.bg-navy   { background: var(--navy); }
.bg-teal-dark { background: var(--teal); }

/* --- Encabezado de sección --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
#videos { padding: 1rem 0 5rem 0; }
.section-header--light .section-label { color: rgba(255,255,255,0.55); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header--light .section-title { color: var(--white); }
.section-desc {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Botones --- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--dark-teal); transform: translateY(-1px); }

/* ===========================
   NAVEGACIÓN
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  z-index: 1000;
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo .logo-img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.81rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-social { display: flex; align-items: center; gap: 0.85rem; }
.nav-social a { color: var(--text-grey); transition: color 0.2s; }
.nav-social a:hover { color: var(--teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: var(--nav-h);
}
.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-desc {
  margin-top: 1.25rem;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-content .btn-primary { margin-top: 2rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   QUIÉNES SOMOS
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.about-text p { font-size: 0.95rem; line-height: 1.8; color: rgba(26,26,26,0.85); margin-bottom: 1.1rem; }
.about-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
  width: 100%;
}
.about-feature {
  display: block;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.feature-icon {
  margin: 0 auto 0.6rem;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-feature > div { text-align: center; }
.about-feature strong { display: block; font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--text-dark); }
.about-feature p { font-size: 0.85rem; color: var(--text-grey); margin: 0; line-height: 1.5; }
.about-image { border-radius: 0; overflow: hidden; box-shadow: none; height: 100%; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image iframe { width: 100%; height: 100%; border: none; }

/* ===========================
   SERVICIOS / HABITACIONES
   =========================== */
.rooms-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.rooms-intro h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-dark); margin-bottom: 1rem; }
.rooms-intro p { font-size: 0.95rem; color: var(--text-grey); line-height: 1.7; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.room-card {
  background: var(--sand);
  border-radius: 16px;
  overflow: visible;
  border: 3px solid #396569;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.room-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-4px); }
.room-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-card:hover .room-img img { transform: scale(1.05); }
/* Efecto visual para fotos clickeables de habitaciones */
.room-gallery-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.room-card:hover .room-img {
  background: rgba(0, 0, 0, 0.15);
}
.room-body {
  position: relative;
  padding: 2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-body::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  z-index: 2;
}

/* Iconos específicos para cada habitación */
.room-card[data-icon="imagenes/habitacion-fauna-superior.svg"] .room-body::before {
  background-image: url(imagenes/habitacion-fauna-superior.svg);
}
.room-card[data-icon="imagenes/habitacion-fauna-ejecutiva.svg"] .room-body::before {
  background-image: url(imagenes/habitacion-fauna-ejecutiva.svg);
}
.room-card[data-icon="imagenes/habitacion-fauna-doble.svg"] .room-body::before {
  background-image: url(imagenes/habitacion-fauna-doble.svg);
}
.room-card[data-icon="imagenes/habitacion-floral-doble.svg"] .room-body::before {
  background-image: url(imagenes/habitacion-floral-doble.svg);
}
.room-card[data-icon="imagenes/habitacion-floral-triple.svg"] .room-body::before {
  background-image: url(imagenes/habitacion-floral-triple.svg);
}
.room-card[data-icon="imagenes/habitacion-floral-standard.svg"] .room-body::before {
  background-image: url(imagenes/habitacion-floral-standard.svg);
}
.room-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.room-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
>>>>>>> d8df202c53c56501e8075519c06c0022fb839ec9
.room-body h4 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.room-tagline { font-size: 0.82rem; color: var(--teal); margin-bottom: 0.85rem; }
.room-terms {
  font-size: 0.78rem;
  color: var(--text-grey);
  margin-bottom: 0.9rem;
}
.room-terms a {
  color: var(--teal);
  text-decoration: underline;
}
.room-terms a:hover { color: var(--dark-teal); }
.amenities { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.amenities li {
  font-size: 0.75rem;
  color: var(--text-grey);
  background: rgba(11,122,117,0.08);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}
.btn-reservar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: #25d366;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  margin-top: auto;
}
.btn-reservar:hover { background: #1ebe5d; transform: translateY(-1px); }

.rooms-slider {
  margin-top: 2.2rem;
}
.reviews-slider {
  margin-top: 2.4rem;
}
.reviews-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.reviews-slider-head h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-dark);
}
.reviews-slider-head a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
}
.reviews-slider-head a:hover { color: var(--dark-teal); }
.reviews-slider-shell {
  position: relative;
}
.reviews-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  border-radius: 16px;
}
.reviews-slider-viewport::-webkit-scrollbar {
  display: none;
}
.reviews-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  scroll-snap-type: x mandatory;
}
.review-card {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}
.review-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(11,122,117,0.18);
}
.review-author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.review-author-meta strong {
  font-size: 0.83rem;
  color: var(--navy);
}
.review-author-meta span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-grey);
}
.review-stars {
  color: #f4a300;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.review-card p {
  font-size: 0.84rem;
  color: var(--text-grey);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.reviews-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border: 1px solid rgba(26,43,74,0.2);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
  z-index: 3;
}
.reviews-slider-prev { left: 0.55rem; }
.reviews-slider-next { right: 0.55rem; }
.rooms-slider-head h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}
.rooms-slider-shell {
  position: relative;
}
.rooms-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  border-radius: 16px;
}
.rooms-slider-viewport::-webkit-scrollbar {
  display: none;
}
.rooms-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  scroll-snap-type: x mandatory;
}
.rooms-slide {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.rooms-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.rooms-slide:hover img {
  transform: scale(1.03);
}
/* Efecto visual para fotos clickeables del slider de habitaciones */
.rooms-slider-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.rooms-slider-item:hover img {
  filter: brightness(0.85);
}
.rooms-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  border: 1px solid rgba(26,43,74,0.2);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
  z-index: 3;
}
.rooms-slider-prev { left: 0.55rem; }
.rooms-slider-next { right: 0.55rem; }

/* Otros servicios */
.other-services { margin-top: 5rem; }
.other-services h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-dark); text-align: center; margin-bottom: 2.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-item {
  background: var(--sand);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}
.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-item h4 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.6rem; }
.service-item p { font-size: 0.85rem; color: var(--text-grey); line-height: 1.65; }

/* ===========================
   ACTIVIDADES
   =========================== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.activity-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  color: var(--white);
  transition: background 0.25s;
}
.activity-card:hover { background: rgba(255,255,255,0.15); }
.activity-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.activity-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; }
.activity-card p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ===========================
   PLANES
   =========================== */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.plan-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.plan-img {
  position: relative;
  height: clamp(230px, 28vw, 360px);
}
.plan-img img { width: 100%; height: 100%; object-fit: cover; }
.plan-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
}
.plan-body { padding: 2rem 2.25rem; }
.plan-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-body h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.plan-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem; margin-bottom: 1rem; }
.price-main { font-size: 1.05rem; font-weight: 600; color: var(--teal); }
.price-child { font-size: 0.82rem; color: var(--text-grey); }
.plan-body > p { font-size: 0.88rem; color: var(--text-grey); line-height: 1.7; margin-bottom: 1.25rem; }
.plan-terms {
  font-size: 0.82rem;
  color: var(--text-grey);
  margin-top: -0.5rem;
  margin-bottom: 1.1rem;
}
.plan-terms a {
  color: var(--teal);
  text-decoration: underline;
}
.plan-terms a:hover { color: var(--dark-teal); }
.plan-body h5 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 0.75rem; }
.plan-includes { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.plan-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--text-grey);
}
.plan-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B7A75' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}
.plan-note { font-size: 0.8rem; font-style: italic; color: var(--text-grey); }
.plan-body .btn-reservar {
  margin-top: auto;
}

/* ===========================
   GALERÍA
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.28) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.05);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item { cursor: zoom-in; }

/* Animacion escalonada cuando entra en viewport */
.gallery-grid.is-visible .gallery-item { opacity: 1; transform: translateY(0) scale(1); }
.gallery-grid.is-visible .gallery-item:nth-child(1) { transition-delay: 0.04s; }
.gallery-grid.is-visible .gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid.is-visible .gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid.is-visible .gallery-item:nth-child(4) { transition-delay: 0.22s; }
.gallery-grid.is-visible .gallery-item:nth-child(5) { transition-delay: 0.28s; }
.gallery-grid.is-visible .gallery-item:nth-child(6) { transition-delay: 0.34s; }
.gallery-grid.is-visible .gallery-item:nth-child(7) { transition-delay: 0.4s; }
.gallery-grid.is-visible .gallery-item:nth-child(8) { transition-delay: 0.46s; }
.gallery-grid.is-visible .gallery-item:nth-child(9) { transition-delay: 0.52s; }

/* Visor de fotos (lightbox) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 3000;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-media {
  max-width: min(92vw, 1300px);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
}
.lightbox-control,
.lightbox-close {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-control:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.04);
}
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 1.35rem;
}
.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===========================
   VIDEOS
   =========================== */
.videos-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.videos-intro h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-dark); margin-bottom: 1rem; }
.videos-intro p { font-size: 0.95rem; color: var(--text-grey); line-height: 1.7; }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 0;
}

.video-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  height: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px 8px 0 0;
}

.video-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  background: #FF0000;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-1px);
}

.btn-youtube svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .video-body h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===========================
   CONTACTO
   =========================== */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
/* Info de contacto en la parte superior */
.contact-info-top {
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* Mapa y formulario lado a lado */
.contact-row-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-map-section {
  color: var(--white);
}
/* Info de contacto antigua - mantener para compatibilidad */
.contact-info { 
  color: var(--white); 
}
.contact-block { margin-bottom: 0; }
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 1rem;
}
.contact-row { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 0.75rem; color: var(--white); }
.contact-row svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }
.contact-row a { color: var(--teal); }
.contact-row a:hover { text-decoration: underline; }
.contact-row p { font-size: 0.95rem; line-height: 1.75; }
.contact-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 1.5rem 0; }
.contact-map-wrap {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
}
.contact-map-wrap:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.contact-map {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}
.contact-socials { display: flex; gap: 0.85rem; }
.contact-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: color 0.2s, border-color 0.2s;
}
.contact-socials a:hover { color: var(--teal); border-color: rgba(11,122,117,0.5); }

/* Sección Síguenos en Contact */
.contact-siguenos {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.contact-siguenos .contact-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Sección Síguenos */
.siguenos-section {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.siguenos-section .contact-socials {
  justify-content: center;
}
.siguenos-section .contact-socials a {
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
}

/* Formulario */
.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.contact-form { 
  display: flex; 
  flex-direction: column; 
  gap: 1.3rem; 
}
.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1.2rem; 
}
.form-group { 
  display: flex; 
  flex-direction: column; 
  gap: 0.6rem; 
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { 
  color: rgba(255,255,255,0.35); 
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(11,122,117,0.3);
  background: rgba(255,255,255,0.09);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { 
  border-color: var(--teal);
  background: rgba(11,122,117,0.05);
  box-shadow: 0 0 0 3px rgba(11,122,117,0.1);
}
.form-group textarea { 
  resize: vertical;
  min-height: 120px;
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator { 
  filter: invert(1) opacity(0.6);
  cursor: pointer;
}
.form-group select option { 
  color: #1a1a1a;
  padding: 0.5rem;
}
.btn-submit {
  width: 100%;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.btn-submit:hover { 
  background: var(--dark-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,122,117,0.3);
}
.btn-submit:active {
  transform: translateY(0);
}
/* Precio estimado */
#precio-estimado-container {
  background: linear-gradient(135deg, rgba(11,122,117,0.08) 0%, rgba(11,122,117,0.04) 100%) !important;
  border: 1.5px solid rgba(11,122,117,0.2) !important;
  border-radius: 10px !important;
  padding: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
#precio-valor {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: var(--teal) !important;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 2500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover {
  background: #20ba5a;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 26px rgba(0,0,0,0.25);
}
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255,255,255,0.85);
  outline-offset: 2px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-inner a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-inner a:hover { color: var(--teal); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .nav-container { padding: 0 1rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.75rem; }
}

@media (max-width: 900px) {
  .nav-social { display: none; }
  .nav-links { margin-left: auto; }
}

@media (max-width: 1024px) {
  .container { padding: 0 1.1rem; }
  .section { padding: 4.2rem 0; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-slider-track { grid-auto-columns: calc((100% - 1rem) / 2); }
  .rooms-slider-track { grid-auto-columns: calc((100% - 1rem) / 2); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-image { height: auto; min-height: 400px; }
  .contact-grid { flex-direction: column; gap: 2rem; }
  .contact-info-top { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .contact-row-bottom { grid-template-columns: 1fr; gap: 2.5rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-body { padding: 1.6rem 1.5rem; }
  .contact-siguenos { padding-top: 1.5rem; margin-top: 1.5rem; }
  .siguenos-section { padding: 2.5rem 1.5rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.4rem 0; }
  .section-header { margin-bottom: 2.2rem; }
  .hero {
    min-height: 85vh;
    padding-top: var(--nav-h);
  }
  .hero-content { max-width: 92%; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--divider);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--divider);
    font-size: 0.9rem;
  }
  .hamburger { display: flex; }
  .nav-social { display: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .reviews-slider-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
  .reviews-slider-track { grid-auto-columns: 100%; }
  .reviews-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }
  .rooms-slider-track { grid-auto-columns: 100%; }
  .rooms-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }
  .services-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid,
  .rooms-grid,
  .plans-grid,
  .activities-grid { gap: 1rem; }
  .service-item,
  .activity-card,
  .room-body,
  .contact-form-wrap { padding-left: 1rem; padding-right: 1rem; }
  .contact-form-wrap { padding-top: 1.2rem; padding-bottom: 1.2rem; }
  .contact-info-top { grid-template-columns: 1fr; gap: 1.2rem; }
  .contact-map { height: 280px; }
  .siguenos-section { padding: 2rem 1rem; }
  .siguenos-section h3 { font-size: 1.1rem; }
  .plan-body {
    padding: 1.25rem 1rem;
  }
  .plan-body h3 { font-size: 1.32rem; }
  .plan-price { gap: 0.45rem; }
  .price-main { font-size: 1rem; }
  .lightbox-control,
  .lightbox-close {
    width: 42px;
    height: 42px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { 
    padding: 1.8rem; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  }
  .contact-map { height: 280px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .plan-img { height: 240px; }
}

@media (max-width: 480px) {
  .contact-map { height: 240px; }
  .siguenos-section { padding: 1.5rem 1rem; }
  .siguenos-section .contact-socials a { width: 44px; height: 44px; }
  .whatsapp-float {
    right: 14px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .nav-logo .logo-img { height: 46px; }
  .hero-desc { font-size: 0.9rem; }
  .room-body h4 { font-size: 0.95rem; }
  .amenities li { font-size: 0.72rem; }
  .btn-reservar { font-size: 0.78rem; }
  .contact-row p { font-size: 0.9rem; }
  .plan-badge {
    top: 0.7rem;
    left: 0.7rem;
    font-size: 0.64rem;
    padding: 0.3rem 0.62rem;
  }
  .plan-img { height: 210px; }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
  .lightbox-caption {
    font-size: 0.8rem;
    max-width: 88vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .section-title { font-size: 1.6rem; }
}