.nosotros-hero-section {
  position: relative;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(207, 44, 41, 1) 0%, rgba(186, 30, 27, 1) 100%);
  color: #ffffff;
  padding: 110px 0 100px;
  display: flex;
  overflow: hidden;
  border-radius: 0;
}

/* patrón de sutil cuadrícula (grid) */
.nosotros-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 140px 140px, 140px 140px;
  mask: radial-gradient(circle at center, rgba(0, 0, 0, .06), rgba(0, 0, 0, .18));
  pointer-events: none;
}


.nosotros-hero-title {
  color: var(--color-background);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 auto;
  animation: hero-fade-up .6s ease-out both;
}

/* Counters inside hero */
.hero-counters {
  margin-top: 2rem;
}

.hc-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px 16px;
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);
  transition: transform .2s ease;
  animation: hero-fade-up .7s ease-out both;
}

.hc-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  color: #fff;
}

.hc-prefix{
  font-size: 5rem;
  line-height: 1;
  font-weight: 500;
   /* bajar ligeramente el símbolo + para alinearlo visualmente con el número */
  display: inline-block;
  transform: translateY(0.35rem);
}

.hc-suffix {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1;
}

.hero-counter {
  font-size: clamp(2.6rem, 7.5vw, 4.6rem);
  line-height: 1;
}

.hc-label {
  opacity: .95;
  margin-top: 6px;
  font-size: 0.95rem;
}

/* Separadores tipo punto entre columnas (desktop) */
@media (min-width: 768px) {
  .hero-counters .col-md-4 {
    position: relative;
  }

  .hero-counters .col-md-4:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-68%);
    color: rgba(255, 255, 255, .95);
    font-weight: 900;
    font-size: 44px;
    line-height: 1;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .nosotros-hero-section {
    padding: 90px 0 70px;
    min-height: 260px;
  }

  .nosotros-hero-title {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .hc-item {
    padding: 16px 14px;
  }

  .hero-counter {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}

/* Animaciones de entrada */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animar grupo de counters y botón ligeramente desfasados */
.hero-counters {
  animation: hero-fade-up .75s ease-out .1s both;
}

.nosotros-hero-section .btn {
  animation: hero-fade-up .8s ease-out .15s both;
}