#menu-general a {
  position: relative;
  text-decoration: none;
}
#menu-general a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2.5px;
  bottom: 0;
  left: 0;
  background-color: #D81F20;
  transform: scaleX(0);
  transform-origin: center;
}
#menu-general a:hover::after {
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

#menu-general > li:nth-child(3) a {
  animation: parpadeo 1.5s infinite alternate;
}

#menu-general > li:nth-child(3) a:hover {
  animation: none;
  color: #FFF !important;
}

@keyframes parpadeo {
  from {
    color: #FFF;
  }
  to {
    color: #FF6B6B; /* Rojo más brillante para mejor contraste y legibilidad */
  }
}

#input-buscador-1 {
  border-bottom-left-radius: 4px;
}

/* Botones */
.btn-success {
    background-color: #2E8B57 !important;
    border-color: #2E8B57 !important;
    color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.80) 0px 5px 5px -3px;
}

/* Añadimos un pequeño efecto al hover del botón */
.btn-success:hover {
    background-color: #28814f !important;
    border-color: #28814f !important;
    color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.80) 0px 5px 5px -3px;
}

/* Pie */
footer p a:hover {
  text-decoration: underline !important;
}

/* index */
#nodos .h1 {
  min-height: 51px;
  padding-left: 15px;
  border-left: 15px solid #155785;
  font-weight: bold;
  text-align: left !important;
}

#owl-nodos .owl-wrapper {
  display: flex !important;
}

#owl-nodos .owl-item {
  display: flex !important;
}

#owl-nodos .owl-item > .item {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
}

#owl-nodos .contenedor-global {
    border: 1px solid #dddddd;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 5px -3px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}