/* ═══════════════════════════════════════════════════════════════════════════════
   LANDING PAGE — Kcafé Ancestral  (v1.1 mejorado)
   Cambios:
   - Hero: slider con imágenes propias, overlay cálido con gradiente naranja/tierra
   - Hero: badge flotante, título con acento de color, stats con divisores
   - Hero: dots de navegación del slider, botones más llamativos
   - Secciones: más contraste, paleta más cálida y vibrante
   - Cabañas: cards con sombra fuego en hover
   - Experiencia: fondo oscuro tipo "noche en la selva" más llamativo
   - Paquetes: featured card más destacado visualmente
   - CTA final: gradiente más rico
═══════════════════════════════════════════════════════════════════════════════ */

/* ── CONTENEDOR ─────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 2px 16px rgba(46, 26, 14, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bark);
  text-decoration: none;
  transition: color 0.2s;
}
.brand:hover { color: var(--fire); }
.brand-icon  { font-size: 1.8rem; }

.nav-menu {
  display: flex;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bark);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--fire);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--fire); }
.nav-link:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--bark);
  border-radius: 1px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0; padding: 1rem 0;
    background: var(--bone);
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 8px 24px rgba(46,26,14,0.12);
  }
  .nav-menu.active     { display: flex; }
  .nav-link            { padding: 0.75rem 1.5rem; }
  .menu-toggle         { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px,8px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(8px,-8px); }
}

/* ══════════════════════════════════════════════════════════════════
   HERO — Imagen estática de la Región Cafetera
══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bark);
}

/* Imagen de fondo estática con efecto Ken Burns sutil */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* Overlay cálido con gradiente naranja-tierra */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      160deg,
      rgba(46, 26, 14, 0.55) 0%,
      rgba(140, 50, 5, 0.4)  40%,
      rgba(46, 26, 14, 0.72) 100%
    );
}
/* Viñeta lateral izquierda para más dramatismo */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(20,10,4,0.5) 100%);
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

/* Badge flotante */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 93, 4, 0.25);
  border: 1px solid rgba(232, 93, 4, 0.5);
  color: #FFB47A;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.7s var(--ease-spring) 0.1s both;
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.2rem;
  line-height: 1.08;
  animation: fadeInUp 0.8s var(--ease-spring) 0.25s both;
}
.hero-title-accent {
  color: var(--amber);
  display: inline-block;
  position: relative;
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--amber));
  border-radius: 2px;
  opacity: 0.7;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  animation: fadeInUp 0.8s var(--ease-spring) 0.4s both;
}

/* Botones hero */
.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s var(--ease-spring) 0.55s both;
}

.hero-cta-primary {
  background: linear-gradient(135deg, var(--fire), var(--amber)) !important;
  border: none !important;
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.55), 0 0 0 0 rgba(232,93,4,0.4);
  animation: pulse-fire 3s infinite 1.5s;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0.95rem 2.2rem !important;
}
.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,93,4,0.65) !important;
}

.btn-hero-outline {
  background: rgba(255,255,255,0.1) !important;
  border: 2px solid rgba(255,255,255,0.65) !important;
  color: white !important;
  backdrop-filter: blur(8px);
  font-size: 1rem;
  padding: 0.92rem 2rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.22) !important;
  border-color: white !important;
  transform: translateY(-2px);
}

@keyframes pulse-fire {
  0%, 100% { box-shadow: 0 8px 28px rgba(232,93,4,0.55), 0 0 0 0 rgba(232,93,4,0.4); }
  50%       { box-shadow: 0 8px 28px rgba(232,93,4,0.55), 0 0 0 12px rgba(232,93,4,0); }
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  animation: fadeInUp 0.8s var(--ease-spring) 0.7s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.35rem;
  text-align: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s, color 0.2s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-scroll:hover { color: rgba(255,255,255,0.9); }
.hero-scroll svg   { animation: bounceY 2.2s ease-in-out infinite; }

@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-stats  { gap: 0; }
  .stat-item   { padding: 0 1.25rem; }
  .stat-number { font-size: 1.5rem; }
  .hero-cta    { gap: 0.85rem; }
}
@media (max-width: 480px) {
  .stat-divider { display: none; }
  .hero-stats   { gap: 1.5rem; flex-wrap: wrap; }
  .stat-item    { padding: 0; }
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.image-responsive { width: 100%; height: auto; display: block; }
.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--fire);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(232,93,4,0.45);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fire);
  margin-bottom: 0.9rem;
  background: var(--fire-soft);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-pill);
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--bark);
  margin-bottom: 1.25rem;
}
.about-description {
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.value-card {
  padding: 1.5rem;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-bottom-color: var(--fire);
}
.value-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.value-card h4 { margin-bottom: 0.4rem; color: var(--bark); font-size: 0.92rem; }
.value-card p  { font-size: 0.83rem; color: var(--mist); line-height: 1.5; }

.about-cta { margin-top: 2rem; }

@media (max-width: 768px) {
  .about       { padding: 4rem 0; }
  .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   CABAÑAS
══════════════════════════════════════════════════════════════════ */
.cabanas {
  padding: 7rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin: 0.75rem 0; }
.section-header p  { color: var(--mist); font-size: 1.05rem; }

.cabanas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.cabaña-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(46,26,14,0.06);
}
.cabaña-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232,93,4,0.18), 0 4px 20px rgba(46,26,14,0.1);
}
.cabaña-featured {
  border: 2px solid var(--fire);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(232,93,4,0.2);
}
.cabaña-featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.cabaña-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--sand);
}
.cabaña-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.cabaña-card:hover .cabaña-image img { transform: scale(1.07); }

