/* =========================================================
   CRVSH — global.css
   Estilos compartidos por todas las páginas
   ========================================================= */

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

/* ---- VARIABLES ---- */
:root {
  --bg:           #fd5bdf;
  --bg-deep:      #fd5bdf;
  --bg-card:      #ff007799;
  --bg-card-alt:  rgba(220, 0, 100, 0.5);
  --pink:         #e8608c;
  --pink-light:   #ffffff;
  --pink-glow:    rgba(232, 96, 140, 0.35);
  --gold:         #f0c060;
  --gold-light:   #f8d890;
  --gold-glow:    rgba(240, 192, 96, 0.4);
  --text:         #ffffff;
  --muted:        rgba(255,255,255,0.75);
  --text-muted:   rgb(255, 255, 255)75);
  --border:       rgba(255, 255, 255, 0.2);
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.3s ease;
  /* New design tokens */
  --color-bg:     #fd5bdf;
  --color-card:   rgba(255, 0, 119, 0.6);
  --color-text:   #ffffff;
  --color-border: rgba(255, 255, 255, 0.2);
}

html { scroll-behavior: smooth; font-size: 16px; background-color: #ff86e9; overflow-x: hidden; }

body {
  background-color: var(--bg);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(210, 50, 150, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s ease;
}

.nav-brand { display: flex; align-items: center; }

.nav-logo {
  height: 32px;
  width: 32px;
  display: block;
  background: #ffffff;
  -webkit-mask: url('../img/logo-crvsh.svg') no-repeat center / contain;
  mask: url('../img/logo-crvsh.svg') no-repeat center / contain;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(232,96,140,0.08); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #cc40a8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 5rem 2rem 2rem;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-menu--open { opacity: 1; pointer-events: all; }

/* X close button inside the overlay */
.nav-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  z-index: 201;
}
.nav-close:hover { background: rgba(232,96,140,0.1); color: var(--pink-light); }
.nav-close svg { display: block; }

/* Overlay kept in markup but invisible — menu covers entire screen */
.nav-overlay { display: none; }

.nav-link {
  display: block;
  text-align: center;
  padding: 0.75rem 2.5rem;
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  width: 100%;
  max-width: 300px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: rgba(232,96,140,0.08); color: var(--pink-light); }
.nav-link--active { color: var(--pink-light); }
.nav-link--soon { color: var(--text-muted); cursor: default; pointer-events: none; }

.soon-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(240,192,96,0.12);
  color: var(--gold);
  border: 1px solid rgba(240,192,96,0.25);
  border-radius: 100px;
  padding: 0.15em 0.6em;
  margin-left: 0.5rem;
}

@media (min-width: 700px) {
  .nav-toggle { display: none; }
  .nav-close { display: none; }
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    min-height: unset;
    background: none;
    opacity: 1;
    pointer-events: all;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    gap: 0.25rem;
    transition: none;
  }
  .nav-link {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0.4rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 100px;
    max-width: none;
    width: auto;
  }
}

/* =========================================================
   REVEAL / FADE-UP ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up--d1 { transition-delay: 0.12s; }
.fade-up--d2 { transition-delay: 0.24s; }
.fade-up--d3 { transition-delay: 0.36s; }

/* =========================================================
   LAYOUT
   ========================================================= */
.section { padding: 4rem 0 1rem; }
.container { max-width: 560px; margin: 0 auto; width: 100%; padding: 0 1rem; }

/* =========================================================
   COIN ANIMATIONS
   ========================================================= */
