/* NAV */
#menu ul {
  padding: 0;
  margin: 0;
  background-color: #0f0101;
  list-style: none;
  text-align: center;
}
#menu ul li { display: inline; }
#menu ul li a {
  padding: 6px 12px;
  display: inline-block;
  background-color: transparent;
  color: #ebe2e2;
  text-decoration: none;
  border-bottom: 3px solid #EDEDED;
}
#menu ul li a:hover {
  background-color: #030303;
  color: #e08b1b;
  border-bottom: 3px solid #2369ec;
}

/* FUNDO */
body {
  background-image: url('../imagens/sheilong_remester.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* FORMULÁRIO */
.formulario {
  width: 100%;
  max-width: 520px;
  margin: 32px auto;
  padding: 24px;
  color: #fff;
  background: rgba(0,0,0,.55);      /* melhora leitura sobre a imagem */
  backdrop-filter: blur(4px);        /* efeito vidro leve */
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  box-sizing: border-box;
}

/* campos em coluna */
.field { margin-bottom: 16px; }
.formulario label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.formulario input[type="text"],
.formulario input[type="tel"],
.formulario input[type="number"] {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.formulario input:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34,211,238,.25);
}

.formulario input[type="email"] {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}

.formulario textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  font-size: 15px;
  resize: vertical; /* deixa só aumentar pra cima/baixo */
  transition: border-color .2s, box-shadow .2s;
}

.formulario textarea:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34,211,238,.25);
}


/* BOTÃO */
.button {
  width: 100%;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background-color: #1db954; /* verde semelhante ao dragão */
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: background-color .2s ease, transform .08s ease;
}

.button:hover {
  background-color: #e08b1b; /* laranja */
}

.button:active {
  transform: translateY(1px);
}


/* RESPONSIVO */
@media (max-width: 520px) {
  .formulario { margin: 16px; padding: 16px; }
}
