/* ============================================================
   HINOJOSA FESTIVAL 2026 — CSS
   Paleta: #ff6700 naranja | #17772f verde | #faa60e amarillo
   Web CLARA y VIBRANTE — estilo Instagram del festival
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --orange:       #ff6700;
  --orange-light: #ff8533;
  --orange-dark:  #cc5200;
  --green:        #17772f;
  --green-light:  #1e9e40;
  --green-mid:    #2db050;
  --green-pale:   #e8f5ec;
  --yellow:       #faa60e;
  --yellow-light: #fcc147;
  --yellow-pale:  #fff8e6;
  --orange-pale:  #fff1e8;

  --dark:   #0d2e14;      /* solo para texto sobre fondos claros */
  --body-text: #1a3d22;
  --white:  #ffffff;
  --gray:   #5a7d62;
  --light:  #f0faf2;      /* verde blanquísimo — fondo base */

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --font-accent:  'Raleway', sans-serif;

  --radius:    16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-pale); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ============================================================
   NAV
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(23,119,47,0.8);
  backdrop-filter: blur(14px);
  padding: 12px 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.20);
  border-bottom: 2px solid rgba(250,166,14,0.50);
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }

.n-logo { width: 60px; height: auto; margin-left: 40px; }
.n-logo img { width: 60px; height: auto; transform: scale(2); }

.f-logo { width: 60px; height: auto; margin-left: 40px; }
.f-logo img { width: 60px; height: auto; transform: scale(2); }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--yellow); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--orange);
}

.nav-cta:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250,166,14,0.50);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================================
   HERO — verde intenso del festival
   ============================================================ */
.hero {
  position: relative;
  height: 120vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green);
}

.hero-bg { position: absolute; inset: 0; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Fallback sin vídeo — verde vivo con manchas de color */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 15% 70%, rgba(255,103,0,0.60) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 25%, rgba(250,166,14,0.55) 0%, transparent 38%),
    radial-gradient(ellipse at 50% 100%, rgba(255,103,0,0.35) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 45%),
    linear-gradient(160deg, #0f6624 0%, #17772f 40%, #1a8a35 100%);
}

/* Overlay ligero — solo para leer el texto */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(10,50,18,0.45) 0%,
    rgba(10,50,18,0.25) 50%,
    rgba(10,50,18,0.55) 100%
  );
}

.hero-particles {
  position: absolute; inset: 0;
  z-index: 2; pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}

@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Llamas */
.hero-fire {
  position: absolute;
  bottom: 0;
  width: 120px; height: 200px;
  pointer-events: none;
  z-index: 3;
}
.hero-fire.left  { left: 5%; }
.hero-fire.right { right: 5%; }

.hero-fire::before, .hero-fire::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 60%; height: 100%;
  border-radius: 50% 50% 20% 20%;
  animation: flicker 1.5s ease-in-out infinite alternate;
}
.hero-fire::before {
  left: 20%;
  background: linear-gradient(to top, var(--orange), var(--yellow), transparent);
  animation-duration: 1.2s;
}
.hero-fire::after {
  left: 30%;
  background: linear-gradient(to top, rgba(255,103,0,0.6), rgba(250,166,14,0.4), transparent);
  animation-duration: 1.8s;
  animation-delay: 0.3s;
}

@keyframes flicker {
  0%   { transform: scaleX(1)    scaleY(1)    skewX(0deg); }
  25%  { transform: scaleX(0.95) scaleY(1.05) skewX(2deg); }
  50%  { transform: scaleX(1.05) scaleY(0.98) skewX(-1deg); }
  100% { transform: scaleX(0.98) scaleY(1.03) skewX(1deg); }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--yellow-light);
  border: 2px solid rgba(250,166,14,0.80);
  background: rgba(250,166,14,0.18);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  animation: fadeInUp 0.9s ease both 0.2s;
}

.title-line {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 13rem);
  letter-spacing: 8px;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.30);
}

