/*Responsivo*/
 @media (max-width: 768px) {
  body {
    background-position: center;
  }

  .container {
    width: 90%;
    padding: 1.5rem;
  }

  .dropdown .btn-secondary, 
  .btn-success {
    width: 100%;
  }
}

/*BASE*/
body {
  margin: 0;
  font-family: "Jura", sans-serif;
  color: #2b2b2b;
}

/*===NAVBAR===*/ 
.navbar {
  position: absolute;
  top: 20px; 
  right: 50px; 
  z-index: 5; 
}

.navbar-nav {
  gap: 30px;
}

.nav-link {
  color: #fff;
  font-family: "Jura", sans-serif;
  font-weight: 400;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #1e1e1e;
}

/*===IMAGEM===*/
.image-contactos img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* filter: brightness(60%); */
  z-index: -1;
}

/*===DROPDOWN===*/
.container {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  width: 456px;  /*width: 320px;*/  /*width: 466px;*/

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  height: 450px;
}

.container p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.dropdown .btn-secondary {
  width: 200px;
  background-color: #fff !important;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: left;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  position: relative;
}

.dropdown .btn-secondary::after {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown-menu {
  width: 200px;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  font-size: 0.9rem;
  color: #333;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

/*Botão*/
.btn-success {
  width: 200px;
  background-color: #8a8a50;
  border: none;
  border-radius: 8px;
  padding: 0.7rem;
  font-size: 1rem;
  color: white;
  font-weight: 500;
}

.btn-success:hover {
  background-color: #6e6e3c;
}





