/*-----------------------------------------  menu  --------------------------------------*/

.nav{
    height: 75px;
  }
  
  .menu{
    z-index: 100;
    border-radius: 8px;
    transition: 0.4s;
  }

  .menu-active{
    font-weight: 600;
    border-bottom: #d52732 2px solid;
    height: 45px;
  }
  
  .navbar{
    background: #b11d27 !important;
    box-shadow: 0 4px 15px rgb(0,0,0,0.4);
    text-align: center;
    align-items: center;
  }
  
  .nav-item > .nav-link{
    color: #fff !important;
  }
  
  .dropdown-item:focus,
  .dropdown-item:active,
  .nav-link {
      outline: none; /* Elimina el contorno */
      box-shadow: none; /* Elimina cualquier sombra */
      border: none; /* Asegura que no haya borde */
  }
  
  #navbar-brand{
    display: none;
  }
  
  .social{
    display: flex;
    flex-direction:row;
    justify-content: space-evenly;
    gap: 10px;
  }
  
  .social i{
    color: #fff !important;
  }
  .social i:hover{
    color: #6a0000 !important;
  }