@keyframes coin-spin {
  0%   { transform: rotateY(0deg); }
  40%  { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  90%  { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes coin-shine {
  /* Cara delantera */
  0%   { opacity: 0; transform: translateX(-100%) rotate(135deg); }
  15%  { opacity: 1; }
  30%  { opacity: 0; transform: translateX(100%) rotate(135deg); }
  /* Cara trasera */
  50%  { opacity: 0; transform: translateX(-100%) rotate(135deg); }
  65%  { opacity: 1; }
  80%  { opacity: 0; transform: translateX(100%) rotate(135deg); }
  100% { opacity: 0; transform: translateX(100%) rotate(135deg); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  25%       { transform: rotate(6deg)  translateY(-5px); }
  50%       { transform: rotate(-4deg) translateY(0); }
  75%       { transform: rotate(4deg)  translateY(-3px); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* =========================================================
   SCROLL HINT
   ========================================================= */
.scroll-hint {
  text-align: center;
  padding: 1.75rem 0 0.25rem;
  color: rgba(232, 96, 140, 0.45);
  animation: bounceDown 1.5s ease-in-out infinite;
}
.scroll-hint svg { display: inline-block; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--pink), #c03060);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,96,140,0.35);
}
.btn--primary:hover { box-shadow: 0 6px 30px rgba(232,96,140,0.55); }

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(160,128,144,0.3);
}
.btn--ghost:hover {
  border-color: var(--pink);
  color: var(--pink-light);
  box-shadow: 0 0 16px rgba(232,96,140,0.15);
}

/* Rounded block buttons (thank you / cancel pages) */
.btn-primary {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), #c03060);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-secondary {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--pink-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  text-align: center;
}
.btn-secondary:hover { background: rgba(232, 96, 140, 0.08); transform: translateY(-1px); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  background: rgba(200, 40, 140, 0.9);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-logo {
  height: 36px;
  width: 160px;
  display: block;
  background: linear-gradient(135deg, var(--pink), #c03060);
  -webkit-mask: url('../img/logo-crvsh.svg') no-repeat center / contain;
  mask: url('../img/logo-crvsh.svg') no-repeat center / contain;
  filter: drop-shadow(0 0 8px var(--pink-glow));
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(232,96,140,0.25);
  color: var(--pink-light);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.social-link:hover {
  background: rgba(232,96,140,0.08);
  border-color: var(--pink);
  box-shadow: 0 0 16px var(--pink-glow);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--pink-light); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 1);
}

/* Footer aliases (used by error pages, thank you, cancel) */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  background: rgba(200, 40, 140, 0.9);
  width: 100%;
  margin-top: 2rem;
}

.footer-logo-mask {
  height: 36px;
  width: 160px;
  display: block;
  background: linear-gradient(135deg, var(--pink), #c03060);
  -webkit-mask: url('../img/logo-crvsh.svg') no-repeat center / contain;
  mask: url('../img/logo-crvsh.svg') no-repeat center / contain;
  filter: drop-shadow(0 0 8px rgba(232,96,140,0.35));
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(232,96,140,0.25);
  color: var(--pink-light);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s, border-color 0.25s;
}
.footer-social-link:hover { background: rgba(232,96,140,0.08); border-color: var(--pink); }

.footer-nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-link {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav-link:hover { color: var(--pink-light); }

.footer-copy-text { font-size: 0.75rem; color: rgba(160,128,144,0.45); }

/* =========================================================
   LANDING — HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 3rem 4rem;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-logo {
  max-width: 460px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .hero-logo { max-width: 360px; height: 120px; }
}

.hero-tagline {
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 40%, var(--pink-light) 75%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  color: var(--muted);
  font-weight: 400;
  max-width: 34ch;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--pink), #c03060);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(232,96,140,0.4), 0 0 0 0 rgba(232,96,140,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,96,140,0.55);
}
.hero-cta svg { transition: transform 0.2s ease; }
.hero-cta:hover svg { transform: translateX(3px); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* =========================================================
   LANDING — UPCOMING / EVENTS
   ========================================================= */
.upcoming {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
  background: var(--color-bg);
}

.upcoming-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.upcoming-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3em 1.1em;
  background: rgba(232,96,140,0.06);
}

.upcoming-title {
  font-size: clamp(2.5rem, 12vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, rgba(244,232,236,0.15), rgba(244,232,236,0.06));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(0.5px);
}

.upcoming-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 30ch;
}

.upcoming-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.upcoming-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.4;
  animation: dotPulse 1.6s ease-in-out infinite;
}
.upcoming-dots span:nth-child(2) { animation-delay: 0.2s; }
.upcoming-dots span:nth-child(3) { animation-delay: 0.4s; }

.fourvenues-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 200px;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  margin-top: 30px;
}

.fourvenues-inner {
  width: 100%;
  max-width: 900px;
  background: #f4d0dc8f;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,96,140,0.12);
  overflow: hidden;
}

/* =========================================================
   PAGE HERO (generic — merch, sobre-nosotros, etc.)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 4rem 1.5rem 4rem;
  text-align: center;
  background: var(--color-bg);
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3em 1.1em;
  background: rgba(232,96,140,0.06);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: clamp(2.2rem, 9vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 40%, var(--pink-light) 75%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================================
   LANDING — CONTACTO
   ========================================================= */
.contact-section {
  padding: 6rem 1.5rem;
  text-align: center;
  background: var(--color-bg);
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3em 1.1em;
  background: rgba(232,96,140,0.06);
}

.contact-title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 40%, var(--pink-light) 75%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro {
  font-size: clamp(1rem, 3vw, 1.1rem);
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.7;
}

.social-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 560px;
}

