/* =============================================
   FAVIMBA – VARIABLES & FONTS
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Syne:wght@700;800&display=swap');

:root {
  --bg:           #f0ede6;
  --dark:         #1a1a1a;
  --accent:       #4f46e5;
  --text:         #1a1a1a;
  --muted:        #6b6b6b;
  --border:       rgba(26,26,26,0.10);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
}

/* =============================================
   HEADER
============================================= */
.fav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 64px;
}

.fav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.fav-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.fav-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.fav-nav a:hover { color: var(--accent); }

/* =============================================
   HERO TICKER
============================================= */
.fav-hero {
  padding: 5vw 0 0;
  overflow: hidden;
}

.fav-hero-ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 0.15em;
}

.fav-hero-inner {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  animation: ticker 18s linear infinite;
  will-change: transform;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fav-hero-dash {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 800;
  color: var(--dark);
  margin-right: 0.15em;
}

.fav-hero-em {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 800;
  color: var(--accent);
}

.fav-hero-rest {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 800;
  color: var(--dark);
}

/* =============================================
   
============================================= */
/* =============================================
   HOME — SLIDESHOW
============================================= */
.fav-slideshow {
  position: relative;
  width: calc(100% - 12vw); /* respira a los lados igual que el resto del sitio */
  margin: 4vw 6vw;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: var(--dark);
  border-radius: 4px;
}

.fav-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.fav-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fav-slide.active {
  opacity: 1;
}

.fav-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.9);
}

/* Overlay sutil */
.fav-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.2);
}

/* Flechas — más discretas, adentro */
.fav-slide-prev,
.fav-slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fav-slide-prev { left: 1.5rem; }
.fav-slide-next { right: 1.5rem; }

.fav-slide-prev:hover,
.fav-slide-next:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* Dots */
.fav-slide-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.fav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.fav-dot.active {
  background: #fff;
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .fav-slideshow {
    width: calc(100% - 8vw);
    margin: 3vw 4vw;
    aspect-ratio: 4/3;
  }
}
/* =============================================
   HOME — INTRO
============================================= */
.fav-intro {
  padding: 6vw 6vw;
  border-top: 1px solid var(--border);
}

.fav-intro-grid {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 4rem;
  align-items: start;
}

.fav-intro-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
  padding-top: 0.3rem;
}

.fav-intro-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--text);
  max-width: 680px;
}

.fav-intro-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-body);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
  padding-top: 0.3rem;
  transition: opacity 0.2s;
}

.fav-intro-link:hover { opacity: 0.65; }

@media (max-width: 768px) {
  .fav-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* =============================================
   LÍNEAS
============================================= */
.fav-lineas {
  padding: 8vw 6vw;
  border-top: 1px solid var(--border);
}

.fav-lineas-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
  font-family: var(--font-body);
}

.fav-linea {
  display: flex;
  align-items: center;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  cursor: default;
}

.fav-linea:last-child { border-bottom: 1px solid var(--border); }

.fav-linea-num {
  font-size: 0.75rem;
  color: var(--muted);
  width: 2.5rem;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.fav-linea-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

/* =============================================
   CATÁLOGO
============================================= */
.fav-catalogo {
  padding: 8vw 6vw;
  border-top: 1px solid var(--border);
}

.fav-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.fav-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.fav-section-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}

.fav-section-link:hover { opacity: 0.65; }

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

.fav-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4/5;
}

.fav-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.6s ease, filter 0.4s;
}

.fav-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.fav-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(20,20,20,0.85));
  color: #fff;
  transform: translateY(30%);
  transition: transform 0.4s ease;
}

.fav-card:hover .fav-card-info { transform: translateY(0); }

.fav-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.fav-card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.2rem;
  font-family: var(--font-body);
}

/* =============================================
   MANIFIESTO
============================================= */
.fav-manifiesto {
  padding: 10vw 6vw;
  border-top: 1px solid var(--border);
}

.fav-manifiesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 900px;
}

.fav-manifiesto blockquote em {
  color: var(--accent);
  font-style: normal;
}


/* =============================================
   FOOTER ACTUALIZADO
============================================= */
.fav-footer {
  background: var(--dark);
  color: #fff;
  padding: 5rem 6vw 2rem;
}

.fav-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fav-footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.fav-footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.5;
  font-family: var(--font-body);
}

