/* <!-- 
  Built by Christian Vendramel Rebolo
  If you're reading this, give credit  😉
  Unauthorized copying is prohibited.
--> */

/* cr-dev-signature: Christian Vendramel Rebolo */

/* ============================================================
   THIAGOFNX — COMPONENTE: HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* ── Fundo decorativo ── */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 70% 30%, rgba(200, 168, 75, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200, 168, 75, 0.03) 0%, transparent 60%);
}

/* Linha diagonal sutil */
.hero__bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 32%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold-dim) 35%,
    var(--gold-dim) 65%,
    transparent
  );
}

/* ── Grid do hero ── */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr; /* mobile: coluna única; desktop via responsive.css */
  gap: 2rem;
  align-items: center;
  width: 100%;
}

/* ── Coluna da foto ── */
.hero__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero__photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(200, 168, 75, 0.3);
  box-shadow: 0 0 0 10px rgba(200, 168, 75, 0.05);
  background: var(--bg-3);
  flex-shrink: 0;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Fallback caso a imagem não carregue */
.hero__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.hero__photo-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.hero__photo-label span {
  color: var(--gold);
  font-weight: 700;
}

/* ── Coluna de texto ── */
.hero__eyebrow {
  margin-bottom: 1.25rem;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero__name .name-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin-top: 0.6rem;
}

.hero__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero__tagline strong {
  color: var(--text);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Indicador de scroll ── */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-faint);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
}