.title-fest {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: 20px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--yellow-light), var(--orange), var(--yellow));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.hero-date-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 36px 0 16px;
  animation: fadeInUp 1s ease both 0.4s;
}

.hero-date { display: flex; align-items: center; gap: 12px; }

.date-num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(250,166,14,0.60);
}

.date-rest {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1.2;
}

.hero-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
}

.hero-place {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
  text-align: left;
}

.place-icon { font-size: 1.4rem; }

.hero-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 6px;
  color: var(--yellow-light);
  margin-bottom: 36px;
  animation: fadeInUp 1s ease both 0.5s;
}

.hero-btn {
  animation: fadeInUp 1s ease both 0.6s;
  font-size: 1rem !important;
  padding: 18px 48px !important;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  animation: fadeIn 1.5s ease both 1.5s;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255,103,0,0.40);
}

.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 50px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,103,0,0.55);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* Tag sobre fondo claro */
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,103,0,0.10);
  border: 2px solid rgba(255,103,0,0.35);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* Tag sobre fondo oscuro/verde */
.section-header.light .section-tag {
  color: var(--yellow);
  background: rgba(250,166,14,0.18);
  border-color: rgba(250,166,14,0.55);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 4px;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  font-family: var(--font-accent);
}

.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub   { color: rgba(255,255,255,0.75); }

/* ============================================================
   ARTISTAS — fondo blanco / muy claro
   ============================================================ */
/* ============================================================
   ARTISTAS
   ============================================================ */
.artists-section {
  background: var(--light);
  max-width: 100%;
  padding: 120px 48px 100px;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.artist-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(255,103,0,0.25);
}

/* La foto ocupa toda la tarjeta */
.artist-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-photo { transform: scale(1.07); }

/* Gradiente inferior */
.artist-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,40,18,0.90) 0%,
    rgba(10,40,18,0.55) 38%,
    rgba(0,0,0,0.08) 70%,
    transparent 100%
  );
  border-radius: var(--radius);
  transition: background 0.35s ease;
}

.artist-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(200,60,0,0.88) 0%,
    rgba(140,40,0,0.60) 38%,
    rgba(0,0,0,0.08) 70%,
    transparent 100%
  );
}

/* Borde de acento superior al hacer hover */
.artist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green));
  z-index: 3;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.artist-card:hover::before { opacity: 1; }

/* Texto sobre el gradiente */
.artist-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px 18px 22px;
}

.artist-number {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
  opacity: 0.85;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
  margin: 0 0 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: color var(--transition);
}

.artist-card:hover .artist-name { color: var(--yellow-light); }


.cartel-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 22px 28px;
  background: rgba(255,103,0,0.07);
  border: 2px dashed rgba(255,103,0,0.35);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--body-text);
  font-style: italic;
  font-family: var(--font-accent);
  text-align: center;
}

.cartel-promo p { margin: 0; }
.cartel-icon { font-size: 1.4rem; flex-shrink: 0; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .artist-name  { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ============================================================
   TICKETS — fondo verde intenso del festival
   ============================================================ */
.tickets-section {
  background: var(--green);
  max-width: 100%;
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

/* Patrón decorativo de fondo */
.tickets-section::before {
  content: 'ENTRADAS';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  letter-spacing: 12px;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
  pointer-events: none;
}

/* Manchas de luz */
.tickets-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(250,166,14,0.20) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 50%, rgba(255,103,0,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 0%,  rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.tickets-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ticket-card {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(6px);
}

.ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.20);
}

.ticket-card.featured {
  border-color: var(--yellow);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 50px rgba(250,166,14,0.25);
}

.ticket-tear {
  height: 16px;
  background: rgba(255,255,255,0.08);
  position: relative;
}

.ticket-tear::before {
  content: '';
  position: absolute;
  left: -10px; right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 8px,
    rgba(255,255,255,0.30) 8px, rgba(255,255,255,0.30) 16px
  );
}

.ticket-tear.top::before    { top: auto; bottom: 0; }
.ticket-tear.bottom::before { top: 0; }

.ticket-body { padding: 32px 28px; }
.ticket-card.featured .ticket-body { padding-top: 48px; }

.ticket-price { margin-bottom: 24px; }

.price-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 0 0 20px rgba(250,166,14,0.50);
}

