/* ============================================================
   hero.css — Seção Hero
   ============================================================ */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(32px, 6vw, 64px));
  padding-bottom: var(--section-gap);
  overflow: hidden;
}

/* Gradiente suave de fundo (parallax leve via JS) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(15, 163, 156, 0.10), transparent 70%),
    radial-gradient(50% 50% at 10% 90%, rgba(241, 90, 41, 0.06), transparent 70%),
    var(--paper);
  will-change: transform;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

/* ---------- Coluna de conteúdo ---------- */
.hero__content .eyebrow {
  margin-bottom: var(--space-3);
}

.hero__title {
  margin-bottom: var(--space-3);
  max-width: 15ch;
}

.hero__subtitle {
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: var(--space-5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

/* Selo de apoio abaixo do botão */
.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-3);
  font-size: 14px;
  color: var(--ink-soft);
}

.hero__note svg {
  width: 18px;
  height: 18px;
  color: var(--teal-base);
  flex-shrink: 0;
}

/* Prova social rápida no hero */
.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}

/* ---------- Coluna de imagem ---------- */
.hero__media {
  position: relative;
}

/* Corte diagonal de assinatura (eco do suporte metálico da placa) */
.hero__figure {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  aspect-ratio: 4 / 5;
  /* Assinatura visual: usada UMA única vez na página */
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cartão flutuante de nota do Google sobre a imagem */
.hero__floating-card {
  position: absolute;
  left: -8px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.hero__floating-card .rating {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}

.hero__floating-card .rating-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__floating-card .stars {
  color: var(--action-base);
  font-size: 14px;
  letter-spacing: 1px;
}

.hero__floating-card .rating-label {
  font-size: 12px;
  color: var(--ink-soft);
}
