@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500&display=swap');

:root {
  --cream: #f5f0e8;
  --dark: #1a1410;
  --terracotta: #8b3a2a;
  --gold: #c9a84c;
  --green: #1a3a2a;
  --stone: #7a6a55;
  --light-stone: #d4c5a9;
  --white: #fdfbf7;
  --script: 'Dancing Script', cursive;
  --serif: 'Playfair Display', serif;
  --body: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: rgba(26,20,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--light-stone); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 0.5rem 1.4rem; border-radius: 2px; font-weight: 500 !important;
}

/* ══════════════════════════════════════
   HERO — imagen full-bleed, único portador
   del logo/nombre (ya viene en la foto)
══════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Foto de fondo: ocupa todo el hero, sin bordes ni espacios.
   object-position más alta (35% en vez de center/50%) deja más
   "aire" arriba del nombre incrustado y evita que la imagen se
   sienta apretada contra el texto — sin recortar ni escalar. */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center 50%;  /* subí este % para ver más arriba de la foto */
  display: block;
  margin: 0;
  border: none;
}
/* Overlay oscuro muy suave, solo para legibilidad del texto inferior */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.1) 45%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Contenedor del contenido — centrado horizontal,
   NO centrado vertical: se empuja hacia abajo con
   padding-top proporcional para no tapar el nombre
   "La Noria Eventos" incrustado en la foto. */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 2rem;
  padding-top: clamp(38vh, 48vh, 54vh);
  }

/* ───── DESCRIPCIÓN Y BOTONES ───── */
.hero-bottom{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;

    max-width:900px;

    gap:2.8rem;
}

.hero-desc{
    font-family: var(--serif);
    font-size: clamp(1.25rem,1.8vw,1.6rem);
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: .01em;
    max-width: 900px;

    color: #fbf8f2;

    /* Borde fino */
    -webkit-text-stroke: .35px rgba(0,0,0,.9);

    /* Sombra elegante */
    text-shadow:
        0 2px 6px rgba(0,0,0,.75),
        0 0 12px rgba(0,0,0,.35);

    opacity: 1;
}
.hero-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

    margin-top:155px;   /* ← aumenta este valor */
}

/* ───── SCROLL INDICATOR ───── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1.2s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.scroll-dot {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ───── ANIMACIÓN ÚNICA: fade + translateY ───── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   HERO RESPONSIVE — MÓVIL
   Fix: en pantallas angostas y altas, object-fit:cover
   con min-height:100vh recortaba el título y la descripción
   incrustados en la imagen. Se cambia a un esquema donde
   la imagen se ve COMPLETA (sin recorte de texto) y el
   hero deja de forzar 100vh, adaptándose a la proporción
   real de la imagen. No se toca nada del desktop (>768px).
══════════════════════════════════════ */
@media (max-width:768px){
.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:100vh;
    overflow:hidden;
}
.hero-img{
 content:url("img/movil2026.png");
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 12%;
    transform:translateY(-4%);
}
.hero-overlay{
    display:block;
}
.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:62vh;
}
.hero-btns{
    margin-top:0;
    gap:14px;
}
.hero-scroll{
    bottom:18px;
}
.btn-primary,
.btn-secondary{
    width:90%;
    max-width:330px;
    justify-content:center;
}
}
/* ══════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-brand-name { font-size: clamp(5rem, 22vw, 9rem); }
  .hero-brand-sub { letter-spacing: 0.35em; font-size: 0.65rem; }
  .hero-desc { font-size: 0.84rem; }
  .hero-content { margin-top: 0; }
}

@media (max-width: 480px) {
  .hero-brand-name { font-size: clamp(3.8rem, 25vw, 6rem); }
  .hero-brand-sub { letter-spacing: 0.25em; font-size: 0.6rem; }
  .hero-bottom { gap: 1.2rem; }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary{

    background:#F4D06F;

    color:#2b2115;

    padding:18px 42px;

    border-radius:12px;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    text-decoration:none;

    box-shadow:0 10px 28px rgba(0,0,0,.25);

    transition:.35s;
}

.btn-primary:hover{

    background:#FFE08A;

    transform:translateY(-4px);

}
.btn-secondary{

    background:#DDB44A;

    color:#2b2115;

    padding:18px 42px;

    border-radius:12px;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    text-decoration:none;

    box-shadow:0 10px 28px rgba(0,0,0,.25);

    transition:.35s;
}

.btn-secondary:hover{

    background:#F4D06F;

    transform:translateY(-4px);

}
/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--terracotta); padding: 1.5rem 4rem;
  display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,251,247,0.7); margin-top: 0.3rem; }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section { padding: 7rem 4rem; }
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem;
}
.section-title em {
  font-family: var(--script); font-style: normal; color: var(--gold);
  font-size: 1.5em; line-height: 0.75; display: inline-block; vertical-align: -0.15em;
  font-weight: 700; font-feature-settings: "liga" 1, "calt" 1;
  letter-spacing: -0.02em; text-rendering: optimizeLegibility;
}
.divider { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ══════════════════════════════════════
   CABAÑAS
══════════════════════════════════════ */
#cabanas { background: var(--dark); }
.cabanas-header {
  max-width: 1200px; margin: 0 auto 3rem;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem;
}
.cabanas-intro { font-size: 0.9rem; color: rgba(245,240,232,0.6); max-width: 440px; line-height: 1.8; }
.cabanas-fotos-grid {
  max-width: 1200px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 4px;
}
.cabana-foto-item { position: relative; overflow: hidden; cursor: pointer; }
.cabana-foto-item img {
  width: 100%; height: 280px; object-fit: cover; display: block;
  filter: brightness(0.88); transition: transform 0.5s ease, filter 0.4s ease;
}
.cabana-foto-item:hover img { transform: scale(1.05); filter: brightness(1); }
.cabana-foto-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(26,20,16,0.9), transparent);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-stone); transform: translateY(100%); transition: transform 0.3s ease;
}
.cabana-foto-item:hover .cabana-foto-label { transform: translateY(0); }
.cabana-foto-tall { grid-row: span 2; }
.cabana-foto-tall img { height: 100%; min-height: 564px; }
.cabanas-desc-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.cabana-desc-card {
  background: #211a12; border: 1px solid rgba(201,168,76,0.1);
  padding: 3rem; display: flex; gap: 2rem;
  position: relative; overflow: hidden; transition: border-color 0.3s;
}
.cabana-desc-card:hover { border-color: rgba(201,168,76,0.3); }
.cabana-desc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.cabana-desc-numero { font-family: var(--serif); font-size: 5rem; font-weight: 300; color: rgba(201,168,76,0.07); line-height: 1; flex-shrink: 0; margin-top: -0.5rem; }
.cabana-desc-content { flex: 1; }
.cabana-tag { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.cabana-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.cabana-divider { width: 40px; height: 1px; background: var(--gold); margin: 1rem 0 1.2rem; opacity: 0.5; }
.cabana-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(245,240,232,0.6); margin-bottom: 1.2rem; }
.cabana-equipment-title {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.6);
}

.cabana-equipment-title strong {
  color: rgba(245,240,232,0.6);
  font-weight: 700;
}

.cabana-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 1.2rem 0 1.5rem; }
.spec-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(245,240,232,0.55); }
.spec-icon { font-size: 0.9rem; }
.btn-cabana {
  display: inline-block; margin-top: 1.2rem; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px; transition: all 0.3s;
}
.btn-cabana:hover { color: var(--white); border-color: var(--white); }
.cabanas-nota {
  max-width: 1200px; margin: 3px auto 0; background: #1a1410;
  border: 1px solid rgba(201,168,76,0.15); border-left: 3px solid var(--gold);
  padding: 1.2rem 2rem; display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.84rem; color: rgba(245,240,232,0.55); line-height: 1.7;
}
.nota-icono { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.cabanas-nota strong { color: var(--light-stone); }

/* ══════════════════════════════════════
   GALERÍA
══════════════════════════════════════ */
.galeria-section { background: #111009; padding: 5rem 4rem; }
.galeria-inner { max-width: 1200px; margin: 0 auto; }
.galeria-sub { font-size: 0.88rem; color: rgba(245,240,232,0.45); margin-top: 0.5rem; }
.galeria-bloque-titulo { margin: 3.5rem 0 1.2rem; display: flex; align-items: center; gap: 1rem; }
.galeria-bloque-titulo::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.15); }
.galeria-bloque-label { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.galeria-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.galeria-item { position: relative; overflow: hidden; cursor: pointer; }
.galeria-item img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  filter: brightness(0.85); transition: transform 0.5s ease, filter 0.4s ease;
}
.galeria-item:hover img { transform: scale(1.06); filter: brightness(1); }
.galeria-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(26,20,16,0.88), transparent);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-stone); transform: translateY(100%); transition: transform 0.3s ease;
}
.galeria-item:hover .galeria-label { transform: translateY(0); }
  .titulo-galeria{
    margin: .5rem 0 1.5rem -115px;
}