.cabaña-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.92);
  color: var(--bark);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-md);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.cabaña-badge.premium {
  background: linear-gradient(135deg, var(--fire), var(--amber));
  color: white;
  box-shadow: 0 3px 12px rgba(232,93,4,0.4);
}

.cabaña-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cabaña-content h3 { margin-bottom: 0.7rem; color: var(--bark); }
.cabaña-description {
  color: var(--mist);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.cabaña-features {
  list-style: none;
  padding: 0; margin: 0 0 1rem;
  flex: 1;
}
.cabaña-features li {
  font-size: 0.83rem;
  color: var(--mist);
  padding: 0.38rem 0;
  border-bottom: 1px dashed rgba(46,26,14,0.07);
}
.cabaña-features li:last-child { border-bottom: none; }

.cabaña-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--sand);
  margin-top: auto;
}
.price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fire);
  line-height: 1;
}
.price small {
  font-size: 0.58em;
  color: var(--mist);
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 0.15rem;
}

.cabanas-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--fire-soft), var(--amber-soft));
  border-radius: var(--r-xl);
  border: 1px solid var(--fire-border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.cabanas-cta p {
  font-size: 1.1rem;
  color: var(--bark);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cabanas-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
  .cabaña-featured { transform: scale(1); }
}

/* ══════════════════════════════════════════════════════════════════
   EXPERIENCIA — Fondo oscuro "noche en la selva"
══════════════════════════════════════════════════════════════════ */
.experiencia {
  padding: 7rem 0;
  background:
    linear-gradient(160deg, #0E0A06 0%, #1A0C05 50%, #0E0A06 100%);
  position: relative;
  overflow: hidden;
}
.experiencia::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,93,4,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.experiencia .section-header h2 { color: white; }
.experiencia .section-header p  { color: rgba(255,255,255,0.55); }
.experiencia .section-tag {
  background: rgba(232,93,4,0.15);
  color: var(--amber);
  border: 1px solid rgba(232,93,4,0.3);
}

.experiencia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.experiencia-card {
  padding: 2.25rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,93,4,0.15);
  border-radius: var(--r-xl);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
  backdrop-filter: blur(8px);
}
.experiencia-card:hover {
  transform: translateY(-6px);
  background: rgba(232,93,4,0.09);
  border-color: rgba(232,93,4,0.4);
  box-shadow: 0 8px 32px rgba(232,93,4,0.15);
}
.experiencia-icon {
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.15);
  color: var(--fire);
  filter: drop-shadow(0 4px 16px rgba(232,93,4,0.35));
  margin-left: auto;
  margin-right: auto;
}
.experiencia-icon svg {
  width: 36px !important;
  height: 36px !important;
  stroke: var(--fire) !important;
}
.experiencia-card h3 {
  margin-bottom: 0.85rem;
  color: white;
  font-size: 1rem;
}
.experiencia-card p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 0.88rem;
}