.price-gratis {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
}

.ticket-perks { margin-bottom: 28px; }

.ticket-perks li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.90);
}

.ticket-perks li:last-child { border-bottom: none; }

.btn-ticket {
  display: block;
  text-align: center;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.70);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-ticket:hover,
.ticket-card.featured .btn-ticket {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,103,0,0.45);
}

.ticket-card.featured .btn-ticket:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.ticket-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ============================================================
   INFORMACIÓN — fondo blanco con acentos naranjas
   ============================================================ */
.info-section {
  background: var(--white);
  max-width: 100%;
  padding: 100px 48px;
}

.info-section .section-header,
.info-section .info-grid,
.info-section .map-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid rgba(23,119,47,0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.info-card:hover::after { transform: scaleX(1); }
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,103,0,0.25);
  box-shadow: 0 16px 48px rgba(255,103,0,0.12);
}

.info-icon { font-size: 2rem; margin-bottom: 16px; display: block; }

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.9rem;
  color: #4a6650;
  margin-bottom: 6px;
  line-height: 1.6;
}

.info-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--orange);
  transition: color var(--transition);
}

.info-link:hover { color: var(--green); }

.map-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  border: 2px solid rgba(23,119,47,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  cursor: pointer;
}

.map-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("IMAGENES/UBICACION/mapa.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.25) translateX(-15px) translateY(-50px);
  transition: transform 0.8s ease;
  z-index: -2;
}

.map-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23,119,47,0.45) 0%,
    rgba(23,119,47,0.55) 50%,
    rgba(10,60,20,0.80) 100%
  );
  z-index: -1;
}

.map-container:hover::before { transform: scale(1.08); }

.map-placeholder {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.map-placeholder span {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.map-placeholder p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

/* ============================================================
   EXPERIENCE — fondo naranja vibrante
   ============================================================ */
.experience-section {
  max-width: 100%;
  padding: 100px 48px;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

/* Destellos de luz */
.exp-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(250,166,14,0.45) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(23,119,47,0.20) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 0%,  rgba(255,255,255,0.15) 0%, transparent 40%);
  pointer-events: none;
}

.experience-section .section-header { position: relative; z-index: 1; }

.exp-grid {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.exp-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.exp-card.big { min-height: 380px; }

.exp-card:hover .exp-img-placeholder { transform: scale(1.06); }

.exp-img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  transition: transform 0.6s ease;
}

.exp-1 {
  background-image: url("IMAGENES/EXPERIENCE/DSC09998.jpg.webp");
  background-size: cover;
  background-position: center;
}

.exp-2 {
  background-image: url("IMAGENES/EXPERIENCE/DSC09861.jpg.webp");
  background-size: cover;
  background-position: center;
}

.exp-3 {
  background-image: url("IMAGENES/EXPERIENCE/DSC09920.jpg.webp");
  background-size: cover;
  background-position: center;
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.exp-card:hover .exp-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 70%);
}

.exp-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--white);
}

.exp-zones {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.exp-zone {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid rgba(255,255,255,0.30);
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.exp-zone:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.60);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.20);
}

.zone-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }

.exp-zone h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.20);
}

.exp-zone p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.7;
  font-family: var(--font-accent);
}

/* ============================================================
   CONTACTO — fondo verde oscuro
   ============================================================ */
.contact-section {
  max-width: 100%;
  background: var(--dark);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(255,103,0,0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(250,166,14,0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(23,119,47,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 28px; }

.contact-item { display: flex; align-items: center; gap: 16px; }

.c-icon { font-size: 1.6rem; flex-shrink: 0; }

.c-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.c-val {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.5;
}

a.c-val:hover { color: var(--yellow); }

.social-row { display: flex; gap: 12px; margin-top: 8px; }

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}

.social-btn svg { width: 16px; height: 16px; }

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,103,0,0.40);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(250,166,14,0.18);
}