.titulo-galeria img{
    display:block;
    width:100%;
    max-width:700px;
    height:auto;
}

/* ══════════════════════════════════════
   SERVICIOS
══════════════════════════════════════ */
.servicios-section { background: #1a1a14; padding: 7rem 4rem; }
.servicios-inner { max-width: 1200px; margin: 0 auto; }
.servicios-sub { font-size: 0.9rem; color: rgba(245,240,232,0.5); max-width: 500px; line-height: 1.8; margin-bottom: 3.5rem; }
.servicios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.servicio-card {
  background: #211a12; border: 1px solid rgba(248,246,242,0.05);
  padding: 2.2rem 1.8rem; position: relative; overflow: hidden; transition: all 0.3s;
}
.servicio-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(201,168,76,0.06), transparent); transition: height 0.4s;
}
.servicio-card:hover { border-color: rgba(201,168,76,0.2); }
.servicio-card:hover::after { height: 100%; }
.servicio-icono { font-size: 2rem; display: block; margin-bottom: 1rem; }
.servicio-titulo { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; line-height: 1.2; }
.servicio-desc { font-size: 0.8rem; color: rgba(245,240,232,0.45); line-height: 1.75; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   PISCINAS
══════════════════════════════════════ */
#piscinas { background: var(--green); position: relative; overflow: hidden; }
#piscinas::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.piscinas-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; position: relative; }
.piscinas-desc { font-size: 0.9rem; color: rgba(245,240,232,0.65); line-height: 1.8; margin-bottom: 2.5rem; }
.pool-cards { display: flex; flex-direction: column; gap: 1rem; }
.pool-card {
  background: rgba(253,251,247,0.05); border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem; display: flex; align-items: flex-start; gap: 1.2rem; transition: all 0.3s;
}
.pool-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.5); }
.pool-icon { font-size: 1.8rem; flex-shrink: 0; }
.pool-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.pool-dims { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.pool-desc { font-size: 0.82rem; color: rgba(245,240,232,0.6); line-height: 1.6; }
.piscinas-fotos-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 560px;
}
.piscina-foto-item { position: relative; overflow: hidden; }
.piscina-foto-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9); transition: transform 0.5s ease, filter 0.4s ease; }
.piscina-foto-item:hover img { transform: scale(1.04); filter: brightness(1); }
.piscina-foto-badge {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  background: rgba(26,20,16,0.85); border-left: 2px solid var(--gold);
  padding: 0.4rem 0.9rem; font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--light-stone);
}

/* ══════════════════════════════════════
   QUINCHO
══════════════════════════════════════ */
#quincho { background: #211a12; position: relative; }
.quincho-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.features-list li { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; color: rgba(245,240,232,0.75); padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.features-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.quincho-fotos-3 { display: flex; flex-direction: column; gap: 4px; height: 560px; }
.quincho-foto-item { position: relative; overflow: hidden; }
.quincho-foto-item img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; filter: brightness(0.88); transition: transform 0.5s ease, filter 0.4s ease; }
.quincho-foto-item:hover img { transform: scale(1.04); filter: brightness(1); }
.quincho-foto-main { flex: 2; background: #1a1410; }
.quincho-foto-main img { object-fit: contain; object-position: center center; }
.quincho-fotos-duo { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.quincho-foto-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(33,26,18,0.9), transparent);
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-stone);
  transform: translateY(100%); transition: transform 0.3s;
}
.quincho-foto-item:hover .quincho-foto-label { transform: translateY(0); }

/* ══════════════════════════════════════
   EVENTOS
══════════════════════════════════════ */
#eventos { background: var(--terracotta); position: relative; overflow: hidden; }
#eventos::after {
  content: 'EVENTOS'; position: absolute; bottom: -2rem; right: -2rem;
  font-family: var(--serif); font-size: 10rem; font-weight: 700;
  color: rgba(0,0,0,0.1); pointer-events: none; letter-spacing: -0.05em;
}
.eventos-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.eventos-galeria {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 5px;
  margin: 2.5rem 0 3rem;
}
.evento-foto-hero { grid-column: 1; grid-row: 1 / 3; position: relative; overflow: hidden; }
.evento-foto-hero img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.83); transition: transform 0.5s ease, filter 0.4s; }
.evento-foto-hero:hover img { transform: scale(1.04); filter: brightness(1); }
.evento-foto-item { position: relative; overflow: hidden; }
.evento-foto-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85); transition: transform 0.5s ease, filter 0.4s; }
.evento-foto-item:hover img { transform: scale(1.06); filter: brightness(1); }
.evento-foto-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 0.8rem;
  background: linear-gradient(to top, rgba(100,30,15,0.9), transparent);
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white);
  transform: translateY(100%); transition: transform 0.3s;
}
.evento-foto-item:hover .evento-foto-label,
.evento-foto-hero:hover .evento-foto-label { transform: translateY(0); }
.eventos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.evento-card { background: rgba(0,0,0,0.2); padding: 2rem; border-top: 2px solid rgba(253,251,247,0.3); transition: all 0.3s; }
.evento-card:hover { background: rgba(0,0,0,0.3); transform: translateY(-4px); }
.evento-icon { font-size: 2rem; margin-bottom: 1rem; }
.evento-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.7rem; }
.evento-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(253,251,247,0.75); }
.eventos-review { margin-top: 4rem; padding: 3rem; background: rgba(0,0,0,0.15); border-left: 3px solid rgba(253,251,247,0.4); max-width: 700px; }
.review-text { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--white); line-height: 1.6; margin-bottom: 1rem; }
.review-author { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,251,247,0.6); }

/* ══════════════════════════════════════
   RESEÑAS
══════════════════════════════════════ */
#resenas { background: #1a1a14; overflow: hidden; }
.resenas-inner { max-width: 1200px; margin: 0 auto; }
.rating-hero { text-align: center; margin-bottom: 4rem; }
.rating-big { font-family: var(--script); font-size: 6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rating-stars { font-size: 1.5rem; letter-spacing: 0.2em; margin: 0.5rem 0; color: var(--gold); }
.rating-count { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--stone); text-transform: uppercase; }
.resenas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.resena-card { background: #22201a; padding: 2rem; border-bottom: 2px solid rgba(201,168,76,0.2); transition: border-color 0.3s; }
.resena-card:hover { border-color: var(--gold); }
.resena-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }
.resena-text { font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.65; color: rgba(245,240,232,0.85); margin-bottom: 1.2rem; }
.resena-author { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }

