/* =========================================
   BARBOSA - El Corazón Late Fuerte
   Design System: Tropical Noir + Oro Veleño
   ========================================= */

:root {
  --verde: #1a3d2b;
  --verde-mid: #2d6a4f;
  --verde-light: #52b788;
  --oro: #c9a84c;
  --oro-light: #f0c96e;
  --crema: #f5f0e8;
  --dark: #0e1c14;
  --text: #1a2615;
  --text-light: #5a6e55;
  --white: #ffffff;
  --card-bg: #ffffff;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
em { font-style: italic; color: var(--oro); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--oro);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--oro-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION COMMONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-header.light .section-tag { color: var(--oro-light); }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-mid);
  margin-bottom: 12px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(14,28,20,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav.scrolled {
  background: rgba(14,28,20,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-right: auto;
}
.logo-heart { color: var(--oro); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  margin-left: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--oro-light); }
.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.lang-btn.active { color: var(--oro); }
.lang-btn:hover { color: var(--white); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo { margin-right: 0; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(45,106,79,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.15) 0%, transparent 50%),
    linear-gradient(160deg, #0e1c14 0%, #1a3d2b 40%, #0a1408 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.01) 2px,
      rgba(255,255,255,0.01) 4px
    );
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--oro);
  opacity: 0;
  animation: floatParticle var(--dur) var(--delay) infinite ease-in-out;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 100px 24px 40px;
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--oro-light);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title em {
  display: block;
  color: var(--oro-light);
  font-style: italic;
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 16px 40px;
  display: inline-flex;
}
.stat { text-align: center; color: var(--white); }
.stat strong { display: block; font-size: 1.8rem; font-weight: 900; font-family: var(--font-display); color: var(--oro-light); line-height: 1; }
.stat span { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== EPICENTRO ===== */
.epicentro {
  background: var(--crema);
  position: relative;
  overflow: hidden;
}
.epicentro::before {
  content: 'HUB';
  position: absolute;
  top: -20px; right: -40px;
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 900;
  color: rgba(45,106,79,0.04);
  line-height: 1;
  pointer-events: none;
}
.epicentro-label {
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--verde-mid);
  opacity: 0.6;
}
.epicentro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.epicentro-text h2 { margin-bottom: 20px; }
.epicentro-text p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.8; }
.value-cards { display: flex; flex-direction: column; gap: 20px; }
.value-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.1);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateX(8px);
  border-color: var(--verde-light);
  box-shadow: var(--shadow);
}
.vc-icon { font-size: 2rem; flex-shrink: 0; }
.value-card strong { display: block; font-weight: 700; margin-bottom: 4px; color: var(--verde); }
.value-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ===== HUB VISUAL ===== */
.epicentro-map-wrapper { display: flex; justify-content: center; align-items: center; }
.hub-visual {
  position: relative;
  width: 300px;
  height: 300px;
}
.hub-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--verde);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 12px rgba(45,106,79,0.15), 0 0 0 24px rgba(45,106,79,0.07);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(45,106,79,0.15), 0 0 0 24px rgba(45,106,79,0.07); }
  50% { box-shadow: 0 0 0 18px rgba(45,106,79,0.2), 0 0 0 36px rgba(45,106,79,0.05); }
}
.hub-heart { font-size: 1.2rem; color: var(--oro); }
.hub-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hub-lines line {
  stroke: var(--verde-light);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  opacity: 0.5;
}
.hub-spoke {
  position: absolute;
  top: 50%; left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * var(--dist)));
}
.hub-spoke span {
  display: inline-block;
  transform: rotate(calc(-1 * var(--angle)));
  background: var(--verde);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ===== RUTAS ===== */
.rutas { background: var(--dark); }
.rutas .section-header .section-tag { color: var(--oro); }
.rutas .section-header h2 { color: var(--white); }
.rutas .section-header p { color: rgba(255,255,255,0.6); }
.rutas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ruta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.ruta-card:hover {
  transform: translateY(-8px);
  border-color: var(--oro);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.3);
}
.ruta-img {
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.ruta-img-1 { background: linear-gradient(135deg, #1a4a3a 0%, #0d6b5a 40%, #0a3320 100%); }
.ruta-img-2 { background: linear-gradient(135deg, #1a1a3a 0%, #3d2d6b 40%, #0a0a20 100%); }
.ruta-img-3 { background: linear-gradient(135deg, #0a2a1a 0%, #1a5a3a 40%, #0d3d28 100%); }
.ruta-img-4 { background: linear-gradient(135deg, #2a1a0a 0%, #6b3d1a 40%, #3a1a0a 100%); }

/* Nature scene overlays */
.ruta-img-1::before { content: '💧🌿🍃'; position: absolute; bottom: 20px; left: 20px; font-size: 2rem; opacity: 0.7; }
.ruta-img-2::before { content: '🌀⛰️🌑'; position: absolute; bottom: 20px; left: 20px; font-size: 2rem; opacity: 0.7; }
.ruta-img-3::before { content: '🏔️💧🌊'; position: absolute; bottom: 20px; left: 20px; font-size: 2rem; opacity: 0.7; }
.ruta-img-4::before { content: '🦅🌲🪨'; position: absolute; bottom: 20px; left: 20px; font-size: 2rem; opacity: 0.7; }

.ruta-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(14,28,20,0.85);
  color: var(--oro-light);
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(4px);
}
.ruta-body { padding: 24px; }
.ruta-icon { font-size: 1.5rem; margin-bottom: 8px; }
.ruta-body h3 { color: var(--white); margin-bottom: 4px; }
.ruta-lugar { color: var(--oro); font-family: var(--font-cond); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.ruta-body p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.ruta-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ruta-tags span {
  background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.25);
  color: var(--verde-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== EXPERIENCIA ===== */
.experiencia {
  position: relative;
  overflow: hidden;
  background: var(--verde);
}
.experiencia-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(82,183,136,0.1) 0%, transparent 50%);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.exp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.exp-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.exp-featured {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
}
.exp-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
}
.exp-card h3 { color: var(--white); margin-bottom: 16px; font-size: 1.6rem; }
.exp-card p { color: rgba(255,255,255,0.7); line-height: 1.75; font-size: 0.95rem; }
.exp-icon { font-size: 2.5rem; margin-bottom: 16px; }

/* ===== TOURS ===== */
.tours { background: var(--crema); }
.tours-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.tours-badge {
  font-size: 3rem;
  margin-bottom: 20px;
}
.tours-inner h2 { margin-bottom: 20px; }
.tours-inner p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: 48px; }
.tours-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.tf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tf span { font-size: 2rem; }
.tf p { font-size: 0.85rem; font-weight: 600; color: var(--verde-mid); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== MAPA ===== */
.mapa-section { background: var(--dark); }
.mapa-section .section-tag { color: var(--oro); }
.mapa-section h2 { color: var(--white); }
.leaflet-map {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIOS ===== */
.testimonios { background: var(--crema); }
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.testi-card {
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-featured {
  background: var(--verde);
  border-color: var(--verde);
  transform: translateY(-12px);
}
.testi-featured:hover { transform: translateY(-16px); }
.testi-stars { color: var(--oro); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 0.95rem; line-height: 1.75; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testi-featured p { color: rgba(255,255,255,0.85); }
.testi-author strong { font-weight: 700; color: var(--verde); }
.testi-featured .testi-author strong { color: var(--oro-light); }
.testi-author span { color: var(--text-light); font-size: 0.85rem; margin-left: 4px; }
.testi-featured .testi-author span { color: rgba(255,255,255,0.5); }

/* ===== CONTACTO ===== */
.contacto { background: var(--dark); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contacto-info .section-tag { color: var(--oro); }
.contacto-info h2 { color: var(--white); margin-bottom: 16px; }
.contacto-info > p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 36px; }
.contacto-icons { display: flex; flex-direction: column; gap: 16px; }
.contacto-icons > div { display: flex; align-items: center; gap: 12px; }
.contacto-icons span { font-size: 1.2rem; }
.contacto-icons p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; }

/* ===== FORM ===== */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.form-group input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--oro);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.interest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.itag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.itag.selected {
  background: rgba(201,168,76,0.2);
  border-color: var(--oro);
  color: var(--oro-light);
}

/* HABEAS DATA */
.habeas-data { margin: 24px 0; }
.hd-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
}
.hd-box h4 { color: var(--oro-light); font-size: 0.9rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; }
.hd-box p { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.65; }
.hd-box strong { color: rgba(255,255,255,0.8); }
.hd-box em { color: var(--oro); font-style: normal; }
.hd-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.5;
}
.hd-check input { margin-top: 2px; accent-color: var(--oro); flex-shrink: 0; width: 16px; height: 16px; }

.form-msg { margin-top: 16px; text-align: center; font-size: 0.9rem; font-weight: 600; min-height: 24px; }
.form-msg.success { color: var(--verde-light); }
.form-msg.error { color: #ff6b6b; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  text-align: center;
}
.footer-brand .logo-heart { font-size: 2rem; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--oro-light); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom a { color: var(--oro); text-decoration: none; }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: slideInRight 0.8s 1.5s cubic-bezier(0.16,1,0.3,1) both;
}
.whatsapp-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
@keyframes slideInRight {
  from { transform: translateX(120px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== CHATBOT ===== */
.chatbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 201;
  width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.35);
  animation: slideInRight 0.8s 2s cubic-bezier(0.16,1,0.3,1) both;
}
.chatbot-header {
  background: var(--verde);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.chatbot-header span:first-child { font-size: 1.2rem; }
.chat-close { margin-left: auto; font-size: 0.8rem; transition: transform 0.3s; }
.chatbot-body {
  background: #f8faf8;
  display: flex;
  flex-direction: column;
  max-height: 380px;
}
.chatbot-body.collapsed { max-height: 0; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 220px;
}
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(45,106,79,0.1);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--verde);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.chat-quick-replies button {
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.2);
  color: var(--verde-mid);
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.chat-quick-replies button:hover { background: var(--verde); color: var(--white); }
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}
.chat-input-row input {
  flex: 1;
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  color: var(--text);
}
.chat-input-row input:focus { border-color: var(--verde-mid); }
.chat-input-row button {
  background: var(--verde);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.chat-input-row button:hover { background: var(--verde-mid); }
.chat-typing { display: flex; gap: 4px; padding: 4px 0; }
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--verde-light);
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* ===== HERO BG IMAGE ===== */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.8);
  z-index: 0;
}
.hero-video-bg { position: absolute; inset: 0; }

/* ===== RUTA IMG WITH REAL PHOTOS ===== */
.ruta-img {
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--verde);
}
.ruta-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,28,20,0.7) 0%, transparent 60%);
}
.ruta-badge { z-index: 2; }

