/* ═══════════════════════════════════════════
   ETNIKA ECO & AVENTURA — styles.css
   Paleta natural / montaña / aventura
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --verde:       #2d6a4f;
  --verde-claro: #52b788;
  --verde-oscuro:#1b4332;
  --tierra:      #bc6c25;
  --crema:       #f0ebe3;
  --blanco:      #faf9f6;
  --negro:       #0e0e0c;
  --gris-dark:   #1c1c1a;
  --gris-mid:    #3a3a38;
  --gris-light:  #7a7a78;
  --text-dark:   #1a1a18;
  --text-mid:    #4a4a48;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,.18);
  --trans: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--negro);
  color: var(--crema);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Utilidades ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 1.2rem;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--negro);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: clamp(132px, 22vw, 190px);
}
.loader-logo-video {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: transparent;
  clip-path: circle(49% at 50% 50%);
  -webkit-clip-path: circle(49% at 50% 50%);
  contain: layout paint;
  filter: drop-shadow(0 0 24px rgba(82,183,136,.42));
}
.loader-logo-video video,
.loader-logo-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loader-logo-video video {
  z-index: 2;
  transform: scale(1.03);
}
.loader-logo-video img {
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .loader-logo-video video {
    display: none;
  }
}
#loader-bar {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 1px;
  overflow: hidden;
}
#loader-fill {
  height: 100%;
  background: var(--verde-claro);
  width: 0;
  transition: width .3s ease;
}
#loader-pct {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--verde-claro);
  letter-spacing: .15em;
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}
#header.scrolled {
  background: rgba(14,14,12,.88);
  backdrop-filter: blur(12px);
  padding: .8rem 3rem;
  border-bottom: 1px solid rgba(82,183,136,.12);
}
.header-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: height var(--trans);
}
#header.scrolled .header-logo img { height: 36px; }
#main-nav { display: flex; align-items: center; gap: 2rem; }
#main-nav a {
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(240,235,227,.8);
  transition: color var(--trans);
}
#main-nav a:hover { color: var(--verde-claro); }
#main-nav .nav-cta {
  background: var(--verde);
  color: #fff;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background var(--trans), transform var(--trans);
}
#main-nav .nav-cta:hover { background: var(--verde-claro); transform: translateY(-1px); color: #fff; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--crema);
  transition: all var(--trans);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(14,14,12,.97);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--crema);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--verde-claro); }

/* ═══════════════════════════════════════════
   HERO — SCROLL FRAMES
═══════════════════════════════════════════ */
.hero-frame-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  background: var(--negro);
}
#sticky-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#frame-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,12,.35) 0%,
    rgba(14,14,12,.1) 40%,
    rgba(14,14,12,.55) 85%,
    rgba(14,14,12,.85) 100%
  );
  z-index: 2;
}

/* Captions del hero */
.hero-captions {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  padding: 0 4vw 8vh;
}
.hcap {
  position: absolute;
  bottom: 8vh;
  left: 4vw;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
  max-width: 700px;
}
.hcap.active {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.hcap-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: .8rem;
}
.hcap h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,.7);
}
.hcap h1 em {
  font-style: italic;
  color: var(--verde-claro);
}
.hero-cta-btn {
  display: inline-block;
  margin-top: 1.8rem;
  padding: .85rem 2.2rem;
  background: var(--verde);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--trans), transform var(--trans);
  pointer-events: all;
}
.hero-cta-btn:hover { background: var(--verde-claro); transform: translateY(-2px); }

/* Scroll hint — oculto en modo automático */
.hero-scroll-hint { display: none; }

/* ═══════════════════════════════════════════
   NOSOTROS
═══════════════════════════════════════════ */
.section-nosotros {
  background: var(--blanco);
  padding: 8rem 0;
}
.nosotros-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.nosotros-text .section-tag { color: var(--verde); }
.nosotros-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.nosotros-text h2 em { font-style: italic; color: var(--verde); }
.nosotros-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.nosotros-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--verde);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: var(--gris-light);
  letter-spacing: .05em;
  margin-top: .3rem;
}
.nosotros-imgs { position: relative; height: 520px; }
.nos-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 85%;
  height: 90%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.nos-img-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 4px solid var(--blanco);
}

/* ═══════════════════════════════════════════
   ACTIVIDADES
═══════════════════════════════════════════ */
.section-actividades {
  background: var(--gris-dark);
  padding: 7rem 0 8rem;
}
.act-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 3rem;
}
.act-header .section-tag { color: var(--verde-claro); }
.act-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--crema);
  line-height: 1.1;
  margin-bottom: .8rem;
}
.act-header h2 em { font-style: italic; color: var(--verde-claro); }
.act-header p { color: rgba(240,235,227,.6); font-size: 1rem; }

