/* ─── RESET & VARIABLES ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #080808;
  --dark: #111111;
  --card: #161616;
  --border: #2a2a2a;
  --orange: #e85200;
  --amber: #f5a000;
  --white: #f0ede8;
  --muted: #888880;
  --font-display: "Bebas Neue", sans-serif;
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0.5;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    padding 0.4s;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo svg-icon {
  display: flex;
}
.nav-logo-f {
  width: 36px;
  height: 36px;
  position: relative;
}
.nav-logotext {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logotext span:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--white);
}
.nav-logotext span:last-child {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--orange);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 10px 22px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--amber);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 50%,
      rgba(232, 82, 0, 0.08) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(245, 160, 0, 0.04) 0%,
      transparent 50%
    );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 82, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 82, 0, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    black 0%,
    transparent 80%
  );
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--orange);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-title span {
  color: var(--orange);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero-desc {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 50px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s;
}
.btn-primary:hover::before {
  left: 0;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 82, 0, 0.4);
}

.btn-ghost {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--orange);
}
.hero-stat-label {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  align-self: flex-end;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ─── SECTION BASE ─── */
section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-full {
  max-width: none;
  padding: 100px 0;
}
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.9;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── PRÓXIMOS EVENTOS ─── */
#eventos {
  position: relative;
}

.eventos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
}

.evento-card {
  background: var(--dark);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}
.evento-card:hover {
  background: var(--card);
}
.evento-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.evento-card:hover::before {
  transform: scaleY(1);
}

.evento-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 40px;
}

.evento-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  padding: 10px 16px;
  margin-bottom: 20px;
  width: fit-content;
}
.evento-date-badge .day {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--orange);
}
.evento-date-badge .month {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
}

.evento-tag {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 82, 0, 0.1);
  padding: 4px 10px;
  margin-bottom: 12px;
  display: inline-block;
}

.evento-titulo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.featured .evento-titulo {
  font-size: clamp(36px, 4vw, 64px);
}

.evento-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.evento-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.evento-meta-item i {
  color: var(--orange);
}

.evento-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 16px;
}

.evento-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.evento-img-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.evento-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.evento-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ─── GALERÍA ─── */
#galeria {
  padding: 100px 0;
  background: var(--dark);
}
.galeria-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 4px;
  margin-top: 60px;
}

.galeria-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.galeria-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}
.galeria-item:nth-child(2) {
  grid-column: span 4;
}
.galeria-item:nth-child(3) {
  grid-column: span 3;
}
.galeria-item:nth-child(4) {
  grid-column: span 3;
}
.galeria-item:nth-child(5) {
  grid-column: span 4;
}

.galeria-item-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeria-item:hover .galeria-item-bg {
  transform: scale(1.05);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-label {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.galeria-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── NOTICIAS ─── */
#noticias {
}

.noticias-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
}

.noticia-main {
  background: var(--dark);
  padding: 40px;
  cursor: pointer;
  transition: background 0.3s;
}
.noticia-main:hover {
  background: var(--card);
}

.noticias-list {
  background: var(--dark);
  display: flex;
  flex-direction: column;
}

.noticia-item {
  padding: 28px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.3s;
  flex: 1;
}
.noticia-item:last-child {
  border-bottom: none;
}
.noticia-item:hover {
  background: var(--card);
}

.noticia-category {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.noticia-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.noticia-main:hover .noticia-title,
.noticia-item:hover .noticia-title {
  color: var(--orange);
}

.noticia-main .noticia-title {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 1px;
  line-height: 1.1;
}

.noticia-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.noticia-meta {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── AGENDA / CALENDARIO ─── */
#agenda {
  background: var(--dark);
  padding: 100px 0;
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

/* Calendar */
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cal-month {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
}
.cal-nav {
  display: flex;
  gap: 8px;
}
.cal-nav button {
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.cal-nav button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cal-days-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}
.cal-day-name {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  padding: 8px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.cal-cell:hover {
  color: var(--white);
  background: var(--border);
}
.cal-cell.today {
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
}
.cal-cell.has-event {
  color: var(--white);
}
.cal-cell.has-event::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}
.cal-cell.has-event.today::after {
  background: var(--black);
}
.cal-cell.other-month {
  opacity: 0.2;
}

/* Agenda list */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--black);
  border-left: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.agenda-item:hover {
  border-left-color: var(--orange);
  background: var(--card);
}

.agenda-date {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 20px;
}
.agenda-date-day {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--orange);
}
.agenda-date-mon {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.agenda-info-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.agenda-info-where {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.agenda-time {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--muted);
  text-align: right;
}

/* ─── PODCAST ─── */
#podcast {
}

.podcast-featured {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}
.podcast-featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

.podcast-featured-label {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.podcast-featured-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.podcast-featured-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
}

.podcast-player {
  min-width: 280px;
}

.player-artwork {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #1a0a00, #2a1500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.player-artwork-logo {
  width: 80px;
  height: 80px;
  opacity: 0.8;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.player-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
}
.player-btn:hover {
  color: var(--white);
}
.player-btn.play {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.player-btn.play:hover {
  background: var(--amber);
  transform: scale(1.05);
}

.progress-bar {
  width: 100%;
  height: 2px;
  background: var(--border);
  position: relative;
  cursor: pointer;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: var(--orange);
  width: 42%;
  transition: width 0.1s;
}

.player-time {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
}

.podcast-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 2px;
}