/* ===== FAUNA SECTION ===== */
.fauna-section { background: var(--crema); }
.fauna-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 16px;
  margin-bottom: 24px;
}
.fauna-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.fauna-card.fauna-lg { aspect-ratio: 3/4; }
.fauna-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.fauna-card:hover img { transform: scale(1.06); }
.fauna-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(14,28,20,0.9) 0%, transparent 100%);
  color: var(--white);
  transform: translateY(4px);
  transition: transform 0.3s;
}
.fauna-card:hover .fauna-label { transform: translateY(0); }
.fauna-label strong { display: block; font-size: 0.9rem; font-weight: 700; }
.fauna-label span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.fauna-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== EXPERIENCIA WITH PHOTOS ===== */
.exp-card.exp-featured {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  overflow: hidden;
}
.exp-photo-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(14,28,20,0.92) 0%, rgba(14,28,20,0.3) 60%, transparent 100%);
  padding: 32px;
  border-radius: inherit;
}
.exp-card.exp-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,28,20,0.85) 0%, rgba(14,28,20,0.2) 70%, transparent 100%);
  z-index: 1;
}
.exp-photo-card {
  padding: 0 !important;
  overflow: hidden;
}
.exp-photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.exp-photo-card:hover img { transform: scale(1.04); }
.exp-photo-card .exp-card-inner {
  padding: 20px;
}
.exp-card-inner { padding: 0; }