/* ══════════════════════════════════════
   UBICACIÓN
══════════════════════════════════════ */
#ubicacion { background: var(--dark); }
.ubicacion-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.map-container { position: relative; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); }
.map-container iframe { width: 100%; height: 400px; border: none; filter: grayscale(30%) contrast(1.1); }
.map-overlay { position: absolute; top: 1rem; left: 1rem; background: rgba(26,20,16,0.9); padding: 0.8rem 1.2rem; border-left: 2px solid var(--gold); }
.map-overlay p { font-size: 0.72rem; letter-spacing: 0.15em; color: var(--gold); }
.contact-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.2rem; width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-value { font-size: 0.95rem; color: var(--white); line-height: 1.5; }
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
#cta { background: var(--green); text-align: center; padding: 8rem 4rem; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.15) 0%, transparent 70%); }
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; color: var(--white); margin-bottom: 1.5rem; line-height: 1.15; }
.cta-title em { font-family: var(--script); font-style: normal; color: var(--gold); font-size: 1.5em; line-height: 0.75; display: inline-block; vertical-align: -0.15em; font-weight: 700; font-feature-settings: "liga" 1, "calt" 1; letter-spacing: -0.02em; text-rendering: optimizeLegibility; }
.cta-sub { font-size: 0.9rem; color: rgba(245,240,232,0.65); line-height: 1.8; margin-bottom: 3rem; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.8rem; background: #25D366; color: white; padding: 1.2rem 3rem; font-family: var(--body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; border-radius: 2px; }
.whatsapp-btn:hover { background: #20c45a; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--dark); padding: 3rem 4rem; border-top: 1px solid rgba(201,168,76,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--script); font-size: 2rem; color: var(--gold); line-height: 1; font-weight: 700; font-feature-settings: "liga" 1, "calt" 1; letter-spacing: -0.02em; text-rendering: optimizeLegibility; }
.footer-copy { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--stone); text-align: center; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   WA FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulseOnce 2s 2s ease-out forwards;
}
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes heroReveal {
  from { transform: scale(1.05); opacity: 0.6; }
  to   { transform: scale(1);    opacity: 1;   }
}
@keyframes brandReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes waPulseOnce {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  40%  { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2,1fr); }
  .eventos-galeria { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-logo-script { font-size: 1.5rem; }
  section { padding: 5rem 1.5rem; }
  .stats-bar { padding: 1.5rem 2rem; gap: 2rem; }
  .cabanas-header { flex-direction: column; }
  .cabanas-fotos-grid { grid-template-columns: 1fr; }
  .cabana-foto-tall { grid-row: span 1; }
  .cabana-foto-tall img { min-height: 220px; height: 220px; }
  .cabana-foto-item img { height: 220px; }
  .cabanas-desc-grid { grid-template-columns: 1fr; }
  .cabana-desc-card { flex-direction: column; gap: 0.5rem; padding: 2rem; }
  .cabana-desc-numero { font-size: 3rem; }
  .cabana-specs { grid-template-columns: 1fr; }
  .galeria-section { padding: 5rem 1.5rem; }
  .galeria-row-3 { grid-template-columns: 1fr 1fr; }
  .galeria-row-3 .galeria-item:last-child { grid-column: span 2; }
  .galeria-item img { height: 180px; }
  .servicios-section { padding: 5rem 1.5rem; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .piscinas-inner { grid-template-columns: 1fr; gap: 3rem; }
 .piscinas-fotos-col { height: 400px; }
  .quincho-inner { grid-template-columns: 1fr; gap: 3rem; }
  .quincho-fotos-3 { height: 360px; }
  .eventos-galeria { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .evento-foto-hero { grid-column: 1 / 3; grid-row: 1; }
  .eventos-grid { grid-template-columns: 1fr; }
  #eventos::after { display: none; }
  .resenas-grid { grid-template-columns: 1fr; }
  .ubicacion-inner { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .galeria-row-3 { grid-template-columns: 1fr; }
  .galeria-row-3 .galeria-item:last-child { grid-column: span 1; }
  .eventos-galeria { grid-template-columns: 1fr; grid-template-rows: auto; }
  .evento-foto-hero { grid-column: 1; grid-row: auto; height: 250px; }
}

/* Reducir movimiento para accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-img, .hero-brand-name, .hero-brand-sub, .hero-bottom, .hero-divider, .hero-scroll {
    animation: none;
    opacity: 1;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500&display=swap');

:root {
  --cream: #f5f0e8;
  --dark: #1a1410;
  --terracotta: #8b3a2a;
  --gold: #c9a84c;
  --green: #1a3a2a;
  --stone: #7a6a55;
  --light-stone: #d4c5a9;
  --white: #fdfbf7;
  --script: 'Dancing Script', cursive;
  --serif: 'Playfair Display', serif;
  --body: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: rgba(26,20,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--light-stone); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 0.5rem 1.4rem; border-radius: 2px; font-weight: 500 !important;
}

/* ══════════════════════════════════════
   HERO — imagen full-bleed, único portador
   del logo/nombre (ya viene en la foto)
══════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Foto de fondo: ocupa todo el hero, sin bordes ni espacios.
   object-position más alta (35% en vez de center/50%) deja más
   "aire" arriba del nombre incrustado y evita que la imagen se
   sienta apretada contra el texto — sin recortar ni escalar. */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center 67%;
  display: block;
  margin: 0;
  border: none;
  transform: translateY(-50px);  /* ← AGREGA ESTA LÍNEA para subir la imagen */
}

/* Overlay oscuro muy suave, solo para legibilidad del texto inferior */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.1) 45%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Contenedor del contenido — centrado horizontal,
   NO centrado vertical: se empuja hacia abajo con
   padding-top proporcional para no tapar el nombre
   "La Noria Eventos" incrustado en la foto. */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 2rem;
  padding-top: clamp(30vh, 40vh, 50vh);  /* Reducido bastante */ 
}



/* ───── DESCRIPCIÓN Y BOTONES ───── */
.hero-bottom{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;

    max-width:900px;

    gap:2.8rem;
}

.hero-desc{
    font-family: var(--serif);
    font-size: clamp(1.25rem,1.8vw,1.6rem);
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: .01em;
    max-width: 900px;

    color: #fbf8f2;

    /* Borde fino */
    -webkit-text-stroke: .35px rgba(0,0,0,.9);

    /* Sombra elegante */
    text-shadow:
        0 2px 6px rgba(0,0,0,.75),
        0 0 12px rgba(0,0,0,.35);

    opacity: 1;
}
.hero-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

    margin-top:155px;   /* ← aumenta este valor */
}

/* ───── SCROLL INDICATOR ───── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1.2s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.scroll-dot {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ───── ANIMACIÓN ÚNICA: fade + translateY ───── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   HERO RESPONSIVE — MÓVIL
   Fix: en pantallas angostas y altas, object-fit:cover
   con min-height:100vh recortaba el título y la descripción
   incrustados en la imagen. Se cambia a un esquema donde
   la imagen se ve COMPLETA (sin recorte de texto) y el
   hero deja de forzar 100vh, adaptándose a la proporción
   real de la imagen. No se toca nada del desktop (>768px).
══════════════════════════════════════ */
@media (max-width:768px){
.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:100vh;
    overflow:hidden;
}
.hero-img{
 content:url("img/movil2026.png");
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 12%;
    transform:translateY(-4%);
}
.hero-overlay{
    display:block;
}
.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:62vh;
}
.hero-btns{
    margin-top:0;
    gap:14px;
}
.hero-scroll{
    bottom:18px;
}
.btn-primary,
.btn-secondary{
    width:90%;
    max-width:330px;
    justify-content:center;
}
}
/* ══════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-brand-name { font-size: clamp(5rem, 22vw, 9rem); }
  .hero-brand-sub { letter-spacing: 0.35em; font-size: 0.65rem; }
  .hero-desc { font-size: 0.84rem; }
  .hero-content { margin-top: 0; }
}

@media (max-width: 480px) {
  .hero-brand-name { font-size: clamp(3.8rem, 25vw, 6rem); }
  .hero-brand-sub { letter-spacing: 0.25em; font-size: 0.6rem; }
  .hero-bottom { gap: 1.2rem; }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary{

    background:#F4D06F;

    color:#2b2115;

    padding:18px 42px;

    border-radius:12px;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    text-decoration:none;

    box-shadow:0 10px 28px rgba(0,0,0,.25);

    transition:.35s;
}

.btn-primary:hover{

    background:#FFE08A;

    transform:translateY(-4px);

}
.btn-secondary{

    background:#DDB44A;

    color:#2b2115;

    padding:18px 42px;

    border-radius:12px;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    text-decoration:none;

    box-shadow:0 10px 28px rgba(0,0,0,.25);

    transition:.35s;
}

.btn-secondary:hover{

    background:#F4D06F;

    transform:translateY(-4px);

}
/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--terracotta); padding: 1.5rem 4rem;
  display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,251,247,0.7); margin-top: 0.3rem; }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section { padding: 7rem 4rem; }
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem;
}
.section-title em {
  font-family: var(--script); font-style: normal; color: var(--gold);
  font-size: 1.5em; line-height: 0.75; display: inline-block; vertical-align: -0.15em;
  font-weight: 700; font-feature-settings: "liga" 1, "calt" 1;
  letter-spacing: -0.02em; text-rendering: optimizeLegibility;
}
.divider { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ══════════════════════════════════════
   CABAÑAS
══════════════════════════════════════ */
#cabanas { background: var(--dark); }
.cabanas-header {
  max-width: 1200px; margin: 0 auto 3rem;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem;
}
.cabanas-intro { font-size: 0.9rem; color: rgba(245,240,232,0.6); max-width: 440px; line-height: 1.8; }
.cabanas-fotos-grid {
  max-width: 1200px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 4px;
}
.cabana-foto-item { position: relative; overflow: hidden; cursor: pointer; }
.cabana-foto-item img {
  width: 100%; height: 280px; object-fit: cover; display: block;
  filter: brightness(0.88); transition: transform 0.5s ease, filter 0.4s ease;
}
.cabana-foto-item:hover img { transform: scale(1.05); filter: brightness(1); }
.cabana-foto-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(26,20,16,0.9), transparent);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-stone); transform: translateY(100%); transition: transform 0.3s ease;
}
.cabana-foto-item:hover .cabana-foto-label { transform: translateY(0); }
.cabana-foto-tall { grid-row: span 2; }
.cabana-foto-tall img { height: 100%; min-height: 564px; }
.cabanas-desc-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.cabana-desc-card {
  background: #211a12; border: 1px solid rgba(201,168,76,0.1);
  padding: 3rem; display: flex; gap: 2rem;
  position: relative; overflow: hidden; transition: border-color 0.3s;
}
.cabana-desc-card:hover { border-color: rgba(201,168,76,0.3); }
.cabana-desc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.cabana-desc-numero { font-family: var(--serif); font-size: 5rem; font-weight: 300; color: rgba(201,168,76,0.07); line-height: 1; flex-shrink: 0; margin-top: -0.5rem; }
.cabana-desc-content { flex: 1; }
.cabana-tag { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.cabana-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.cabana-divider { width: 40px; height: 1px; background: var(--gold); margin: 1rem 0 1.2rem; opacity: 0.5; }
.cabana-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(245,240,232,0.6); margin-bottom: 1.2rem; }
.cabana-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 1.2rem 0 1.5rem; }
.spec-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(245,240,232,0.55); }
.spec-icon { font-size: 0.9rem; }
.btn-cabana {
  display: inline-block; margin-top: 1.2rem; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px; transition: all 0.3s;
}
.btn-cabana:hover { color: var(--white); border-color: var(--white); }
.cabanas-nota {
  max-width: 1200px; margin: 3px auto 0; background: #1a1410;
  border: 1px solid rgba(201,168,76,0.15); border-left: 3px solid var(--gold);
  padding: 1.2rem 2rem; display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.84rem; color: rgba(245,240,232,0.55); line-height: 1.7;
}
.nota-icono { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.cabanas-nota strong { color: var(--light-stone); }

/* ══════════════════════════════════════
   GALERÍA
══════════════════════════════════════ */
.galeria-section { background: #111009; padding: 5rem 4rem; }
.galeria-inner { max-width: 1200px; margin: 0 auto; }
.galeria-sub { font-size: 0.88rem; color: rgba(245,240,232,0.45); margin-top: 0.5rem; }
.galeria-bloque-titulo { margin: 3.5rem 0 1.2rem; display: flex; align-items: center; gap: 1rem; }
.galeria-bloque-titulo::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.15); }
.galeria-bloque-label { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.galeria-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.galeria-item { position: relative; overflow: hidden; cursor: pointer; }
.galeria-item img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  filter: brightness(0.85); transition: transform 0.5s ease, filter 0.4s ease;
}
.galeria-item:hover img { transform: scale(1.06); filter: brightness(1); }
.galeria-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(26,20,16,0.88), transparent);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-stone); transform: translateY(100%); transition: transform 0.3s ease;
}
.galeria-item:hover .galeria-label { transform: translateY(0); }

