/* ==========================================================
  Callejeandola — styles.css (REFactor)
  - Ordenado por secciones
  - Sin duplicados
  - Mantiene: topbar glass, mobile menu, hero video, flechas, sponsor marquee, legal pages
========================================================== */

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

:root {
  /* Brand */
  --lime: #c6ff00;
  --bg-dark: #0b0b0f;

  /* Layout */
  --container: 1200px;
  --topbar-h: 72px;

  /* UI */
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: 10px;

  /* Text */
  --text: #111;
  --muted: #666;

  /* Dark text */
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --muted-on-dark: rgba(255, 255, 255, 0.75);
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;

}

/* Si scroll-snap te da problemas, podés apagarlo cambiando "mandatory" a "proximity" */
body {
  font-family: Arial, sans-serif;
  scroll-snap-type: y proximity;
  overflow-y: scroll;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Tipos de body */
.home-body {
  min-height: 100vh;
  background: #000;
  color: #000;
}

.page-body {
  min-height: 100vh;
  background: #f5f5f5;
  color: #111;
}

/* Wrapper genérico */
.page-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 16px 60px;
}

/* Utilidades */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 24px;
}

.mt-5 {
  margin-top: 32px;
}

/* ==========================================================
  1) COMPONENTES — BOTONES + TAGS
========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  background: #111;
  color: #fff;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
}

.btn:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #111;
  color: #111;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

.btn-primary {
  background: #ff6f00;
  color: #fff;
}

.btn-primary:hover {
  background: #e65c00;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #eee;
  color: #333;
}

.tag.live {
  background: #16a34a;
  color: #fff;
}

.tag.raffle {
  background: #f97316;
  color: #fff;
}

.tag.final {
  background: #0f172a;
  color: #fff;
}

/* ==========================================================
  2) TOPBAR (GLASS) + NAV
========================================================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.topbar,
.topbar a {
  color: #fff;
}

.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Logo link */
.topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

/* Logo principal (icono) */
.topbar-logo img {
  height: 44px;
  width: auto;
  display: block;
  /* si tu logo icono debe ser blanco: */
  /* filter: brightness(0) invert(1); */
  opacity: 0.95;
}

/* Wordmark opcional (si usás .logo-wordmark en el HTML) */
.logo-wordmark {
  height: 44px;
  width: auto;
  display: block;
  opacity: 1;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45)) brightness(1.15);
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.topbar-logo:hover .logo-wordmark {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55)) brightness(1.2);
}

.topbar-logo span {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  opacity: 0.95;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Menú desktop */
.topbar-menu {
  display: flex;
  gap: 18px;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}

/* Search */
.topbar-search {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-search-inner {
  width: 100%;
  max-width: 520px;
  border-radius: 999px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.topbar-search-inner input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  color: #111;
  background: transparent;
}

.topbar-search-inner .search-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
}

/* Right actions */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Idioma */
.lang-dropdown {
  position: relative;
  font-size: 13px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.flag {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

/* Menú idioma (glass) */
.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 22px;

  min-width: 140px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 60;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.lang-menu.open {
  display: block;
}

.lang-dropdown:hover .lang-menu {
  display: block;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #111;
}

.lang-menu a:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Hamburger (solo mobile) */
.nav-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 8px;
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

.nav-toggle span+span {
  margin-top: 4px;
}

/* ==========================================================
  3) MOBILE MENU (DRAWER)
========================================================== */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1200;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  padding: 20px;
  color: #fff;
  overflow-y: auto;
  display: none;
  z-index: 1300;

  /* Glass dark */
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-menu.open {
  display: block;
}

/* Si en tu JS añadís body.menu-open, esto evita doble header visual */
body.menu-open {
  overflow: hidden;
}

body.menu-open .topbar {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.mobile-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-header-left img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-header-left span {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-btn {
  color: #fff;
  font-size: 36px;
  padding: 0;
  margin-left: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Idioma móvil */
.mobile-header-lang {
  position: relative;
}

.mobile-header-lang button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 50%;
  font-size: 14px;
}

#mobileLangDropdown {
  display: none;
  position: absolute;
  right: 0;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  z-index: 300;
  min-width: 160px;
}

#mobileLangDropdown.show {
  display: block;
}

#mobileLangDropdown a {
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#mobileLangDropdown a:last-child {
  border-bottom: none;
}

#mobileLangDropdown a:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Search móvil */
.mobile-search {
  display: flex;
  background: #fff;
  border: 2px solid #006d46;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 20px;
}

.mobile-search input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.mobile-search-btn {
  background: #006d46;
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-modules {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mobile-modules li {
  margin: 14px 0;
  font-size: 18px;
  font-weight: 700;
}

/* ==========================================================
  4) HERO (VIDEO)
========================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.hero:hover .hero-video {
  transform: scale(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.6));
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--topbar-h) + 24px) 16px 60px;
  display: flex;
  flex-direction: column;
}

.hero-content {
  margin: 30px auto 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(30px, 6vw, 72px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.hero-title-highlight {
  color: var(--lime);
}

.hero-subtitle {
  font-size: clamp(14px, 2.2vw, 18px);
  margin: 0 0 30px;
  color: var(--muted-on-dark);
}

/* ==========================================================
  5) HOME SECTIONS (FONDOS CON IMAGEN + OVERLAY)
  - Para usar: .section-about { --bg: url("..."); } etc.
========================================================== */

.section {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  /* padding: 96px 16px; */
  padding: 0px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  /* default para secciones con imagen */
  scroll-snap-align: start;
}

/* Imagen + overlay */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.78)),
    var(--bg, linear-gradient(180deg, #14141a, #0b0b0f));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* grain muy sutil */
.section::after {
  content: "";
  position: absolute;
  inset: -60px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image: repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 3px);
  transform: rotate(-1deg);
}

.section-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.section>.section-inner>h2 {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  margin: 0;

  /* en vez de empujar el scroll, empujamos el contenido */
  padding: calc(var(--topbar-h) + 8px) 16px 0;

  background: transparent;
}



/* Título tipo pantalla */
.section h2 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 6vw, 84px);
  line-height: 1.05;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
}

/* Si usás subtítulos */
.section-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin: 18px auto 0;
  max-width: 70ch;
}