/* ===== MASONRY GALLERY ===== */
.galeria-section { background: var(--dark); }
.galeria-section .section-tag { color: var(--oro); }
.galeria-section h2 { color: var(--white); }
.galeria-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--verde);
  cursor: pointer;
}
.gal-item.gal-tall { grid-row: span 2; }
.gal-item.gal-wide { grid-column: span 2; }
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88);
}
.gal-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}
.gal-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(14,28,20,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gal-item:hover .gal-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .fauna-grid { grid-template-columns: 1fr 1fr; }
  .fauna-card.fauna-lg { aspect-ratio: 4/3; }
  .galeria-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gal-item.gal-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .fauna-grid { grid-template-columns: 1fr 1fr; }
  .galeria-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gal-item.gal-tall { grid-row: span 1; }
  .gal-caption { transform: translateY(0); background: rgba(14,28,20,0.6); }
}
@media (max-width: 1024px) {
  .epicentro-grid, .contacto-grid { grid-template-columns: 1fr; gap: 48px; }
  .epicentro-map-wrapper { display: none; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp-featured { grid-column: 1 / -1; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .testi-featured { transform: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .rutas-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; border-radius: var(--radius); padding: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .exp-grid { grid-template-columns: 1fr; }
  .chatbot-container { width: calc(100vw - 32px); right: 16px; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
}

/* =============================================
   BANNER — VelezyRicaurte.com
   Inserción contextual entre galería y mapa
   ============================================= */
.vyr-banner {
  position: relative;
  background: linear-gradient(125deg, #0e1c14 0%, #1a3d2b 45%, #2d1a06 100%);
  overflow: hidden;
  padding: 64px 0;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

/* Fondo de puntos decorativos */
.vyr-bg-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,168,76,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.vyr-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.vyr-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(82,183,136,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vyr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── LEFT ── */
.vyr-kicker {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  background: rgba(201,168,76,0.08);
}

.vyr-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.vyr-title em {
  color: var(--oro-light);
  font-style: italic;
}

.vyr-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.vyr-sub strong { color: var(--oro-light); }

.vyr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vyr-tags span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── RIGHT ── */
.vyr-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vyr-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.vyr-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.4);
}
.vyr-card-icon { font-size: 2rem; flex-shrink: 0; }
.vyr-card-text { display: flex; flex-direction: column; gap: 6px; }
.vyr-card-text strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}
.vyr-card-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ── CTA ── */
.vyr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--oro);
  color: var(--dark) !important;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vyr-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.vyr-btn:hover { background: var(--oro-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
.vyr-btn:hover::before { transform: translateX(100%); }

.vyr-disclaimer {
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  text-align: center;
  margin: 0;
}

/* ── CLOSE ── */
.vyr-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.vyr-close:hover { background: rgba(255,255,255,0.18); color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .vyr-inner { grid-template-columns: 1fr; gap: 36px; }
  .vyr-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .vyr-banner { padding: 48px 0; }
  .vyr-tags span:last-child { display: none; }
}