:root {
  --bg: #0a0a0a;
  --bg-secondary: #151515;
  --card: #1a1a1a;
  --foreground: #fafafa;
  --muted: #999999;
  --primary: #c97d2d;
  --primary-hover: #d48f3e;
  --primary-soft: rgba(201, 125, 45, 0.1);
  --primary-border: rgba(201, 125, 45, 0.3);
  --border: #2a2a2a;
  --input-bg: #1a1a1a;
  --glass: rgba(10, 10, 10, 0.85);
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", "Impact", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #141414; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ===== DECORATIVE LINES ===== */
.deco-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.deco-line-left {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary));
}
.deco-line-right {
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--primary-hover);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--bg);
}
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
}

.sponsors-head {
  background: radial-gradient(circle at top, rgba(201, 125, 45, 0.2), transparent 60%);
}

.sponsors-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.9rem;
}

.sponsor-page-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #191919, #131313);
  padding: 0.8rem;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.sponsor-page-card img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.4rem;
}

.sponsor-page-card h3 {
  margin: 0;
  font-size: 1rem;
}

.sponsor-page-card a {
  color: var(--primary);
  font-weight: 600;
}

.stands-map-wrapper {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: auto;
  background: #121212;
  min-height: 380px;
  padding: 0.5rem;
}

.stands-map-grid {
  display: grid;
  gap: 2px;
  width: max-content;
  min-width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 10px;
  padding: 0.15rem;
}

.stand-box {
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  color: #16110d;
  font: 700 10px/1.1 "Inter", sans-serif;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  backdrop-filter: blur(1px);
}

.stand-box span,
.stand-box small {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.stand-box small {
  font-size: 9px;
}

.stands-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}

.stands-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 0.35rem;
}

.stands-legend .disponible { background: #51d17d; }
.stands-legend .reservado { background: #e2b257; }
.stands-legend .confirmado { background: #6aa8ff; }

@media (max-width: 767px) {
  .stands-map-wrapper {
    min-height: 300px;
    padding: 0.35rem;
  }

  .stand-box {
    font-size: 8px;
    padding: 0.1rem;
  }

  .stand-box small {
    font-size: 7px;
  }
}

/* ===== SECTION ===== */
.section {
  padding: 4rem 0;
}
.section-alt {
  background: var(--bg-secondary);
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--primary);
  margin: 0;
}
.section-subtitle {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-header {
  height: 42px;
  width: auto;
}
.logo-square {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-square span {
  color: var(--bg);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1.1;
  text-align: center;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-desktop a {
  font-family: "Oswald", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.8);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-desktop a:hover {
  color: var(--primary);
}
.header-cta {
  display: none;
}
.header-cta .btn {
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.nav-mobile.open {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile a {
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.8);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-mobile a:hover {
  color: var(--primary);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: block; }
  .menu-toggle { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-overlay-rl {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,10,10,0.8) 50%, rgba(10,10,10,0.6) 100%);
}
.hero-overlay-bt {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%, rgba(10,10,10,0.5) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-left {
  text-align: center;
}
.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
}
.hero-badge span {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 500;
}
.hero-title {
  margin-bottom: 1.5rem;
}
.hero-title h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--primary);
  line-height: 0.9;
  margin: 0;
}
.hero-title h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--foreground);
  line-height: 0.9;
  margin: 0;
}
.hero-title p {
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
}
.hero-date-circle {
  display: inline-block;
  border: 2px solid var(--primary-border);
  border-radius: 50%;
  padding: 0.5rem;
  margin-bottom: 2rem;
}
.hero-date-circle-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-date-circle-inner span {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  line-height: 1.2;
  text-align: center;
}
.hero-right {
  text-align: center;
}
.hero-card {
  display: inline-block;
  background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(20,15,10,0.9));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--primary-border);
  box-shadow: 0 0 40px rgba(201,125,45,0.08), inset 0 1px 0 rgba(201,125,45,0.12);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}
