/* ==========================================================================
   ROCEMI — Hoja de estilos principal
   Identidad teatral: bordó, negro vino, amarillo ROCEMI, blanco.
   Tipografía única: Montserrat.
   ========================================================================== */

:root{
  /* Paleta institucional */
  --bordo:        #6e0f1f;
  --bordo-fuerte:  #4a0a15;
  --bordo-claro:  #8c1a2c;
  --negro-vino:   #170609;
  --negro-vino-2: #200a0e;
  --amarillo:     #f2c84b;
  --amarillo-fuerte: #e3b325;
  --blanco:       #ffffff;
  --hueso:        #f6ece2;
  --morado:       #5b2a86;
  --fucsia:       #c2368c;
  --texto-tenue:  rgba(255,255,255,.75);
  --texto-tenue-fuerte: rgba(255,255,255,.55);

  /* Tipografía */
  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --ancho-max: 1200px;
  --radio: 14px;
  --radio-boton: 40px;
  --sombra: 0 10px 30px rgba(0,0,0,.35);

  --header-alto: 92px;
  --header-alto-scroll: 62px;
}

/* -------------------------------------------------- Reset base ---- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
[id]{ scroll-margin-top: calc(var(--header-alto-scroll) + 20px); }
body{
  margin: 0;
  font-family: var(--font);
  background: var(--negro-vino);
  color: var(--blanco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5,h6{
  font-family: var(--font);
  font-weight: 800;
  margin: 0 0 .5em;
  line-height: 1.25;
}
p{ margin: 0 0 1em; }

.contenedor{
  width: 100%;
  max-width: var(--ancho-max);
  margin: 0 auto;
  padding: 0 24px;
}

.seccion{ padding: 80px 0; position: relative; }
.seccion--bordo{ background: linear-gradient(180deg, var(--bordo) 0%, var(--bordo-fuerte) 100%); }
.seccion--oscura{ background: var(--negro-vino-2); }
.seccion--morado{ background: linear-gradient(135deg, var(--morado) 0%, #3a1a5c 100%); }

/* Textura de telón sutil, sin sobrecargar */
.seccion--telon{
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,.12) 0 3px, transparent 3px 42px);
}

.titulo-seccion{
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--amarillo);
  text-align: center;
  margin-bottom: .3em;
}
.subtitulo-seccion{
  text-align: center;
  color: var(--texto-tenue);
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 17px;
}
.linea-decorativa{
  width: 70px;
  height: 4px;
  background: var(--amarillo);
  border-radius: 4px;
  margin: 14px auto 2.5rem;
}

