/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
footer {
  position: relative;
  isolation: isolate;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: var(--nav-footer-texture-opacity);
  background-image: var(--nav-footer-texture);
  background-repeat: repeat;
  background-size: var(--nav-footer-texture-size);
  background-position: center;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-height);
  border: none;
  pointer-events: none;
}

#nav.nav-menu-open {
  pointer-events: auto;
}

.nav-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  isolation: isolate;
}

.nav-inner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background-color: var(--nav-glass-bg);
  -webkit-backdrop-filter: blur(var(--nav-glass-blur));
  backdrop-filter: blur(var(--nav-glass-blur));
}

.nav-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand-logo {
  height: 5rem;
  width: auto;
  display: block;
}

.nav-links {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0 0% 0%);
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  transition: text-decoration-color 0.15s ease;
  text-underline-offset: 3px;
}
.nav-links a:hover {
  text-decoration: underline;
}

.nav-links a.nav-link-active {
  text-decoration: underline;
}

.nav-link-contact {
  color: hsl(0 0% 0%) !important;
  font-weight: 500;
}

.nav-link-contact:hover,
.nav-link-contact.nav-link-active {
  color: hsl(0 0% 0%) !important;
  background-color: transparent !important;
  text-decoration: underline;
}

.nav-overlay {
  display: none;
}

.nav-burger {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  border: none;
  background: transparent;
  color: hsl(0 0% 9%);
}
.nav-burger:hover { background: var(--nav-glass-link-hover-bg); }
.nav-burger-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-burger-icon--close {
  display: none;
}

.nav-burger.active .nav-burger-icon--menu {
  display: none;
}

.nav-burger.active .nav-burger-icon--close {
  display: block;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

#hero.dragging {
  cursor: grabbing;
}

#hero.dragging .slide-content {
  pointer-events: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* placeholder bg */
.slide-bg {
  position: absolute;
  inset: 0;
  background: hsl(var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-bg-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.08;
}

.slide-bg-icon svg { width: 64px; height: 64px; }

.slide-bg-icon p {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
}

#slide-0 .slide-bg--mf {
  background-color: #000;
  background-image: url('/images/WhatsApp Image 2026-06-25 at 18.49.01 (1).jpeg?v=20260626');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#slide-1 .slide-bg--ispa {
  background-color: #000;
  background-image: url('/images/ChatGPT Image Jun 25, 2026, 01_57_23 AM.png?v=20260626');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#slide-2 .slide-bg--coi {
  background-color: #000;
  background-image: url('/images/WhatsApp Image 2026-06-25 at 19.03.42.jpeg?v=20260626');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#slide-1 .slide-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

#slide-0 .slide-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

#slide-2 .slide-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

/* gradient overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.48) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 4rem 0;
}

.slide-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 560px;
  margin-left: calc((100vw - 1200px) / 2);
  animation: none;
}

.slide.active .slide-content-inner {
  animation: slide-content-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slide-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1232px) {
  .slide-content-inner { margin-left: 1.5rem; }
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 0.75rem;
  margin-bottom: 0.875rem;
}

#hero .slide-title {
  color: #fff;
}

.slide-copy {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  max-width: 440px;
  margin-bottom: 1.5rem;
}

#hero .slide-copy {
  color: rgba(255, 255, 255, 0.88);
}

.slide-meta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--brand));
  margin-bottom: 1.5rem;
}

#hero .slide-meta {
  color: rgba(255, 255, 255, 0.92);
}

#hero .badge-brand {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.slide-title + .slide-meta {
  margin-top: -0.375rem;
  margin-bottom: 1rem;
}

/* controls */
.hero-controls {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid hsl(var(--foreground) / 0.15);
  background: hsl(var(--background) / 0.2);
  backdrop-filter: blur(6px);
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
}

.hero-arrow-prev {
  left: 1.25rem;
}

.hero-arrow-next {
  right: 1.25rem;
}

#hero:hover .hero-arrow {
  opacity: 1;
}

.hero-arrow:hover {
  background: hsl(var(--background) / 0.5);
}