.hero-card-label {
  color: rgba(250, 250, 250, 0.6);
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}
.hero-date-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-date-number {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 0.8;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.hero-date-number small {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  color: rgba(250,250,250,0.3);
  margin: 0 0.15rem;
}
.hero-date-text {
  text-align: left;
  padding-bottom: 0.25rem;
}
.hero-date-text p {
  margin: 0;
  line-height: 1.15;
}
.hero-date-month {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.04em;
}
.hero-date-year {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  color: rgba(250, 250, 250, 0.5);
  font-weight: 500;
}
.hero-small-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), rgba(201,125,45,0.05));
  border: 1px solid var(--primary-border);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(201,125,45,0.06);
}
.hero-small-badge span {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.45rem;
  line-height: 1.2;
  text-align: center;
}
.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.hero-location svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  opacity: 0.8;
}
.hero-location-text {
  text-align: left;
}
.hero-location-text p {
  margin: 0;
}
.hero-location-name {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.95rem;
}
.hero-location-region {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.hero-location-country {
  color: var(--muted);
  font-size: 0.8125rem;
}

.hero-card .btn-outline {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  border-width: 1px;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-left {
    text-align: left;
  }
  .hero-right {
    text-align: right;
  }
  .hero-date-row {
    justify-content: flex-end;
  }
  .hero-location {
    justify-content: flex-end;
  }
}

.hero-logo-desktop {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .hero-logo-desktop {
    max-width: 90%;
  }
}

.hero-left .hero-badge,
.hero-left .hero-title,
.hero-left .hero-date-circle {
  display: none;
}

/* ===== FEATURES ===== */
.features {
  position: relative;
  padding: 3rem 0;
}
.features::before,
.features::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.features::before {
  top: 0;
}
.features::after {
  bottom: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(201, 125, 45, 0.5);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: background 0.2s;
}
.feature-card:hover .feature-icon {
  background: var(--primary-soft);
}
.feature-card h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 0.875rem;
}
.feature-card p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

/* ===== FEATURE DETAIL (actividades.php) ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover {
  color: var(--primary);
}
.feature-detail {
  text-align: center;
}
.feature-detail-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-soft);
}
.feature-detail-icon svg {
  width: 40px;
  height: 40px;
}
.feature-detail h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--primary);
  margin: 0 0 0.75rem;
}
.feature-detail-sub {
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  max-width: 60ch;
  margin: 0 auto;
}
.feature-detail-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}
.feature-detail-content h2,
.feature-detail-content h3 {
  color: var(--foreground);
  margin: 2rem 0 0.75rem;
}
.feature-detail-content h2 {
  font-size: 1.5rem;
}
.feature-detail-content h3 {
  font-size: 1.125rem;
}
.feature-detail-content p {
  margin: 0 0 1rem;
}
.feature-detail-content ul,
.feature-detail-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}
.feature-detail-content li {
  margin-bottom: 0.35rem;
}
.feature-detail-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}
.feature-detail-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--foreground);
  font-style: italic;
}
.feature-detail-content a {
  color: var(--primary);
  text-decoration: underline;
}
.feature-detail-content a:hover {
  color: var(--primary-hover);
}

.activity-hero-note {
  font-size: 1.05rem;
  color: rgba(250, 250, 250, 0.9);
  margin-bottom: 1.5rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--primary);
  background: linear-gradient(90deg, rgba(201,125,45,0.12), transparent);
}

.activity-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.activity-grid-2 {
  grid-template-columns: 1fr;
}

.activity-grid-3 {
  grid-template-columns: 1fr;
}

.activity-card {
  background: linear-gradient(180deg, #171717, #121212);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.activity-card h2,
.activity-card h3 {
  margin-top: 0;
}

.activity-section {
  margin: 1.25rem 0 1.5rem;
}

.activity-highlight {
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  background: rgba(201,125,45,0.06);
}

.activity-quote {
  margin: 1.5rem 0;
}

.activity-timeline {
  display: grid;
  gap: 0.75rem;
}

.activity-timeline > div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.75rem;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  background: #131313;
}

.activity-timeline strong {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
}

.activity-stats {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin: 1rem 0 1.5rem;
}

.activity-stats article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: #131313;
}

.activity-icon-list {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.activity-icon-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, #171717, #121212);
}

.activity-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-soft);
}

.activity-icon-badge svg {
  width: 28px;
  height: 28px;
}

.activity-icon-copy h3 {
  margin: 0 0 0.2rem;
}

.activity-icon-copy p {
  margin: 0;
}

.adheridos-grid {
  display: grid;
  gap: 2.5rem;
}

.adheridos-section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.adheridos-toolbar {
  display: grid;
  gap: 0.75rem;
}

.adheridos-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--primary-border);
  background: rgba(201,125,45,0.08);
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

.adheridos-search {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #141414;
  color: var(--foreground);
  padding: 0.75rem 1rem;
}

.adheridos-head {
  position: relative;
  overflow: hidden;
}

.adheridos-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--primary-border);
  background: rgba(201,125,45,0.08);
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.adheridos-hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.adheridos-stats {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.adheridos-stats article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18,18,18,0.9);
  padding: 0.9rem;
  text-align: center;
}

.adheridos-stats strong {
  display: block;
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
}

.adheridos-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.adheridos-catalog {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.adherido-card {
  background: linear-gradient(180deg, #171717, #121212);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.adherido-card.is-featured {
  border-color: var(--primary-border);
  box-shadow: 0 0 0 1px rgba(201,125,45,0.18) inset;
}

.adherido-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.adherido-card-body {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.adherido-badge,
.adherido-type {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.adherido-badge {
  background: var(--primary);
  color: #1b120d;
}

.adherido-type {
  border: 1px solid var(--primary-border);
  color: var(--primary);
  background: rgba(201,125,45,0.08);
}

.adherido-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
}

.adherido-card p {
  margin: 0 0 0.5rem;
}

.adherido-summary {
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  font-size: 0.88rem;
}

.adherido-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.adherido-links a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.84rem;
}

.adherido-meta {
  display: grid;
  gap: 0.35rem;
  margin-top: auto;
  margin-top: auto;
}

.adherido-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.adherido-meta svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .adheridos-toolbar {
    grid-template-columns: auto minmax(220px, 300px);
    align-items: center;
    justify-content: space-between;
  }
}

.activity-stats strong {
  display: block;
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
}

.activity-stats span {
  color: var(--muted);
  font-size: 0.875rem;
}

.activity-checklist {
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #121212;
  padding: 1rem;
}

.activity-faq-mini {
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  background: #121212;
}

@media (min-width: 768px) {
  .activity-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ===== EXPERIENCE ===== */