/* ==========================================================
  6) FLECHA (CTA) — NO SE QUITA
========================================================== */

.scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 5;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  animation: arrow-bounce 1.6s infinite;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.scroll-arrow i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.scroll-arrow:hover {
  transform: translateX(-50%) scale(1.06);
  background: rgba(255, 255, 255, 0.16);
}

@keyframes arrow-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, 10px);
  }

  60% {
    transform: translate(-50%, 5px);
  }
}

/* ==========================================================
  7) CARDS / GRIDS (si las usás en otras páginas)
========================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  color: #111;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 4px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin: 0 0 4px;
}

.spot-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 8px;
}

.event-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================
  8) SPONSOR MARQUEE (UNIFICADO)
  - Duplica el set (en HTML o por JS) para loop perfecto
========================================================== */

.sponsor-bar {
  width: 100%;
  background: #000;
  border-top: 1px solid #111;
  padding: 18px 0;
  overflow: hidden;
}

.sponsor-marquee {
  /* width: 100%; */
  max-width: var(--container);
  overflow: hidden;
  /* display: flex;
  justify-content: center; */
  margin: 0 auto;
}

.sponsor-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  padding: 0 24px;

  animation: sponsor-scroll 22s linear infinite;
  will-change: transform;

}

.img-link {
  display: inline-flex;
}

.sponsor-bar img {
  height: 78px;
  width: auto;
  object-fit: contain;
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease;
}

.img-link:hover img {
  transform: scale(1.06);
  opacity: 1;
}

@keyframes sponsor-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sponsor-marquee:hover .sponsor-track {
  animation-play-state: paused;
}


/* ==========================================================
  9) FOOTER
========================================================== */

.footer {
  background: #111;
  color: #aaa;
  padding: 18px 0;
  font-size: 13px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: #ccc;
  margin-left: 0px;
}

/* ==========================================================
  10) AUTH (LOGIN / REGISTER)
========================================================== */

.auth-body {
  min-height: 100vh;
  margin: 0;
  background-image: url("../images/homepage/background.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.auth-container {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 380px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
}

.auth-form .field {
  margin-bottom: 16px;
}

.auth-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.auth-form input,
.auth-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: #333;
  color: #fff;
  font-size: 14px;
}

.auth-form input:focus,
.auth-form select:focus {
  outline: 2px solid #ff6f00;
}

.auth-extra {
  font-size: 13px;
  margin-top: 12px;
}

/* ==========================================================
  11) DASHBOARD (base)
========================================================== */

.dashboard-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: #111827;
  color: #e5e7eb;
  padding: 20px 18px;
}

.sidebar-logo {
  font-weight: 700;
  margin-bottom: 18px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.sidebar-nav li {
  margin-bottom: 8px;
}

.sidebar-nav a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: #1f2937;
}

