.navbar {
    padding-top: 0;
    padding-bottom: 0;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/************ Logo ************/
.navbar-brand-link {
    display: inline-block;
    margin-left: 8rem;
    line-height: 0;
}

.navbar-logo {
    max-height: 70px;
    width: auto;
    display: block;
    margin-left: 0;
}

@media (max-width: 1399.98px) {
    .navbar-brand-link {
        margin-left: 3rem;
    }
}

@media (max-width: 1199.98px) {
    .navbar-brand-link {
        margin-left: 1rem;
    }
}
/******************************/

/******* Botão consulta *******/
.btn-color-border {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 0.9rem;
  color: #fff;
  background-color: #223a59;
  border: 1px solid #223a59;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-color-border:hover {
  color: #fff;
  background-color: #2d4c74;
  border-color: #2d4c74;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 58, 89, 0.18);
}

.btn-color-border:focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 58, 89, 0.25);
}

.btn-color-border .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.btn-color-border:hover .btn-arrow {
  transform: translateX(4px);
}
/******************************/

/************ Links ************/
.nav-link {
    font-weight: 400;
    font-size: 1.05rem;
    color: #223a59 !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #b67a1c !important;
}

.nav-item.active .nav-link {
    position: relative;
    color: #b67a1c !important;
    font-weight: 500;
    background-color: transparent;
}

.nav-item.active .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 4px;
    height: 2px;
    background: #b67a1c;
    border-radius: 2px;
}
/******************************/