nav{
  z-index: 3;
}

/* MURALES */
.muralBG{
  position: absolute;
  bottom: 0;
}

.mural-top,
.mural-bottom {
  position: absolute;
  width: 100%;
  z-index: 10;
}

/* BACKGROUNDS */
.bg-black {
  background-color: rgba(0, 0, 0, 0.49);
}

.muralContent{
  position: relative;
  top: 80px;
}

/* COLORES */
.backViole{
  border-radius: 20px!important;
  background: linear-gradient(180deg, #8a00ff 41.35%, #8a00ff 100%)!important;
}

.crew{
  background: linear-gradient(180deg, #8a00ff 41.35%, #8a00ff 100%);
}

/* TIPOGRAFÍAS */
.bakbak-one-regular {
  font-family: "Bakbak One", sans-serif;
  font-weight: 400;
}

.permanent-marker-regular {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
}

.bungee-regular {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
}

.rock-salt-regular {
  font-family: "Rock Salt", cursive;
  font-weight: 400;
  font-style: normal;
}

.jersey-25-charted-regular {
  font-family: "Jersey 25 Charted", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jersey-25-regular {
  font-family: "Jersey 25", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rubik-dirt-regular {
  font-family: "Rubik Dirt", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* SWIPER */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ANIMACIÓN */
@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

.wiggle-element {
  animation: wiggle 1s infinite ease-in-out;
}

/* TITULOS */
a h2.title {
  font-weight: 300;
}

a h2.title:hover {
  font-weight: 800;
  transition: font-variation-settings 1s ease-out;
  animation-duration: 0.5s;
}

/* NOVEDADES */
.imageNovedad {
  display: block;
  width: 100%;
  height: auto;
}

.overlay,
.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .5s ease;
}

.overlay {
  background-color: #FF4500;
}

.overlay2 {
  background-color: #8a00ff;
}

.containerNovedad:hover .overlay,
.containerNovedad:hover .overlay2 {
  opacity: 1;
}

.textNovedad {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* UAINOT */
#UAINOT {
  position: relative;
}

/* CONTENIDO */
.uainot-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 120px 40px;
  position: relative;
  z-index: 5;
}

/* VIDEO */
.video-box {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border: 8px solid #ddd;
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .uainot-content {
    flex-direction: column;
    text-align: center;
  }

  .video-box {
    width: 260px;
  }
}

.uainot-text {
  max-width: 500px;
  padding: 0; 
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bloque {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.bloque p {
  margin: 0;
}

.bloque h3 {
  color: #8a00ff;
  margin-bottom: 5px;
}


/* EFECTO AL PASAR EL MOUSE */
.logo-hover {
  transition: transform 0.3s ease;
}

.logo-hover:hover {
  transform: translateY(-10px);
}

.mySwiperSoon .swiper-slide {
  width: auto !important;
}

.mySwiperSoon img {
  width: 274px; 
  height: auto;
}

.netflix-slider .swiper-slide {
  width: 250px !important; 
  transition: all 0.4s ease;
  transform: scale(0.8);
  opacity: 0.5;
}

.netflix-slider .swiper-slide img {
  border-radius: 12px;
  width: 100%;
}

/* activo */
.netflix-slider .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

/* laterales */
.netflix-slider .swiper-slide-prev,
.netflix-slider .swiper-slide-next {
  transform: scale(0.9);
  opacity: 0.8;
}

.netflix-slider {
  padding-top: 40px;
  padding-bottom: 40px;
	
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}


/* LOGOS EMPRESAS */
.logos-static {
  width: 100%;
  padding: 60px 20px;
  background: #000;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: center;
  gap: 40px;
}

.logo-item {
  width: 160px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-item img {
  width: 100%;
  object-fit: contain;
}

/* hover pro */
.logo-item:hover {
  transform: scale(1.1);
  opacity: 1;
}