.dashboard-main {
  background: #f5f5f5;
  padding: 20px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.stats-card h3 {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.stats-card .big {
  font-size: 26px;
  font-weight: 800;
}

/* Config */
.config-form .field {
  margin-bottom: 16px;
}

.config-form input[type="text"],
.config-form input[type="color"] {
  width: 100%;
  max-width: 320px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats-box {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* ==========================================================
  12) FAQ + CONTACT (Home)
  - Si tenés la sección combinada, esto la estiliza
========================================================== */

.section-faq-contact {
  background: var(--bg-dark);
  color: #fff;
}

.section-faq-contact h2 {
  color: var(--lime);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 14px 18px;
  cursor: pointer;
}

.faq-item summary {
  font-weight: 700;
  font-size: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #ddd;
  line-height: 1.5;
}

/* CONTACT */
.contact-box {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.contact-text {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 14px;
}

.contact-form .field {
  margin-bottom: 14px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #aaa;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 10px 12px;
  background: #111;
  color: #fff;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--lime);
}

/* ==========================================================
  13) LEGAL PAGES (Privacidad / Términos)
========================================================== */

.legal-hero {
  position: relative;
  overflow: hidden;
  min-height: 50svh;
  padding-top: var(--topbar-h);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.legal-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.legal-hero .hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.legal-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.65) 60%,
      rgba(0, 0, 0, 0.85) 100%);
}

.legal-hero-inner {
  /* max-width: var(--container);
  padding: 28px 16px 22px;*/
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 16px 28px;
  color: #fff;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.9;
}

.legal-title {
  margin: 10px 0 6px;
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.5;
}

.legal-page {
  background: var(--bg-dark);
  color: #e9e9ee;
  padding: 38px 16px 70px;
}

.legal-container {
  max-width: 950px;
  margin: 0 auto;
}

.legal-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(10px);
}

.legal-card h2 {
  margin: 22px 0 8px;
  font-size: 18px;
  color: var(--lime);
}

.legal-card p,
.legal-card li {
  color: rgba(233, 233, 238, 0.85);
  line-height: 1.65;
  font-size: 14px;
}

.legal-card ul {
  padding-left: 18px;
  margin: 10px 0 0;
}

.legal-divider {
  margin: 18px 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

/* Contact form dentro del legal */
.legal-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.legal-form label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.legal-form input,
.legal-form select,
.legal-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

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

.legal-form input:focus,
.legal-form select:focus,
.legal-form textarea:focus {
  outline: 2px solid var(--lime);
  border-color: transparent;
}

/* ==========================================================
  14) PÁGINAS INTERNAS (STATIC)
========================================================== */

.page-hero {
  min-height: 50vh;
  padding-top: calc(var(--topbar-h) + 48px);
  text-align: center;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.85));
  color: #fff;
}

.legal-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;

  /* 🔥 IMAGEN AQUÍ */
  background-image: url("../images/homepage/about.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay se mantiene */
.legal-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.75));
}

/* Texto */
.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px 22px;
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin: 0 0 10px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.85;
  margin: 0;
}

.page-content {
  padding: 80px 16px;
  display: flex;
  justify-content: center;
}

.page-card {
  max-width: 720px;
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  line-height: 1.7;
  color: #111;
}

