/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: stretch;
  position: relative; overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

/* Inner wrapper: full-width, left-anchored — NOT a centered container */
.hero__inner {
  position: relative; z-index: 10;
  width: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 68px;
  padding-left: max(3rem, 12vw);
  padding-right: 2rem;
}
@media (min-width: 960px) {
  .hero__inner {
    padding-left: max(3rem, 15vw);
    padding-right: max(3rem, 46vw);
  }
}

.hero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  z-index: 1;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to right,
    #0c0c0d 0%,
    #0c0c0d 30%,
    rgba(12,12,13,0.88) 45%,
    rgba(12,12,13,0.50) 62%,
    rgba(12,12,13,0.10) 82%,
    rgba(12,12,13,0.00) 100%
  );
}
.hero__grid {
  position: absolute; inset: 0; z-index: 3;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.012) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.012) 80px);
  pointer-events: none;
}

.hero__content  { max-width: 560px; }
.hero__eyebrow  { margin-bottom: 24px; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle { font-size: 1rem; margin-bottom: 40px; }
.hero__actions  { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── HERO INTEGRATED STATS ───────────────────────────────────── */
.hero__stats-row {
  display: flex; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 36px;
  margin-top: 52px;
}
.hero__stat       { display: flex; flex-direction: column; gap: 6px; }
.hero__stat-num   {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
  display: flex; align-items: baseline;
}
.stat-val { line-height: 1; }
.stat-sym { font-size: 1.3rem; font-weight: 700; line-height: 1; color: var(--gold); }
.hero__stat-label { font-size: 0.68rem; line-height: 1.4; color: var(--text-dim); letter-spacing: 0.05em; }
.hero__stat-sep   {
  width: 1px; height: 44px; background: rgba(255,255,255,0.10);
  margin: 0 28px; flex-shrink: 0;
}

/* ─── HERO MOBILE ─────────────────────────────────────────────── */
@media (max-width: 700px) {
  /* Esconde apenas a imagem; overlay vira degradê cinza */
  .hero__bg-img  { display: none; }
  .hero__overlay {
    background: linear-gradient(
      150deg,
      #2a2a2e 0%,
      #18181b 45%,
      #0c0c0d 100%
    );
  }

  .hero__inner {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 48px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero__content   { max-width: 100%; }
  .hero__stats-row { flex-wrap: wrap; gap: 20px 0; padding-top: 28px; margin-top: 40px; }
  .hero__stat      { flex: 1 1 40%; }
  .hero__stat-sep  { display: none; }
  .hero__trust     { flex-wrap: wrap; gap: 16px; }
  .hero__trust-sep { display: none; }
  .page-hero       { padding: calc(var(--nav-h) + 40px) 0 48px; }
}

/* ─── PAGE HERO (internal pages) ──────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 30%;
  background: linear-gradient(to left, rgba(200,169,110,0.04), transparent);
}
.page-hero .eyebrow    { margin-bottom: 16px; }
.page-hero h1          { max-width: 640px; }
.page-hero p           { margin-top: 16px; max-width: 560px; font-size: 1.05rem; }
.page-hero--article h1 { max-width: 760px; }

/* ─── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; }
.breadcrumb a { font-size: 0.75rem; letter-spacing: 0.08em; color: var(--text-dim); text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); font-size: 0.75rem; }
.breadcrumb__active { color: var(--gold) !important; }