@media (min-width: 520px) {
  .social-cards { grid-template-columns: 1fr 1fr; }
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2rem 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,96,140,0.5);
  box-shadow: 0 8px 32px rgba(232,96,140,0.2), 0 0 0 1px rgba(232,96,140,0.1);
}

.social-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232,96,140,0.18), rgba(232,96,140,0.05));
  border-radius: 50%;
  color: var(--pink);
}

.social-card-handle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.social-card-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.6;
}

/* =========================================================
   DESKTOP MEDIA QUERIES
   ========================================================= */
@media (min-width: 600px) {
  .section { padding: 5rem 0 1.5rem; }
}

/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up { opacity: 1; transform: none; transition: none; }
  .scroll-hint { animation: none; }
  .upcoming-dots span, .hero-scroll { animation: none; }
}

/* =========================================================
   REDESIGN — LAYOUT GENERAL
   ========================================================= */
.page-content,
.main-content,
main {
  max-width: 560px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 480px) { main { padding-left: 20px; padding-right: 20px; } }
@media (min-width: 768px) { main { padding-left: 24px; padding-right: 24px; } }

/* =========================================================
   REDESIGN — HERO (nuevo)
   ========================================================= */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 16px 32px;
  min-height: unset;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.hero-content { gap: 0; }
.hero-tagline-new {
  margin-top: 16px;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  line-height: 1.6;
  letter-spacing: normal;
  max-width: 100%;
  word-break: break-word;
}
.social-icons {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  justify-content: center;
}
.social-icons a {
  color: #fff;
  transition: opacity 0.2s;
}
.social-icons a:hover { opacity: 0.7; }
.social-icons svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* =========================================================
   REDESIGN — SECTION TITLE SHARED
   ========================================================= */
.section-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 20px;
  margin-bottom: 16px;
}

/* =========================================================
   REDESIGN — ENTRADAS
   ========================================================= */
