/* inversionistas-specific styles */

/* ─── Hero ─────────────────────────────────────────────────────── */
.inv-hero {
  position: relative;
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.inv-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.inv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 6, .95) 0%,
    rgba(6, 6, 6, .50) 45%,
    rgba(6, 6, 6, .18) 100%
  );
  z-index: 1;
}

.inv-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 7rem;
  max-width: 720px;
}

.inv-hero__title {
  font-family: var(--font-headings);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -6px;
  line-height: 1.0;
  margin: .6rem 0 1.1rem;
}

.inv-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  color: rgba(252, 252, 252, .72);
  line-height: 1.7;
  margin: 0;
  max-width: 56ch;
}

/* ─── Cintilla: Oportunidades de inversión ───────────────────── */
.inv-cintilla {
  padding: 2.5rem 0;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.inv-cintilla h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.inv-cintilla__text {
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  color: rgba(252, 252, 252, .62);
  line-height: 1.85;
  margin: 0 auto;
  max-width: 72ch;
}

/* ─── Stats ─────────────────────────────────────────────────── */
.emp-stats {
  background-color: var(--bg-mid);
}

.emp-stat-item {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.emp-stat-item:last-child {
  border-right: none;
}

.emp-stat__number {
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-base);
  letter-spacing: .01em;
  line-height: 1;
  margin-bottom: .6rem;
}

.emp-stat__suffix {
  font-size: .55em;
  color: var(--accent);
  vertical-align: super;
  line-height: 0;
}

.emp-stat__label {
  font-family: var(--font-body);
  font-size: .78rem;
  color: rgba(252, 252, 252, .65);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 500;
  max-width: 16ch;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .emp-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 2.5rem 1rem;
  }
  .emp-stat-item:last-child { border-bottom: none; }
}
