proyecto-texto.logo-animation.scroll-cambio {
  background-color: #3498db; /* Nuevo color de fondo al hacer scroll */
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografía */
body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  scroll-behavior: smooth;
}
@font-face {
  font-family: 'Alimentary';
  src: url('../fonts/alimentary.woff2') format('woff2'),
       url('../fonts/alimentary.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
      font-family: 'RedHat';
      src: url('fonts/RedHat.woff') format('woff');   /* fallback obligatorio */
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    body {
      font-family: 'RedHat', sans-serif;
    }
/* PREMIOS */
.wrap {
  padding: 2rem 1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.claim {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 120px;            /* alto mínimo del bloque */
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;            /* por si usas filtros/overlays */
}

.bg-video {
	background: #000000;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;             /* que el vídeo llene el bloque */
  z-index: -1;                   /* detrás del texto */
  filter: brightness(0.6);       /* oscurece un poco para legibilidad */
}

.claim::before {                 /* overlay sutil opcional */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35));
  z-index: 0;
}

.claim-text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 3.2vw, 1.6rem);
  line-height: 1.25;
  padding: 1rem 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}



/* Navbar */
/* Header base */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ef3d56;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: top 0.3s ease-in-out;
}

/* Ocultación al hacer scroll */
header.hide {
  top: -100px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Logo */
.logo {
  height: 40px;
}

/* Menú normal */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'RedHat', sans-serif;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Botón hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animación ☰ -> X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    flex-direction: column;
    gap: 0.5rem;
    
    /* Diseño más sutil */
    background: rgba(239, 61, 86, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    
    /* Transición suave */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    
    /* Oculto por defecto */
    display: flex; /* siempre flex, controlamos visibilidad con opacity */
    pointer-events: none;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Links dentro del panel móvil con mejor espaciado */
  .nav-links > li {
    margin: 0;
  }

  .nav-links > li > a {
    padding: 10px 0;
    display: block;
  }
}


/* ===== SUBMENU PROJECTS ===== */
.menu-projects {
  position: relative;
}

.menu-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* === DESKTOP === */
@media (min-width: 769px) {
  /* Crea un "puente invisible" de 16px entre el enlace y el dropdown
     para que el hover no se rompa al mover el ratón hacia abajo */
  .menu-projects::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px; /* espacio del puente */
    background: transparent;
    z-index: 1999;
  }

  .menu-sub {
    /* Estado inicial: oculto */
    position: absolute;
    top: calc(100% + 16px); /* justo debajo del puente */
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    
    /* Estilo */
    background: rgba(239, 61, 86, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
    z-index: 2000;
    
    /* Transición suave */
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  /* Mostrar dropdown al hacer hover en el <li> completo */
  .menu-projects:hover .menu-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .menu-sub li {
    margin: 0;
  }

  .menu-sub a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, padding-left 0.2s ease;
    border-radius: 8px;
    margin: 0 8px;
  }

  .menu-sub a:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 24px; /* pequeño desplazamiento al hover */
  }
}

/* === MOBILE === */
@media (max-width: 768px) {
  /* Al abrir el panel hamburguesa, el submenu se integra debajo de "Projects" */
  .nav-links.active .menu-sub {
    display: block;
    position: static;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    margin: 8px 0 0 0;
  }

  .menu-sub a {
    display: block;
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.92;
    transition: opacity 0.2s ease, padding-left 0.2s ease;
  }

  .menu-sub a:hover {
    opacity: 1;
    padding-left: 20px;
  }

  /* Ocultar el submenu por defecto en móvil si el menú no está abierto */
  .menu-sub {
    display: none;
  }
}


/* Offset para header fijo (asegura que no tape el ancla) */
#proyectos,
#proyecto-ley-del-mar,
#WINGMAN,
#SHOOTING {
  scroll-margin-top: 110px;
}












/* Sección "Quiénes somos" */
.about-section {
  padding: 6rem 2rem;
  background: #f8f8f8;
  text-align: center;
}

.team-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-card {
  position: relative;
  width: 400px;
  overflow: hidden;
  border-radius: 16px;
  font-family: 'Alimentary', sans-serif;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: var(--delay, 0s);
}

.team-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  color: white;
  text-align: left;
  
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(239, 61, 86, 0.85);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 1rem;
  z-index: 2;
}

.team-card:hover .hover-overlay {
  opacity: 1;
}

