* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
 background: linear-gradient(to bottom, #0D0F40, #000000);
  margin: 0;
  padding: 0;
  color: #f1f1f1;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../images/logo/170738805_305888421087650_4358413888165215702_n.png');
  background-repeat: repeat; /* para que se repita */
  background-size: 200px auto; /* tamaño del logo repetido */
  background-position: center center;
  opacity: 0.12;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}



.content {
  position: relative;
  z-index: 1;
}


#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* o el color que prefieras */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}


#splash-screen img {
  width: 400px; /* tamaño doble */
  animation: zoomIn 2s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

body.loaded #splash-screen {
  opacity: 0;
  pointer-events: none;
}

.card img {
  border: 4px solid #7700ff; /* Azul eléctrico */
  border-radius: 0; /* Opcional, si no querés esquinas redondeadas */
}
#splash-screen.fade-out {
  opacity: 0; 
  transition: opacity 0.5s ease;
  pointer-events: none;
  
}
#splash-screen.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ribbon-tag {
  position: absolute;
  top: 20px; /* mitad fuera */
  left: -20px;
  background-color: #000;
  color: #7700ff; /* azul eléctrico */
  border: 2px solid #7700ff  ;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 10;
  border-radius: 0 0 6px 6px;
}

 @keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.20);
  }
  100% {
    transform: scale(1);
  }
}

.card:hover img {
  animation: pulse 0.6s ease-in-out;
}
.card img {
  transition: transform 0.3s ease;
}

.card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card img {
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.card:hover img {
  transform: scale(1.05);
}

/* .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(71, 35, 233, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
  z-index: 1;
} */

.btn {
  z-index: 2;
}

.btn {
  z-index: 2;
}

/* .card:hover::before {
  opacity: 1;
} */

.card-title-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-title-overlay {
  opacity: 1;
}

.video-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}