.fav-footer-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.fav-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fav-footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  font-family: var(--font-body);
}

.fav-footer-contact a:hover {
  color: var(--accent);
}

.fav-footer-icons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.fav-footer-icons a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, transform 0.2s;
  display: flex;
}

.fav-footer-icons a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.fav-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.35;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .fav-footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fav-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* =============================================
   MENÚ HAMBURGUESA – MOBILE
============================================= */
.fav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.fav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animación X al abrir */
.fav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.fav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.fav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .fav-hamburger {
    display: flex;
  }

  .fav-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 150;
  }

  .fav-nav.open {
    display: flex;
  }

  .fav-nav a {
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 800;
  }

  .fav-about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .fav-about-text { max-width: 100%; }
  .fav-grid { grid-template-columns: 1fr 1fr; }
  .fav-manifiesto blockquote { font-size: clamp(1.6rem, 7vw, 2.5rem); }
}

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

/* =============================================
   PÁGINA: NOSOTROS — HERO
============================================= */
.nos-hero {
  padding: 8vw 6vw 6vw;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.nos-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

.nos-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
}

.nos-hero-title em {
  color: var(--accent);
  font-style: normal;
}

/* =============================================
   PÁGINA: NOSOTROS — ABOUT
============================================= */
.nos-about {
  padding: 8vw 6vw;
  border-bottom: 1px solid var(--border);
}
.nos-about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr; /* imagen ocupa 1 parte, texto 2 */
  gap: 6vw;
  align-items: start;
}
.nos-about-img img {
  width: 100%;          /* Que ocupe todo el ancho de su columna */
  height: auto;         /* Mantener proporción */
  border-radius: 8px;   /* Opcional: bordes suaves */
  display: block;       /* Eliminar espacios extra */
}

.nos-about-label {
  position: sticky;
  top: 80px;
}

.nos-about-label span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
}

.nos-about-text p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  color: var(--text);
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}

.nos-about-text p:last-child {
  margin-bottom: 0;
}

.nos-about-text strong {
  font-weight: 700;
  color: var(--accent);
}
/* =============================================
   NOSOTROS — EQUIPO
============================================= */
.nos-equipo {
  padding: 8vw 6vw;
  border-top: 1px solid var(--border);
}

.nos-equipo-header {
  margin-bottom: 4rem;
}

.nos-equipo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-top: 0.5rem;
}

.nos-equipo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.nos-equipo-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 3/4;
  cursor: default;
}

.nos-equipo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.6s ease, filter 0.4s;
}

.nos-equipo-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.nos-equipo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(10,10,10,0.92));
  color: #fff;
  transform: translateY(40%);
  transition: transform 0.4s ease;
}

.nos-equipo-card:hover .nos-equipo-info {
  transform: translateY(0);
}

.nos-equipo-nombre {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}

.nos-equipo-rol {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.25rem;
  font-family: var(--font-body);
}

.nos-equipo-ig {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-family: var(--font-body);
  transition: opacity 0.2s;
}

.nos-equipo-ig:hover { opacity: 0.7; }

/* Responsive */
@media (max-width: 768px) {
  .nos-equipo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
}

@media (max-width: 480px) {
  .nos-equipo-grid {
    grid-template-columns: 1fr;
  }
}
/* =============================================
   PÁGINA: NOSOTROS — TRAYECTORIA
============================================= */
.nos-trayectoria {
  padding: 8vw 6vw;
}

.nos-trayectoria-header {
  margin-bottom: 5rem;
}

.nos-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.nos-trayectoria-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 600px;
}

.nos-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nos-timeline-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  gap: 2rem;
  align-items: start;
}

.nos-timeline-fecha {
  text-align: right;
  padding-top: 0.15rem;
}

.nos-timeline-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.nos-timeline-month {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
  font-family: var(--font-body);
}

.nos-timeline-linea {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nos-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--dark);
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.nos-timeline-dot--accent {
  background: var(--accent);
  border-color: var(--accent);
}

.nos-timeline-line {
  width: 1px;
  flex: 1;
  min-height: 80px;
  background: var(--border);
  margin-top: 4px;
}

.nos-timeline-content {
  padding-bottom: 4rem;
}

.nos-timeline-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.nos-timeline-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
  font-family: var(--font-body);
}