/* ══════════════════════════════════════════════════════════════════
   GALERÍA
══════════════════════════════════════════════════════════════════ */
.gallery {
  padding: 7rem 0;
  background: var(--bone);
}
.section-title { text-align: center; margin-bottom: 1rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--sh-sm);
}
.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(46,26,14,0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid        { grid-template-columns: 1fr 1fr; }
  .gallery-item.large  { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .gallery-grid        { grid-template-columns: 1fr; }
  .gallery-item.large  { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ══════════════════════════════════════════════════════════════════
   PAQUETES
══════════════════════════════════════════════════════════════════ */
.paquetes {
  padding: 7rem 0;
  background: white;
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.paquete-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(46,26,14,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.paquete-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.paquete-card.featured {
  border: 2px solid var(--fire);
  background: linear-gradient(160deg, #fff 0%, var(--fire-soft) 100%);
  box-shadow: 0 12px 40px rgba(232,93,4,0.2);
}
.paquete-card.featured:hover {
  box-shadow: 0 20px 60px rgba(232,93,4,0.3);
}

.paquete-featured-badge {
  position: absolute;
  top: -14px; right: 1.5rem;
  background: linear-gradient(135deg, var(--fire), var(--amber));
  color: white;
  padding: 0.45rem 1.2rem;
  border-radius: var(--r-md);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(232,93,4,0.45);
}

.paquete-header h3 { margin-bottom: 0.25rem; color: var(--bark); }
.paquete-subtitle  { color: var(--mist); font-size: 0.88rem; margin-bottom: 1.5rem; }

.paquete-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--fire-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--fire-border);
}
.currency { font-size: 1.1rem; color: var(--fire); font-weight: 700; }
.amount   { font-size: 2.2rem; font-weight: 800; color: var(--fire); font-family: var(--font-display); }
.period   { font-size: 0.82rem; color: var(--mist); margin-left: 0.4rem; }

.paquete-description { color: var(--mist); margin-bottom: 1.5rem; text-align: center; font-size: 0.9rem; }

.paquete-includes { list-style: none; padding: 0; margin: 1.25rem 0; flex: 1; }
.paquete-includes li {
  padding: 0.55rem 0;
  color: var(--bark);
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(46,26,14,0.08);
}
.paquete-includes li:last-child { border-bottom: none; }

.paquetes-note {
  text-align: center;
  padding: 1.75rem 2rem;
  background: rgba(232,93,4,0.06);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--fire);
  color: var(--bark);
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .paquetes-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════════════════════════════ */
.testimonios {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonio-card {
  background: white;
  padding: 2.25rem;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  border-left: 4px solid var(--fire);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonio-card::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--fire-soft);
  line-height: 1;
  pointer-events: none;
}
.testimonio-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testimonio-stars  { font-size: 1rem; margin-bottom: 1rem; }
.testimonio-text   { color: var(--bark); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; font-size: 0.95rem; position: relative; z-index: 1; }
.testimonio-author { display: flex; flex-direction: column; }
.testimonio-author strong { color: var(--bark); margin-bottom: 0.2rem; }
.testimonio-author span   { font-size: 0.82rem; color: var(--mist); }

/* ══════════════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 7rem 0;
  background: linear-gradient(135deg, #C94D00 0%, var(--fire) 40%, var(--amber) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.12), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.07), transparent 45%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.final-cta h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.cta-content > p {
  font-size: 1.08rem;
  margin-bottom: 2.25rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}
.final-cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.final-cta .btn-fire {
  background: white !important;
  color: var(--fire) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  font-weight: 700;
}
.final-cta .btn-fire:hover {
  background: var(--bone) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  transform: translateY(-2px);
}
.final-cta .btn-outline {
  background: rgba(255,255,255,0.12) !important;
  color: white !important;
  border-color: rgba(255,255,255,0.7) !important;
}
.final-cta .btn-outline:hover {
  background: rgba(255,255,255,0.22) !important;
  border-color: white !important;
}

.cta-support {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin-top: 2rem;
}

.cta-info-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.info-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.22);
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.info-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.info-icon  { font-size: 2.2rem; margin-bottom: 0.9rem; display: flex; align-items: center; justify-content: center; color: #fff; }
.info-card h4 { color: white; margin-bottom: 0.5rem; font-family: var(--font-display); }
.info-card p  { color: rgba(255,255,255,0.82); font-size: 0.9rem; }

@media (max-width: 480px) {
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta .btn    { width: 100%; max-width: 300px; }
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.landing-footer {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: 4.5rem 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-section h4 { color: white; margin-bottom: 1.2rem; font-family: var(--font-display); }
.footer-section p  { color: var(--dark-muted); line-height: 1.7; margin-bottom: 1rem; font-size: 0.88rem; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section a { color: var(--dark-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-section a:hover { color: var(--fire); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  font-size: 1.1rem;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--fire); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 2rem;
  text-align: center;
  color: var(--dark-muted);
  font-size: 0.82rem;
}
.footer-bottom p { margin: 0.4rem 0; }

/* ══════════════════════════════════════════════════════════════════
   UTILIDADES GLOBALES
══════════════════════════════════════════════════════════════════ */
.btn-block  { width: 100%; justify-content: center; }
html        { scroll-behavior: smooth; }

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .cabanas, .experiencia, .about, .paquetes, .testimonios, .gallery, .final-cta { padding: 3.5rem 0; }
}

/* ── FIX: imágenes siempre visibles, sin lazy opacity trick ── */
img {
  opacity: 1 !important;
}
.hero-slide img,
.cabaña-image img,
.gallery-item img,
.about-image img {
  opacity: 1 !important;
  transition: transform 0.5s !important;
}

/* SERVICIOS EXTRA HORIZONTAL SCROLL */
.servicios {
  padding: 5rem 0;
}
.servicios-horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--fire) var(--cream);
}
.servicios-horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}
.servicios-horizontal-scroll::-webkit-scrollbar-track {
  background: var(--cream);
  border-radius: 4px;
}
.servicios-horizontal-scroll::-webkit-scrollbar-thumb {
  background-color: var(--fire);
  border-radius: 4px;
}
.servicio-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(46,26,14,0.05);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.servicio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.servicio-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.servicio-card h3 {
  font-family: var(--font-display);
  color: var(--bark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.servicio-card .precio {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fire);
  margin-bottom: 1rem;
}
.servicio-card p {
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