/* Filtros */
.act-filters {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.filter-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(240,235,227,.65);
  padding: .5rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  font-size: .82rem;
  font-family: var(--font-body);
  letter-spacing: .04em;
  transition: all var(--trans);
}
.filter-btn:hover {
  background: rgba(82,183,136,.15);
  border-color: var(--verde-claro);
  color: var(--verde-claro);
}
.filter-btn.active {
  background: var(--verde);
  border-color: var(--verde);
  color: #fff;
}

/* Grid cards */
.act-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.act-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.act-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82,183,136,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.act-card.hidden { display: none; }
.act-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.act-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.act-card:hover .act-img-wrap img { transform: scale(1.06); }
.act-badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--verde);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 2px;
}
.act-badge.vol  { background: #8b1a1a; }
.act-badge.tour { background: #6b4a1a; }
.act-badge.rio  { background: #1a4a6b; }
.act-badge.ciclo{ background: #3a1a6b; }
.act-badge.inv  { background: #1a4a6b; }
.act-badge.pack { background: var(--tierra); }
.act-badge.otro { background: #2d4a2d; }
.act-diff {
  position: absolute;
  top: .8rem;
  right: .8rem;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .6rem;
  border-radius: 2px;
}
.act-diff.baja  { background: rgba(82,183,136,.85); color: #fff; }
.act-diff.media { background: rgba(255,160,0,.85); color: #fff; }
.act-diff.alta  { background: rgba(200,50,50,.85); color: #fff; }
.act-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .7rem;
}
.act-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--crema);
  line-height: 1.25;
}
.act-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.act-meta span {
  font-size: .72rem;
  color: rgba(240,235,227,.55);
  background: rgba(255,255,255,.05);
  padding: .22rem .6rem;
  border-radius: 2px;
}
.act-body p {
  font-size: .88rem;
  color: rgba(240,235,227,.65);
  line-height: 1.6;
  flex: 1;
}
.act-includes {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.act-includes span {
  font-size: .7rem;
  color: var(--verde-claro);
  background: rgba(82,183,136,.1);
  border: 1px solid rgba(82,183,136,.2);
  padding: .2rem .55rem;
  border-radius: 2px;
}
.act-price {
  font-size: .88rem;
  color: rgba(240,235,227,.7);
}
.act-price strong {
  font-size: 1.1rem;
  color: var(--verde-claro);
  font-weight: 700;
}
.act-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--verde);
  color: var(--verde-claro);
  padding: .65rem;
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all var(--trans);
  margin-top: auto;
}
.act-btn:hover {
  background: var(--verde);
  color: #fff;
  border-color: var(--verde);
}

/* ═══════════════════════════════════════════
   GALERÍA
═══════════════════════════════════════════ */
.section-galeria {
  background: var(--negro);
  padding: 7rem 0;
}
.galeria-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 3rem;
}
.galeria-header .section-tag { color: var(--verde-claro); }
.galeria-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--crema);
  line-height: 1.1;
}
.galeria-header h2 em { font-style: italic; color: var(--verde-claro); }
.galeria-mosaic {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: .6rem;
}
.galeria-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform .6s ease, filter .4s ease;
}
.galeria-mosaic img:hover { transform: scale(1.03); filter: brightness(1.1); }
.galeria-mosaic .g-big {
  grid-column: span 2;
  grid-row: span 2;
}
.galeria-mosaic .g-wide { grid-column: span 2; }

/* ═══════════════════════════════════════════
   ALOJAMIENTO
═══════════════════════════════════════════ */
.section-alojamiento {
  background: var(--crema);
  padding: 7rem 0;
}
.aloj-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  padding: 0 3rem;
}
.aloj-header .section-tag { color: var(--verde); }
.aloj-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: .8rem;
}
.aloj-header h2 em { font-style: italic; color: var(--verde); }
.aloj-header p { color: var(--text-mid); }
.aloj-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.aloj-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: transform var(--trans), box-shadow var(--trans);
}
.aloj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.aloj-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.aloj-info {
  padding: 1rem 1.2rem 1.2rem;
}
.aloj-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .25rem;
}
.aloj-info span {
  font-size: .75rem;
  color: var(--gris-light);
  display: block;
  margin-bottom: .5rem;
}
.aloj-info a {
  font-size: .82rem;
  color: var(--verde);
  font-weight: 500;
  transition: color var(--trans);
}
.aloj-info a:hover { color: var(--verde-claro); }

