/* ─── HOME CSS — hero escuro dramático + corpo claro ─── */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(15%);
  transform: scale(1.04);
  transition: transform 9s ease;
  will-change: transform;
}
.hero:hover .hero-bg-img { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13,27,42,.88) 0%,
    rgba(13,27,42,.72) 50%,
    rgba(13,27,42,.40) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
}

.hero-content { flex: 1; }

/* Hero — texto branco sobre fundo escuro */
.hero .display { color: #fff; }
.hero .display em { color: var(--accent); font-style: italic; }
.hero .body-lg { color: rgba(255,255,255,.72); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Painel de métricas — glassmorphism */
.hero-metric-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-shrink: 0;
  align-self: flex-end;
  min-width: 195px;
}

.metric-item { display: flex; flex-direction: column; gap: .2rem; }
.metric-num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.03em;
  font-family: var(--ff-serif);
}
.metric-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-family: var(--ff);
}
.metric-divider { width: 100%; height: 1px; background: rgba(255,255,255,.1); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.4);
  font-size: 1.1rem;
  animation: bounceY 2s infinite;
  will-change: transform;
}
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* INTRO STRIP — escura */
.intro-strip {
  background: var(--bg-dark);
  padding: 4.5rem 0;
  border-bottom: none;
}
.intro-text {
  font-size: clamp(1.125rem, 2.2vw, 1.45rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 78ch;
  margin-inline: auto;
  text-align: center;
  font-family: var(--ff-serif);
}
.intro-text em { color: var(--accent); font-style: italic; font-weight: 500; }

/* SERVICES LIST — corpo claro */
.services-overview { background: var(--bg-alt); }

.section-head { margin-bottom: 3.5rem; }
.section-head .heading { margin-top: .5rem; }

.services-list { display: flex; flex-direction: column; }

.service-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 1rem;
  border-top: 1.5px solid var(--border);
  cursor: pointer;
  transition: background-color var(--t1) var(--ease), padding-left var(--t1) var(--ease);
  border-radius: 2px;
}
.service-row:last-child { border-bottom: 1.5px solid var(--border); }

.service-row:hover { background: rgba(184,148,58,.05); padding-left: 1.75rem; }
.service-row:hover .service-row-num { color: var(--accent); }
.service-row:hover h3 { color: var(--accent); }
.service-row:hover .service-row-icon { opacity: 1; transform: none; }

.service-row-num {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: .08em;
  flex-shrink: 0;
  width: 2rem;
  transition: color var(--t1) var(--ease);
  font-family: var(--ff);
}

.service-row-body { flex: 1; display: flex; flex-direction: column; gap: .3rem; }
.service-row-body h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t1) var(--ease);
  letter-spacing: -.01em;
  font-family: var(--ff-serif);
}
.service-row-body p { font-size: .9375rem; color: var(--ink-muted); font-family: var(--ff); }

.service-row-icon {
  font-size: 1.25rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--t1) var(--ease);
  flex-shrink: 0;
}

/* PHILOSOPHY */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.philosophy-image-wrap { position: relative; }
.philosophy-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(13,27,42,.12);
}

.philosophy-content {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-left: none;
}

.pillars { display: flex; flex-direction: column; gap: .9rem; margin-top: 2rem; }
.pillars li {
  display: flex; align-items: center; gap: .85rem;
  font-size: .9375rem; color: var(--ink-mid);
  font-family: var(--ff);
}
.pillar-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA BAND — escura dramática */
.cta-band {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.cta-band-bg { position: absolute; inset: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%); }
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,.97) 0%, rgba(13,27,42,.88) 60%, rgba(13,27,42,.65) 100%);
}
.cta-band-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.cta-band .heading { color: #fff; }
.cta-band .body-lg { color: rgba(255,255,255,.65); margin-top: .75rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; align-items: flex-start; padding-bottom: 5rem; }
  .hero-metric-col { flex-direction: row; flex-wrap: wrap; width: 100%; min-width: unset; }
  .metric-divider { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-image-wrap { max-height: 420px; overflow: hidden; }
  .philosophy-img { aspect-ratio: 16/9; }
  .philosophy-content { padding: 0; margin-top: 0; margin-inline: 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
