.hero-sales {
  position: relative;
  padding: 120px 0 56px;
  overflow: hidden;
  min-height: 88svh;
  display: flex;
  align-items: center;
}

.hero-sales::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 217, 255, 0.1), transparent 30%),
    radial-gradient(
      circle at 85% 30%,
      rgba(34, 211, 238, 0.08),
      transparent 28%
    );
  pointer-events: none;
}

.hero-sales-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-sales-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: 0.85;
}

.hero-badge::before,
.hero-badge::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--neon);
  opacity: 0.5;
}

.hero-sales-content h1 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  max-width: 23ch;
}

.hero-sales-content p {
  line-height: 1.5;
}

.hero-sales-content h1 span {
  color: var(--neon);
}

.hero-description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 14px;
}

.hero-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-highlight-list span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9e7ff;
  font-size: 13px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-hero-primary {
  color: #041018;
  background: linear-gradient(90deg, var(--neon), var(--neon-strong));
  box-shadow:
    0 0 20px rgba(0, 217, 255, 0.45),
    0 10px 30px rgba(0, 217, 255, 0.18);
}

.btn-hero-primary:hover {
  /* transform removido — controlado pelo efeito magnético em animations.js */
  box-shadow:
    0 0 28px rgba(0, 217, 255, 0.75),
    0 16px 40px rgba(0, 217, 255, 0.22);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #97a7c7;
  font-size: 11px;
}

.hero-trust-row span {
  position: relative;
}

.hero-trust-row span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.hero-sales-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  width: 100%;
  max-width: 440px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.proof-item {
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #fff;
}

.proof-item span {
  display: block;
  font-size: 10px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 768px) {
  .hero-sales {
    padding: 100px 0 52px;
    min-height: auto;
  }

  .hero-sales-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* ── TEXTO ── */
  .hero-sales-content {
    max-width: 100%;
    text-align: center;
    margin-top: 25px;
  }

  .hero-badge {
    font-size: 10px;
    margin-bottom: 16px;
  }

  .hero-sales-content h1 {
    max-width: 100%;
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 14.5px;
    max-width: 30ch;
    margin: 0 auto 22px;
    line-height: 1.6;
  }

  /* Botão — não ocupa largura total, fica proporcional */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: auto;
    min-width: 220px;
    max-width: 260px;
    font-size: 14px;
    min-height: 46px;
    padding: 12px 24px;
  }

  .hero-trust-row {
    justify-content: center;
    font-size: 11px;
    gap: 8px;
  }

  /* ── IMAGEM ── */
  .hero-sales-visual {
    padding: 0 8px;
  }

  .hero-visual-card {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
  }

  .hero-visual-card::before {
    content: "";
    position: absolute;
    inset: -24px;
    background: radial-gradient(ellipse at 60% 40%, rgba(0, 217, 255, 0.13), transparent 65%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
  }

  .hero-visual-card img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45))
            drop-shadow(0 0 24px rgba(0, 217, 255, 0.1));
  }

  .hero-visual-card::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 217, 255, 0.35), transparent);
    z-index: 0;
  }
}