.feature-list {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

details {
  margin-top: 16px;
}

summary {
  font-weight: 700;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* ==========================================================
  15) FIX: ANCHORS con topbar fixed
========================================================== */

section[id] {
  scroll-margin-top: 0;
  /* calc(var(--topbar-h) + 14px); */

}

/* ==========================================================
  16) RESPONSIVE
========================================================== */

@media (max-width: 900px) {
  .topbar-menu {
    display: none;
  }

  .topbar .lang-dropdown {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero-inner {
    padding-top: calc(var(--topbar-h) + 10px);
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .legal-hero .hero-image {
    object-position: center 30%;
  }

  .section-about {
    background-position: center 40%;
    /* prueba 35%-55% */
    min-height: 100svh;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

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

@media (max-width: 600px) {
  .topbar-search-inner {
    display: none;
  }

  .topbar .lang-dropdown {
    display: none !important;
  }

  .hero-content {
    margin-top: 40px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-cards,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .topbar-logo span {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .topbar-logo img {
    height: 40px;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

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

/* ==========================================================
  17) FONDOS POR SECCIÓN — 3 VERSIONES (elige UNA)
  - Colocá tus imágenes en: /images/sections/
  - Cambiá los filenames y listo
========================================================== */

/* ===== VERSION A: Cinematic Night Skate ===== */
.section-about {
  --bg: url("../images/homepage/about.webp");
}

.section-skateshops {
  --bg: url("../images/homepage/skateshops.webp");
}

.section-spots {
  --bg: url("../images/homepage/spots.webp");
}

.section-events {
  --bg: url("../images/homepage/events.webp");
}

.section-faq {
  --bg: url("../images/homepage/faq.webp");
}

.section-contact {
  --bg: url("../images/homepage/contact.webp");
}

/* ===== VERSION B: Central America (más cálido) ===== */

.section::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.78)),
    var(--bg, linear-gradient(180deg, #14141a, #0b0b0f));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-attachment: scroll;
}

/* .section-about {
  --bg: url("../images/homepage/about.webp");
}

.section-spots {
  --bg: url("../images/homepage/spots.jpg");
}

.section-events {
  --bg: url("../images/homepage/events.png");
}

.section-faq {
  --bg: url("../images/homepage/faq.jpg");
}

.section-contact {
  --bg: url("../images/homepage/contact.jpg");
} */

/* ===== VERSION C: Editorial B/W + lime ===== */

.section::before {
  filter: grayscale(1) contrast(1.06);
}

.section h2 {
  color: var(--lime);
}


/* ==========================================================
  ABOUT PAGE (Acerca) — Enhancements
  - Mantiene el look "legal-card", pero lo vuelve más “skate platform”
========================================================== */

.about-chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.about-divider {
  margin: 18px 0;
  height: 1px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
}

.about-card h2 {
  letter-spacing: 0.02em;
}

/* Intro */
.about-lead p {
  max-width: 72ch;
}

/* 3-col features */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.about-feature {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
}

.about-feature h3 {
  margin: 10px 0 6px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.96);
}

.about-feature p {
  margin: 0;
  color: rgba(233, 233, 238, 0.84);
  line-height: 1.6;
  font-size: 13.5px;
}

.about-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 255, 0, 0.12);
  border: 1px solid rgba(198, 255, 0, 0.22);
  color: var(--lime);
}

/* Section */
.about-section {
  margin-top: 6px;
}

/* Steps */
.about-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.about-step {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.about-step h4 {
  margin: 0 0 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.about-step p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(233, 233, 238, 0.84);
  line-height: 1.55;
}

.about-step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0b0b0f;
  background: var(--lime);
}

/* Roles */
.about-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.about-role {
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-role-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
}

.about-role p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(233, 233, 238, 0.84);
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.about-stat {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}

.about-stat-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: 0.02em;
}

.about-stat-label {
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(233, 233, 238, 0.82);
}

/* CTA */
.about-cta {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  background: linear-gradient(135deg, rgba(198, 255, 0, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(198, 255, 0, 0.22);
}

.about-cta h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.96);
}

.about-cta p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(233, 233, 238, 0.84);
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  margin: 6px 0;

  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: #0b0b0f;
  background: var(--lime);
  border: 1px solid rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.about-cta-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===== About (corporate layout) ===== */

.about-muted {
  color: rgba(233, 233, 238, 0.84);
  line-height: 1.65;
}

.about-exec h2 {
  margin-top: 0;
}

.about-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-panel {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.about-panel h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.about-pillers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

/* Roadmap */
.about-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.about-road-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  border-radius: 12px;
  font-weight: 900;
  color: #0b0b0f;
  background: var(--lime);
  flex: 0 0 auto;
}

.about-road-item h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.about-road-item p {
  margin: 0;
  color: rgba(233, 233, 238, 0.84);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Reuse from earlier (if you already added it, keep it) */
.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.about-list-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.about-list-item i {
  margin-top: 2px;
  color: var(--lime);
  font-size: 18px;
  width: 22px;
  text-align: center;
}

.about-list-item h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.about-list-item p {
  margin: 0;
  color: rgba(233, 233, 238, 0.84);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Audience grid */
.about-audience {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-audience-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-audience-item i {
  width: 22px;
  text-align: center;
  color: var(--lime);
  font-size: 18px;
  margin-top: 2px;
}

.about-audience-item h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.about-audience-item p {
  margin: 0;
  color: rgba(233, 233, 238, 0.84);
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-two-col {
    grid-template-columns: 1fr;
  }

  .about-pillers {
    grid-template-columns: 1fr;
  }

  .about-roadmap {
    grid-template-columns: 1fr;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .about-audience {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 900px) {

  .about-grid,
  .about-steps,
  .about-roles {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-btn {
    width: 100%;
  }
}

/* ================================
   SKATESHOPS
================================ */

.shop-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  margin-bottom: 18px;
  transition: all .25s ease;
}

.shop-card:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.shop-cta {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  background: linear-gradient(135deg, rgba(198, 255, 0, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(198, 255, 0, 0.22);
}

.shop-cta h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.96);
}

.shop-cta p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(233, 233, 238, 0.84);
}

.shop-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  margin: 6px 0;

  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: #0b0b0f;
  background: var(--lime);
  border: 1px solid rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.shop-cta-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.shop-image {
  width: 220px;
  flex-shrink: 0;
}

.shop-image img {
  width: 100%;
  /* height: 150px; */
  object-fit: cover;
  border-radius: 12px;
}

.shop-info {
  flex: 1;
}

.shop-name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.shop-description {
  margin-top: 8px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}

.shop-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.shop-socials a {
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  transition: .2s;
}

.shop-socials a:hover {
  color: var(--lime);
}

@media (max-width:700px) {

  .shop-card {
    flex-direction: column;
  }

  .shop-image {
    width: 100%;
  }

  .shop-image img {
    height: auto;
  }
}

/* ===== Spots Definitivo (cards + fotos + reseña) ===== */

.spots-page {
  display: block;
}

.spots-toolbar {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.spots-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* CONTROLES SPOTS */
.spots-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 14px 0;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.spots-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.filter-chip.active {
  background: #c7ff00;
  color: #000;
}

.spots-search input {
  padding: 10px 12px;
  border-radius: 12px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* SPOTS GRID */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* CARD */
.spot-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f0f14;
}

.spot-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.spot-body {
  padding: 16px;
}

.spot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.spot-location {
  font-size: 12px;
  opacity: .75;
}

.spot-desc {
  margin-top: 10px;
  line-height: 1.6;
  font-size: 13.5px;
}

.spot-btn {
  display: block;
  margin-top: 14px;
  background: #c7ff00;
  color: #000;
  padding: 10px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
}

.spots-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

.spots-chip.is-active {
  background: rgba(198, 255, 0, 0.14);
  border-color: rgba(198, 255, 0, 0.28);
  color: rgba(255, 255, 255, 0.95);
}

.spots-search input {
  width: min(360px, 100%);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.spot-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
}

.spot-media {
  position: relative;
  height: 170px;
  background: rgba(255, 255, 255, 0.04);
}

.spot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spot-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.spot-badge {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.spot-badge.status.active {
  background: rgba(198, 255, 0, 0.16);
  border-color: rgba(198, 255, 0, 0.30);
}

.spot-badge.status.closed {
  background: rgba(255, 70, 70, 0.18);
  border-color: rgba(255, 70, 70, 0.30);
}

.spot-body {
  padding: 14px;
}

.spot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.spot-top h3 {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.96);
}

.spot-location {
  font-size: 12.5px;
  color: rgba(233, 233, 238, 0.78);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

.spot-review {
  margin: 10px 0 0;
  color: rgba(233, 233, 238, 0.84);
  line-height: 1.6;
  font-size: 13.5px;
}

.spot-notes {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(233, 233, 238, 0.82);
  line-height: 1.55;
  font-size: 13px;
}

.spot-meta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(233, 233, 238, 0.72);
  font-size: 12.5px;
}

.spot-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.spot-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: var(--lime);
  color: #0b0b0f;
}

.spot-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1100px) {
  .spots-grid {
    grid-template-columns: 1fr;
  }

  .spot-media {
    height: 200px;
  }
}

@media (max-width: 900px) {
  .spot-actions {
    flex-direction: column;
  }

  .spot-btn {
    width: 100%;
  }
}

/* ===== Spots List (Booking-like, Style C) ===== */
.spotlist-hero {
  width: 100%;
  margin-top: 88px;
  padding: 36px 0 18px;
  background: radial-gradient(1200px 380px at 30% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0));
}

.spotlist-hero-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.spotlist-kicker {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 900;
  color: rgba(233, 233, 238, 0.72);
}

.spotlist-title {
  margin: 8px 0 6px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.96);
}

.spotlist-sub {
  margin: 0;
  color: rgba(233, 233, 238, 0.78);
  line-height: 1.6;
}

.spotlist-shell {
  padding: 16px;
}

.spotlist-controls {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.5fr;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.spotlist-control {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(233, 233, 238, 0.78);
}

.spotlist-control input,
.spotlist-control select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.spotlist-search-btn {
  border: none;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  background: #c7ff00;
  color: #0b0b0f;
  padding: 12px 14px;
}

.spotlist-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  margin-top: 14px;
}

.spotlist-sidebar {
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
  height: fit-content;
}

.spotlist-sidebar h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.94);
}

.spotlist-filter {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.spotlist-filter h4 {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(233, 233, 238, 0.86);
}

.spotlist-filter label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: rgba(233, 233, 238, 0.80);
  margin: 8px 0;
}

.spotlist-mini-cta {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(199, 255, 0, 0.10);
  border: 1px solid rgba(199, 255, 0, 0.20);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.spotlist-mini-cta p {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: rgba(233, 233, 238, 0.78);
}

.spotlist-mini-btn {
  padding: 10px 12px;
  border-radius: 14px;
  background: #c7ff00;
  color: #0b0b0f;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
}

.spotlist-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spotlist-results-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
  padding: 8px 6px 4px;
}

.spotlist-results-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.spotlist-results-head p {
  margin: 6px 0 0;
  color: rgba(233, 233, 238, 0.70);
  font-size: 13px;
}

.spotlist-sort {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(233, 233, 238, 0.70);
  font-size: 13px;
}

.spotlist-sort select {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

/* Spot item (Booking-like card) */
.spotitem {
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.spotitem-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.spotitem-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.spotitem-top h4 {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
}

.spotitem-badge {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

.spotitem-badge.park {
  border-color: rgba(199, 255, 0, 0.25);
  background: rgba(199, 255, 0, 0.10);
}

.spotitem-loc {
  margin-top: 8px;
  color: rgba(233, 233, 238, 0.78);
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.spotitem-desc {
  margin: 10px 0 0;
  color: rgba(233, 233, 238, 0.84);
  line-height: 1.6;
  font-size: 13.5px;
}

.spotitem-meta {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.spotitem-pill {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.spotitem-pill.active {
  background: rgba(199, 255, 0, 0.16);
  border-color: rgba(199, 255, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
}

.spotitem-pill.closed {
  background: rgba(255, 70, 70, 0.16);
  border-color: rgba(255, 70, 70, 0.28);
  color: rgba(255, 255, 255, 0.92);
}

.spotitem-muted {
  color: rgba(233, 233, 238, 0.62);
  font-size: 12.5px;
}

.spotitem-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.spotitem-btn {
  width: 100%;
  text-align: center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: #c7ff00;
  color: #0b0b0f;
}

.spotlist-cta {
  margin-top: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(199, 255, 0, 0.10);
  border: 1px solid rgba(199, 255, 0, 0.20);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.spotlist-cta h3 {
  margin: 0;
  font-size: 14px;
}

.spotlist-cta p {
  margin: 6px 0 0;
  color: rgba(233, 233, 238, 0.78);
}

@media (max-width: 980px) {
  .spotlist-title {
    font-size: 32px;
  }

  .spotlist-layout {
    grid-template-columns: 1fr;
  }

  .spotitem {
    grid-template-columns: 1fr;
  }

  .spotitem-media img {
    height: 200px;
  }

  .spotlist-controls {
    grid-template-columns: 1fr;
  }

  .spotlist-results-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== Spot Details (Style C) ===== */
.spot-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin: 120px auto 0;
  width: min(1100px, 92%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.spot-hero-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

.spot-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.85) 100%);
}

.spot-hero-inner {
  position: absolute;
  inset: 0;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.spot-crumbs {
  font-size: 12px;
  color: rgba(233, 233, 238, 0.78);
  display: flex;
  gap: 8px;
  align-items: center;
}

.spot-crumbs a {
  color: rgba(233, 233, 238, 0.92);
  text-decoration: none;
}

.spot-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.96);
}

.spot-sub {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.spot-chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.40);
  color: rgba(255, 255, 255, 0.92);
}

.spot-chip.status.active {
  border-color: rgba(199, 255, 0, 0.35);
  background: rgba(199, 255, 0, 0.16);
}

.spot-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.spot-primary-btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: #c7ff00;
  color: #0b0b0f;
}

.spot-secondary-btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.spot-detail-card {
  margin-top: 18px;
}

.spot-section h2 {
  margin: 0 0 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.94);
}

.spot-muted {
  margin: 0;
  color: rgba(233, 233, 238, 0.82);
  line-height: 1.6;
}

.spot-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.spot-kpi {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.spot-kpi-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 255, 0, 0.14);
  border: 1px solid rgba(199, 255, 0, 0.24);
  color: rgba(255, 255, 255, 0.94);
}

.spot-kpi h4 {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.spot-kpi p {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: rgba(233, 233, 238, 0.78);
  line-height: 1.4;
}

.spot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.spot-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.spot-hint {
  margin: 10px 0 0;
  color: rgba(233, 233, 238, 0.65);
  font-size: 12.5px;
}

.spot-review-card {
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.spot-review-card p {
  margin: 0;
  color: rgba(233, 233, 238, 0.82);
  line-height: 1.6;
}

.spot-review-tags {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.spot-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
}

.spot-status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spot-status-box {
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.spot-status-box h4 {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.spot-status-box p {
  margin: 8px 0 0;
  color: rgba(233, 233, 238, 0.78);
  line-height: 1.5;
}

.spot-status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.spot-status-pill.active {
  background: rgba(199, 255, 0, 0.16);
  border-color: rgba(199, 255, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
}

.spot-footer-cta {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(199, 255, 0, 0.10);
  border: 1px solid rgba(199, 255, 0, 0.20);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.spot-footer-cta h3 {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.94);
}

.spot-footer-cta p {
  margin: 6px 0 0;
  color: rgba(233, 233, 238, 0.78);
}

@media (max-width: 900px) {
  .spot-hero-media img {
    height: 220px;
  }

  .spot-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spot-gallery {
    grid-template-columns: 1fr;
  }

  .spot-status-row {
    grid-template-columns: 1fr;
  }

  .spot-footer-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===== Alineación / background para spots ===== */
.spotlist-hero {
  width: 100%;
  margin-top: 88px;
  padding: 36px 0 18px;
  background:
    radial-gradient(1200px 380px at 30% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0));
}

.spotlist-hero-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.spotlist-shell {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 16px;
  border-radius: 22px;
}

/* Search bar top alignment */
.spotlist-controls {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.5fr;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Layout inside the shell */
.spotlist-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  margin-top: 14px;
}

/* Responsive */
@media (max-width: 980px) {
  .spotlist-shell {
    padding: 14px;
  }

  .spotlist-layout {
    grid-template-columns: 1fr;
  }

  .spotlist-controls {
    grid-template-columns: 1fr;
  }
}

/* ===== Spots (no sidebar) ===== */
.spotlist-wrap {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.spotlist-shell {
  padding: 16px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

/* Barra superior con iconos + selects */
.spotlist-controls--full {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.5fr;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Results full width */
.spotlist-results--solo {
  margin-top: 14px;
}

/* Responsive */
@media (max-width: 980px) {
  .spotlist-controls--full {
    grid-template-columns: 1fr;
  }

  .spotitem {
    grid-template-columns: 1fr;
  }

  .spotitem-media img {
    height: 220px;
  }
}

/* ===== SELECT DARK (Callejeandola Style) ===== */

select {
  background: #111317;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
}

/* Dropdown items */
select option {
  background: #111317;
  color: #e5e7eb;
}

/* Hover/focus */
select:focus {
  outline: none;
  border-color: #c6ff00;
  box-shadow: 0 0 0 2px rgba(198, 255, 0, .15);
}

.spotlist-control select {
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px);
}



/* Chips y botones del spot dentro del hero (reutilizable) */
.spot-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-weight: 800;
  font-size: 13px;
}

.spot-chip.status.active {
  background: rgba(198, 255, 0, .14);
  border-color: rgba(198, 255, 0, .30);
}

.spot-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: #c6ff00;
  color: #0a0a0a;
  border: 1px solid rgba(198, 255, 0, .35);
}

.spot-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .10);
}

/* ===== Eventos: items tipo "booking" ===== */

.eventitem {
  display: grid;
  grid-template-columns: 240px 1fr 190px;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 12px;
}

.eventitem-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.eventitem-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.eventitem-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.eventitem-top h4 {
  margin: 0;
  font-size: 18px;
}

.eventitem-badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.25);
}

.eventitem-badge.comp {
  border-color: rgba(198, 255, 0, .30);
  background: rgba(198, 255, 0, .10);
}

.eventitem-badge.jam {
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .06);
}

.eventitem-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.eventitem-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 12px;
}

.eventitem-desc {
  opacity: 0.92;
  line-height: 1.4;
  margin: 6px 0 10px;
}

.eventitem-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.eventitem-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.eventitem-pill.upcoming {
  background: rgba(198, 255, 0, .14);
  border-color: rgba(198, 255, 0, .30);
}

.eventitem-pill.live {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.eventitem-pill.canceled {
  background: rgba(255, 60, 60, .12);
  border-color: rgba(255, 60, 60, .25);
}

.eventitem-muted {
  opacity: 0.75;
  font-size: 12px;
}

.eventitem-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.eventitem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: #c6ff00;
  color: #0a0a0a;
  border: 1px solid rgba(198, 255, 0, .35);
}

/* Responsive */
@media (max-width: 980px) {
  .eventitem {
    grid-template-columns: 1fr;
  }

  .eventitem-media img {
    height: 220px;
  }

  .eventitem-actions {
    justify-content: stretch;
  }
}

/* =========================
   EVENTO DETALLE (estilo C)
========================= */

.event-hero {
  position: relative;
  margin-top: 88px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.event-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.event-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.02);
}

.event-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 420px at 30% 10%, rgba(0, 0, 0, .25), rgba(0, 0, 0, .85)),
    linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .90));
}