.hero-dot {
  width: 2rem;
  height: 2px;
  border-radius: 1px;
  background: hsl(var(--foreground) / 0.2);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  position: relative;
  overflow: hidden;
}

.hero-dot.active {
  background: hsl(var(--foreground) / 0.2);
  width: 2.5rem;
}

.hero-dot-progress {
  position: absolute;
  inset: 0;
  background: hsl(0 0% 98%);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
}

.hero-dot.active .hero-dot-progress {
  animation: dot-progress 6s linear forwards;
}

@keyframes dot-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ─────────────────────────────────────────
   SECTIONS — shared
───────────────────────────────────────── */
.section-eyebrow {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  max-width: 480px;
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   QUIÉNES SOMOS
───────────────────────────────────────── */
#quienes {
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
}

.quienes-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: start;
}

.quienes-img-wrap {
  position: relative;
}

.quienes-placeholder {
  position: relative;
  aspect-ratio: 4/5;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.quienes-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* decorative brand line — alineada al borde del placeholder */
.quienes-placeholder::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: hsl(var(--brand));
  border-radius: 2px;
}

.quienes-text p {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.quienes-text .btn-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.quienes-more {
  display: none;
}

.quienes-more.is-open {
  display: block;
}

.quienes-toggle {
  margin-top: 0.25rem;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--brand));
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quienes-toggle:hover {
  opacity: 0.85;
}

/* ─────────────────────────────────────────
   PROGRAMAS
───────────────────────────────────────── */
#programas {
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
}

/* shadcn Tabs */
.tabs-list {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  padding: 0.25rem;
  gap: 0.125rem;
  margin-bottom: 2rem;
}

.tab-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.875rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: transparent;
  color: hsl(var(--muted-foreground));
  transition: all 0.15s;
  white-space: nowrap;
}
.tab-trigger.active {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  box-shadow: 0 1px 3px hsl(0 0% 0% / 0.08);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.prog-grid:not(.is-expanded) .prog-card:nth-child(n+7) {
  display: none;
}

.prog-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Program card */
.prog-card {
  display: flex;
  flex-direction: column;
}

.prog-thumb {
  aspect-ratio: 16/9;
  background: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.prog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prog-badge-wrap {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
}

.prog-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.prog-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.prog-header .badge {
  font-size: 0.625rem;
  padding: 0.0625rem 0.4375rem;
  line-height: 1.3;
}

@media (min-width: 769px) {
  .prog-header {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .prog-header .prog-title {
    min-width: 0;
  }

  .prog-header .badge {
    flex-shrink: 0;
  }
}

.prog-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.prog-schedule {
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--brand));
  line-height: 1.35;
}

.prog-channel {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.35;
}

.prog-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.prog-desc {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
  flex: 1;
}

.prog-links,
.evento-links {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────
   EVENTOS
───────────────────────────────────────── */
#eventos {
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
}

.evento-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.evento-thumb {
  background: hsl(var(--muted));
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  position: relative;
  overflow: hidden;
}

.evento-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evento-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.evento-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.evento-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   MARCAS
───────────────────────────────────────── */
#marcas {
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  text-align: center;
}

.marcas-header { max-width: 480px; margin: 0 auto 3rem; }
.marcas-header .section-lead { margin: 0 auto; }

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}

.marca-cell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  transition: background-color 0.15s, color 0.15s;
  padding: 1rem;
}
.marca-cell:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--foreground));
}
.marca-cell:nth-child(4n) { border-right: none; }
.marca-cell img { max-width: 120px; max-height: 40px; object-fit: contain; filter: brightness(0) opacity(0.35); transition: filter 0.15s; }
.marca-cell:hover img { filter: brightness(0) opacity(0.85); }

/* ─────────────────────────────────────────
   PRODUCTORA
───────────────────────────────────────── */
#productora {
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
}

.productora-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.productora-inner p {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 2.5rem 0;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid hsl(var(--border));
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: hsl(var(--brand));
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.02em;
}

.productora-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}