.podcast-item {
  background: var(--dark);
  padding: 30px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}
.podcast-item:hover {
  background: var(--card);
}

.podcast-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.podcast-item:hover .podcast-num {
  color: rgba(232, 82, 0, 0.2);
}

.podcast-item-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.podcast-item-meta {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}

.podcast-play-sm {
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.podcast-item:hover .podcast-play-sm {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

/* ─── MAPA ─── */
#mapa {
  background: var(--dark);
  padding: 100px 0;
}

.mapa-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  margin-top: 60px;
  background: var(--border);
  gap: 2px;
}

.mapa-info {
  background: var(--black);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mapa-dato {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.mapa-dato:last-child {
  border-bottom: none;
}

.mapa-dato-label {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mapa-dato-value {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.mapa-iframe-wrapper {
  background: var(--card);
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.mapa-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(0.7);
  transition: filter 0.3s;
}
.mapa-iframe-wrapper:hover iframe {
  filter: grayscale(40%) contrast(1.1) brightness(0.9);
}

.mapa-overlay-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(8, 8, 8, 0.85);
  padding: 8px 14px;
  pointer-events: none;
}

/* ─── SOCIALES ─── */
#sociales {
}

.sociales-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.sociales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}

.social-card {
  background: var(--dark);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.social-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.social-card:hover {
  background: var(--card);
}
.social-card:hover::after {
  transform: scaleX(1);
}

.social-icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: all 0.3s;
}
.social-card:hover .social-icon-wrap {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

.social-platform {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

.social-count {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--white);
}

.social-handle {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--muted);
}

.social-cta {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ─── FEED INSTAGRAM ─── */
.ig-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 2px;
  background: var(--border);
}
.ig-item {
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.ig-item-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}
.ig-item:hover .ig-item-bg {
  transform: scale(1.08);
}
.ig-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 82, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-item:hover .ig-item-overlay {
  opacity: 1;
}

/* ─── FOOTER ─── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 80px 60px 40px;
  max-width: none;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.footer-brand {
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 4px;
}
.footer-logo span {
  color: var(--orange);
}
.footer-tagline {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-links a::before {
  content: "—";
  color: var(--orange);
  font-size: 10px;
  opacity: 0;
  transition: opacity 0.2s;
}
.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.footer-copy span {
  color: var(--orange);
}

/* ─── TICKER TAPE ─── */
.ticker-wrap {
  overflow: hidden;
  background: var(--orange);
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-inner {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-item {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.4;
}

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--card);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip-divider {
  background: var(--border);
  align-self: stretch;
}
.about-block {
}
.about-block-icon {
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
}
.about-block-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.about-block-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── ANIMACIONES HERO ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-1 {
  animation: fadeUp 0.8s ease 0.2s both;
}
.anim-2 {
  animation: fadeUp 0.8s ease 0.4s both;
}
.anim-3 {
  animation: fadeUp 0.8s ease 0.6s both;
}
.anim-4 {
  animation: fadeUp 0.8s ease 0.8s both;
}
.anim-5 {
  animation: fadeUp 0.8s ease 1s both;
}
.anim-stat {
  animation: fadeUp 0.8s ease 1.2s both;
}

/* ─── SVG LOGO ICON ─── */
.forja-f {
  fill: none;
}

/* ─── RESPONSIVE MEDIA ─── */
@media (max-width: 1024px) {
  nav {
    padding: 16px 30px;
  }
  nav.scrolled {
    padding: 12px 30px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 70px 30px;
  }
  .hero-content {
    padding: 120px 30px 0;
  }
  .hero-stats {
    right: 30px;
  }
  .eventos-grid {
    grid-template-columns: 1fr;
  }
  .evento-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .noticias-layout {
    grid-template-columns: 1fr;
  }
  .agenda-grid {
    grid-template-columns: 1fr;
  }
  .podcast-list {
    grid-template-columns: 1fr 1fr;
  }
  .podcast-featured {
    grid-template-columns: 1fr;
  }
  .mapa-layout {
    grid-template-columns: 1fr;
  }
  .sociales-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ig-feed {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .galeria-grid {
    grid-template-rows: repeat(3, 200px);
  }
  .about-strip {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }
  .about-strip-divider {
    display: none;
  }
  .hero-stats {
    display: none;
  }
}

/* Paleta colores galería simulados */
.g1 {
  background: linear-gradient(135deg, #1a0800 0%, #3a1500 40%, #1a0800 100%);
}
.g2 {
  background: linear-gradient(160deg, #0f0f0f 0%, #1f1000 100%);
}
.g3 {
  background: linear-gradient(120deg, #150a00 0%, #2a1200 100%);
}
.g4 {
  background: linear-gradient(200deg, #0a0a0a 0%, #1a0a00 100%);
}
.g5 {
  background: linear-gradient(80deg, #100800 0%, #250f00 100%);
}
.g6 {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0d00 100%);
}

.ig1 {
  background: linear-gradient(135deg, #1a0800, #3a1a00);
}
.ig2 {
  background: linear-gradient(135deg, #0f0f0f, #2a1200);
}
.ig3 {
  background: linear-gradient(135deg, #150a00, #1f0800);
}
.ig4 {
  background: linear-gradient(135deg, #0a0a0a, #200e00);
}
.ig5 {
  background: linear-gradient(135deg, #100800, #2a1000);
}
.ig6 {
  background: linear-gradient(135deg, #0d0800, #1f0d00);
}
