@font-face {
  font-family: "Passage Gradient";
  /* Verifique se o caminho da fonte está correto */
  src: url("../fonts/Passage.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Seção Abduza */
.abduza span {
  font-family: "Passage Gradient", sans-serif;
  font-size: 60px;
}

.abduza {
  line-height: 1.2;
  margin: 0; /* Reset margin */
}

/* Estilos Gerais */
body {
  font-family: "Arial", sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px 0;
  color: #333;
  box-sizing: border-box;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 40px;

  text-align: center;

  max-width: 650px;

  width: 90%;
  margin: 20px auto;
  box-sizing: border-box;
}

.titulo-com-imagem {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 05px;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  max-width: 90px;
  height: auto;
}

h1 {
  color: #333;
  margin: 0;
  font-size: 2em;
}

h2 {
  margin-bottom: 5px;
  line-height: 1.4;
  font-size: 1.3em;
  color: #555;
}

p#mensagemErro,
.erro {
  color: #d93025;
  font-size: 0.9em;
  margin-top: 5px;
  margin-bottom: 15px;
  min-height: 1.2em;
  text-align: center;
  font-weight: bold;
}

form {
  width: 100%;
  text-align: left;
  overflow: hidden;
}

#form-part-1,
#form-part-2,
#form-part-3 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#form-part-2,
#form-part-3 {
  display: none;
}

#requisito-senha{
  font-size: 0.75em;
  font-weight: bold;
  color: rgb(150, 150, 150)
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
}

.navigation-buttons button {
  background-color: #6c757d;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.2s ease, transform 0.1s ease;

  margin-top: 0;
  align-self: auto;
  width: auto;
  flex-grow: 0;
}

.navigation-buttons button:hover {
  background-color: #5a6268;
}
.navigation-buttons button:active {
  transform: scale(0.98);
}

.navigation-buttons button#submit-button {
  background-color: black;
}

.navigation-buttons button#submit-button:hover {
  background-color: #333;
}

.campo {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
  font-size: 0.95em;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
select {
  background-color: white;
  color: black;
  padding: 12px 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

input:focus,
select:focus {
  border-color: #0056b3;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

input.input-error,
select.input-error {
  border-color: #d93025 !important;
  background-color: #fbeae9;
}

.termos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.termos input[type="checkbox"] {
  width: auto;
  accent-color: black;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  border: none;
  box-shadow: none;
}

.termos label {
  margin-bottom: 0;
  font-weight: normal;
  color: #555;
  cursor: pointer;
}
.termos label.input-error {
  color: #d93025;
  font-weight: bold;
}

button {
  cursor: pointer;
}

#msg_result_form {
  margin-top: 15px;
  font-weight: bold;
  color: green;
}
.msg_result_form-erro {
  color: #d93025 !important;
}

/* --- RESPONSIVIDADE --- */

/* Telas Médias (Tablets) */
@media (max-width: 768px) {
  .container {
    padding: 25px 30px; /* Menos padding */
    max-width: 90%; /* Ocupa mais da tela */
  }

  h1 {
    font-size: 1.8em;
  }
  .abduza span {
    font-size: 50px;
  }

  h2 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px 0;
  }
  .container {
    padding: 20px 20px;
    width: 95%;
  }

  .titulo-com-imagem {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 1.6em;
    text-align: center;
  }
  .abduza span {
    font-size: 40px;
  }

  h2 {
    font-size: 1.1em;
  }

  .logo {
    max-width: 70px;
  }

  .navigation-buttons {
    flex-direction: column-reverse;
    gap: 12px;
    align-items: stretch;
  }
  .navigation-buttons button {
    width: 100%;
  }
}