.productora-gallery-cell {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--muted) / 0.3);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  border-right: 1px solid hsl(var(--border));
}

.productora-gallery-cell:last-child { border-right: none; }

.productora-contact {
  text-align: left;
  margin: 0 auto 2rem;
  max-width: 400px;
}

.productora-contact .contact-info-item:first-child { border-top: 1px solid hsl(var(--border)); }

.contact-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.contact-info-value a:hover { color: hsl(var(--brand)); }

/* ─────────────────────────────────────────
   TRABAJÁ CON NOSOTROS — CTA BAND
───────────────────────────────────────── */
#trabaja {
  background: hsl(var(--brand));
  color: hsl(var(--brand-fg));
  padding: 5rem 0;
  text-align: center;
}

.trabaja-inner {
  max-width: 920px;
  margin: 0 auto;
}

#trabaja .section-eyebrow { color: hsl(var(--brand-fg) / 0.7); }
#trabaja .section-heading { color: hsl(var(--brand-fg)); margin-bottom: 2rem; }

.trabaja-emails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.trabaja-email-item {
  min-width: 0;
  padding: 1.25rem 1rem;
  background: hsl(var(--brand-fg) / 0.1);
  border: 1px solid hsl(var(--brand-fg) / 0.2);
  border-radius: var(--radius);
}

.trabaja-email-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--brand-fg) / 0.65);
  margin-bottom: 0.5rem;
}

.trabaja-email-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--brand-fg));
  text-decoration: none;
  overflow-wrap: break-word;
}

.trabaja-email-value:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-cv {
  background: hsl(var(--brand-fg));
  color: hsl(var(--brand));
  border: none;
  height: 2.75rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-cv:hover { opacity: 0.92; }

/* ─────────────────────────────────────────
   CONTACTO
───────────────────────────────────────── */
#contacto {
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
}

.contact-info-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid hsl(var(--border));
}
.contact-info-item:first-child { border-top: 1px solid hsl(var(--border)); }

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background-color: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  padding: 3.5rem 0 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.75rem;
}

.footer-brand,
.footer-col {
  flex: 0 1 auto;
  min-width: 0;
}

.footer-brand-link {
  display: inline-block;
  margin-bottom: 0;
  line-height: 0;
}

.footer-brand-logo {
  height: 3.5rem;
  width: auto;
  display: block;
}

.footer-brand-logo--vertical {
  height: 10.5rem;
}

.footer-tagline {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(0 0% 18%);
  max-width: 16rem;
  line-height: 1.55;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(0 0% 22%);
  margin-bottom: 0.625rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.footer-nav a,
.footer-contact-line {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0 0% 0%);
  text-decoration: none;
  line-height: 1.45;
}

.footer-nav a {
  padding: 0.125rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.footer-nav a:hover {
  border-bottom-color: hsl(0 0% 0%);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.footer-contact-line {
  margin: 0;
}

.footer-contact a.footer-contact-line:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.375rem;
  min-height: 2.375rem;
  padding: 0 1rem;
  background-color: hsl(0 0% 9%);
  color: hsl(0 0% 100%) !important;
  border-radius: var(--radius);
  font-size: 0.8125rem !important;
  font-weight: 500;
  transition: opacity 0.15s ease;
}

.footer-contact-cta:hover {
  opacity: 0.88;
  text-decoration: none !important;
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 1.25rem 0 1.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: hsl(0 0% 0%);
  line-height: 1.5;
}

/* Scroll reveal */
#quienes, #programas, #eventos, #marcas, #productora, #trabaja, #contacto {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

#quienes.revealed, #programas.revealed, #eventos.revealed,
#marcas.revealed, #productora.revealed, #trabaja.revealed, #contacto.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: hsl(0 0% 9%);
  color: hsl(0 0% 98%);
  border: 1px solid hsl(0 0% 20%);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 24px hsl(0 0% 0% / 0.25);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .slide, .slide-content-inner, #quienes, #programas,
  #eventos, #marcas, #productora, #trabaja, #contacto,
  .toast { transition: none; animation: none; }
}
