/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--color-dark);
  padding-top: 28px;
  padding-bottom: 8px;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1700px;
  z-index: 0;
  box-shadow: inset -80px 0 60px -30px var(--color-dark);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
  display: block;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,12,9,0.2) 0%, rgba(6,12,9,0) 20%, rgba(6,12,9,0) 68%, rgba(6,12,9,0.62) 100%),
    linear-gradient(90deg, var(--color-dark) 0%, rgba(12,20,16,0.92) 16%, rgba(12,20,16,0.55) 36%, rgba(12,20,16,0.14) 56%, rgba(12,20,16,0) 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 50px;
}

.hero-copy h1 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
  max-width: 540px;
}

.hero-sub {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-feature-icon {
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(34, 197, 94, 0.14);
  color: var(--color-primary);
}
.hero-features strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.hero-features small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ---------- Visual column ---------- */
.hero-visual {
  position: relative;
  min-height: 380px;
}

.hero-card {
  position: absolute;
  top: -24px;
  right: 0;
  width: 280px;
  background: rgba(10, 16, 13, 0.92);
  border: 1px solid var(--color-dark-border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  color: #fff;
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.hero-card p {
  color: rgba(255,255,255,0.6);
  font-size: 12.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.hero-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 6px;
  margin-bottom: 18px;
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.hero-card-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.hero-card-social p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.55);
}
.hero-card-social strong { color: #fff; font-size: 12px; }
.hero-card-social.light p { color: rgba(255,255,255,0.6); }

/* ---------- Stats bar ---------- */
.stats-bar {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -28px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}
.stat-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.stat-item small {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
}
.stat-icon {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.stat-icon.star { background: var(--color-primary-light); }
.stat-icon.pink { background: #FCE7F3; }
.stat-icon.green { background: var(--color-primary-light); }

/* Parceiro oficial — o logo da Cora já é circular e vem sangrado até a borda
   do arquivo, então ele ocupa o disco inteiro em vez de ficar dentro de um
   fundo colorido. A caixa é maior que a dos outros ícones e o padding cria a
   folga que o arquivo não tem: o logo mantém os mesmos 34px de diâmetro, mas
   ganha respiro em relação ao texto e ao divisor. */
.stat-icon-brand {
  background: none;
  width: 42px;
  height: 42px;
  padding: 4px;
}
.stat-icon-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: var(--color-border);
}
