/* ═══════════════════════════════════════════════════
   REWIRED 2026 — styles/style.css
   Fiel al mockup: hero con foto industrial + caja amarilla
   Navbar blanco con logo en caja negra
═══════════════════════════════════════════════════ */

:root {
  --y:    #FFD600;
  --k:    #1D1D1B;
  --k2:   #000000;
  --w:    #FFFFFF;
  --gray: #F2F2F0;
  --g2:   #E0E0DC;

  --font-title: 'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;

  --nav-h: 68px;
  --max:   1140px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--k); background: var(--w); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { line-height: 1.7; margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section    { padding: 72px 0; }
.section--gray { background: var(--gray); }
.section-lead  { max-width: 600px; font-size: 1rem; margin-bottom: 2rem; }

/* ── Títulos ── */
.stitle {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.stitle--xl { font-size: clamp(3rem, 6vw, 5rem); }
.stitle--line {
  border-bottom: 3.5px solid var(--k);
  display: inline-block;
  padding-bottom: 5px;
}

/* ═══ NAVBAR ══════════════════════════════════════
   Transparente por default, negro al hacer scroll.
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: transparent;
  border-bottom: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-bg { background: transparent; padding: 0; display: inline-flex; align-items: center; }
.nav-logo-light { display: block; height: 30px; width: auto; }

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

/* ── ESTADO 1: Transparente (sobre el hero) */
.nav-pill {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--w);
  padding: 7px 24px 9px;
  line-height: 1;
  border: 1.5px solid var(--w);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.nav-pill:hover { background: var(--y); color: var(--k); border-color: var(--y); }

/* ── ESTADO 2: Scrolled (sección clara) */
#navbar.scrolled .nav-pill {
  background: transparent;
  color: #1D1D1B;
  border-color: #1D1D1B;
}
#navbar.scrolled .nav-pill:hover { background: var(--y); color: var(--k); border-color: var(--y); }
#navbar.scrolled .nav-pill--dark:hover { background: var(--y); color: var(--k); border-color: var(--y); }

/* ── ESTADO 3: Scrolled sobre sección oscura */
#navbar.scrolled.over-dark .nav-pill {
  color: var(--w);
  border-color: rgba(255, 255, 255, 0.55);
}
#navbar.scrolled.over-dark .nav-pill:hover { background: var(--y); color: var(--k); border-color: var(--y); }

/* Accesibilidad: visualmente oculto pero presente para lectores de pantalla y SEO */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* hamburger spans blancos en ambos estados */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--w); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══ HERO ═══════════════════════════════════════
   Foto industrial gris de fondo.
   Rectángulo amarillo centrado con REWIRED × 3.
   Texto "De parte de SEING." debajo sobre la foto.
═══════════════════════════════════════════════════ */
#hero {
  margin-top: 0;
  position: relative;
  min-height: clamp(500px, 82vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/fondos/ReWiredFondoHero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Rectángulo amarillo con logo REWIRED */
.hero-box {
  display: inline-block;
  animation: heroIn 0.7s var(--ease) both;
}

.hero-logo-img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
}

@keyframes heroIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Logo SEING abajo a la derecha */
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-end;
  margin-top: 10px;
  animation: heroIn 0.7s var(--ease) 0.3s both;
}
.hero-departe {
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-seing-logo {
  height: 30px;
  width: auto;
  transform: translateY(-4px);
}

/* ═══ TICKER ══════════════════════════════════════ */
.ticker {
  background: var(--k);
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: tick-fwd 25s linear infinite;
}
.ticker-rev { animation: tick-rev 30s linear infinite; }
.ticker-track span {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w);
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
}
.ticker-track .dot { color: var(--w); letter-spacing: 0; font-size: 3rem; font-weight: 900; line-height: 1; transform: translateY(-9%); display: inline-flex; align-items: center; }
@keyframes tick-fwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes tick-rev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ═══ QUÉ ES ══════════════════════════════════════ */
.que-es-section { position: relative; }
.que-es-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.que-es-text p { font-size: 0.95rem; color: #333; line-height: 1.7; margin-bottom: 14px; }
.marca {
  color: var(--y);
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.que-es-cable {
  position: absolute;
  top: -4px;
  right: 0;
  width: 560px;
  height: auto;
  pointer-events: none;
  transform: rotate(180deg);
}

/* ═══ HABILIDADES ═════════════════════════════════ */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: var(--max);
  width: 100%;
  margin-top: 48px;
}
.skill-box {
  padding: 32px 40px 24px;
  border-left: 4px solid var(--y);
}
.skill-box--light { background: var(--w); }
.skill-box--dark  { background: var(--k); color: var(--w); border-left: none; }

.skill-label {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1;
}

.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.skill-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.22);
}
.skill-list li:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.22);
}
.skill-box--dark .skill-list li:last-child {
  border-bottom-color: rgba(255,255,255,0.28);
}
.skill-box--dark .skill-list li {
  border-top-color: rgba(255,255,255,0.28);
}
.skill-num {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 26px;
}
.skill-box--dark .skill-num {
  color: var(--y);
  opacity: 1;
}
.skill-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