.experience-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.exp-text {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.exp-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin: 0 0 0.25rem;
}
.exp-text .exp-tagline {
  color: rgba(250, 250, 250, 0.8);
  font-family: "Oswald", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}
.exp-text p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 2rem;
}
.exp-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.exp-image {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}
.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5), transparent);
}

@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== GALLERY ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 125, 45, 0);
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(201, 125, 45, 0.2);
}

@media (min-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===== COUNTDOWN ===== */
.countdown-section {
  position: relative;
  padding: 4rem 0;
}
.countdown-section::before,
.countdown-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.countdown-section::before {
  top: 0;
}
.countdown-section::after {
  bottom: 0;
}
.countdown-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.countdown-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.countdown-header h2 {
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin: 0;
  white-space: nowrap;
}
.countdown-header .deco-line-left,
.countdown-header .deco-line-right {
  flex: 1;
  max-width: 64px;
}
.countdown-timer {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.countdown-unit {
  text-align: center;
  position: relative;
}
.countdown-unit + .countdown-unit::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 3rem;
  background: var(--border);
}
.countdown-number {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.countdown-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.countdown-right {
  text-align: center;
}
.countdown-right h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 0.5rem;
}
.countdown-right p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.countdown-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto 2rem;
}
.countdown-form input {
  flex: 1;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}