.section-entradas {
  padding: 32px 16px;
}
.event-card {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 560px;
  margin: 0 auto 12px;
  transition: opacity 0.2s;
}
.event-card:hover { opacity: 0.85; }
.event-card-img {
  width: 81px;
  height: 108px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-bottom: 2px;
  flex: 1;
}
.event-date {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  color: #fff;
}
.event-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 2px 0 0;
}
.event-venue {
  font-size: 13px;
  opacity: 0.9;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.event-badge {
  position: absolute;
  right: -44px;
  bottom: 16px;
  transform: rotate(-45deg);
  background: linear-gradient(to right, rgba(180,0,60,0.2), rgba(180,0,60,0.1));
  border: 0.25px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 40px;
  min-width: 140px;
  text-align: center;
  border-radius: 3px;
}

/* =========================================================
   EVENTO — PRÓXIMAMENTE
   ========================================================= */
.event-card--proximamente {
  pointer-events: none;
  cursor: default;
  user-select: none;
}
.event-card--proximamente:hover { opacity: 1; }
.event-card--proximamente .event-card-img img,
.event-card--proximamente .event-card-info {
  filter: blur(8px);
}
.event-card--proximamente .event-card-img {
  filter: blur(8px);
}
.event-proximamente-label {
  position: absolute;
  right: -44px;
  bottom: 16px;
  transform: rotate(-45deg);
  background: linear-gradient(to right, rgba(180,0,60,0.2), rgba(180,0,60,0.1));
  border: 0.25px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 40px;
  min-width: 140px;
  text-align: center;
  border-radius: 3px;
  filter: none;
}

/* =========================================================
   REDESIGN — PLAYLIST
   ========================================================= */
.section-playlist {
  padding: 32px 16px;
}

/* =========================================================
   REDESIGN — FOTOS
   ========================================================= */
.section-fotos {
  padding: 32px 16px;
}
.section-fotos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  margin-bottom: 10px;
}
.section-fotos-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.btn-ver-todo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s;
}
.btn-ver-todo:hover { background: rgba(255,255,255,0.12); }
.fotos-strip-block {
  margin-bottom: 28px;
}
.fotos-strip-block:last-child {
  margin-bottom: 0;
}
.section-fotos-footer {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.fotos-strip {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding-bottom: 4px;
}

.fotos-strip::-webkit-scrollbar { display: none; }

.fotos-strip-item {
  flex: 0 0 auto;
  aspect-ratio: 3 / 4;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.fotos-strip-item:hover {
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.02);
}

.fotos-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
  display: block;
}

.fotos-strip-item:hover img {
  opacity: 0.9;
}

/* Responsive sizes */
@media (max-width: 479px) {
  /* 2 photos on mobile */
  .fotos-strip {
    gap: 6px;
  }
  .fotos-strip-item {
    width: calc(50% - 3px);
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* 3 photos on small tablet */
  .fotos-strip {
    gap: 7px;
  }
  .fotos-strip-item {
    width: calc(33.333% - 4.67px);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* 4 photos on tablet */
  .fotos-strip {
    gap: 8px;
  }
  .fotos-strip-item {
    width: calc(25% - 6px);
  }
}

@media (min-width: 1024px) {
  /* 5 photos on desktop */
  .fotos-strip {
    gap: 8px;
  }
  .fotos-strip-item {
    width: calc(20% - 6.4px);
  }
}

/* =========================================================
   REDESIGN — FOOTER LEGAL
   ========================================================= */
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: #fff;
  opacity: 0.5;
  padding: 24px 0 0 0;
}
.footer-legal a { color: #fff; text-decoration: none; }
.footer-legal a:hover { opacity: 0.8; }
.footer-legal button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: inherit;
  color: #fff;
  padding: 0;
}
.footer-legal button:hover { opacity: 0.8; }

/* =========================================================
   REDESIGN — GALERÍA — Lista de eventos
   ========================================================= */
.gallery-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .gallery-events-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-event-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--color-border);
  display: block;
  text-decoration: none;
}
.gallery-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-event-card:hover img { transform: scale(1.04); }
.gallery-event-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gallery-event-date  { font-size: 12px; opacity: 0.8; color: #fff; }
.gallery-event-name  { font-size: 15px; font-weight: 700; color: #fff; margin: 0; }
.gallery-event-count { font-size: 12px; opacity: 0.7; color: #fff; }

/* =========================================================
   REDESIGN — GALERÍA — Fotos del evento
   ========================================================= */
.gallery-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px 20px;
  text-align: center;
}
.btn-back {
  align-self: flex-start;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.btn-back:hover { opacity: 1; }
.gallery-page-date {
  font-size: 14px;
  opacity: 0.6;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 16px 32px;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-grid a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.gallery-grid a:hover img { opacity: 0.85; }
