/* Estilos específicos da página inicial */
.hero {
  display: grid;
  gap: 18px;
  place-items: center;
  text-align: center;
  margin: 40px 0 28px;
}
.logo-wrap {
  width: 132px;
  height: 132px;
  border-radius: 24px;
  overflow: hidden;
  background: #0c0f14;
  border: 1px solid #1f2430;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 0.3px;
}
.lead {
  max-width: 860px;
  color: var(--text);
  opacity: 0.92;
  font-size: 16.5px;
  line-height: 1.5;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(56, 189, 248, 0.25);
  transition: transform 0.05s, background 0.15s;
}
.cta:hover {
  background: #5cd3ff;
}
.cta:active {
  transform: translateY(1px);
}
