.wp-block-separator {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	height: 3px;
	border: none;
	background: white;
	box-shadow: 0 0 5px white, 0 0 15px white, 0 0 30px white;
}

.galeria-neon {
	position: relative;
	padding: 30px;
	z-index: 1;
}

/* la luz detrás */
.galeria-neon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	opacity: .5;
	filter: blur(40px);
	z-index: -1;
	pointer-events: none;
}
.blur-text {
  color: #fff;
  filter: blur(3px);
  transition: 0.3s ease;
}
.neon-text {
  color: #ffffff;
  text-shadow: 0 0 5px #ffffff, 0 0 15px #ffffff, 0 0 30px #ffffff;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
  }
  to {
    text-shadow: 0 0 10px #ffffff, 0 0 25px #ffffff, 0 0 50px #ffffff;
  }
}
.neon-box {
  border: 2px solid #ffffff;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 255);

  /* efecto neón */
  box-shadow:
    0 0 20px rgba(255,255,255,0.4),
    0 0 20px rgba(255,255,255,0.3),
    0 0 30px rgba(229,9,20,0.25);

  transition: 0.3s ease;
}
.img-appear {
  opacity: 0;
  transform: scale(0.8);
  animation: appearImg 0.5s ease-out forwards;
}

.img-appear:nth-child(1) { animation-delay: 0.1s; }
.img-appear:nth-child(2) { animation-delay: 0.2s; }
.img-appear:nth-child(3) { animation-delay: 0.3s; }

@keyframes appearImg {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
}
.scroll-animate {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.5s ease-out;
}
.scroll-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: appearOnLoad 0.5s ease-out forwards;
}

@keyframes appearOnLoad {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Contenedor completo */
.contador-neon {
	position: relative;
	left:-250px;
	white-space: nowrap;
  text-align: center;
  transform: scale(0);
  opacity: 0;
  animation: aparecer-escala 1s ease forwards;
}


/* Número grande con neón */
.numero-neon {
  font-size: 50px;
  font-weight: 800;
  color: white;

  text-shadow:
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 40px #00ffff;

  animation: neon-pulso 1.5s infinite alternate;
}


/* Texto pequeño debajo */
.texto-normal {
  font-size: 25px;
  font-weight: 400;
  color: white;
}


/* Animación de aparición */
@keyframes aparecer-escala {

  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }

}


/* Movimiento del brillo neón */
@keyframes neon-pulso {

  from {

    text-shadow:
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 20px #ffffff;

  }


  to {

    text-shadow:
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 20px #ffffff;

  }

}
.contenedor-contadores {
    display: flex;
    gap: 250px;
}
/* CONTENEDOR */
.portfolio-infinito {
    overflow: hidden;
    width: 100%;
}


/* FILA DE IMAGENES */
.portfolio-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: mover-portfolio 50s linear infinite;
}


/* CADA IMAGEN */
.portfolio-track a {
    flex-shrink: 0;
    display: block;
}


/* FORMATO 16:9 */
.portfolio-track img {
    width: 700px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;

    transition: transform 0.4s ease, filter 0.4s ease;
}


/* MOVIMIENTO INFINITO */
@keyframes mover-portfolio {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* EFECTO AL PASAR RATON */
.portfolio-track a:hover img {

    transform: scale(1.08);
.proyecto {
    position: relative;
    z-index: 1;
}


/* Luz neón detrás */
.proyecto::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;

    width: 90%;
    height: 90%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(220,240,255,0.8) 0%,
        rgba(220,240,255,0.4) 35%,
        rgba(220,2405,255,0) 70%
    );

    filter: blur(35px);

    opacity: 0;

    transition: opacity 0.4s ease;

    z-index: -1;
}


/* Cuando pasas el ratón */
.proyecto:hover::before {

    opacity: 1;

}

    filter:
    brightness(1.15)
    drop-shadow(0 0 15px rgba(255,255,255,0.5));

}


/* PAUSA AL PASAR POR ENCIMA */
.portfolio-infinito:hover .portfolio-track {

    animation-play-state: paused;

}

.portfolio-infinito {
    width: 100vw !important;
    max-width: none !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    display: block;
}
.portfolio-track {
    display: flex !important;
    justify-content: flex-start;
    width: max-content;
}
.wp-block-html {
    width: 100% !important;
    max-width: none !important;
}
.video-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.video-full video {
    width: 100%;
    height: auto;
    display: block;
}