/* ══════════════════════════════════════
   SERVICIOS
══════════════════════════════════════ */
.servicios-section { background: #1a1a14; padding: 7rem 4rem; }
.servicios-inner { max-width: 1200px; margin: 0 auto; }
.servicios-sub { font-size: 0.9rem; color: rgba(245,240,232,0.5); max-width: 500px; line-height: 1.8; margin-bottom: 3.5rem; }
.servicios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.servicio-card {
  background: #211a12; border: 1px solid rgba(248,246,242,0.05);
  padding: 2.2rem 1.8rem; position: relative; overflow: hidden; transition: all 0.3s;
}
.servicio-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(201,168,76,0.06), transparent); transition: height 0.4s;
}
.servicio-card:hover { border-color: rgba(201,168,76,0.2); }
.servicio-card:hover::after { height: 100%; }
.servicio-icono { font-size: 2rem; display: block; margin-bottom: 1rem; }
.servicio-titulo { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; line-height: 1.2; }
.servicio-desc { font-size: 0.8rem; color: rgba(245,240,232,0.45); line-height: 1.75; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   PISCINAS
══════════════════════════════════════ */
#piscinas { background: var(--green); position: relative; overflow: hidden; }
#piscinas::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.piscinas-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; position: relative; }
.piscinas-desc { font-size: 0.9rem; color: rgba(245,240,232,0.65); line-height: 1.8; margin-bottom: 2.5rem; }
.pool-cards { display: flex; flex-direction: column; gap: 1rem; }
.pool-card {
  background: rgba(253,251,247,0.05); border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem; display: flex; align-items: flex-start; gap: 1.2rem; transition: all 0.3s;
}
.pool-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.5); }
.pool-icon { font-size: 1.8rem; flex-shrink: 0; }
.pool-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.pool-dims { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.pool-desc { font-size: 0.82rem; color: rgba(245,240,232,0.6); line-height: 1.6; }
.piscinas-fotos-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 560px;
  margin-top: 190px; /* cambia este valor */
}
.piscina-foto-item { position: relative; overflow: hidden; }
.piscina-foto-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9); transition: transform 0.5s ease, filter 0.4s ease; }
.piscina-foto-item:hover img { transform: scale(1.04); filter: brightness(1); }
.piscina-foto-badge {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  background: rgba(26,20,16,0.85); border-left: 2px solid var(--gold);
  padding: 0.4rem 0.9rem; font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--light-stone);
}

/* ══════════════════════════════════════
   QUINCHO
══════════════════════════════════════ */
#quincho { background: #211a12; position: relative; }
.quincho-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.features-list li { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; color: rgba(245,240,232,0.75); padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.features-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.quincho-fotos-3 { display: flex; flex-direction: column; gap: 4px; height: 560px; }
.quincho-foto-item { position: relative; overflow: hidden; }
.quincho-foto-item img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; filter: brightness(0.88); transition: transform 0.5s ease, filter 0.4s ease; }
.quincho-foto-item:hover img { transform: scale(1.04); filter: brightness(1); }
.quincho-foto-main { flex: 2; background: #1a1410; }
.quincho-foto-main img { object-fit: contain; object-position: center center; }
.quincho-fotos-duo { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.quincho-foto-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(33,26,18,0.9), transparent);
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-stone);
  transform: translateY(100%); transition: transform 0.3s;
}
.quincho-foto-item:hover .quincho-foto-label { transform: translateY(0); }
/* ══════════════════════════════════════
   EVENTOS
══════════════════════════════════════ */
#eventos {
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

#eventos::after {
  content: 'EVENTOS';
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  font-family: var(--serif);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  letter-spacing: -0.05em;
}

.eventos-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* GALERÍA DE EVENTOS */
.eventos-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 5px;
  margin: 2.5rem 0 3rem;
}

.evento-foto-hero {
  grid-column: 1;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
}

.evento-foto-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.evento-foto-hero img,
.evento-foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.evento-foto-hero:hover img,
.evento-foto-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.evento-foto-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(
    to top,
    rgba(100, 30, 15, 0.9),
    transparent
  );
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.evento-foto-item:hover .evento-foto-label,
.evento-foto-hero:hover .evento-foto-label {
  transform: translateY(0);
}

/* TARJETAS DE EVENTOS */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.evento-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-top: 2px solid rgba(253, 251, 247, 0.3);
  transition: all 0.3s;
}

.evento-card:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.evento-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.evento-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.evento-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(253, 251, 247, 0.75);
}

.eventos-review {
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.15);
  border-left: 3px solid rgba(253, 251, 247, 0.4);
  max-width: 700px;
}

.review-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.6);
}

