/* ---------- RESET GERAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- FONTES ---------- */
.eagle-lake-regular {
  font-family: "Eagle Lake", serif;
  font-weight: 400;
  font-style: normal;
}

/* ---------- BASE DO SITE ---------- */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f5f0;
  color: #333;
  font-family: "League Spartan", sans-serif;
  min-height: 100vh;
}

/* ---------- CONTAINER GERAL ---------- */
.conteiner_total {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin: 2rem 0;
}

/* ---------- CABEÇALHO ---------- */
header {
  background: linear-gradient(to top, #e3e3d3 90%, #dcdccf);
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #cfcfc0;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: linear-gradient(to top, #e3e3d3, transparent);
  pointer-events: none;
}

h1 {
  font-family: "League Spartan", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #3c3c3c;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
  user-select: none;
}

h1:hover {
  transform: scale(1.04);
  color: #5a5a5a;
}

/* ---------- SEÇÃO DE INFORMAÇÃO ---------- */
.iformation01 {
  background-color: #97958f;
  color: #fff;
  width: 100%;
  padding: 2.2rem 1rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.iformation01:hover {
  background-color: #8f8c86;
  transform: scale(1.01);
}

/* ---------- SEÇÃO DE PERGUNTAS ---------- */
.perguntas {
  background-color: #f0efeb;
  width: 100%;
  padding: 2rem 2.5rem 4.5rem; /* espaço extra no final p/ o botão */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  position: relative; /* importante p/ o posicionamento absoluto funcionar dentro */
}

.perguntas a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
  text-align: center;
  margin-bottom: 0.3rem;
}

.perguntas input {
  width: 80%;
  max-width: 400px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
  background-color: #fff;
}

.perguntas input:focus {
  border-color: #8d8a84;
  box-shadow: 0 0 5px rgba(151, 149, 143, 0.4);
}

.perguntas button {
  position: absolute;
  bottom: 1rem; /* mais próximo do campo */
  right: 1.5rem; /* não tão no canto da tela */
  font-size: 1.2rem;
  background-color: #97958f;
  color: #fff;
  border: none;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.perguntas button:hover {
  background-color: #8f8c86;
  transform: scale(1.05);
}

/* ---------- RODAPÉ ---------- */
footer {
  width: 100%;
  background-color: #e3e3d3;
  text-align: center;
  padding: 1rem 0;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .iformation01 {
    font-size: 1.2rem;
    padding: 1.5rem 1rem;
  }

  .perguntas input {
    width: 90%;
  }
}
