.navbar-container {
    margin: 0 auto;
    max-width: 80%; 
    width: 80%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(235, 42, 43, 0.1);
  z-index: 9999;
  transition: background 0.3s ease, border-bottom 0.3s ease;
}

.navbar.scrolled {
  background: var(--red); /* cor sólida ao scroll */
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.nav-link {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
}

.dropdown-menu {
  background-color: rgba(235, 42, 43, 0.3) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  transition: background-color 0.3s ease;
}

.dropdown-menu.scrolled {
  background-color: var(--red) !important;
}
.dropdown-item:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select {
    background: transparent;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: white;
    padding-right: 20px;
    cursor: pointer;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
}

.custom-select:focus {
    outline: none;
}

.custom-select-icon {
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: white;
    font-size: 0.7rem !important;
}

.custom-select option {
  background-color: var(--grey-dark);
  color: white;
}

.social-icon {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 991.98px) {
  .dropdown-menu.scrolled {
    background-color: #67676762 !important;
  }

  .dropdown-item {
    text-align: center;
  }
}

@media (min-width: 1920px) {
 .navbar-container {
    max-width: 1890px;
 }
 
}