/* ===== DEPORTES DE AVENTURA — sección inline ===== */
#aventura {
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Separador superior teal-gold */
#aventura::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,191,174,0.20), rgba(208,93,62,0.40), rgba(143,191,174,0.20), transparent);
  z-index: 1;
}

/* Motivo ∞ — firma visual de la sección */
#aventura::after {
  content: '∞';
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(22rem, 38vw, 50rem);
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Orbes ambientales — costera/gold ── */
.av-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.av-bg-particles span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}
.av-bg-particles span:nth-child(1) { width: 500px; height: 500px; background: rgba(61,133,119,0.14);  top: -80px;  left: -100px; }
.av-bg-particles span:nth-child(2) { width: 380px; height: 380px; background: rgba(208,93,62,0.08);  top: 35%;    right: -80px; }
.av-bg-particles span:nth-child(3) { width: 300px; height: 300px; background: rgba(143,191,174,0.07); bottom: 10%; left: 25%;   }
.av-bg-particles span:nth-child(4),
.av-bg-particles span:nth-child(5) { display: none; }

/* ── Header ── */
.av-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

#aventura h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1rem;
  line-height: 1.05;
}

.av-title-line1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* Gradiente dorado editorial */
.av-title-accent {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg,
    var(--gold-light) 0%,
    var(--gold)       40%,
    var(--coastal)    70%,
    var(--gold-dark)  100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}

.av-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

/* Badges de actividades — glass verde */
.av-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.av-badge {
  background: rgba(44,104,93,0.06);
  border: 1px solid rgba(44,104,93,0.22);
  color: var(--deep-mid);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.av-badge:hover {
  background: rgba(208,93,62,0.12);
  border-color: rgba(208,93,62,0.35);
  color: var(--gold);
}

/* ── Grid de cards ── */
.av-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Card de aventura ── */
.av-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  height: 520px;
  border: 1px solid rgba(143,191,174,0.10);
  transition:
    transform    var(--duration-hover) var(--ease-out),
    box-shadow   var(--duration-hover) var(--ease-out),
    border-color var(--duration-hover) var(--ease-out);
  background: var(--deep);
}
@media (hover: hover) and (pointer: fine) {
  .av-card:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: var(--glow-gold), 0 28px 70px rgba(27,55,41,0.60);
    border-color: rgba(208,93,62,0.35);
  }
  .av-card:hover .av-card-img { transform: scale(1.06); }
}
.av-card:active { transform: scale(0.98); }

/* Foto de fondo */
.av-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease-out);
}

/* Gradiente teal sobre la foto */
.av-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27,55,41,0.10) 0%,
    rgba(27,55,41,0.20) 35%,
    rgba(9,32,45,0.78)  60%,
    rgba(9,32,45,0.97)  100%
  );
}

/* Contenido del card */
.av-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.6rem;
}

/* Nivel adrenalina — coastal glass */
.av-adrenaline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(143,191,174,0.10);
  border: 1px solid rgba(143,191,174,0.30);
  border-radius: 50px;
  padding: 0.28rem 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--coastal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.av-adrenaline-dots { display: flex; gap: 3px; }
.av-adrenaline-dot       { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.av-adrenaline-dot.empty { background: rgba(208,93,62,0.22); }

/* Nombre */
.av-card-flag { font-size: 1.6rem; display: block; margin-bottom: 0.3rem; }
.av-card-flag .flag-icon { width: 26px; }
.av-card-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.1;
}
.av-card-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Actividades */
.av-card-activities { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.av-card-act {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(143,191,174,0.14);
  border-radius: 50px;
  padding: 0.22rem 0.65rem;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.av-card:hover .av-card-act {
  background: rgba(208,93,62,0.10);
  border-color: rgba(208,93,62,0.28);
}

/* Botón — gold shimmer */
.av-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% auto;
  color: var(--deep);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  animation: shimmer 3.2s linear infinite;
  transition:
    box-shadow  var(--duration-fast) var(--ease-out),
    transform   var(--duration-fast) var(--ease-out);
}
.av-card-btn:hover {
  animation-play-state: paused;
  box-shadow: 0 8px 28px rgba(208,93,62,0.45);
  transform: translateY(-2px);
}

/* Badge "NUEVO" — gold */
.av-card-new-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(208,93,62,0.35);
  z-index: 2;
}

/* ── CTA inferior ── */
.av-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.av-cta-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  font-size: 1.05rem;
}
.av-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2.2rem;
  background: transparent;
  border: 1px solid rgba(27,55,41,0.22);
  color: var(--deep-mid);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background    var(--duration-hover) var(--ease-out),
    border-color  var(--duration-hover) var(--ease-out),
    color         var(--duration-hover) var(--ease-out),
    box-shadow    var(--duration-hover) var(--ease-out);
}
.av-cta-btn:hover {
  background: rgba(208,93,62,0.10);
  border-color: rgba(208,93,62,0.45);
  color: var(--gold);
  box-shadow: var(--glow-gold);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .av-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .av-grid        { grid-template-columns: 1fr; }
  .av-card        { height: 420px; }
  .av-cta-row     { flex-direction: column; gap: 1rem; text-align: center; }
  #aventura::after { font-size: 85vw; right: -10%; }
}
@media (max-width: 480px) {
  .av-card { min-height: 380px; height: auto; }
}