/* ============================================================
   FOOTER — fondo verde muy oscuro / casi negro
   ============================================================ */
.footer {
  background: #071410;
  border-top: 3px solid var(--yellow);
  padding: 48px 48px 32px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }

.footer-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--yellow); }

.footer-bottom { text-align: center; position: relative; z-index: 1; }

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 4px;
}

.footer-small { font-size: 0.75rem !important; color: rgba(255,255,255,0.20) !important; }

.footer-decor {
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 8vw;
  letter-spacing: 8px;
  color: rgba(250,166,14,0.04);
  white-space: nowrap;
  pointer-events: none;
}

/* ============================================================
   ANIMACIONES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid    { grid-template-columns: repeat(2, 1fr); }
  .exp-grid     { grid-template-columns: 1fr 1fr; }
  .exp-card.big { grid-column: span 2; }
}

@media (max-width: 768px) {
  #navbar          { padding: 16px 24px; }
  #navbar.scrolled { padding: 12px 24px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: rgba(23,119,47,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 32px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 2px solid rgba(250,166,14,0.40);
    z-index: 999;
  }

  .f-logo { margin-left: 0px; }
  .n-logo { margin-left: 25px; }

  .hero-btn {
    font-size: 0.8rem !important;
    padding: 16px 28px !important;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .nav-links.open { right: 0; }
  .nav-link  { font-size: 0.9rem; }
  .nav-cta   { font-size: 0.8rem; }
  .burger    { display: flex; z-index: 1000; }

  .section,
  .tickets-section,
  .experience-section,
  .contact-section,
  .artists-section,
  .info-section { padding: 72px 24px; }

  .title-line { font-size: clamp(4rem, 18vw, 8rem); }
  .title-fest { font-size: clamp(2rem, 9vw, 4rem); letter-spacing: 12px; }

  .hero            { height: 110vh; }
  .hero-date-block { flex-direction: column; gap: 20px; }
  .hero-divider    { display: none; }

  .artists-grid          { grid-template-columns: 1fr 1fr; gap: 16px; }
  .artist-card.headliner { grid-column: span 1; }
  .tickets-cards         { grid-template-columns: 1fr; }
  .info-grid             { grid-template-columns: 1fr; }
  .exp-grid              { grid-template-columns: 1fr; }
  .exp-card.big          { grid-column: span 1; }
  .exp-zones             { grid-template-columns: 1fr; }
  .contact-grid          { grid-template-columns: 1fr; gap: 40px; }
  .footer-top            { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links          { justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr; }
  .hero-fire    { display: none; }
  .social-row   { flex-direction: column; }
}


/* ============================================================
   INTRO CINEMÁTICA
   ============================================================ */

#intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #071410;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: introHide 1s ease forwards;
  animation-delay: 3.6s;
}

.intro-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 50%, rgba(255,103,0,0.25), transparent 30%),
    radial-gradient(circle at 80% 50%, rgba(250,166,14,0.20), transparent 30%),
    radial-gradient(circle at center, rgba(23,119,47,0.30), transparent 60%);

  filter: blur(40px);

  animation: pulseBg 4s ease-in-out infinite;
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;

  animation:
    introZoom 3.2s ease forwards;
}

.intro-logo {
  width: 140px;
  margin-bottom: 24px;

  filter:
    drop-shadow(0 0 20px rgba(255,103,0,0.6))
    drop-shadow(0 0 50px rgba(250,166,14,0.4));

  animation:
    logoGlow 2s ease-in-out infinite alternate;
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 10px;
  color: white;
  line-height: 1;
}

.intro-year {
  margin-top: 12px;

  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 12px;

  color: var(--yellow);
}

.intro-flash {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);

  opacity: 0;

  animation: flashIntro 0.8s ease forwards;
  animation-delay: 2.8s;
}

/* ANIMACIONES */

@keyframes introZoom {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoGlow {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

@keyframes pulseBg {
  0%,100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes flashIntro {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes introHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}