.event-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto 22px;
  padding: 18px 18px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 22px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px);
}

.event-crumbs {
  font-size: 12px;
  opacity: .9;
}

.event-crumbs a {
  color: #fff;
  text-decoration: none;
  opacity: .95;
}

.event-crumbs span {
  opacity: .65;
  margin: 0 6px;
}

.event-title {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .4px;
}

.event-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-weight: 800;
  font-size: 13px;
}

.event-chip.kind {
  border-color: rgba(198, 255, 0, .20);
}

.event-chip.status.upcoming {
  background: rgba(198, 255, 0, .14);
  border-color: rgba(198, 255, 0, .30);
}

.event-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.event-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: #c6ff00;
  color: #0a0a0a;
  border: 1px solid rgba(198, 255, 0, .35);
}

.event-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .10);
}

/* Card */
.event-card h2 {
  margin-top: 0;
}

.event-divider {
  height: 1px;
  background: rgba(255, 255, 255, .10);
  margin: 18px 0;
}

.event-muted {
  opacity: .8;
  font-size: 13px;
}

/* Info rápida */
.event-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.event-quick-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
}

.event-quick-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(198, 255, 0, .14);
  border: 1px solid rgba(198, 255, 0, .25);
}

/* Agenda */
.event-agenda {
  display: grid;
  gap: 10px;
}

