/* ==============================
   HERO VIDEO AIDA
   ============================== */

#hero-video-aida {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* VIDEO */
#hero-video-aida .hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY OSCURO */
#hero-video-aida .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 2;
}

/* GRID DECORATIVO */
#hero-video-aida .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  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: 6px 6px;
}

/* CONTENIDO */
#hero-video-aida .hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
}

/* LAYOUT */
#hero-video-aida .hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  align-items: center;
}

/* BLOQUE IZQUIERDO */
#hero-video-aida .hero-left {
  max-width: 640px;
  padding: 2.5rem 2.5rem 2.8rem;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.78),
    rgba(0,0,0,0.62)
  );
  border-left: 4px solid #E10600;
}

/* EYEBROW */
#hero-video-aida .hero-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #E10600;
}

/* TÍTULO */
#hero-video-aida .hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* DIVISOR */
#hero-video-aida .hero-divider {
  width: 96px;
  height: 5px;
  margin-bottom: 1.8rem;
  background: linear-gradient(90deg, #E10600, #ADA587);
}

/* TEXTO */
#hero-video-aida .hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  color: #D4D4D4;
}

/* FEATURES */
#hero-video-aida .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.95rem;
}

#hero-video-aida .hero-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E0E0E0;
}

#hero-video-aida .hero-features i {
  color: #E10600;
}

/* SERVICIOS */
#hero-video-aida .hero-services span {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: #fff;
  border-bottom: 2px solid #ADA587;
}

/* ==============================
   INDICADORES
   ============================== */

.section-indicadores {
  background: #000;
  padding: 2.2rem 0;
}

.indicador-numero {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.indicador-texto {
  font-size: 0.85rem;
  color: #ADA587;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Punto vivo */
.indicador-numero::after {
  content: " ●";
  color: #E10600;
  font-size: 0.7rem;
  animation: pulso 1.6s infinite;
}

@keyframes pulso {
  0% { opacity: .3; }
  50% { opacity: 1; }
  100% { opacity: .3; }
}

/* ==============================
   MOBILE
   ============================== */

@media (max-width: 768px) {

  #hero-video-aida {
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 75px;
  }

  /* TEXTO ARRIBA */
  #hero-video-aida .hero-content {
    padding-top: 0;
  }
  #hero-video-aida .hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15 !important;

}

  #hero-video-aida .hero-left {
    max-width: 100%;
    text-align: center;
    border-left: none;
    border-top: 4px solid #E10600;
  }

  #hero-video-aida .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }

  #hero-video-aida .hero-features {
    justify-content: center;
  }

  /* VIDEO ABAJO */
  #hero-video-aida .hero-video-bg {
    position: relative;
    height: 40vh;
    min-height: 240px;
  }

  /* OCULTAR CAPAS */
  #hero-video-aida .hero-overlay,
  #hero-video-aida .hero-grid {
    display: none;
  }
}

@media (max-width: 576px) {

  .indicador-numero {
    font-size: 1.1rem;
    text-align: left;
  }

  .indicador-texto {
    font-size: 0.65rem;
    text-align: left;
  }

  .section-indicadores {
    padding: 1.5rem 1rem;
  }
}
