@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

.custom-navbar {
    background:#1d1d1d;
  }

.logo{
    font-family: "Montserrat";
    font-size: 35px;
    font-weight: 600;
    color:#4d5034;
}

.link-background{
    background: #1d1d1d;
}

.dropdown{
  color: #fff;
}


.dropdown:hover{
  color: #fff;
}

.links{
    color: #fff;
    background: #1d1d1d;
    font-size: 17px;
    font-weight: 500;
    padding: 9px 7px 9px 7px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .user{
    color: #fff;
    background: #1d1d1d;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    margin: 10% 0 0 0;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  @media (max-width: 1200px) {
    
    
.logo{
  font-family: "Montserrat";
  font-size: 30px;
  font-weight: 600;
  color:#4d5034;
}

.links{
  color: #fff;
  background: #1d1d1d;
  font-size: 15px;
  font-weight: 500;
  padding: 7px 5px 7px 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.user{
  color: #fff;
  text-decoration: none;
  background: #1d1d1d;
  font-size: 15px;
  font-weight: 500;
  margin: 10% 0 0 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

  }

@media (max-width: 1080px) {
    
    
  .logo{
    font-family: "Montserrat";
    font-size: 24px;
    font-weight: 600;
    color:#4d5034;
  }
  
  .links{
    color: #fff;
    background: #1d1d1d;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 4px 6px 4px;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .user{
    color: #fff;
    background: #1d1d1d;
    font-size: 13px;
    font-weight: 500;
    margin: 10% 0 0 0;
    border-radius: 5px;
  }
    
  }

  @media (max-width: 430px) {
    
    
    .logo{
      font-family: "Montserrat";
      font-size: 24px;
      font-weight: 600;
      color:#4d5034;
    }
    
    .links{
      color: #fff;
      background: #1d1d1d;
      font-size: 20px;
      font-weight: 500;
      padding: 9px 7px 9px 7px;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
  
    .user{
      color: #fff;
      background: #1d1d1d;
      text-decoration: none;
      font-size: 20px;
      font-weight: 500;
      margin: 10% 0 0 0;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .dropdown-item{
      color: #ffffff;
      font-size: 18px;
      transition: 0.5s;
    }
      
    }
  .menu-icon{
    color: #fff;
    background: none;
    border-radius: 5%;
    border: none;
    font-size: 30px;
    font-weight: 500;
  }

  .custom-button{
    color: #fff;
    background: none;
    border-radius: 5%;
    margin: 0 0 0 2%;
    border: none;
    font-size: 17px;
    font-weight: 500;
  }

  .login{
    text-decoration: none;
    color: #222;
    font-size: 17px;
  }

  .custom-button:hover{
    color: #4d5034;
    transition: 0.3s;
    border-radius: 5%;
    border: none;
    font-size: 17px;
    font-weight: 500;
  }

  .links:hover{
        background: #4d5034;
  }

      /* Estilizando o dropdown */
      .dropdown-menu {
        background:#1d1d1d; /* Cor de fundo do dropdown */
        transition: 0.5s;
      }
      .dropdown-item{
        color: #ffffff;
        transition: 0.5s;
      }
      .dropdown-item:hover {      
        background: #4d5034;/* Cor ao passar o mouse nos itens do dropdown */
        color: #ffffff;
        transition: all 0.5s ease;
      }

      .form-control::placeholder {
        font-style: italic;
        font-size: 15px;
        font-weight: 100;
        color: #787878;
      }



    /* Adicionando a transição suave na navbar mobile */
    .navbar-collapse.collapse {
      transition: height 0.3s ease;
    }
    
    /* Corrige a altura da navbar durante a transição */
    .navbar-collapse.collapsing {
      height: auto;
    }

    .navbar-toggler {
      transition: all 0.3s ease;
    }