.video-button {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.video-button button {
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 2rem;
  background: white;
  color: #ef3d56;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}
.video-button2 {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.video-button2 button {
  padding: 1.2rem 2.8rem;   /* doble de tamaño */
  border: none;
  border-radius: 4rem;
  background: white;
  color: #ef3d56;
  font-weight: bold;
  font-size: 2rem;          /* texto más grande */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-button2 button:hover {
  transform: scale(1.1);    /* crece un 10% al pasar el ratón */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* pequeña sombra */
}

.info-toggle {
    position: absolute;
    top: 0.5rem;
    right: 8px;
    /* estilo rectangular */
    background: #ef3d56;
    color: #fff;
    border: none;
    border-radius: 20px;       /* ya no es círculo */
    padding: 0.45rem 0.8rem;   /* ajusta a tu gusto */
    font-family: 'RedHat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;            /* compacto */
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.info-toggle:hover {
  background: #d52e46;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.info-toggle:active {
  transform: translateY(0);
}


/* ========== MODALS ========== */

.info-modal,
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 3rem 1.5rem;
  backdrop-filter: blur(3px);
}

/* MODAL INFO (texto largo y escroleable) */
.info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 2rem;
}

.info-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
	padding-right: 50px;
text-align: left;
  overflow: hidden; /* evita que el botón se mueva */
}


.info-block {
  display: none;
}

.info-block.active {
  display: block;
}

/* El botón se posiciona dentro de .info-modal-content */

/* Área que sí tiene scroll */
.info-scroll-area {
  overflow-y: auto;
  padding: 2rem;
  flex-grow: 1;
}

/* Botón de cierre se queda fijo */
.close-info-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ef3d56;
  color: white;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

/* MODAL VIDEO */
.video-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 90vw;
  width: 100%;
  max-height: 90vh;
  aspect-ratio: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  padding: 0;
}

#video-player {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border: none;
}

/* BOTONES DE CIERRE */
.close-info-modal,
.close-video-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background-color: #ef3d56;
  color: white;
  font-size: 1.4rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-info-modal:hover,
.close-video-modal:hover {
  background-color: #fff;
  color: #ef3d56;
  border: 2px solid #ef3d56;
  transform: scale(1.05);
}





/* Tarjeta/badge */
.claim-card {
  position: relative;
  border-radius: var(--claim-radius);
  color: var(--claim-color);
  padding: var(--claim-padding);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 26px rgba(0,0,0,.18), 0 3px 10px rgba(0,0,0,.12);

  /* Capa color + textura */
  background: var(--claim-bg);
  /* textura opcional por encima con mezcla */
}
.claim-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--claim-texture) center/cover no-repeat;
  opacity: .25;                     /* controla presencia de la textura */
  mix-blend-mode: overlay;          /* se funde con el azul */
  z-index: -1;
}

/* Texto */
.claim-card p {
  margin: 0;
  font-family: 'Alimentary', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.35;
  text-align: center;
}

/* Animación de entrada on-scroll */
.observe {
  opacity: 0;
  transform: translateY(32px) scale(.98);
  filter: blur(2px);
  transition:
    opacity .6s ease,
    transform .6s ease,
    filter .6s ease;
}
.observe.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Sutil hover (opcional) */
.claim-card:hover {
  transform: translateY(-2px);
  transition: transform .25s ease;
}

/* Modo sin textura: si no tienes imagen, neutraliza ::before */
.claim-grid.no-texture .claim-card::before {
  content: none;
}


/* Carrusel */
.proyectos-simples {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 30px;
  background: #c4c4c4;
  color: white;

}

.proyecto {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  min-height: 500px;
  width: 100%;          /* Asegura que ocupe todo el espacio horizontal disponible */
  max-width: 1920px;    /* Limita el ancho máximo */
  margin: 0 auto;       /* Centrado */
  transition: transform 0.3s ease;
}

.proyecto.reverse {
  flex-direction: row-reverse;
}

.proyecto-imagen {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  transition: transform 0.6s ease;
}

.proyecto:hover .proyecto-imagen {
  transform: scale(1.05);
}

.proyecto-texto {
  flex: 1 1 50%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(236, 236, 236, 1); /* semitransparente */
  backdrop-filter: blur(2px);     /* suaviza imagen de fondo */
  color: #666666;
}
.proyecto-imagen {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: unset;             /* anulamos la altura fija previa */
  aspect-ratio: 21 / 9;          /* ✅ relación panorámica */
  border-radius: 12px 0 0 12px;  /* mantiene esquinas redondeadas */
  transition: transform 0.6s ease;
}
/* ===== FIX: Imagen y texto igual altura ===== */
.proyecto {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

/* La imagen conserva su altura real (como capa visible) */
.proyecto-imagen {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 300px;              /* ✅ ajusta aquí la altura que quieras visible */
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;             /* evita que se deforme */
}

/* El bloque de texto ocupa su espacio debajo sin superponer */
.proyecto-texto {
  background: #f8f8f8;
  padding: 2.5rem 2rem;
  border-radius: 0 0 16px 16px;
  text-align: left;
  font-family: 'RedHat', sans-serif;
  color: #333;
  line-height: 1.4;
}

/* Ajuste responsive */
@media (min-width: 900px) {
  .proyecto {
    flex-direction: row;
    align-items: stretch;
  }
  .proyecto-imagen {
    width: 50%;
    height: auto;             /* ✅ iguala con el texto */
  }
  .proyecto-texto {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.proyecto.reverse .proyecto-imagen {
  border-radius: 0 12px 12px 0;
}

@media (max-width: 768px) {
  .proyecto-imagen {
    aspect-ratio: 16 / 9;        /* un poco más alto en móvil */
    border-radius: 12px 12px 0 0;
  }
}

.proyecto-texto h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}


.proyecto {

  transform: translateY(60px);
}

.proyecto.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


@media (max-width: 768px) {
  .proyecto,
  .proyecto.reverse {
    flex-direction: column;
  }

  .proyecto-imagen,
  .proyecto-texto {
    flex: 1 1 100%;
  }

  .proyecto-texto {
    padding: 2rem;
  }
}






/* Sección con vídeo de fondo */
.video-background-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}


.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.overlay-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Contacto */
.contact-section {
  padding: 1rem 1rem;
  background: #f3f3f4;
  text-align: center;
}

.contact-image {
  width: 100%;
  max-width: 800px;
  border-radius: 1rem;
}

.email a {
  color: #ef3d56;
  font-size: 1.2rem;
  text-decoration: none;
}



/* Footer */
.footer {
  background: #ef3d56;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
	
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.7rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.2rem;
  }

  .team-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .carousel-track {
    flex-direction: column;
  }

  .project-slide {
    height: 50vh;
  }
}