.event-agenda-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.event-time {
  font-weight: 900;
  opacity: .9;
}

.event-step strong {
  display: block;
  margin-bottom: 4px;
}

/* Ubicación */
.event-location {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
}

.event-location-line {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.event-map-placeholder {
  height: 220px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  display: grid;
  place-items: center;
  text-align: center;
  opacity: .85;
}

.event-map-placeholder i {
  font-size: 28px;
  margin-bottom: 6px;
}

/* Lista */
.event-list {
  margin: 0;
  padding-left: 18px;
}

.event-list li {
  margin: 8px 0;
}

/* Galería */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.event-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
}

/* Responsive */
@media (max-width: 980px) {
  .event-quick {
    grid-template-columns: 1fr 1fr;
  }

  .event-location {
    grid-template-columns: 1fr;
  }

  .event-gallery {
    grid-template-columns: 1fr;
  }

  .event-gallery img {
    height: 220px;
  }
}


/* =========================
   HERO DETALLE: CHIPS + BOTONES
========================= */
.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-weight: 900;
  font-size: 13px;
}

.detail-status {
  background: rgba(198, 255, 0, .14);
  border-color: rgba(198, 255, 0, .30);
}

.detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.detail-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 1000;
  text-decoration: none;
  background: #c6ff00;
  color: #0a0a0a;
  border: 1px solid rgba(198, 255, 0, .35);
}

