/* ═══════════════ HERO ═══════════════ */
.hero {
  padding-top: calc(var(--section-py) + 60px);
  padding-bottom: 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-content { max-width: 600px; }

.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: 1.15rem; color: var(--text-dim); max-width: 540px; margin-bottom: 40px; }

.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }

/* ─── Selo de prova social ─── */
.hero-prova {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}
.hero-prova-item { display: flex; flex-direction: column; }
.hero-prova-item strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--green); font-weight: 800; line-height: 1.1; }
.hero-prova-item span { font-size: 0.82rem; color: var(--text-mute); }

/* ─── Visual do fundador ─── */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,8,8,0.75) 0%, transparent 40%);
}
.hero-visual-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 10px 20px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.hero-visual-badge img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.hero-visual-badge span { font-size: 0.85rem; color: var(--text-dim); }
.hero-visual-badge strong { color: var(--ink); }
.hero-visual-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,200,150,0.25) 0%, transparent 70%);
  top: -40px; right: -60px;
  pointer-events: none;
  z-index: -1;
}

/* ─── Efeito de brilho contínuo no botão ─── */
.btn-shine { position: relative; }
.btn-shine::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.65) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btn-shine-sweep 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shine-sweep {
  0% { left: -60%; }
  55% { left: 130%; }
  100% { left: 130%; }
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding-top: calc(var(--section-py) + 90px); padding-bottom: 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-prova { justify-content: center; margin-inline: auto; max-width: 420px; }
  .hero-visual { margin-top: 40px; order: -1; }
  .hero-visual-frame { max-width: 260px; }
}