/* Ajustes globales para evitar márgenes y asegurar el 100% del viewport */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

/* Sección con vídeo de fondo */
.video-background-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.background-video {
    position: absolute;
    top: 10px;
    left: 11px;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.overlay-content {
	font-family: 'Alimentary', sans-serif;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* CONTACTO*/

.contact-image {
  transition: transform 0.4s ease;
  transform-origin: center center;
}

.contact-image:hover {
  transform: scale(1.05) rotate(-1deg);
}


/* LOCALIZACION*/
.localizacion-wrapper {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.localizacion-iframe {
  width: 400px;
  height: 250px;
  border: 1px solid #ccc;
  border-radius: 12px;
}



/* TITULOS */
.titulo span {
  font-size: 70px;
  color: #ffffff;
  font-family: 'Alimentary', sans-serif;
  display: inline-block;

  /* estado inicial */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.titulo span.visible {
  opacity: 1;
  transform: translateY(0);
}


/* FOOTER*/

.next-text {
  font-family: 'Alimentary', sans-serif;
  font-size: 50px;
  max-width: 800px;
  color: #666;
  text-align: center;
  line-height: 4rem;
  /* Centrado horizontal y vertical */
  display: flex;
  justify-content: center;
  align-items: center;

  /* Opcional: define altura si necesitas centrar verticalmente dentro de un espacio fijo */
  height: 100px; /* o el valor que necesites */
  margin: 0 auto; /* centra el bloque horizontalmente en la página */
}

@media (max-width: 768px) {
  .proyecto,
  .proyecto.reverse {
    flex-direction: column;
  }

  .proyecto-imagen,
  .proyecto-texto {
    flex: 1 1 100%;
  }

  .proyecto-texto {
    padding: 2rem;
  }

	.next-text {
  font-family: 'Alimentary', sans-serif;
  font-size: 40px;
  max-width: 800px;
  color: #666;
  text-align: center;
	line-height: 1.5rem;
  /* Centrado horizontal y vertical */
  display: flex;
  justify-content: center;
  align-items: center;

  /* Opcional: define altura si necesitas centrar verticalmente dentro de un espacio fijo */
  height: 100px; /* o el valor que necesites */
  margin: 0 auto; /* centra el bloque horizontalmente en la página */
}
}
/* HERO: sin padding heredado, centrado perfecto y por debajo del header */
#inicio.hero{
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh; /* alto visual móvil */
  background: #fff;   /* el fondo “real” del body */
}

/* Capas del HERO (si usas la versión con overlay rojo hero-red) */
#inicio .hero-layer{ position: relative; z-index: 2; width: min(92vw, 1600px); }
#inicio .hero-visuals{ display: grid; gap: clamp(12px, 2vw, 20px); justify-items: center; }
#inicio .logo{ width: min(1600px, 94vw); aspect-ratio: 28.125 / 10; height: auto; display: block; border:0; background: transparent; }
#inicio .scrollani{ width: min(520px, 64vw); aspect-ratio: 16 / 9; height: auto; display:block; border:0; background: transparent; }

/* Texto superpuesto que aparece */
#inicio .hero-copy{
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center; pointer-events: none;
  font-family: 'Alimentary', sans-serif; color: #666;
  font-size: clamp(22px, 5.6vw, 56px); line-height: 1.12;
  padding: 0 clamp(12px, 4vw, 40px);
  opacity: 0; transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease;
}

/* Capa roja que se disuelve */
#inicio .hero-red{
  position: absolute; inset: 0; background: #ef3d56;
  z-index: 1; opacity: 1; pointer-events: none;
  transition: opacity .25s ease;
}

/* Ajuste responsive */
@media (max-width: 1000px){
  #inicio .scrollani{ width: min(300px, 70vw); }
  #inicio .hero-copy{ font-size: clamp(20px, 6vw, 36px); }
}