.detail-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 1000;
  text-decoration: none;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .10);
}

/* ==============================
   PAGES C (Events / FAQs / Contact)
   Bloque único (resumido)
================================= */
:root {
  --lime: #c6ff00;
  --card-bg: rgba(20, 22, 26, .78);
  --stroke: rgba(255, 255, 255, .10);
  --stroke2: rgba(255, 255, 255, .14);
  --muted: rgba(255, 255, 255, .72);
  --muted2: rgba(255, 255, 255, .55);
}

/* LISTA (eventos) */
.list {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.list-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .18);
}

.list-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--stroke);
}

.list-title {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.list-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 10px 0 0;
}

/* CHIPS + ACTIONS (compatibles con tus detail-chips/actions) */
.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .22);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}

.chip i {
  color: rgba(255, 255, 255, .78);
}

.chip-status {
  border-color: rgba(198, 255, 0, .25);
  background: rgba(198, 255, 0, .10);
}

.status-active i {
  color: var(--lime);
}

.status-closed {
  border-color: rgba(255, 90, 90, .25);
  background: rgba(255, 90, 90, .10);
}

.status-closed i {
  color: #ff5a5a;
}

.detail-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--stroke);
}

.btn-primary {
  background: var(--lime);
  color: #101010;
  border-color: rgba(198, 255, 0, .35);
}

