/* RESET E TIPOGRAFIA BASE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fdf6e3 url('/static/usuarios/img/bg_home_1200.webp') repeat-y top center;
  background-size: cover;
  color: #3e3e3e;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}


main {
  padding: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #1e6091;
  font-weight: bold;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #666;
}

/* BOTÕES REUTILIZÁVEIS */

.btn-secundario {
  display: inline-block;
  padding: 12px 20px;
  background-color: transparent;
  border: 2px solid #1e6091;
  color: #1e6091;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secundario:hover {
  background-color: #1e6091;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(30, 96, 145, 0.15);
}

.btn-primario {
  display: inline-block;
  padding: 14px 22px;
  background-color: #ef476f;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
}

.btn-primario:hover {
  background-color: #d43f63;
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(94, 62, 161, 0.3);
}