/* ═══ HORARIO ═════════════════════════════════════ */
.horario-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

/* Acordeón */
.accordion { border: 1.5px solid #D4D4D4; }
.acc { border-bottom: 1.5px solid #D4D4D4; }
.acc:last-child { border-bottom: none; }

.acc--open .acc-hdr { border-left-color: var(--y) !important; }

.acc-hdr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--w);
  color: var(--k);
  text-align: left;
  border-left: 5px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.acc-hdr:hover { background: var(--gray); }
.acc:nth-child(1) .acc-hdr { border-left-color: #888888; }
.acc:nth-child(2) .acc-hdr { border-left-color: #1D1D1B; }
.acc:nth-child(3) .acc-hdr { border-left-color: var(--y); }
.acc--open .acc-hdr { background: var(--k); color: var(--w); }
.acc:nth-child(1).acc--open .acc-hdr { border-left-color: #888888; }
.acc:nth-child(2).acc--open .acc-hdr { border-left-color: #1D1D1B; }
.acc:nth-child(3).acc--open .acc-hdr { border-left-color: var(--y); }
.acc-arrow { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.acc--open .acc-arrow { transform: rotate(180deg); }

.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc--open .acc-body { max-height: 900px; }

.tl-list { padding: 12px 24px 16px; }
.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 11px 8px 11px 12px;
  border-bottom: 1px solid var(--g2);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}
.tl-item:last-child { border-bottom: none; }
.tl-t {
  font-family: var(--font-title);
  font-weight: 400;
  color: #6B6B6B;
  font-size: 0.8rem;
  white-space: nowrap;
  min-width: 150px;
  padding-top: 2px;
}
.tl-e { line-height: 1.45; }
.tl-e small { display: block; font-size: 0.78rem; color: #666; font-style: italic; margin-top: 3px; }

/* Conferencias: borde amarillo izquierdo */
.tl-conf { border-left-color: var(--y); }

/* Breaks (Registro, Coffee Break): filas secundarias, menos importantes */
.tl-break { color: #9B9B9B; font-weight: 400; }
.tl-break .tl-t { color: #BDBDBD; }

/* Talleres: evento importante, borde negro */
.tl-taller { border-left-color: var(--k); }
.tl-taller .tl-e { font-weight: 700; }

/* Social (Torneo): borde amarillo */
.tl-social { border-left-color: var(--y); }
.tl-social .tl-e { font-weight: 700; }

/* Especiales (Inauguración, Clausura, Feria, Visitas): fondo gris muy claro, sin borde de color */
.tl-visita,
.tl-ceremonia,
.tl-feria { background: #F5F5F3; }

/* Panel: fondo amarillo claro, borde amarillo */
.tl-panel {
  background: #FFF8CC;
  border-left: 4px solid var(--y);
  border-bottom-color: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 8px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.tl-panel .tl-e b { display: block; color: #1D1D1B; font-weight: 900; font-size: 1.05rem; margin-top: 4px; }
.tl-panel .tl-e small { color: #1D1D1B; font-style: normal; font-size: 0.85rem; opacity: 0.65; margin-top: 4px; }

.tl-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--k);
  color: var(--y);
  padding: 2px 8px;
  border-radius: 2px;
}

/* ═══ TALLERES ════════════════════════════════════ */
.talleres-section { background: var(--w); }

.talleres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.taller-card {
  background: #fff;
  border: 1px solid #E8E8E4;
  border-top: 3px solid var(--y);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-top-width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.taller-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-top-width: 5px;
}
.taller-card:hover .taller-num   { color: var(--y); }
.taller-card:hover .taller-title { color: var(--y); }

.taller-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.taller-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2.5rem;
  color: #E0E0DC;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.taller-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--k);
  margin-bottom: 6px;
  margin-right: 28px;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.taller-who {
  font-size: 0.8rem;
  font-weight: 500;
  color: #888;
  margin-bottom: 12px;
}
.taller-desc {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.taller-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid #E8E8E4;
  padding-top: 14px;
  margin-top: auto;
}
.taller-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #999;
}

/* Tarjeta destacada */
.taller-card--featured {
  grid-column: 1 / -1;
  background: #FAFAF8;
  border-top-width: 4px;
}
.taller-card--featured:hover { border-top-width: 6px; }
.taller-card--featured .taller-num { font-size: 2.5rem; }

.taller-inner--featured {
  flex-direction: row;
  gap: 48px;
  align-items: center;
}
.taller-featured-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.taller-featured-left .taller-num {
  position: static;
  margin-bottom: 10px;
}
.taller-featured-left .taller-title { margin-right: 0; }
.taller-featured-right {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #E8E8E4;
  padding-left: 40px;
  align-self: stretch;
}
.taller-meta--featured {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  text-align: center;
  align-items: center;
}

/* ═══ PANEL ══════════════════════════════════════ */
.panel-section {
  background: var(--k2);
  padding: 72px 0;
}

/* Fila superior: PANEL gigante + metadata */
.panel-header { margin-bottom: 56px; }

.panel-header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.panel-word {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(5rem, 11vw, 9.5rem);
  line-height: 0.85;
  color: var(--y);
  letter-spacing: -0.03em;
}

.panel-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-bottom: 10px;
}
.panel-meta span {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.panel-meta-hora {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,0.9) !important;
  letter-spacing: 0.05em !important;
}

.panel-divider {
  width: 100%;
  height: 2px;
  background: var(--y);
  margin-bottom: 18px;
}

.panel-titulo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  color: rgba(255,255,255,0.75);
  max-width: 760px;
  margin: 0;
}

/* Grid de panelistas */
.panel-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.panelista-item { display: flex; flex-direction: column; }

.p-foto {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 0;
}
.p-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(55%) brightness(0.82);
  transition: transform 0.6s var(--ease), filter 0.5s;
}
.panelista-item:hover .p-foto img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.p-info {
  position: relative;
  padding: 14px 0 0;
}
/* Línea amarilla que se expande en hover */
.p-info::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--y);
  margin-bottom: 14px;
  transition: width 0.45s var(--ease);
}
.panelista-item:hover .p-info::before { width: 100%; }

.p-num {
  position: absolute;
  top: 2px;
  right: 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 1;
  color: rgba(255,255,255,0.05);
  transition: color 0.45s;
  pointer-events: none;
  user-select: none;
}
.panelista-item:hover .p-num { color: rgba(255,214,0,0.1); }

.p-grado {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--y);
}
.p-nombre {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--w);
  line-height: 1.15;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.p-area {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 214, 0, 0.55);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ═══ VISITAS ════════════════════════════════════ */
/* ═══ VISITAS — CAROUSEL CLARO ════════════════════ */
.visitas-section { background: var(--w); padding: 84px 0 72px; }

.visitas-head { margin-bottom: 40px; }
.visitas-lead { font-size: 1.1rem; max-width: 680px; color: #444; }
.visitas-head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.visitas-tag {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  white-space: nowrap;
  padding-bottom: 6px;
}

/* ─ Carousel scaffold ─ */
.vc-wrap  { position: relative; }
.vc-stage { position: relative; padding: 0 60px; }
.vc-viewport { overflow: hidden; }
.vc-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.vc-slide { flex-shrink: 0; }

/* ─ Card ─ */
.visita-card {
  background: var(--w);
  border: 1px solid #E8E8E4;
  border-top: 3px solid transparent;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  height: 100%;
  transition: border-top-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
              opacity 0.4s var(--ease), transform 0.4s var(--ease), filter 0.4s ease;
}

.vc-logo { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.vc-logo img {
  max-height: 120px;
  max-width: 85%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease);
}

.vc-sep { height: 1px; background: #EDEDE9; margin-bottom: 22px; }
.vc-body { display: flex; flex-direction: column; gap: 5px; flex: 1; justify-content: flex-end; }

.vc-nombre { font-family: var(--font-title); font-weight: 900; font-size: 1.45rem; color: var(--k); line-height: 1; }
.vc-sector { font-size: 0.78rem; color: #999; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em; }
.vc-cupo {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  background: var(--k);
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--w);
  padding: 4px 11px;
  transition: background 0.3s var(--ease);
}

/* ─ Active / inactive ─ */
.vc-slide .visita-card {
  opacity: 0.52;
  transform: scale(0.96);
}
.vc-slide.vc-active .visita-card {
  opacity: 1;
  transform: scale(1);
  border-top-color: var(--y);
  box-shadow: 0 8px 36px rgba(0,0,0,0.09);
}
.vc-slide.vc-active .vc-logo img {
  filter: grayscale(0%);
  opacity: 1;
}
.vc-slide.vc-active .vc-cupo {
  background: var(--y);
  color: var(--k);
}

@keyframes vc-blur-in {
  from { filter: blur(2px); }
  to   { filter: blur(0); }
}
.vc-slide.vc-entering .visita-card { animation: vc-blur-in 0.35s ease forwards; }

/* ─ Próximamente card ─ */
.visita-card--pronto {
  background: #F0F0EE;
  border: 1px dashed #CCCCC8;
  border-top: 3px solid transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  box-shadow: none !important;
}
.vc-pronto-icon { font-size: 2rem; font-weight: 700; color: #C8C8C4; line-height: 1; margin-bottom: 4px; }
.vc-nombre--pronto { color: #AAAAAA !important; font-size: 1.05rem !important; }
.vc-sector--pronto { color: #BBBBBA !important; letter-spacing: 0.04em; }

/* ─ Buttons ─ */
.vc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--k);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w);
  z-index: 10;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.vc-btn--prev { left: 0; }
.vc-btn--next { right: 0; }
.vc-btn svg { width: 17px; height: 17px; }
.vc-btn:hover { background: var(--y); color: var(--k); transform: translateY(-50%) scale(1.08); }
.vc-btn:disabled { opacity: 0.2; cursor: not-allowed; }
.vc-btn:disabled:hover { background: var(--k); color: var(--w); transform: translateY(-50%); }

/* ─ Pill dots ─ */
.vc-nav { display: flex; justify-content: center; margin-top: 28px; }
.vc-dots { display: flex; gap: 6px; align-items: center; }
.vc-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: #D0D0CC;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s var(--ease), width 0.35s var(--ease), border-radius 0.35s var(--ease);
}
.vc-dot.vc-dot--active {
  background: var(--y);
  width: 22px;
  border-radius: 3px;
}

/* ═══ CONFERENCISTAS ══════════════════════════════ */
.conf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.conf-card {
  display: flex;
  align-items: stretch;
  border: 1px solid #E8E8E4;
  border-left: 3px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.conf-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-left-color: var(--y);
}
.conf-card:hover .conf-nombre { color: var(--y); }
.conf-card--featured { grid-column: 1 / -1; }
.conf-card--featured .conf-foto-wrap { width: 30%; }
.conf-card--featured .conf-content   { width: 70%; }

.conf-foto-wrap {
  width: 40%;
  flex-shrink: 0;
  height: 280px;
  overflow: hidden;
}
.conf-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.conf-foto-ph {
  background: var(--k);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 3rem;
  color: var(--w);
}

.conf-content {
  width: 60%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.conf-top { display: flex; flex-direction: column; }
.conf-talk {
  font-family: var(--font-title);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  line-height: 1.4;
  margin-bottom: 10px;
}
.conf-talk--nd { color: #bbb; }
.conf-nombre {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--k);
  line-height: 1;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.conf-empresa {
  font-size: 0.82rem;
  color: #666;
  margin-top: 6px;
  line-height: 1.4;
}
.conf-sep {
  height: 1px;
  background: #E8E8E4;
  margin: 16px 0;
}
.conf-badge {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--y);
  color: var(--k);
  padding: 5px 12px;
  display: inline-block;
}

/* ═══ BOLETOS ═════════════════════════════════════ */
.boletos-section { background: var(--k); }

.boletos-section { padding: 52px 0; }

.boletos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Columna izquierda */
.boletos-col-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.boletos-titulo {
  color: var(--w);
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--y);
  margin-bottom: 0;
}

.boletos-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}

.boletos-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.boletos-footer-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.boletos-contactos { display: flex; flex-direction: column; gap: 10px; }

.boleto-ct {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  max-width: 280px;
  border-radius: 100px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s;
}
.boleto-ct:hover { transform: translateY(-2px); }
/* Ambos — negro por default */
.boletos-contactos .boleto-ct {
  background: var(--k);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--w);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s;
}
.boletos-contactos .boleto-ct .ct-nombre { color: var(--w); }
.boletos-contactos .boleto-ct .ct-tel { color: rgba(255,255,255,0.5); }
/* Hover — amarillo con brillo */
.boletos-contactos .boleto-ct:hover {
  background: var(--y);
  border-color: var(--y);
  box-shadow: 0 0 24px rgba(255,214,0,0.55), 0 6px 20px rgba(255,214,0,0.25);
  transform: translateY(-2px);
}
.boletos-contactos .boleto-ct:hover .ct-nombre { color: var(--k); }
.boletos-contactos .boleto-ct:hover .ct-tel { color: rgba(29,29,27,0.6); }

.wa-icon { width: 26px; height: 26px; flex-shrink: 0; }
.ct-info { display: flex; flex-direction: column; gap: 1px; }
.ct-nombre {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--w);
}
.ct-tel {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* Columna derecha: tarjetas */
.boletos-col-right { align-self: stretch; display: flex; align-items: center; }

.boletos-cards {
  display: flex;
  gap: 16px;
  align-items: stretch;
  width: 100%;
}

.boleto-card {
  flex: 1;
  min-width: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.boleto-card--individual { background: var(--w); }
.boleto-card--duo        { background: var(--y); }

.boleto-popular {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--k);
  color: var(--y);
  padding: 3px 9px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.boleto-etiqueta {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--k);
  margin-bottom: 8px;
}
.boleto-card--individual .boleto-etiqueta { margin-top: 24px; }

.boleto-precio {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--k);
  margin-bottom: 16px;
}

.boleto-sep {
  height: 2px;
  background: var(--y);
  margin-bottom: 12px;
}
.boleto-card--duo .boleto-sep { background: var(--k); }

.boleto-desc {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: #666;
  margin: 0;
}
.boleto-card--duo .boleto-desc { color: rgba(29,29,27,0.65); }

/* ═══ SOBRE NOSOTROS ══════════════════════════════ */
.sobre-section {
  background: #FAFAF8;
  padding: 84px 0;
}
/* Layout dos columnas */
.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* Columna texto */
.sobre-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sobre-title-wrap { display: inline-flex; flex-direction: column; }
.sobre-texto .stitle { margin-bottom: 0; }
.sobre-title-line {
  width: 100%;
  height: 3px;
  background: var(--y);
  margin-top: 10px;
}
.sobre-texto p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.8;
  max-width: 480px;
  margin-top: 22px;
}
.sobre-tag-bottom {
  margin-top: 28px;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}
/* Foto */
.sobre-foto-wrap {
  line-height: 0;
}
.sobre-foto-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 8px 8px 0px var(--k);
  transform: rotate(-1deg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.sobre-foto-wrap img:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 12px 12px 0px var(--k);
}

/* ═══ FOOTER ══════════════════════════════════════
   Fondo negro — logos PNG con fondo negro coinciden perfectamente
═══════════════════════════════════════════════════ */
#footer {
  background: var(--k2);
  padding: 20px 0;
  border-top: 3px solid var(--y);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
/* Logo REWIRED: el fondo negro del PNG = fondo negro del footer */
.footer-logo-wrap { display: flex; align-items: center; }
.footer-logo-wrap img { height: 38px; width: auto; }
.footer-info { display: flex; flex-direction: column; gap: 3px; text-align: center; }
.footer-info span { font-family: var(--font-title); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-seing-wrap { display: flex; align-items: center; gap: 8px; }
.footer-seing-wrap > span { font-family: var(--font-title); font-size: 26px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
/* Logo SEING: el fondo negro del PNG = fondo negro del footer */
.footer-seing-logo { display: flex; align-items: center; }
.footer-seing-logo img { height: 26px; width: auto; }

/* ═══ RESPONSIVE ══════════════════════════════════ */
@media (max-width: 900px) {
  .horario-layout      { grid-template-columns: 1fr; }
  .conf-grid           { grid-template-columns: 1fr; }
  .que-es-cable        { display: none; }
  .boletos-grid        { grid-template-columns: 1fr; gap: 40px; }
  .panel-fotos         { grid-template-columns: 1fr 1fr; }
  .panel-header-top    { flex-direction: column; align-items: flex-start; gap: 10px; }
  .panel-meta          { align-items: flex-start; }
  .footer-inner        { justify-content: center; text-align: center; }
  .talleres-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 58px; }

  /* Espaciado general reducido */
  .section    { padding: 52px 0; }
  .sobre-section { padding: 52px 0; }
  .visitas-section { padding: 52px 0 44px; }
  .container  { padding: 0 20px; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--w); border-bottom: 1.5px solid var(--k);
    flex-direction: column; padding: 14px; gap: 6px; z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-pill { width: 100%; text-align: center; padding: 10px; }

  /* Hero */
  .hero-box { padding: 16px 14px; }
  .hero-logo-img { max-width: 320px; }
  .hero-departe { font-size: 20px; }
  .hero-seing-logo { height: 20px; }

  /* Habilidades */
  .skills-grid { grid-template-columns: 1fr; }
  .skill-box--light { border-right: none; border-bottom: 2px solid var(--k); }

  /* Visitas carousel — botones más pequeños, menos padding */
  .vc-stage { padding: 0 40px; }
  .vc-btn   { width: 34px; height: 34px; }
  .visitas-head-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .visitas-tag { white-space: normal; }

  /* Conferencistas */
  .conf-grid { grid-template-columns: 1fr; }
  .conf-card { flex-direction: column; }
  .conf-card--featured { grid-column: auto; }
  .conf-card--featured .conf-foto-wrap { width: 100%; height: 300px; }
  .conf-card--featured .conf-content { width: 100%; }
  .conf-foto-wrap { width: 100%; height: 220px; }
  .conf-content { width: 100%; }

  /* Panel */
  .panel-fotos { grid-template-columns: 1fr; }

  /* Talleres */
  .talleres-grid { grid-template-columns: 1fr; }
  .taller-inner--featured { flex-direction: column; gap: 20px; }
  .taller-featured-right { flex: unset; border-left: none; border-top: 1px solid #E8E8E4; padding-left: 0; padding-top: 16px; align-self: auto; justify-content: flex-start; }
  .taller-meta--featured { align-items: flex-start; text-align: left; }

  /* Boletos — botones full width */
  .boleto-ct { max-width: 100%; }
  .boletos-contactos { gap: 10px; }

  /* Sobre nosotros — foto primero en móvil */
  .sobre-layout { grid-template-columns: 1fr; gap: 28px; }
  .sobre-foto-wrap { order: -1; }
  .sobre-foto-wrap img { transform: rotate(0deg); box-shadow: 5px 5px 0px var(--k); }

  /* Footer */
  .footer-seing-wrap > span { font-size: 18px; }
  .footer-seing-logo img { height: 18px; }
}