.btn-secondary {
  background: rgba(0, 0, 0, .22);
  color: #fff;
}

/* FINDER (eventos) */
.finder {
  margin-top: 14px;
}

.finder-row {
  display: grid;
  grid-template-columns: 1.35fr .85fr .95fr .55fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .18);
}

.finder-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .22);
  min-height: 46px;
}

.finder-field i {
  width: 18px;
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, .75);
}

.finder-field input, .finder-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.finder-field input::placeholder {
  color: var(--muted2);
}

.finder-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.finder-field select option {
  background: #0f1012;
  color: #fff;
}

.finder-btn {
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  min-height: 46px;
  font-weight: 900;
  background: var(--lime);
  color: #101010;
}

.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 2px 10px;
}

.results-meta {
  color: var(--muted2);
  font-size: 13px;
}

.order-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted2);
  font-size: 13px;
}

.order-row select {
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .22);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  outline: 0;
}

.order-row select option {
  background: #0f1012;
  color: #fff;
}

@media (max-width: 980px) {
  .finder-row {
    grid-template-columns: 1fr;
  }

  .list-item {
    grid-template-columns: 1fr;
  }

  .list-thumb {
    height: 180px;
  }
}

/* CTA BAR */
.cta-bar {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(198, 255, 0, .22);
  background: rgba(198, 255, 0, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cta-text {
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  line-height: 1.45;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: #101010;
  font-weight: 900;
  text-decoration: none;
}

/* FAQ */
.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .18);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q i {
  color: var(--lime);
}

.faq-arrow {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .75);
  transition: transform .14s ease;
}

.faq-item[open] summary {
  background: rgba(198, 255, 0, .06);
  border-bottom: 1px solid var(--stroke);
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
  font-size: 13px;
}

.contact-field input, .contact-field select, .contact-field textarea {
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .22);
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  outline: 0;
}

.contact-field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.contact-note {
  margin-right: auto;
  color: var(--muted2);
  font-size: 12px;
}

.contact-submit {
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 900;
  background: var(--lime);
  color: #101010;
}