/* ENCONTRO DAS LIDERANÇAS — ZONA DA MATA NORTE
   assets/style.css — Landing page (RAIZ)
   Paleta: azul-marinho #0b1f3a | verde #0aa854 | dourado #ffd700 */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #0b1f3a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0, 156, 59, 0.35), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(255, 215, 0, 0.12), transparent 60%),
    #0b1f3a;
}

.hero-content { max-width: 760px; }

.badge {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid rgba(255, 215, 0, 0.6);
  border-radius: 50px;
  color: #ffd700;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255, 215, 0, 0.06);
}

.hero-title {
  margin-top: 22px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
}

.accent { color: #ffd700; }

.hero-subtitle {
  margin-top: 14px;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta { margin-top: 34px; }

.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #0aa854, #008c46);
  color: #ffffff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 42px;
  border: 2px solid rgba(255, 223, 0, 0.55);
  box-shadow: 0 6px 24px rgba(0, 140, 70, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 140, 70, 0.6);
  border-color: #ffd700;
}

.microcopy {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.chips {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #e6eefc;
  background: rgba(255, 255, 255, 0.06);
}

/* RODAPÉ */
.footer {
  background: #081527;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer p { margin-bottom: 6px; }

.footer-realizacao {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 10px !important;
}

.footer a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover { text-decoration: underline; }

/* RESPONSIVO */
@media (max-width: 640px) {
  .hero { padding: 60px 0; }
  .btn-primary { font-size: 0.95rem; padding: 16px 20px; }
  .chips { gap: 8px; }
}