/* TABLET */
@media (max-width: 1024px) {
  .eventos-galeria {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 230px;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .eventos-galeria {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .evento-foto-hero {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 250px;
  }

  .eventos-grid {
    grid-template-columns: 1fr;
  }
}

/* CELULARES PEQUEÑOS */
@media (max-width: 500px) {
  .eventos-galeria {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 6px;
  }

  .evento-foto-hero,
  .evento-foto-item {
    grid-column: 1;
    height: 230px;
  }

  .evento-foto-hero {
    height: 260px;
  }

  .evento-foto-label {
    transform: translateY(0);
    font-size: 0.58rem;
    padding: 0.7rem;
  }

  #eventos::after {
    display: none;
  }
}

/* ══════════════════════════════════════
   RESEÑAS
══════════════════════════════════════ */
#resenas { background: #1a1a14; overflow: hidden; }
.resenas-inner { max-width: 1200px; margin: 0 auto; }
.rating-hero { text-align: center; margin-bottom: 4rem; }
.rating-big { font-family: var(--script); font-size: 6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rating-stars { font-size: 1.5rem; letter-spacing: 0.2em; margin: 0.5rem 0; color: var(--gold); }
.rating-count { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--stone); text-transform: uppercase; }
.resenas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.resena-card { background: #22201a; padding: 2rem; border-bottom: 2px solid rgba(201,168,76,0.2); transition: border-color 0.3s; }
.resena-card:hover { border-color: var(--gold); }
.resena-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }
.resena-text { font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.65; color: rgba(245,240,232,0.85); margin-bottom: 1.2rem; }
.resena-author { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }

/* ══════════════════════════════════════
   UBICACIÓN
══════════════════════════════════════ */
#ubicacion { background: var(--dark); }
.ubicacion-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.map-container { position: relative; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); }
.map-container iframe { width: 100%; height: 400px; border: none; filter: grayscale(30%) contrast(1.1); }
.map-overlay { position: absolute; top: 1rem; left: 1rem; background: rgba(26,20,16,0.9); padding: 0.8rem 1.2rem; border-left: 2px solid var(--gold); }
.map-overlay p { font-size: 0.72rem; letter-spacing: 0.15em; color: var(--gold); }
.contact-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.2rem; width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-value { font-size: 0.95rem; color: var(--white); line-height: 1.5; }
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
#cta { background: var(--green); text-align: center; padding: 8rem 4rem; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.15) 0%, transparent 70%); }
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; color: var(--white); margin-bottom: 1.5rem; line-height: 1.15; }
.cta-title em { font-family: var(--script); font-style: normal; color: var(--gold); font-size: 1.5em; line-height: 0.75; display: inline-block; vertical-align: -0.15em; font-weight: 700; font-feature-settings: "liga" 1, "calt" 1; letter-spacing: -0.02em; text-rendering: optimizeLegibility; }
.cta-sub { font-size: 0.9rem; color: rgba(245,240,232,0.65); line-height: 1.8; margin-bottom: 3rem; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.8rem; background: #25D366; color: white; padding: 1.2rem 3rem; font-family: var(--body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; border-radius: 2px; }
.whatsapp-btn:hover { background: #20c45a; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--dark); padding: 3rem 4rem; border-top: 1px solid rgba(201,168,76,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--script); font-size: 2rem; color: var(--gold); line-height: 1; font-weight: 700; font-feature-settings: "liga" 1, "calt" 1; letter-spacing: -0.02em; text-rendering: optimizeLegibility; }
.footer-copy { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--stone); text-align: center; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   WA FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulseOnce 2s 2s ease-out forwards;
}
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes heroReveal {
  from { transform: scale(1.05); opacity: 0.6; }
  to   { transform: scale(1);    opacity: 1;   }
}
@keyframes brandReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes waPulseOnce {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  40%  { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2,1fr); }
  .eventos-galeria { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-logo-script { font-size: 1.5rem; }
  section { padding: 5rem 1.5rem; }
  .stats-bar { padding: 1.5rem 2rem; gap: 2rem; }
  .cabanas-header { flex-direction: column; }
  .cabanas-fotos-grid { grid-template-columns: 1fr; }
  .cabana-foto-tall { grid-row: span 1; }
  .cabana-foto-tall img { min-height: 220px; height: 220px; }
  .cabana-foto-item img { height: 220px; }
  .cabanas-desc-grid { grid-template-columns: 1fr; }
  .cabana-desc-card { flex-direction: column; gap: 0.5rem; padding: 2rem; }
  .cabana-desc-numero { font-size: 3rem; }
  .cabana-specs { grid-template-columns: 1fr; }
  .galeria-section { padding: 5rem 1.5rem; }
  .galeria-row-3 { grid-template-columns: 1fr 1fr; }
  .galeria-row-3 .galeria-item:last-child { grid-column: span 2; }
  .galeria-item img { height: 180px; }
  .servicios-section { padding: 5rem 1.5rem; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .piscinas-inner { grid-template-columns: 1fr; gap: 3rem; }
 .piscinas-fotos-col { height: 400px; }
  .quincho-inner { grid-template-columns: 1fr; gap: 3rem; }
  .quincho-fotos-3 { height: 360px; }
  .eventos-galeria { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .evento-foto-hero { grid-column: 1 / 3; grid-row: 1; }
  .eventos-grid { grid-template-columns: 1fr; }
  #eventos::after { display: none; }
  .resenas-grid { grid-template-columns: 1fr; }
  .ubicacion-inner { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .galeria-row-3 { grid-template-columns: 1fr; }
  .galeria-row-3 .galeria-item:last-child { grid-column: span 1; }
  .eventos-galeria { grid-template-columns: 1fr; grid-template-rows: auto; }
  .evento-foto-hero { grid-column: 1; grid-row: auto; height: 250px; }
}

/* Reducir movimiento para accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-img, .hero-brand-name, .hero-brand-sub, .hero-bottom, .hero-divider, .hero-scroll {
    animation: none;
    opacity: 1;
  }
}
/* ══════════════════════════════════════
   FIX DEFINITIVO HERO MÓVIL — pegar al final de todo
   (sobrescribe los bloques anteriores automáticamente)
══════════════════════════════════════ */
@media (max-width:768px){
.hero{
    position:relative;
    width:100%;
    height:100svh;
    min-height:600px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    background-image:url("img/movil2026.png");
    background-size:cover;
    background-position:center 62%;
    background-repeat:no-repeat;
}
.hero-img{
    content:none;
    display:none;
}
.hero-overlay{
    display:block;
}
.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding:0 1.5rem;
    padding-top:0;
}
.hero-bottom{
    width:100%;
    padding-bottom:clamp(6rem, 30vh, 10rem);
}
    
.hero-btns{
    margin-top:0;
    gap:14px;
    width:100%;
}
.hero-scroll{
    bottom:14px;
}
.btn-primary,
.btn-secondary{
    width:90%;
    max-width:330px;
    justify-content:center;
    padding:16px 30px;
    min-height:56px;
    font-size:0.78rem;
    border-radius:10px;
}
}
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500&display=swap');

:root {
  --cream: #f5f0e8;
  --dark: #1a1410;
  --terracotta: #8b3a2a;
  --gold: #c9a84c;
  --green: #1a3a2a;
  --stone: #7a6a55;
  --light-stone: #d4c5a9;
  --white: #fdfbf7;
  --script: 'Dancing Script', cursive;
  --serif: 'Playfair Display', serif;
  --body: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: rgba(26,20,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--light-stone); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 0.5rem 1.4rem; border-radius: 2px; font-weight: 500 !important;
}

/* ══════════════════════════════════════
   HERO — imagen full-bleed, único portador
   del logo/nombre (ya viene en la foto)
══════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Foto de fondo: ocupa todo el hero, sin bordes ni espacios.
   object-position más alta (35% en vez de center/50%) deja más
   "aire" arriba del nombre incrustado y evita que la imagen se
   sienta apretada contra el texto — sin recortar ni escalar. */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center 67%;
  display: block;
  margin: 0;
  border: none;
}
/* Overlay oscuro muy suave, solo para legibilidad del texto inferior */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.1) 45%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Contenedor del contenido — centrado horizontal,
   NO centrado vertical: se empuja hacia abajo con
   padding-top proporcional para no tapar el nombre
   "La Noria Eventos" incrustado en la foto. */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 2rem;
  padding-top: clamp(38vh, 48vh, 54vh);
  }

/* ───── DESCRIPCIÓN Y BOTONES ───── */
.hero-bottom{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;

    max-width:900px;

    gap:2.8rem;
}

.hero-desc{
    font-family: var(--serif);
    font-size: clamp(1.25rem,1.8vw,1.6rem);
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: .01em;
    max-width: 900px;

    color: #fbf8f2;

    /* Borde fino */
    -webkit-text-stroke: .35px rgba(0,0,0,.9);

    /* Sombra elegante */
    text-shadow:
        0 2px 6px rgba(0,0,0,.75),
        0 0 12px rgba(0,0,0,.35);

    opacity: 1;
}
.hero-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

    margin-top:155px;   /* ← aumenta este valor */
}

