/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--off-white);
  position: relative;
  overflow-x: hidden;
}

/* Detalhe decorativo */
.hero-deco {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--nude-pale);
  z-index: 0;
  pointer-events: none;
}

.hero-deco-line {
  position: absolute;
  bottom: 80px; left: 60px;
  width: 120px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: fadeLeft 1s 1.4s both;
}

/* Conteúdo lado esquerdo */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.2s both;
}

.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.35s both;
}

.hero-h1 em {
  font-style: italic;
  color: var(--nude-deep);
}

.hero-sub {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.65s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  animation: fadeUp 0.8s 0.8s both;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* Lado direito — imagem */
.hero-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: scaleIn 1.2s 0.3s both;
}

/* Badge flutuante da Dra. */
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  animation: fadeUp 0.8s 1s both;
  max-width: 260px;
  z-index: 3;
}

.hero-badge-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}

.hero-badge-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.hero-badge-cro {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
  }

  .hero-deco {
    display: none;
  }

  .hero-content {
    padding: 110px 32px 60px;
  }

  .hero-image {
    height: 520px;
    min-height: 0;
  }

  .hero-badge {
    left: 24px;
    bottom: 24px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-content {
    padding: 100px 24px 48px;
  }
}