/* -------------------------------------------------- Botones ---- */
.boton{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radio-boton);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.boton--amarillo{
  background: var(--amarillo);
  color: var(--negro-vino);
}
.boton--amarillo:hover{
  background: var(--amarillo-fuerte);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242,200,75,.35);
}
.boton--contorno{
  background: transparent;
  color: var(--blanco);
  border-color: var(--blanco);
}
.boton--contorno:hover{
  background: var(--blanco);
  color: var(--negro-vino);
  transform: translateY(-2px);
}
.boton--whatsapp{
  background: #25D366;
  color: #04220f;
}
.boton--whatsapp:hover{
  background: #1fbd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.grupo-botones{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* -------------------------------------------------- Header ---- */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-alto);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(23,6,9,.92) 0%, rgba(23,6,9,.78) 100%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(242,200,75,.15);
  transition: height .3s ease, background .3s ease;
}
.header.header--scroll{
  height: var(--header-alto-scroll);
  background: rgba(23,6,9,.97);
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.header__contenedor{
  width: 100%;
  max-width: var(--ancho-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header__logo{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img{
  height: 58px;
  width: auto;
  transition: height .3s ease;
}
.header.header--scroll .header__logo img{ height: 40px; }

/* Navegación desktop */
.nav{ display: flex; align-items: center; }
.nav__lista{
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__item{ position: relative; }
.nav__enlace{
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 11px;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--blanco);
  border-radius: 8px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav__enlace:hover,
.nav__item.activo > .nav__enlace{
  color: var(--amarillo);
  background: rgba(242,200,75,.08);
}
.nav__caret{ font-size: 10px; transition: transform .2s ease; }
.nav__item:hover .nav__caret{ transform: rotate(180deg); }

.nav__submenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--negro-vino-2);
  border: 1px solid rgba(242,200,75,.2);
  border-radius: var(--radio);
  padding: 10px;
  box-shadow: var(--sombra);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav__item:hover .nav__submenu,
.nav__item.submenu-abierto .nav__submenu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu a{
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  color: var(--texto-tenue);
}
.nav__submenu a:hover{ color: var(--amarillo); background: rgba(242,200,75,.08); }

.header__cta{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__cta .boton{
  padding: 10px 20px;
  font-size: 12.5px;
}

/* Botón hamburguesa */
.hamburguesa{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  flex-shrink: 0;
}
.hamburguesa span{
  display: block;
  width: 26px;
  height: 3px;
  background: var(--amarillo);
  border-radius: 3px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburguesa.activo span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburguesa.activo span:nth-child(2){ opacity: 0; }
.hamburguesa.activo span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* -------------------------------------------------- Hero / Inicio ---- */
.hero{
  position: relative;
  min-height: max(100vh, 560px);
  padding-top: var(--header-alto);
  display: flex;
  align-items: center;
}
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__velo{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,6,9,.55) 0%, rgba(23,6,9,.55) 40%, rgba(23,6,9,.92) 100%);
  z-index: 1;
}
.hero__contenido{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--ancho-max);
  margin: 0 auto;
  padding: 0 24px;
}
.hero__franja{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.hero__marca{
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.hero__marca img{ height: clamp(72px, 8vw, 96px); width: auto; }
.hero__marca img:nth-child(2){ height: clamp(63px, 7vw, 84px); }
.hero__texto{ max-width: 640px; }
.hero__texto h1{
  font-size: clamp(30px, 5vw, 52px);
  text-transform: uppercase;
  color: var(--blanco);
}
.hero__texto h1 span{ color: var(--amarillo); }
.hero__texto p{
  font-size: 17px;
  color: var(--texto-tenue);
  max-width: 520px;
}
.hero__botones{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* -------------------------------------------------- Promo banner ---- */
.promo{
  display: flex;
  justify-content: center;
  margin-top: -60px;
  position: relative;
  z-index: 3;
  padding: 0 24px;
}
.promo__tarjeta{
  max-width: 900px;
  width: 100%;
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 2px solid rgba(242,200,75,.5);
}
.promo__tarjeta img{ width: 100%; }

/* -------------------------------------------------- Tarjetas / grillas genéricas ---- */
.grilla{
  display: grid;
  gap: 28px;
}
.grilla--2{ grid-template-columns: repeat(2, 1fr); }
.grilla--3{ grid-template-columns: repeat(3, 1fr); }
.grilla--4{ grid-template-columns: repeat(4, 1fr); }

.tarjeta{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(242,200,75,.15);
  border-radius: var(--radio);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tarjeta:hover{
  transform: translateY(-6px);
  box-shadow: var(--sombra);
  border-color: rgba(242,200,75,.5);
}
.tarjeta__img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--negro-vino-2);
}
.tarjeta__cuerpo{ padding: 22px; }
.tarjeta__cuerpo h3{ font-size: 19px; color: var(--amarillo); text-transform: uppercase; }
.tarjeta__cuerpo p{ color: var(--texto-tenue); font-size: 15px; margin-bottom: 12px; }

/* Tarjetas tipo poster (ROCEMI Films, Catálogo de Obras): la imagen debe verse completa */
.tarjeta--poster{
  background: rgba(255,255,255,.06);
  border-color: rgba(242,200,75,.35);
}
.tarjeta--poster .tarjeta__img{
  aspect-ratio: 3/4;
  object-fit: contain;
  background: rgba(0,0,0,.25);
  padding: 10px;
}

/* Tarjetas sobre fondo claro (para catálogos tipo disfraces) */
.tarjeta--clara{
  background: var(--hueso);
  border: 1px solid rgba(0,0,0,.08);
}
.tarjeta--clara .tarjeta__img{ background: #fff; object-fit: contain; padding: 10px; }
.tarjeta--clara .tarjeta__cuerpo h3{ color: var(--bordo); }
.tarjeta--clara .tarjeta__cuerpo p{ color: #6b5a52; }

/* -------------------------------------------------- Contenido con imagen al lado ---- */
.bloque{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bloque--invertido{ direction: rtl; }
.bloque--invertido > *{ direction: ltr; }
.bloque__img img{
  width: 100%;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.bloque__texto h2{
  color: var(--amarillo);
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
}
.bloque__texto p{ font-size: 16px; color: var(--texto-tenue); }

/* -------------------------------------------------- Galería tipo feed (disfraces) ---- */
.feed{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feed__item{
  position: relative;
  aspect-ratio: 1/1;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.feed__item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: opacity .3s ease;
}
.feed__item img.feed__img--alt{
  position: absolute;
  inset: 0;
  opacity: 0;
}
.feed__item:hover img.feed__img--alt{ opacity: 1; }
.feed__flecha{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(110,15,31,.85);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 2;
  font-size: 14px;
}
.feed__item:hover .feed__flecha{ opacity: 1; }
.feed__flecha--izq{ left: 8px; }
.feed__flecha--der{ right: 8px; }

.categorias{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
}
.categorias a{
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(242,200,75,.4);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--amarillo);
  transition: background .2s ease, color .2s ease;
}
.categorias a:hover, .categorias a.activa{
  background: var(--amarillo);
  color: var(--negro-vino);
}

/* -------------------------------------------------- Timeline FITE ---- */
.timeline{
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline::before{
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(242,200,75,.35);
}
.timeline__item{ position: relative; padding-left: 64px; }
.timeline__punto{
  position: absolute;
  left: 15px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amarillo);
  border: 4px solid var(--negro-vino);
}
.timeline__item h3{ color: var(--amarillo); font-size: 18px; text-transform: uppercase; margin-bottom: 6px; }
.timeline__item p{ color: var(--texto-tenue); font-size: 15px; }

/* -------------------------------------------------- Equipo / profesores ---- */
.persona{
  text-align: center;
}
.persona img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--amarillo);
  margin-bottom: 14px;
}
.persona h3{ font-size: 16px; color: var(--amarillo); margin-bottom: 4px; }
.persona span{ font-size: 13px; color: var(--texto-tenue-fuerte); text-transform: uppercase; letter-spacing: .5px; }

/* -------------------------------------------------- Noticias ---- */
.noticia{ display: flex; flex-direction: column; }
.noticia__fecha{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--amarillo);
  font-weight: 700;
  margin-bottom: 8px;
}
.tarjeta__cuerpo h3 a:hover{ text-decoration: underline; }
.noticia__extracto{ flex: 1; }
.noticia__link{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blanco);
  border-bottom: 2px solid var(--amarillo);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* -------------------------------------------------- Artículo de noticia ---- */
.noticia-categoria{
  display: inline-block;
  padding: 7px 18px;
  border-radius: 30px;
  background: rgba(242,200,75,.12);
  border: 1px solid rgba(242,200,75,.5);
  color: var(--amarillo);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 16px;
  transition: background .2s ease, color .2s ease;
}
a.noticia-categoria:hover{ background: var(--amarillo); color: var(--negro-vino); }
.tarjeta__cuerpo .noticia-categoria{ margin-bottom: 10px; padding: 5px 14px; font-size: 11px; }

.noticia-foto{ margin: 0 0 1.6rem; }
.noticia-foto__credito{
  font-size: 13px;
  color: var(--texto-tenue-fuerte);
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}
.noticia-bajada{
  font-size: 20px;
  font-weight: 600;
  color: var(--blanco);
  line-height: 1.55;
  border-left: 3px solid var(--amarillo);
  padding-left: 18px;
  margin-bottom: 1.8rem;
}
.noticia-byline{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--texto-tenue-fuerte);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.noticia-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}
.noticia-tags a{
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid rgba(242,200,75,.35);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--amarillo);
  transition: background .2s ease, color .2s ease;
}
.noticia-tags a:hover{ background: var(--amarillo); color: var(--negro-vino); }
.noticia-compartir{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.noticia-compartir__label{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--texto-tenue);
  margin-right: 4px;
}
.noticia-compartir__btn{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--amarillo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amarillo);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.noticia-compartir__btn:hover{ background: var(--amarillo); color: var(--negro-vino); transform: translateY(-2px); }
.noticia-compartir__btn svg{ width: 18px; height: 18px; }

/* -------------------------------------------------- Footer ---- */
.footer{
  background: var(--negro-vino-2);
  border-top: 1px solid rgba(242,200,75,.15);
  padding: 64px 0 24px;
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo img{ height: 72px; margin-bottom: 16px; }
.footer__descripcion{ color: var(--texto-tenue); font-size: 14px; max-width: 320px; }
.footer h4{
  color: var(--amarillo);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 18px;
}
.footer__lista li{ margin-bottom: 10px; }
.footer__lista a{
  color: var(--texto-tenue);
  font-size: 14px;
  transition: color .2s ease;
}
.footer__lista a:hover{ color: var(--amarillo); }
.footer__contacto li{
  color: var(--texto-tenue);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}
.footer__base{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  color: var(--texto-tenue-fuerte);
  font-size: 13px;
}

/* -------------------------------------------------- WhatsApp flotante ---- */
.whatsapp-flotante{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  z-index: 900;
  transition: transform .2s ease;
}
.whatsapp-flotante:hover{ transform: scale(1.08); }
.whatsapp-flotante svg{ width: 30px; height: 30px; }

/* -------------------------------------------------- Encabezado de página interna ---- */
.portada-interna{
  padding: calc(var(--header-alto) + 70px) 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--bordo) 0%, var(--negro-vino) 100%);
  position: relative;
}
.portada-interna h1{
  font-size: clamp(30px, 5vw, 48px);
  text-transform: uppercase;
  color: var(--blanco);
}
.portada-interna p{
  color: var(--amarillo);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 15px;
}

/* -------------------------------------------------- Hero / Panel FITE ---- */
.fite-hero{
  position: relative;
  padding: calc(var(--header-alto) + 46px) 0 60px;
  overflow: hidden;
  text-align: center;
}
.fite-hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fite-hero__velo{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,6,9,.78) 0%, rgba(23,6,9,.58) 45%, rgba(23,6,9,.94) 100%);
  z-index: 1;
}
.fite-hero__contenido{
  position: relative;
  z-index: 2;
}
.fite-hero__botones{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.fite-hero__botones a{
  display: block;
  width: 200px;
  max-width: 44vw;
  transition: transform .2s ease;
}
.fite-hero__botones a:hover{ transform: translateY(-2px); }
.fite-hero__botones img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.fite-hero__redes{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}
.fite-hero__redes a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--amarillo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amarillo);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.fite-hero__redes a:hover{
  background: var(--amarillo);
  color: var(--negro-vino);
  transform: translateY(-2px);
}
.fite-hero__redes svg{ width: 18px; height: 18px; }
.fite-hero__panel{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 34px;
}
.fite-hero__decoracion{
  height: 240px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.fite-hero__logo{
  height: 190px;
  width: auto;
  object-fit: contain;
}
.fite-hero__texto p{
  color: var(--amarillo);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 15px;
  margin-bottom: 8px;
}
.fite-hero__texto h1{
  font-size: clamp(28px, 5vw, 46px);
  text-transform: uppercase;
  color: var(--blanco);
  max-width: 820px;
  margin: 0 auto;
}

/* Producciones — hub de accesos */
.hub{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hub__tarjeta{
  padding: 40px 28px;
  text-align: center;
  background: linear-gradient(160deg, rgba(242,200,75,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(242,200,75,.2);
  border-radius: var(--radio);
  transition: transform .25s ease, border-color .25s ease;
}
.hub__tarjeta:hover{ transform: translateY(-6px); border-color: var(--amarillo); }
.hub__tarjeta img{ height: 56px; margin: 0 auto 18px; }
.hub__tarjeta h3{ color: var(--amarillo); text-transform: uppercase; font-size: 19px; margin-bottom: 10px; }
.hub__tarjeta p{ color: var(--texto-tenue); font-size: 14px; margin-bottom: 18px; }