/* ───── SCROLL INDICATOR ───── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1.2s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.scroll-dot {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ───── ANIMACIÓN ÚNICA: fade + translateY ───── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   HERO RESPONSIVE — MÓVIL
   Fix: en pantallas angostas y altas, object-fit:cover
   con min-height:100vh recortaba el título y la descripción
   incrustados en la imagen. Se cambia a un esquema donde
   la imagen se ve COMPLETA (sin recorte de texto) y el
   hero deja de forzar 100vh, adaptándose a la proporción
   real de la imagen. No se toca nada del desktop (>768px).
══════════════════════════════════════ */
@media (max-width:768px){
.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:100vh;
    overflow:hidden;
}
.hero-img{
 content:url("img/movil2026.png");
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 12%;
    transform:translateY(-4%);
}
.hero-overlay{
    display:block;
}
.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:62vh;
}
.hero-btns{
    margin-top:0;
    gap:14px;
}
.hero-scroll{
    bottom:18px;
}
.btn-primary,
.btn-secondary{
    width:90%;
    max-width:330px;
    justify-content:center;
}
}
/* ══════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-brand-name { font-size: clamp(5rem, 22vw, 9rem); }
  .hero-brand-sub { letter-spacing: 0.35em; font-size: 0.65rem; }
  .hero-desc { font-size: 0.84rem; }
  .hero-content { margin-top: 0; }
}

@media (max-width: 480px) {
  .hero-brand-name { font-size: clamp(3.8rem, 25vw, 6rem); }
  .hero-brand-sub { letter-spacing: 0.25em; font-size: 0.6rem; }
  .hero-bottom { gap: 1.2rem; }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary{

    background:#F4D06F;

    color:#2b2115;

    padding:18px 42px;

    border-radius:12px;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    text-decoration:none;

    box-shadow:0 10px 28px rgba(0,0,0,.25);

    transition:.35s;
}

.btn-primary:hover{

    background:#FFE08A;

    transform:translateY(-4px);

}
.btn-secondary{

    background:#DDB44A;

    color:#2b2115;

    padding:18px 42px;

    border-radius:12px;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    text-decoration:none;

    box-shadow:0 10px 28px rgba(0,0,0,.25);

    transition:.35s;
}

.btn-secondary:hover{

    background:#F4D06F;

    transform:translateY(-4px);

}
/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--terracotta); padding: 1.5rem 4rem;
  display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,251,247,0.7); margin-top: 0.3rem; }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section { padding: 7rem 4rem; }
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem;
}
.section-title em {
  font-family: var(--script); font-style: normal; color: var(--gold);
  font-size: 1.5em; line-height: 0.75; display: inline-block; vertical-align: -0.15em;
  font-weight: 700; font-feature-settings: "liga" 1, "calt" 1;
  letter-spacing: -0.02em; text-rendering: optimizeLegibility;
}
.divider { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ══════════════════════════════════════
   CABAÑAS
══════════════════════════════════════ */
#cabanas { background: var(--dark); }
.cabanas-header {
  max-width: 1200px; margin: 0 auto 3rem;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem;
}
.cabanas-intro { font-size: 0.9rem; color: rgba(245,240,232,0.6); max-width: 440px; line-height: 1.8; }
.cabanas-fotos-grid {
  max-width: 1200px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 4px;
}
.cabana-foto-item { position: relative; overflow: hidden; cursor: pointer; }
.cabana-foto-item img {
  width: 100%; height: 280px; object-fit: cover; display: block;
  filter: brightness(0.88); transition: transform 0.5s ease, filter 0.4s ease;
}
.cabana-foto-item:hover img { transform: scale(1.05); filter: brightness(1); }
.cabana-foto-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(26,20,16,0.9), transparent);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-stone); transform: translateY(100%); transition: transform 0.3s ease;
}
.cabana-foto-item:hover .cabana-foto-label { transform: translateY(0); }
.cabana-foto-tall { grid-row: span 2; }
.cabana-foto-tall img { height: 100%; min-height: 564px; }
.cabanas-desc-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.cabana-desc-card {
  background: #211a12; border: 1px solid rgba(201,168,76,0.1);
  padding: 3rem; display: flex; gap: 2rem;
  position: relative; overflow: hidden; transition: border-color 0.3s;
}
.cabana-desc-card:hover { border-color: rgba(201,168,76,0.3); }
.cabana-desc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.cabana-desc-numero { font-family: var(--serif); font-size: 5rem; font-weight: 300; color: rgba(201,168,76,0.07); line-height: 1; flex-shrink: 0; margin-top: -0.5rem; }
.cabana-desc-content { flex: 1; }
.cabana-tag { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.cabana-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.cabana-divider { width: 40px; height: 1px; background: var(--gold); margin: 1rem 0 1.2rem; opacity: 0.5; }
.cabana-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(245,240,232,0.6); margin-bottom: 1.2rem; }
.cabana-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 1.2rem 0 1.5rem; }
.spec-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(245,240,232,0.55); }
.spec-icon { font-size: 0.9rem; }
.btn-cabana {
  display: inline-block; margin-top: 1.2rem; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px; transition: all 0.3s;
}
.btn-cabana:hover { color: var(--white); border-color: var(--white); }
.cabanas-nota {
  max-width: 1200px; margin: 3px auto 0; background: #1a1410;
  border: 1px solid rgba(201,168,76,0.15); border-left: 3px solid var(--gold);
  padding: 1.2rem 2rem; display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.84rem; color: rgba(245,240,232,0.55); line-height: 1.7;
}
.nota-icono { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.cabanas-nota strong { color: var(--light-stone); }

/* ══════════════════════════════════════
   GALERÍA
══════════════════════════════════════ */
.galeria-section { background: #111009; padding: 5rem 4rem; }
.galeria-inner { max-width: 1200px; margin: 0 auto; }
.galeria-sub { font-size: 0.88rem; color: rgba(245,240,232,0.45); margin-top: 0.5rem; }
.galeria-bloque-titulo { margin: 3.5rem 0 1.2rem; display: flex; align-items: center; gap: 1rem; }
.galeria-bloque-titulo::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.15); }
.galeria-bloque-label { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.galeria-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.galeria-item { position: relative; overflow: hidden; cursor: pointer; }
.galeria-item img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  filter: brightness(0.85); transition: transform 0.5s ease, filter 0.4s ease;
}
.galeria-item:hover img { transform: scale(1.06); filter: brightness(1); }
.galeria-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(26,20,16,0.88), transparent);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-stone); transform: translateY(100%); transition: transform 0.3s ease;
}
.galeria-item:hover .galeria-label { transform: translateY(0); }

/* ══════════════════════════════════════
   SERVICIOS
══════════════════════════════════════ */
.servicios-section { background: #1a1a14; padding: 7rem 4rem; }
.servicios-inner { max-width: 1200px; margin: 0 auto; }
.servicios-sub { font-size: 0.9rem; color: rgba(245,240,232,0.5); max-width: 500px; line-height: 1.8; margin-bottom: 3.5rem; }
.servicios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.servicio-card {
  background: #211a12; border: 1px solid rgba(248,246,242,0.05);
  padding: 2.2rem 1.8rem; position: relative; overflow: hidden; transition: all 0.3s;
}
.servicio-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(201,168,76,0.06), transparent); transition: height 0.4s;
}
.servicio-card:hover { border-color: rgba(201,168,76,0.2); }
.servicio-card:hover::after { height: 100%; }
.servicio-icono { font-size: 2rem; display: block; margin-bottom: 1rem; }
.servicio-titulo { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; line-height: 1.2; }
.servicio-desc { font-size: 0.8rem; color: rgba(245,240,232,0.45); line-height: 1.75; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   PISCINAS
══════════════════════════════════════ */
#piscinas { background: var(--green); position: relative; overflow: hidden; }
#piscinas::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.piscinas-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; position: relative; }
.piscinas-desc { font-size: 0.9rem; color: rgba(245,240,232,0.65); line-height: 1.8; margin-bottom: 2.5rem; }
.pool-cards { display: flex; flex-direction: column; gap: 1rem; }
.pool-card {
  background: rgba(253,251,247,0.05); border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem; display: flex; align-items: flex-start; gap: 1.2rem; transition: all 0.3s;
}
.pool-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.5); }
.pool-icon { font-size: 1.8rem; flex-shrink: 0; }
.pool-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.pool-dims { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.pool-desc { font-size: 0.82rem; color: rgba(245,240,232,0.6); line-height: 1.6; }
.piscinas-fotos-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 560px;
}
.piscina-foto-item { position: relative; overflow: hidden; }
.piscina-foto-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9); transition: transform 0.5s ease, filter 0.4s ease; }
.piscina-foto-item:hover img { transform: scale(1.04); filter: brightness(1); }
.piscina-foto-badge {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  background: rgba(26,20,16,0.85); border-left: 2px solid var(--gold);
  padding: 0.4rem 0.9rem; font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--light-stone);
}

