/* Fondo del menú principal */
.navbar {
  background-color: #660000 !important;
}

/* Enlaces del menú */
.navbar-nav .nav-link {
  color: white !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover en enlaces del menú */
.navbar-nav .nav-link:hover {
  background-color: #8e2c2c;
  color: #ffd1d1 !important;
}

/* Fondo del dropdown */
.dropdown-menu {
  background-color: #660000;
  border: none;
}

/* Enlaces del dropdown */
.dropdown-item {
  color: white !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover en dropdown */
.dropdown-item:hover {
  background-color: #8e2c2c;
  color: #ffd1d1 !important;
}
/* Quitar flechas de los dropdowns */
.he2 .dropdown-toggle::after {
    display: none;
}
