/* =========================================================
   COMPONENTE: HERO PADRÃO (Estilo Fixo do Site)
   ========================================================= */
.hero-padrao {
  padding: 44px 0 18px 0;
}

.hero-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(234, 240, 255, .14);
  /* Fundo escuro padrão do Hero */
  background: linear-gradient(180deg, rgba(14, 22, 48, .78), rgba(11, 16, 32, .72));
  box-shadow: 0 14px 40px rgba(0, 0, 0, .40);
  min-height: 360px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .62)),
    radial-gradient(900px 520px at 20% 15%, rgba(100, 255, 182, .18), transparent 62%),
    radial-gradient(740px 520px at 85% 20%, rgba(107, 228, 255, .18), transparent 60%),
    radial-gradient(680px 540px at 60% 110%, rgba(181, 140, 255, .12), transparent 64%),
    var(--hero-img);
  /* Variável injetada via PHP */
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 34px 28px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 24px;
  align-items: stretch;
}

.hero-left {
  padding: 10px 10px 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-padrao .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(234, 240, 255, .86);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(234, 240, 255, .16);
  background: rgba(234, 240, 255, .06);
  width: fit-content;
  margin-bottom: 14px;
}

.hero-padrao .kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #64FFB6;
  /* Ciano claro */
  box-shadow: 0 0 0 6px rgba(100, 255, 182, .10);
}

.hero-padrao h1 {
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.hero-sub {
  font-size: 16px;
  color: rgba(234, 240, 255, .86);
  max-width: 64ch;
  margin-bottom: 16px;
  line-height: 1.55;
}

.hero-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Botões do Hero */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.btn-hero:hover {
  transform: translateY(-1px);
}

/* Botão Secundário (Gerado pelo Regex) */
.btn-hero.ghost {
  color: #EAF0FF;
  border: 1px solid rgba(234, 240, 255, .14);
  background: rgba(234, 240, 255, .04);
}

.btn-hero.ghost:hover {
  background: rgba(234, 240, 255, .08);
  border-color: rgba(234, 240, 255, .16);
}

/* Botão Principal (Sempre destacado) */
.btn-hero.primary {
  color: #111827;
  border: 1px solid rgba(107, 228, 255, .38);
  background: linear-gradient(180deg, #6BE4FF, #24DBFF);
}

.btn-hero.primary:hover {
  filter: brightness(1.1);
}

/* Cards da Direita */
.hero-right {
  border-left: 1px solid rgba(234, 240, 255, .18);
  padding: 12px 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.hero-card {
  border: 1px solid rgba(234, 240, 255, .22);
  border-radius: 18px;
  background: rgba(5, 7, 17, .30);
  padding: 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card h3 {
  font-size: 14px;
  color: rgba(234, 240, 255, .92);
  margin: 0 0 8px 0;
}

.hero-card p {
  font-size: 13px;
  margin: 0;
  color: rgba(234, 240, 255, .78);
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    border-left: none;
    padding: 0;
  }
}