@charset "UTF-8";

* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

body {
   padding-top: 80px;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  /* cinza de fundo */
  background-image: url(fotos/new-york-city-desktop-b82lwj1s0o6howu4.jpg);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CABEÇALHO ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(51, 56, 62);
  padding: 10px 2rem;
  z-index: 10;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cabecalho {
  display: flex;
  align-items:center;
  gap: 1rem;
  color: #ffffff;
}

.cabecalho .logo {
  height: 60px;
}


.fundo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.4);
  /* cinza com transparência */
  z-index: 0;
}

/* Container central  */
main {
  position: relative;
  z-index: 1;
  background: rgba(51, 56, 62, 0.347); /* Transparência */
  backdrop-filter: blur(5px); /* Suave desfoque do fundo */
  
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.493);
  max-width: 500px;
  width: 90%;
}

/* Título principal */
h3 {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 1.2rem;
}



h3::before {
  content: "";
  margin-right: 5px;
  
}

/* Labels e textos explicativos */
label {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
  color: #030303;
}

p {
  font-size: 0.9rem;
  color: #87c75c;
  margin-bottom: 0.4rem;
}

/* Inputs e selects */
input[type="number"],
select,
input[type="text"] {
  width: 100%;
  padding: 0.65rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1rem;
}

/* Botões */
button {
  background-color: #2da057;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #16a34a;
}

/* Responsividade */
@media (max-width: 500px) {
  main {
    margin: 1rem;
    padding: 1.5rem;
  }
}