body {
  background: linear-gradient(135deg, #e3f0ff 0%, #b3c6e7 100%);
  font-family: 'Lora', serif;
  margin: 0;
  min-height: 100vh;
  color: #23408e;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: #fff;
  max-width: 400px;
  padding: 2.5rem 2rem 1.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(35, 64, 142, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #23408e;
  margin-bottom: 0.2em;
}

.main-title {
  font-size: 1.4rem;
  color: #23408e;
  margin: 0.5em 0 0.2em 0;
  font-weight: 700;
}

.subtitle {
  font-size: 1rem;
  color: #4a6fa5;
  margin: 0.2em 0;
}

form {
  margin: 2em 0 1em 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}

label {
  text-align: left;
  font-size: 1rem;
  color: #23408e;
  margin-bottom: 0.2em;
}

input {
  padding: 0.7em;
  border: 1px solid #b3c6e7;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

input:focus {
  border: 1.5px solid #23408e;
}

button {
  background: #23408e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9em;
  font-size: 1.1rem;
  font-family: 'Lora', serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #4a6fa5;
}

.mensagem {
  margin-top: 1em;
  font-size: 1rem;
  color: #2e7d32;
  min-height: 1.2em;
  text-align: center;
  display: block;
  padding: 0;
  border: none;
  background: none;
  background-color: transparent;
  width: auto;
  box-sizing: border-box;
  overflow: visible;
  white-space: normal;
  text-shadow: none;
  box-shadow: none;
  outline: none;
}

#successMessage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    gap: 20px;
}

#successMessage .mensagem {
    font-size: 1.5rem;
    font-weight: bold;
    color: #23408e;
    margin-top: 0;
    margin-bottom: 0;
}

footer {
  margin-top: 2em;
  font-size: 0.95rem;
  color: #23408e;
  opacity: 0.8;
}

/* Novo estilo para o botão Como Chegar */
.how-to-get-button {
    display: inline-block;
    padding: 0.8em 1.5em;
    border: 2px solid #23408e;
    border-radius: 8px;
    color: #23408e;
    background-color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Lora', serif;
    font-weight: bold;
    transition: background-color 0.2s, color 0.2s;
}

.how-to-get-button:hover {
    background-color: #e3f0ff;
    color: #23408e;
}

@media (max-width: 500px) {
  .container {
    max-width: 95vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .title {
    font-size: 2rem;
  }
  .main-title {
    font-size: 1.1rem;
  }
  #successMessage .mensagem {
    font-size: 1.2rem;
  }
  .how-to-get-button {
    font-size: 0.9rem;
    padding: 0.6em 1.2em;
  }
} 