/* ============================================================
   IMPERDIBLES — Estilos específicos de index.html
   ============================================================ */

/* ─── HERO PARTICLES (decorativas) ─── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  animation: float-particle linear infinite;
}

/* ─── ZONA CARD HOVER ESPECIAL ─── */
.zona-card.zona-activa {
  box-shadow: 0 0 0 0 rgba(82,183,136,0);
  transition: box-shadow var(--dur-slow);
}

.zona-card.zona-activa:hover {
  box-shadow: 0 0 0 3px rgba(82,183,136,0.4), var(--shadow-xl);
}

/* ─── CATEGORÍAS HOVER COLOR ─── */
.categoria-card[data-cat="naturaleza"]:hover { border-color: rgba(82,183,136,0.5); }
.categoria-card[data-cat="gastronomia"]:hover { border-color: rgba(180,50,50,0.4); }
.categoria-card[data-cat="cultura"]:hover { border-color: rgba(139,69,19,0.5); }
.categoria-card[data-cat="alojamiento"]:hover { border-color: rgba(212,168,67,0.5); }
.categoria-card[data-cat="cafe"]:hover { border-color: rgba(139,90,43,0.5); }
.categoria-card[data-cat="senderismo"]:hover { border-color: rgba(45,106,79,0.5); }
.categoria-card[data-cat="bienestar"]:hover { border-color: rgba(100,150,200,0.5); }

/* ─── MAPA PLACEHOLDER ─── */
.mapa-antioquia {
  background: var(--crema-oscura);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ─── TESTIMONIAL / QUOTE SECTION ─── */
.section-quote {
  padding: var(--space-3xl) 0;
  background: var(--crema);
  text-align: center;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--verde-oscuro);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  line-height: 1.4;
  position: relative;
}

.quote-text::before {
  content: '\201C';
  font-size: 6rem;
  color: rgba(45,106,79,0.12);
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-source {
  font-size: 0.875rem;
  color: var(--verde);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Animación particles */
@keyframes float-particle {
  from { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.3; }
  to   { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
