html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif;
  color: #053a3e;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0) 45%),
    radial-gradient(circle at 80% 15%, rgba(0, 87, 94, 0.14), rgba(0, 87, 94, 0) 50%),
    linear-gradient(135deg, #f7fcfc, #f2faf9 55%, #fbf7ea);
}

.topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.topo__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}


.topo__logo {
  height: 48px;
  width: auto;
  max-width: 100%;
  display: block;
}

.topo__name {
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #00575e;
  line-height: 1;
}

.topo__sub {
  font-size: 12px;
  color: rgba(5, 58, 62, 0.78);
  margin-top: 2px;
}

.topo__link {
  font-weight: 800;
  text-decoration: none;
  color: #00575e;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 87, 94, 0.25);
  background: rgba(255, 255, 255, 0.75);
}

.topo__link:hover,
.topo__link:focus {
  background: #00575e;
  color: #ffffff;
  border-color: #00575e;
}

.conteudo {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 18px 40px;
  display: grid;
  place-items: center;
}

.card {
  width: min(720px, 100%);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 87, 94, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  padding: 26px 22px 20px;
}

.kicker {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(5, 58, 62, 0.78);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #d4af37;
  border-radius: 999px;
}

h1 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.12;
  color: #00575e;
}

.lead {
  margin: 12px 0 0;
  color: rgba(5, 58, 62, 0.84);
  font-size: 15px;
  line-height: 1.7;
}

.acoes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn--primary {
  background: #00575e;
  color: #ffffff;
  border-color: rgba(0, 87, 94, 0.35);
}

.btn--primary:hover,
.btn--primary:focus {
  background: transparent;
  color: #00575e;
  border-color: #00575e;
}

.btn--outline {
  background: #ffffff;
  color: #00575e;
  border-color: rgba(0, 87, 94, 0.28);
}

.btn--outline:hover,
.btn--outline:focus {
  background: rgba(0, 87, 94, 0.08);
}

.small {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: rgba(5, 58, 62, 0.70);
}

.btn:focus-visible,
.topo__link:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .card {
    padding: 22px 16px 18px;
  }
}
