* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  scroll-behavior: smooth;
  font-family: 'Arial', sans-serif;
  background-image: url('img/bg.png');
  background-size: cover;
  background-position: center;
}

/* --- SEÇÃO 1 (tela cheia com imagem de fundo e botão) --- */
.section1 {
  height: 100vh;
  /* background-image: url('img/bg.png');
  background-size: cover;
  background-position: center; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section1 img {
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}

.section1 a {
  display: inline-block;
  padding: 14px 30px;
  background-color: #c27ba0;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.section1 a:hover {
  background-color: #a85b89;
}

/* --- SEÇÕES COM FORMULÁRIO --- */
section {
  /* background-image: url('img/bg.png');
  background-size: cover;
  background-position: center; */
}

section.formulario {
  padding: 50px 20px;
  background-color: #fafafa;
  max-width: 900px;
  margin: auto;
}

section h2 {
  color: #c27ba0;
  margin-bottom: 20px;
  text-align: center;
}

label {
  display: block;
  margin: 8px 0;
}

.riscado {
  text-decoration: line-through;
  color: #888;
}

button {
  display: block;
  margin: 30px auto;
  padding: 12px 30px;
  background-color: #c27ba0;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #a85b89;
}
