.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Aplica el degradado directamente al fondo */
  .shadow-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.40), transparent, rgba(0, 0, 0, 0.40));
   
    border-radius: 1rem;
  }
  
  .menu-item {
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
  }
  
  .menu-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  }
  
  .menu-item:hover {
    color: #FFD700;
  }
  
  .menu-item:last-child::after {
    display: none;
  }
  
  /* Tooltip */
.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  font-size: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.5rem;
  white-space: normal; /* Permite que el texto envuelva */
  /*max-width: 250px; /* Ancho máximo de 150px para ser responsivo */
  /*text-align: justify; /* Justifica el texto */
  z-index: 10;
  display: none;
}

.tooltip-container:hover .tooltip {
  display: block;
}
  
  /* Efecto fade-in para el logo SVG 
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-animation {
  opacity: 1;
  animation: fadeIn 1s ease-out forwards;
}*/