.countdown-form input:focus {
  outline: none;
  border-color: var(--primary);
}
.countdown-form input::placeholder {
  color: var(--muted);
}
.countdown-social-label {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.social-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.social-circle:hover {
  background: var(--primary);
  color: var(--bg);
}

@media (min-width: 768px) {
  .countdown-grid {
    grid-template-columns: 1fr 1fr;
  }
  .countdown-header {
    justify-content: flex-start;
  }
  .countdown-timer {
    justify-content: flex-start;
  }
  .countdown-right {
    text-align: left;
  }
  .countdown-form {
    margin: 0 auto 2rem 0;
  }
  .social-row {
    justify-content: flex-start;
  }
}

/* ===== AGENDA ===== */
.agenda-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.agenda-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.agenda-title-row .deco-line-right {
  display: none;
  width: 96px;
}
@media (min-width: 768px) {
  .agenda-title-row .deco-line-right {
    display: block;
  }
}
.agenda-grid {
  display: grid;
  gap: 1rem;
}
.agenda-summary-list {
  display: grid;
  gap: 1rem;
}
.agenda-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.agenda-card h3 {
  color: var(--foreground);
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.7rem;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
}
.agenda-events {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.agenda-scroll-shell {
  display: grid;
  gap: 0.35rem;
}

.agenda-scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(201, 125, 45, 0.22);
  background: rgba(201, 125, 45, 0.08);
  color: var(--primary);
  padding: 0;
}

.agenda-scroll-arrow:disabled {
  opacity: 0.35;
}

.agenda-events::-webkit-scrollbar {
  width: 8px;
}

.agenda-events::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
}

