/*Geral Maybe*/
body {
  margin: 0;
  font-family: "Jura", sans-serif;
  height: 100vh;
  overflow: hidden;
}

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

.navbar-nav {
  gap: 30px;
}

.nav-link {
  color: white;
  font-weight: 400;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #fff;
}

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

/*FORM*/
form {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-20%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  padding: 40px 30px;
  border-radius: 25px;
  width: 320px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

form label {
  font-size: 0.9rem;
  color: #ddd;
}

form .form-control {
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: white;
  border: none;
  padding: 10px;
}

form .btn {
  width: 100%;
  border: 2px solid white;
  border-radius: 25px;
  color: white;
  background: transparent;
  transition: all 0.3s;
  font-weight: 500;
  letter-spacing: 1px;
}

form .btn:hover {
  background: white;
  color: black;
}

/*FRASE*/
div p {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 400px;
  font-style: italic;
  font-size: 1.1rem;
  text-align: right;
  line-height: 1.5;
}

div p:last-child {
  margin-top: 20px;
  font-style: normal;
  font-size: 0.9rem;
  text-align: right;
  opacity: 0.8;
}