/* ══════════════════════════════════════
   QUINCHO
══════════════════════════════════════ */
#quincho { background: #211a12; position: relative; }
.quincho-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.features-list li { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; color: rgba(245,240,232,0.75); padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.features-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.quincho-fotos-3 { display: flex; flex-direction: column; gap: 4px; height: 560px; }
.quincho-foto-item { position: relative; overflow: hidden; }
.quincho-foto-item img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; filter: brightness(0.88); transition: transform 0.5s ease, filter 0.4s ease; }
.quincho-foto-item:hover img { transform: scale(1.04); filter: brightness(1); }
.quincho-foto-main { flex: 2; background: #1a1410; }
.quincho-foto-main img { object-fit: contain; object-position: center center; }
.quincho-fotos-duo { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.quincho-foto-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(33,26,18,0.9), transparent);
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-stone);
  transform: translateY(100%); transition: transform 0.3s;
}
.quincho-foto-item:hover .quincho-foto-label { transform: translateY(0); }

/* ══════════════════════════════════════
   EVENTOS
══════════════════════════════════════ */

#eventos{
    background:var(--terracotta);
    position:relative;
    overflow:hidden;
}

#eventos::after{
    content:'EVENTOS';
    position:absolute;
    bottom:-2rem;
    right:-2rem;
    font-family:var(--serif);
    font-size:10rem;
    font-weight:700;
    color:rgba(0,0,0,.1);
    pointer-events:none;
    letter-spacing:-.05em;
}

.eventos-inner{
    max-width:1200px;
    margin:0 auto;
    position:relative;
}

.eventos-galeria{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-template-rows:repeat(5,260px);

    gap:6px;

    margin:2.5rem 0 3rem;

}

.evento-foto-hero{

    grid-column:1;

    grid-row:1 / span 2;

    position:relative;

    overflow:hidden;

}

.evento-foto-item{

    position:relative;

    overflow:hidden;

}

.evento-foto-hero img,
.evento-foto-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.45s;

    filter:brightness(.86);

}

.evento-foto-hero:hover img,
.evento-foto-item:hover img{

    transform:scale(1.05);

    filter:brightness(1);

}

.evento-foto-label{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:.7rem .9rem;

    background:linear-gradient(to top,rgba(0,0,0,.75),transparent);

    color:#fff;

    font-size:.65rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    transform:translateY(100%);

    transition:.35s;

}

.evento-foto-item:hover .evento-foto-label,
.evento-foto-hero:hover .evento-foto-label{

    transform:translateY(0);

}

/* CELULAR */

@media (max-width:768px){

.eventos-galeria{

    grid-template-columns:1fr;

    grid-template-rows:none;

    gap:12px;

}

.evento-foto-hero{

    grid-column:auto;

    grid-row:auto;

    height:260px;

}

.evento-foto-item{

    height:220px;

}

}

.eventos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
    margin-top:3.5rem;
}

.evento-card{
    background:rgba(0,0,0,.2);
    padding:2rem;
    border-top:2px solid rgba(253,251,247,.3);
    transition:.3s;
}

.evento-card:hover{
    background:rgba(0,0,0,.3);
    transform:translateY(-4px);
}

.evento-icon{
    font-size:2rem;
    margin-bottom:1rem;
}

.evento-title{
    font-family:var(--serif);
    font-size:1.4rem;
    font-weight:600;
    color:var(--white);
    margin-bottom:.7rem;
}

.evento-desc{
    font-size:.85rem;
    line-height:1.7;
    color:rgba(253,251,247,.75);
}

.eventos-review{
    margin-top:4rem;
    padding:3rem;
    background:rgba(0,0,0,.15);
    border-left:3px solid rgba(253,251,247,.4);
    max-width:700px;
}

.review-text{
    font-family:var(--serif);
    font-size:1.3rem;
    font-style:italic;
    color:var(--white);
    line-height:1.6;
    margin-bottom:1rem;
}

.review-author{
    font-size:.72rem;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:rgba(253,251,247,.6);
}
/* ══════════════════════════════════════
   RESEÑAS
══════════════════════════════════════ */
#resenas { background: #1a1a14; overflow: hidden; }
.resenas-inner { max-width: 1200px; margin: 0 auto; }
.rating-hero { text-align: center; margin-bottom: 4rem; }
.rating-big { font-family: var(--script); font-size: 6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rating-stars { font-size: 1.5rem; letter-spacing: 0.2em; margin: 0.5rem 0; color: var(--gold); }
.rating-count { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--stone); text-transform: uppercase; }
.resenas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.resena-card { background: #22201a; padding: 2rem; border-bottom: 2px solid rgba(201,168,76,0.2); transition: border-color 0.3s; }
.resena-card:hover { border-color: var(--gold); }
.resena-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }
.resena-text { font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.65; color: rgba(245,240,232,0.85); margin-bottom: 1.2rem; }
.resena-author { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }

/* ══════════════════════════════════════
   UBICACIÓN
══════════════════════════════════════ */
#ubicacion { background: var(--dark); }
.ubicacion-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.map-container { position: relative; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); }
.map-container iframe { width: 100%; height: 400px; border: none; filter: grayscale(30%) contrast(1.1); }
.map-overlay { position: absolute; top: 1rem; left: 1rem; background: rgba(26,20,16,0.9); padding: 0.8rem 1.2rem; border-left: 2px solid var(--gold); }
.map-overlay p { font-size: 0.72rem; letter-spacing: 0.15em; color: var(--gold); }
.contact-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.2rem; width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-value { font-size: 0.95rem; color: var(--white); line-height: 1.5; }
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
#cta { background: var(--green); text-align: center; padding: 8rem 4rem; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.15) 0%, transparent 70%); }
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; color: var(--white); margin-bottom: 1.5rem; line-height: 1.15; }
.cta-title em { font-family: var(--script); font-style: normal; color: var(--gold); font-size: 1.5em; line-height: 0.75; display: inline-block; vertical-align: -0.15em; font-weight: 700; font-feature-settings: "liga" 1, "calt" 1; letter-spacing: -0.02em; text-rendering: optimizeLegibility; }
.cta-sub { font-size: 0.9rem; color: rgba(245,240,232,0.65); line-height: 1.8; margin-bottom: 3rem; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.8rem; background: #25D366; color: white; padding: 1.2rem 3rem; font-family: var(--body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; border-radius: 2px; }
.whatsapp-btn:hover { background: #20c45a; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--dark); padding: 3rem 4rem; border-top: 1px solid rgba(201,168,76,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--script); font-size: 2rem; color: var(--gold); line-height: 1; font-weight: 700; font-feature-settings: "liga" 1, "calt" 1; letter-spacing: -0.02em; text-rendering: optimizeLegibility; }
.footer-copy { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--stone); text-align: center; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   WA FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulseOnce 2s 2s ease-out forwards;
}
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes heroReveal {
  from { transform: scale(1.05); opacity: 0.6; }
  to   { transform: scale(1);    opacity: 1;   }
}
@keyframes brandReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes waPulseOnce {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  40%  { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2,1fr); }
  .eventos-galeria { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-logo-script { font-size: 1.5rem; }
  section { padding: 5rem 1.5rem; }
  .stats-bar { padding: 1.5rem 2rem; gap: 2rem; }
  .cabanas-header { flex-direction: column; }
  .cabanas-fotos-grid { grid-template-columns: 1fr; }
  .cabana-foto-tall { grid-row: span 1; }
  .cabana-foto-tall img { min-height: 220px; height: 220px; }
  .cabana-foto-item img { height: 220px; }
  .cabanas-desc-grid { grid-template-columns: 1fr; }
  .cabana-desc-card { flex-direction: column; gap: 0.5rem; padding: 2rem; }
  .cabana-desc-numero { font-size: 3rem; }
  .cabana-specs { grid-template-columns: 1fr; }
  .galeria-section { padding: 5rem 1.5rem; }
  .galeria-row-3 { grid-template-columns: 1fr 1fr; }
  .galeria-row-3 .galeria-item:last-child { grid-column: span 2; }
  .galeria-item img { height: 180px; }
  .servicios-section { padding: 5rem 1.5rem; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .piscinas-inner { grid-template-columns: 1fr; gap: 3rem; }
 .piscinas-fotos-col { height: 400px; }
  .quincho-inner { grid-template-columns: 1fr; gap: 3rem; }
  .quincho-fotos-3 { height: 360px; }
  .eventos-galeria { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .evento-foto-hero { grid-column: 1 / 3; grid-row: 1; }
  .eventos-grid { grid-template-columns: 1fr; }
  #eventos::after { display: none; }
  .resenas-grid { grid-template-columns: 1fr; }
  .ubicacion-inner { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .galeria-row-3 { grid-template-columns: 1fr; }
  .galeria-row-3 .galeria-item:last-child { grid-column: span 1; }
  .eventos-galeria { grid-template-columns: 1fr; grid-template-rows: auto; }
  .evento-foto-hero { grid-column: 1; grid-row: auto; height: 250px; }
}

/* Reducir movimiento para accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-img, .hero-brand-name, .hero-brand-sub, .hero-bottom, .hero-divider, .hero-scroll {
    animation: none;
    opacity: 1;
  }
}
/* ══════════════════════════════════════
   FIX DEFINITIVO HERO MÓVIL — pegar al final de todo
   (sobrescribe los bloques anteriores automáticamente)
══════════════════════════════════════ */
@media (max-width:768px){
.hero{
    position:relative;
    width:100%;
    height:100svh;
    min-height:600px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    background-image:url("img/movil2026.png");
    background-size:cover;
    background-position:center 62%;
    background-repeat:no-repeat;
}
.hero-img{
    content:none;
    display:none;
}
.hero-overlay{
    display:block;
}
.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding:0 1.5rem;
    padding-top:0;
}
.hero-bottom{
    width:100%;
    padding-bottom:clamp(6rem, 30vh, 10rem);
}
    
.hero-btns{
    margin-top:0;
    gap:14px;
    width:100%;

    transform: translateY(-80px);
}
.hero-scroll{
    bottom:14px;
}
.btn-primary,
.btn-secondary{
    width:90%;
    max-width:330px;
    justify-content:center;
    padding:16px 30px;
    min-height:56px;
    font-size:0.78rem;
    border-radius:10px;
}
}
/* ══════════════════════════════════════
   FIX FINAL HERO DESKTOP
══════════════════════════════════════ */
@media (min-width: 769px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
  }
  .hero-img {
    transform: none;
    object-position: center 50%;
  }
  .hero-content {
    height: 100%;
    min-height: 0;
    padding-top: clamp(34vh, 42vh, 48vh);
  }
  .hero-btns {
    margin-top: 70px;
  }
}
@media (min-width: 769px) {
  .hero-btns {
    margin-top: 130px;   /* ← subí este número para bajar más los botones */
  }
}
/* =========================================================
   AJUSTE FINAL DE LEGIBILIDAD — LA NORIA
   Pensado para mejorar la lectura en personas mayores
   ========================================================= */


/* =========================================================
   MINI TÍTULOS DE SECCIONES
   Todos quedan más grandes y visibles,
   pero siguen siendo menores que los títulos principales.
   ========================================================= */


/* 1. NUESTRAS CABAÑAS — ALOJAMIENTO */
#cabanas .section-eyebrow {
    font-size: 1rem !important;
    color: #D6B85A !important;
    letter-spacing: 0.18em !important;
}


/* 2. GALERÍA — FOTOS DEL COMPLEJO */
#galeria .section-eyebrow {
    font-size: 1rem !important;
    color: #D6B85A !important;
    letter-spacing: 0.18em !important;
}


/* 3. PISCINAS — ESPACIOS COMUNES */
#piscinas .section-eyebrow {
    font-size: 1rem !important;
    color: #D6B85A !important;
    letter-spacing: 0.18em !important;
}


/* 4. QUINCHO — ESPACIOS COMPARTIDOS */
#quincho .section-eyebrow {
    font-size: 1rem !important;
    color: #D6B85A !important;
    letter-spacing: 0.18em !important;
}


/* 5. EVENTOS — SALÓN MULTIPROPÓSITO */
#eventos .section-eyebrow {
    font-size: 1rem !important;
    color: #D6B85A !important;
    letter-spacing: 0.18em !important;
}


/* 6. RESEÑAS — LO QUE DICEN NUESTROS HUÉSPEDES */
#resenas .section-eyebrow {
    font-size: 1rem !important;
    color: #D6B85A !important;
    letter-spacing: 0.12em !important;
}


/* 7. UBICACIÓN — ENCONTRANOS */
#ubicacion .section-eyebrow {
    font-size: 1rem !important;
    color: #D6B85A !important;
    letter-spacing: 0.18em !important;
}


/* 8. CTA — ¿LISTO PARA RESERVAR? */
#cta .section-eyebrow {
    font-size: 1rem !important;
    color: #D6B85A !important;
    letter-spacing: 0.15em !important;
}


/* =========================================================
   CABAÑAS
   Agrandamos un poco los nombres:
   Cabaña Familiar
   Cabaña Grande
   ========================================================= */

#cabanas .cabana-name {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
}


/* =========================================================
   DATOS DE CABAÑA FAMILIAR
   ========================================================= */

#cabanas .cabanas-desc-grid .cabana-desc-card:first-child .cabana-tag {
    font-size: 0 !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
}

#cabanas .cabanas-desc-grid .cabana-desc-card:first-child .cabana-tag::after {
    content: "2 habitaciones · Capacidad de 4 a 8 personas";
    display: inline;
    font-size: 0.95rem !important;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: #D6B85A !important;
}


/* =========================================================
   DATOS DE CABAÑA GRANDE
   ========================================================= */

#cabanas .cabanas-desc-grid .cabana-desc-card:nth-child(2) .cabana-tag {
    font-size: 0 !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
}

#cabanas .cabanas-desc-grid .cabana-desc-card:nth-child(2) .cabana-tag::after {
    content: "3 habitaciones · Capacidad de hasta 14 personas";
    display: inline;
    font-size: 0.95rem !important;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: #D6B85A !important;
}


/* =========================================================
   UBICACIÓN
   ========================================================= */

#ubicacion .contact-item:first-child .contact-value {
    font-size: 0 !important;
    line-height: 1.65 !important;
}

#ubicacion .contact-item:first-child .contact-value::after {
    content: "Calle 7 entre Ruta Nacional 40 y calle General Acha, frente al Velódromo Vicente Chancay. Pocito, San Juan, Argentina.";
    display: block;
    font-size: 1.20rem !important;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #F5F0E8 !important;
}


/* =========================================================
   FIN DEL AJUSTE
   ========================================================= */
/* Override final: AMBIENTE con el mismo contenedor y tamaño que la galería superior */
#galeria > .galeria-row-3 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

#galeria > .galeria-row-3 .galeria-item img {
  width: 100%;
  height: 220px !important;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  #galeria > .galeria-row-3 .galeria-item img {
    height: 180px !important;
  }
}


/* Alineación final: título AMBIENTE sobre su galería */
#galeria > .galeria-bloque-titulo {
  max-width: 1200px;
  margin: 3.5rem auto 1.2rem;
}

@media (max-width: 768px) {
  #galeria > .galeria-bloque-titulo {
    margin: 3.5rem auto 1.2rem;
  }
}

/* Bajar botones únicamente en computadoras */
@media (min-width: 769px) {
  .hero-btns {
    margin-top: 170px;
  }
}


/* AMBIENTE en celular: una foto debajo de la otra */
@media (max-width: 768px) {
  #galeria > .galeria-row-3 {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  #galeria > .galeria-row-3 .galeria-item:last-child {
    grid-column: auto;
  }
}


/* CORRECCIÓN FINAL HERO MÓVIL
   La imagen móvil se selecciona desde <picture> en el HTML.
   Este bloque anula únicamente los overrides antiguos que ocultaban .hero-img. */
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-picture .hero-img {
  position: absolute;
  inset: 0;
  display: block !important;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 62%;
  content: normal !important;
  transform: none;
}

@media (max-width: 768px) {
  .hero-picture {
    display: block !important;
  }

  .hero-picture .hero-img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (min-width: 769px) {
  .hero-picture .hero-img {
    object-position: center 50%;
  }
}