.agenda-events::-webkit-scrollbar-thumb {
  background: rgba(201, 125, 45, 0.65);
  border-radius: 999px;
}
.agenda-event {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.agenda-event:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.agenda-event-time {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.agenda-event-copy {
  min-width: 0;
}

.agenda-event h4 {
  margin: 0;
  font-size: 0.78rem;
  color: var(--foreground);
  font-family: "Oswald", sans-serif;
  line-height: 1.2;
}
.agenda-event p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}
.agenda-acreditaciones {
  background: var(--card);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.agenda-acreditaciones-content {
  position: relative;
  z-index: 1;
}
.agenda-acreditaciones h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.agenda-acreditaciones p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
}
.acreditaciones-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 128px;
  height: 160px;
  transform: rotate(12deg);
  background: linear-gradient(135deg, rgba(201,125,45,0.3), rgba(201,125,45,0.1));
  border: 1px solid rgba(201,125,45,0.5);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.acreditaciones-badge span {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1.2;
  text-align: center;
}
.acreditaciones-badge .badge-line {
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin: 0.5rem auto;
}
.acreditaciones-badge .badge-sub {
  color: rgba(201,125,45,0.7);
  font-size: 0.45rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .agenda-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agenda-summary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agenda-events {
    max-height: 270px;
  }
}
@media (min-width: 1024px) {
  .agenda-grid {
    grid-template-columns: minmax(0, 2.4fr) minmax(300px, 0.9fr);
  }
}

/* ===== SPONSORS ===== */
.sponsors-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.sponsors-header h2 {
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin: 0;
  white-space: nowrap;
}
.sponsors-header .deco-line-left,
.sponsors-header .deco-line-right {
  flex: 1;
  max-width: 96px;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}
.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.sponsor-item:hover {
  filter: grayscale(0);
  opacity: 1;
}
.sponsor-item span {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .sponsors-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
  border-top: 1px solid var(--border);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-border), var(--primary), var(--primary-border), transparent);
}
.footer-main {
  padding: 4rem 0 3rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo {
  max-width: 180px;
  height: auto;
  filter: brightness(1) saturate(1);
  transition: filter 0.3s, transform 0.3s;
}
.footer-logo:hover {
  filter: brightness(1.15) saturate(1.1);
  transform: scale(1.03);
}
.footer-col h4 {
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav a {
  color: var(--muted);
  font-size: 0.8125rem;
  transition: all 0.25s;
  position: relative;
  padding-left: 0;
}
.footer-nav a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-info {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 2;
}
.footer-info a {
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.footer-info a:hover {
  color: var(--primary);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}
.social-circle:hover {
  background: var(--primary);
  color: var(--foreground);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201,125,45,0.3);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.8125rem;
}
.footer-domain {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.footer-mantra {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  letter-spacing: 0.06em;
}
.footer-mantra-dot {
  color: var(--primary);
  font-size: 0.5rem;
}
.footer-experience {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  letter-spacing: 0.04em;
}
.footer-experience-star {
  color: var(--primary);
  font-size: 0.75rem;
}

.footer-credits {
  color: var(--muted);
  line-height: 1.5;
}

.footer-credits a {
  color: var(--primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-main {
    padding: 5rem 0 3rem;
  }
  .footer-logo {
    max-width: 220px;
  }
}

/* ===== PAGE INTERIOR ===== */
.page-head {
  padding: 7rem 0 2rem;
}
.page-head h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin: 0 0 0.5rem;
}
.page-head .subtitle {
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

.subtitle {
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

/* ===== TICKETS (for evento.php) ===== */
.tickets-grid {
  display: grid;
  gap: 1rem;
}
.ticket-card {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a, #141414);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.ticket-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(201,125,45,0.3) inset;
}
.ticket-badge {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(201,125,45,0.15);
  color: var(--primary);
  border: 1px solid rgba(201,125,45,0.4);
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
}
.ticket-card h3 {
  margin: 0.75rem 0 0.25rem;
  font-size: 1.125rem;
  color: var(--foreground);
}
.ticket-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}
.ticket-price {
  display: block;
  margin-top: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.ticket-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  color: rgba(250,250,250,0.8);
  font-size: 0.875rem;
}
.ticket-card li {
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== TIMELINE (for evento.php) ===== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.timeline-day-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.timeline-day-title {
  margin: 0.5rem 0 0;
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.timeline-time {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.timeline-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--foreground);
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  gap: 1rem;
}
.faq-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.faq-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--foreground);
}
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== GUIDE ===== */
.guide-grid {
  display: grid;
  gap: 1rem;
}
.guide-card {
  background: linear-gradient(180deg, #1a1a1a, #141414);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.guide-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.guide-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--foreground);
}
.guide-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.875rem;
}
.guide-card li {
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .guide-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  gap: 1rem;
}
.blog-card {
  background: linear-gradient(180deg, #1a1a1a, #141414);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.blog-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  color: var(--foreground);
}
.blog-meta {
  color: var(--muted);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}
.blog-card p {
  color: var(--muted);
  margin: 0 0 0.75rem;
  flex: 1;
  font-size: 0.875rem;
}
.blog-card .btn {
  align-self: flex-start;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* ===== FORM ===== */
.form-box {
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-grid textarea {
  resize: vertical;
}
.full {
  grid-column: 1 / -1;
}
.msg {
  margin: 0.75rem 0 0;
  font-weight: 600;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== LIVE / IMPACT ===== */
.live-grid {
  display: grid;
  gap: 1rem;
}
.live-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}
.live-art {
  min-height: 210px;
  background:
    radial-gradient(circle at 18% 35%, rgba(201,125,45,0.35), transparent 36%),
    radial-gradient(circle at 75% 20%, rgba(201,125,45,0.2), transparent 34%),
    linear-gradient(140deg, #1a1a1a, #0d0d0d 70%);
  border-bottom: 1px solid var(--border);
}
.live-card-content {
  padding: 1rem;
}
.live-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--foreground);
}
.live-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.875rem;
}
.live-card a {
  color: var(--primary);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.live-card a:hover {
  color: var(--primary-hover);
}
.impact-grid {
  display: grid;
  gap: 0.85rem;
}
.impact-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
}
.impact-grid strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
  font-family: "Oswald", sans-serif;
}
.impact-grid span {
  color: var(--muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .live-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== VIDEO ===== */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 1.5rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== MAP ===== */
.map-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 1.5rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--primary);
  aspect-ratio: 16 / 9;
  isolation: isolate;
  box-shadow: 0 0 0 1px rgba(201, 125, 45, 0.2) inset, 0 0 30px rgba(201, 125, 45, 0.08);
}
.map-wrap .leaflet-container {
  width: 100%;
  height: 100%;
  background: #111;
}
.map-wrap .leaflet-tile-pane {
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
}
.map-wrap .leaflet-control-attribution {
  display: none !important;
}
.map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.map-pin img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  background: var(--primary);
  color: var(--bg);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s;
}
.floating-cta:hover {
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .countdown-timer {
    gap: 0.5rem;
  }
  .countdown-unit + .countdown-unit::before {
    display: none;
  }
  .exp-images {
    grid-template-columns: repeat(2, 1fr);
  }
  .exp-images .exp-image:last-child {
    display: none;
  }
}
