/* Banner Hero Superior */
.banner-historia {
  background: linear-gradient(135deg, var(--vzla-azul) 0%, #151d45 100%);
  padding: 4rem 0;
  border-bottom: 4px solid var(--vzla-rojo);
  animation: fadeInBg 1.2s ease-out forwards;
}

.banner-historia .linea-decorativa-amarilla {
  width: 80px;
  height: 4px;
  background-color: var(--vzla-amarillo);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleLine 0.6s ease-out 0.7s forwards;
}

/* Fondo decorativo geométrico sutil para el Hero */
.banner-historia .decoracion-fondo {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Tarjeta del Decreto Principal */
.bloque-historia-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Círculo del mazo (Gavel) */
.circulo-gavel {
  width: 48px;
  height: 48px;
  background-color: #fff5f5;
  color: var(--vzla-rojo);
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(267, 3, 54, 0.1);
}

.circulo-gavel .icono-local {
  width: 1.5rem;
  height: 1.5rem;
}

/* Tarjetas de Datos Técnicos en Paralelo */
.card-tecnica {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card-tecnica:hover {
  transform: translateY(-2px);
}

/* Bordes laterales limpios basados en paleta institucional */
.card-tecnica.border-azul {
  border-left: 5px solid var(--vzla-azul);
}

.card-tecnica.border-rojo {
  border-left: 5px solid var(--vzla-rojo);
}

/* Wrappers para los iconos internos */
.icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.icon-wrap .icono-local {
  width: 1.5rem;
  height: 1.5rem;
}

.bg-azul-suave {
  background-color: #eff2f9;
}
/* Ajuste fino de espaciado de texto */
.z-index-2 {
  z-index: 2;
}
.tracking-wider {
  letter-spacing: 0.05em;
}

@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 992px) {
  .banner-historia {
    padding: 3rem 0;
  }

  .banner-historia .decoracion-fondo {
    width: 320px;
    height: 320px;
    top: -25%;
    right: -25%;
  }
}

@media (max-width: 767px) {
  .banner-historia {
    padding: 2rem 0;
  }

  .banner-historia .linea-decorativa-amarilla {
    width: 60px;
  }

  .banner-historia .header-historia-titulo {
    font-size: 2.25rem;
    line-height: 2.6rem;
  }

  .banner-historia .hero-subtexto {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }

  .bloque-historia-card {
    padding: 1.5rem !important;
  }

  .circulo-gavel {
    width: 40px;
    height: 40px;
  }

  .icon-wrap {
    width: 34px;
    height: 34px;
  }
}
