:root {
  --rosa: #e91e63;
  --rosa-claro: #ff80ab;
  --bg: #fff0f6;
  --texto: #222;
}
body {
  background: var(--bg);
  color: var(--texto);
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}
.hero {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #fff, #ffe6f0);
}
.hero .selo {
  width: 240px;
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--rosa);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.subtitulo {
  font-weight: 500;
}
.form-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  padding: 2rem;
  margin-top: 2rem;
}
.sorteio-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}
input[type="text"],
input[type="email"],
input[type="tel"],


textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}


fieldset {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
legend {
  font-weight: bold;
  color: var(--rosa);
}
button {
  background: var(--rosa);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
button:hover {
  background: var(--rosa-claro);
}
.mensagem-sucesso {
  background: #e8f5e9;
  border: 1px solid #81c784;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.info {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}
.info a {
  color: var(--rosa);
  text-decoration: none;
  font-weight: 600;
}
.cred {
  margin-top: 1rem;
  font-style: italic;
}
