/* Servicios Menetan — hero.css — Hero rediseñado Sprint 1 */

.hero {
  background-color: var(--color-navy);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-24);
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-navy) 0%,
    var(--color-gold) 35%,
    var(--color-gold) 65%,
    var(--color-navy) 100%
  );
  z-index: 2;
}

.hero__bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 75% 65% at 72% 50%,
    #163660 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-16);
  align-items: center;
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(200, 146, 42, 0.15);
  border: 1px solid rgba(200, 146, 42, 0.30);
  color: var(--color-gold-light);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

/* ── Título ── */
.hero__title {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.hero__title-accent {
  color: var(--color-gold);
  font-style: normal;
}

/* ── Subtítulo ── */
.hero__subtitle {
  font-size: var(--size-md);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: var(--space-10);
}

.hero__subtitle strong {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 600;
}

/* ── Botones ── */
.hero__actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}

.hero__actions .btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.70);
  border-color: rgba(255, 255, 255, 0.20);
  font-size: var(--size-sm);
}

.hero__actions .btn--ghost:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.50);
  background-color: rgba(255, 255, 255, 0.06);
}

/* ── Stats block (columna derecha) ── */
.hero__stats-block {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.hero__stats-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero__stats-label span {
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.hero__stats-rule {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

/* ── Números ── */
.hero__stats-row {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-6);
}

.hero__stat {
  flex: 1;
}

.hero__stat-num {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}

.hero__stat-unit {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--color-gold);
  margin-left: 3px;
  letter-spacing: 0;
}

.hero__stat-label {
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  line-height: 1.4;
}

.hero__stats-divider-v {
  width: 1px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.hero__stats-divider-h {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-6);
}

/* ── Trust list ── */
.hero__trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.60);
  font-weight: 400;
  line-height: 1.4;
}

.hero__trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(200, 146, 42, 0.18);
  border: 1px solid rgba(200, 146, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .hero__stats-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
    align-items: start;
  }
  .hero__stats-label { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero {
    padding-block: var(--space-16);
    min-height: auto;
  }
  .hero__title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    letter-spacing: -0.02em;
  }
  .hero__subtitle { max-width: 100%; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .hero__title { font-size: clamp(1.8rem, 7vw, 2.3rem); }
  .hero__subtitle { max-width: 100%; margin-bottom: 1.5rem; }
  .hero__actions { flex-direction: column; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats-block { padding: 1.25rem; }
  .hero__stat-num { font-size: 1.7rem; }
  .hero__badge { font-size: 10px; }
  .hero__stats-block {
    display: flex;
    flex-direction: column;
  }
}