/* ═══════════════════════════════════════════
   CLIMA
═══════════════════════════════════════════ */
.section-clima {
  background: var(--verde-oscuro);
  padding: 7rem 0;
}
.clima-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.clima-text .section-tag { color: var(--verde-claro); }
.clima-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.clima-text h2 em { font-style: italic; color: var(--verde-claro); }
.clima-text p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.7; }
/* ── Weather card (Open-Meteo) ── */
.clima-widget { /* contenedor externo heredado */ }
#weather-card {
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(82,183,136,.2);
  border-radius: 8px;
  overflow: hidden;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Versión compacta del clima dentro de Nosotros */
.nosotros-weather-card {
  background: linear-gradient(135deg, rgba(27,67,50,.95), rgba(45,106,79,.85));
  border: 1px solid rgba(82,183,136,.3);
  border-radius: 8px;
  overflow: hidden;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
  /* reset del border-top anterior — lo hacemos con un wrapper */
}
/* Wrapper para no perder el border-top de .nosotros-stats */
.nosotros-clima-wrap {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.nosotros-clima-card {
  background: linear-gradient(135deg, rgba(27,67,50,.92), rgba(45,106,79,.78));
  border: 1px solid rgba(82,183,136,.3);
  border-radius: 6px;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.nos-wc-main {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}
.nos-wc-icon { font-size: 2.2rem; line-height: 1; }
.nos-wc-temp {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.nos-wc-desc {
  font-size: .72rem;
  color: var(--verde-claro);
  letter-spacing: .04em;
  margin-top: .15rem;
}
.nos-wc-details {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .9rem;
  flex: 1;
  min-width: 140px;
}
.nos-wc-row {
  display: flex;
  gap: .35rem;
  font-size: .75rem;
  align-items: center;
}
.nos-wc-lbl { color: rgba(255,255,255,.5); }
.nos-wc-val { color: #fff; font-weight: 500; }
.nos-wc-forecast {
  display: flex;
  gap: .4rem;
  width: 100%;
  overflow-x: auto;
  padding-bottom: .1rem;
}
.nos-wc-day {
  background: rgba(0,0,0,.18);
  border-radius: 4px;
  padding: .4rem .5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  align-items: center;
  min-width: 44px;
  flex-shrink: 0;
}
.nos-wc-day-name { font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.nos-wc-day-icon { font-size: 1.1rem; line-height: 1; }
.nos-wc-day-max { font-size: .78rem; font-weight: 700; color: #fff; }
.nos-wc-day-min { font-size: .65rem; color: var(--verde-claro); }
.nos-wc-footer {
  font-size: .62rem;
  color: rgba(255,255,255,.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .3rem;
}
.nos-wc-footer a { color: rgba(82,183,136,.6); }
.nos-wc-footer a:hover { color: var(--verde-claro); }

/* Estadísticas dentro de la sección Clima */
.clima-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
.clima-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.clima-stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(82,183,136,.18);
  border-radius: 6px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color var(--trans), background var(--trans);
}
.clima-stat-card:hover {
  border-color: rgba(82,183,136,.45);
  background: rgba(255,255,255,.1);
}
.clima-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--verde-claro);
  line-height: 1;
  display: block;
}
.clima-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  margin-top: .4rem;
  display: block;
}
.wc-current {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.wc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  min-width: 110px;
}
.wc-icon { font-size: 3.2rem; line-height: 1; }
.wc-temp {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.wc-desc {
  font-size: .78rem;
  color: var(--verde-claro);
  text-align: center;
  letter-spacing: .04em;
}
.wc-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.wc-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: .35rem;
}
.wc-lbl { color: rgba(255,255,255,.5); }
.wc-row span:last-child { color: #fff; font-weight: 500; }
.wc-forecast {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
}
.wc-day {
  background: rgba(255,255,255,.05);
  border-radius: 4px;
  padding: .7rem .4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  align-items: center;
}
.wc-day-name {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.wc-day-icon { font-size: 1.4rem; line-height: 1; }
.wc-day-max { font-size: .88rem; font-weight: 700; color: #fff; }
.wc-day-min { font-size: .75rem; color: var(--verde-claro); }
.wc-day-extra {
  font-size: .62rem;
  color: rgba(255,255,255,.55);
  line-height: 1.25;
}
.wc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  padding-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.wc-footer a { color: rgba(82,183,136,.6); transition: color var(--trans); }
.wc-footer a:hover { color: var(--verde-claro); }
.wc-error {
  text-align: center;
  padding: 2rem;
  color: rgba(255,255,255,.45);
  font-size: .88rem;
}

/* ═══════════════════════════════════════════
   RECOMENDACIONES
═══════════════════════════════════════════ */
.section-recos {
  background: var(--negro);
  padding: 7rem 0;
}
.recos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.recos-inner .section-tag { color: var(--verde-claro); }
.recos-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--crema);
  line-height: 1.1;
  margin-bottom: 3rem;
}
.recos-inner h2 em { font-style: italic; color: var(--verde-claro); }
.recos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.reco-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color var(--trans);
}
.reco-item:hover { border-color: rgba(82,183,136,.3); }
.reco-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.reco-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--crema);
  margin-bottom: .6rem;
}
.reco-item p { font-size: .88rem; color: rgba(240,235,227,.6); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════ */
.section-contacto {
  background: var(--gris-dark);
  padding: 7rem 0;
}
.contacto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contacto-text .section-tag { color: var(--verde-claro); }
.contacto-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--crema);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contacto-text h2 em { font-style: italic; color: var(--verde-claro); }
.contacto-text > p { color: rgba(240,235,227,.65); margin-bottom: 2rem; }
.contacto-datos { display: flex; flex-direction: column; gap: 1.2rem; }
.dato {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.dato > span { font-size: 1.2rem; margin-top: .1rem; }
.dato strong { display: block; font-size: .82rem; font-weight: 600; color: var(--verde-claro); margin-bottom: .2rem; }
.dato p, .dato a { font-size: .88rem; color: rgba(240,235,227,.65); line-height: 1.5; }
.dato a:hover { color: var(--verde-claro); }
.direccion-foto {
  width: min(220px, 100%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  margin-top: .75rem;
  border-radius: 4px;
  border: 1px solid rgba(82,183,136,.22);
}
.mapa-wrapper {
  position: relative;
  padding-bottom: 55%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.mapa-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.contacto-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25d366;
  color: #fff;
  padding: .85rem 1.6rem;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 600;
  transition: background var(--trans), transform var(--trans);
}
.btn-wa:hover { background: #20ba5a; transform: translateY(-2px); }
.btn-email {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--crema);
  padding: .85rem 1.6rem;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--trans);
}
.btn-email:hover { border-color: var(--verde-claro); color: var(--verde-claro); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer {
  background: var(--negro);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 3.5rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img { height: 40px; width: auto; }
.footer-brand strong {
  display: block;
  font-size: .9rem;
  color: var(--crema);
}
.footer-brand p { font-size: .75rem; color: var(--gris-light); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .8rem;
  color: rgba(240,235,227,.5);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--verde-claro); }
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.footer-social a {
  color: rgba(240,235,227,.5);
  transition: color var(--trans);
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--verde-claro); }
.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .75rem;
  color: rgba(240,235,227,.3);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-copy em { font-style: italic; color: rgba(240,235,227,.45); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform var(--trans), box-shadow var(--trans);
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  animation: none;
}
@keyframes waFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .act-grid { grid-template-columns: repeat(2, 1fr); }
  .aloj-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-mosaic { grid-template-columns: repeat(3, 1fr); }
  .recos-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-inner { gap: 3rem; }
  .clima-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  #main-nav { display: none; }
  .burger { display: flex; }
  #header { padding: 1rem 1.5rem; }
  #header.scrolled { padding: .7rem 1.5rem; }

  .nosotros-inner { grid-template-columns: 1fr; }
  .nosotros-imgs { height: 320px; order: -1; }
  .nosotros-stats { gap: 1.5rem; }
  .clima-stats-grid { grid-template-columns: repeat(3, 1fr); }

  .act-grid { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .act-header { padding: 0 1.5rem; }
  .act-filters { padding: 0 1.5rem; }

  .galeria-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    padding: 0 1.5rem;
  }
  .galeria-header { padding: 0 1.5rem; }

  .aloj-grid { grid-template-columns: repeat(2, 1fr); padding: 0 1.5rem; }
  .aloj-header { padding: 0 1.5rem; }

  .clima-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.5rem; }
  .wc-current { align-items: flex-start; }
  .wc-forecast { grid-template-columns: repeat(5, minmax(76px, 1fr)); overflow-x: auto; padding-bottom: .2rem; }

  .recos-grid { grid-template-columns: 1fr 1fr; }
  .recos-inner { padding: 0 1.5rem; }

  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }

  .hcap { left: 1.5rem; right: 1.5rem; }
  .hcap h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
}

@media (max-width: 480px) {
  .act-grid { grid-template-columns: 1fr; }
  .aloj-grid { grid-template-columns: 1fr; }
  .galeria-mosaic { grid-template-columns: 1fr; }
  .galeria-mosaic .g-big, .galeria-mosaic .g-wide { grid-column: span 1; }
  .recos-grid { grid-template-columns: 1fr; }
  .nosotros-stats { flex-direction: column; gap: 1rem; }
  #weather-card { padding: 1.25rem; }
  .wc-current { flex-direction: column; gap: 1.2rem; }
  .wc-left { align-items: flex-start; min-width: 0; }
  .wc-right { width: 100%; }
  .clima-stats-grid { grid-template-columns: 1fr; gap: .8rem; }
  .nosotros-clima-card { flex-direction: column; align-items: flex-start; }
}
