/* landing-page/css/hero.css */
#hero {
  min-height: 100vh;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-accent);
}

.hero__container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--section-px);
  flex: 1;
  display: flex;
  align-items: center;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero__subheadline {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.btn--primary {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-1px);
}

/* Photo: square crop, gold border frame, no gradient overlay */
.hero__image-wrap {
  position: relative;
  max-width: 480px;
  overflow: hidden;
  /* border via inset shadow so não é cortada pelo overflow:hidden */
  box-shadow: inset 0 0 0 1px rgba(245, 197, 24, 0.3), var(--shadow-accent);
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40%;
  height: 40%;
  border-top: 2px solid rgba(245, 197, 24, 0.2);
  border-right: 2px solid rgba(245, 197, 24, 0.2);
  z-index: 2;
  pointer-events: none;
}

.hero__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 40%;
  height: 40%;
  border-bottom: 2px solid rgba(245, 197, 24, 0.2);
  border-left: 2px solid rgba(245, 197, 24, 0.2);
  z-index: 2;
  pointer-events: none;
}

.hero__photo {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
  aspect-ratio: 1 / 1;
  filter: none;
  transform: scale(1.45);
  transform-origin: center 45%;
}

/* Stats strip below hero content */
.hero__stats-strip {
  width: 100%;
  background-color: #0e0e0e;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hero__stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--section-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.hero__stat-divider {
  width: 1px;
  height: 64px;
  background: var(--color-border);
  flex-shrink: 0;
}