.nos-timeline-content em {
  color: var(--accent);
  font-style: italic;
}

.fav-nav-active {
  color: var(--accent) !important;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* =============================================
   RESPONSIVE: NOSOTROS
============================================= */
@media (max-width: 768px) {
  .nos-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nos-about-label {
    position: static;
  }

  .nos-timeline-item {
    grid-template-columns: 70px 30px 1fr;
    gap: 1rem;
  }

  .nos-timeline-year {
    font-size: 1.1rem;
  }

  .nos-hero-title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }
}

@media (max-width: 480px) {
  .nos-timeline-item {
    grid-template-columns: 55px 24px 1fr;
    gap: 0.75rem;
  }

  .nos-timeline-fecha {
    padding-top: 0;
  }
}
/* VITRINA — HERO */
.vit-hero {
  padding: 8vw 4rem 6vw;
  border-bottom: 1px solid var(--border);
}

.vit-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

.vit-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
}

.vit-hero-title em {
  color: var(--accent);
  font-style: normal;
}

.vit-hero-sub {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
  font-family: var(--font-body);
  max-width: 600px;
}

/* VITRINA — CATEGORÍAS */
.vit-categoria {
  padding: 6vw 4rem;
  border-top: 1px solid var(--border);
}

.vit-cat-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vit-cat-num {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
}

.vit-cat-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

/* =============================================
   VITRINA — GRID Y CARDS
============================================= */

.vit-categoria {
  padding-left: 4rem;
}

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

.vit-card {
  display: flex;
  flex-direction: column;
}

.vit-card-img {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 3/4;
}

.vit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: transform 0.6s ease, filter 0.4s;
}

.vit-card:hover .vit-card-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.vit-card-cta {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: #fff;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.vit-card:hover .vit-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.vit-card-info {
  padding: 1rem 0.2rem 0;
}

.vit-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
/* =============================================
   MULTIMEDIA — HERO
============================================= */
.mul-hero {
  padding: 8vw 4rem 6vw;
  border-bottom: 1px solid var(--border);
}

.mul-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

.mul-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
}

.mul-hero-title em {
  color: var(--accent);
  font-style: normal;
}

.mul-hero-sub {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
  font-family: var(--font-body);
  max-width: 600px;
}

/* =============================================
   MULTIMEDIA — SERVICIOS
============================================= */
.mul-servicios {
  padding: 6vw 4rem;
  border-bottom: 1px solid var(--border);
}

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

.mul-servicio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mul-servicio-num {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
}

.mul-servicio-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
}

.mul-servicio-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  font-family: var(--font-body);
}

/* =============================================
   MULTIMEDIA — VIDEOS
============================================= */
.mul-videos {
  padding: 6vw 4rem;
}

.mul-videos-header {
  margin-bottom: 4rem;
}

.mul-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.mul-videos-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--dark);
}

.mul-videos-title em {
  color: var(--accent);
  font-style: normal;
}

.mul-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.mul-video-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.mul-video-thumb {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 16/9;
}

.mul-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
  transition: transform 0.5s ease, filter 0.4s;
}

.mul-video-card:hover .mul-video-thumb img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.75);
}

.mul-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.mul-video-card:hover .mul-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.mul-video-info {
  padding: 1rem 0.2rem 0;
}

.mul-video-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

/* =============================================
   MULTIMEDIA — MODAL
============================================= */
.mul-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mul-modal.open {
  opacity: 1;
  pointer-events: all;
}

.mul-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(4px);
}

.mul-modal-box {
  position: relative;
  z-index: 10;
  width: 90vw;
  max-width: 900px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.mul-modal.open .mul-modal-box {
  transform: translateY(0);
}

.mul-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px;
}

.mul-modal-close:hover {
  opacity: 1;
}

.mul-modal-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.mul-modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   MULTIMEDIA — RESPONSIVE
============================================= */
@media (max-width: 768px) {
  .mul-hero,
  .mul-servicios,
  .mul-videos {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mul-servicios-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mul-videos-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .mul-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .mul-modal-box {
    width: 95vw;
  }

  .mul-modal-close {
    top: -2.5rem;
  }
}

@media (max-width: 480px) {
  .mul-videos-grid {
    grid-template-columns: 1fr;
  }
}
