.btn-primary {
  margin-top: 12px;
}
.hero-section-lic {
  display: flex;
  align-items: flex-end;   /* Alinea contenido abajo */
  height: 600px; /* Revisa si necesita ser responsiva */
  position: relative;
  padding: 25px;         /* Añade espacio en los bordes (ajusta el valor) */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-section-lic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Negro al 30% */
  z-index: 0;
  pointer-events: none; /* Añadido para seguridad */
}
.hero-section-lic > .container-md {
  position: relative;
  z-index: 1;
  width: 100%;          /* Ayuda al manejo de márgenes */
  margin-left: 0;       /* Anula centrado, alinea a la izquierda */
  margin-right: auto;   /* Necesario junto con margin-left: 0 */
  margin-bottom: 0;     /* Evita margen inferior extra */
}
.hero-section-lic .nombre-lic-hero h1 {
  color: white;
  font-size: 28px; /* Tamaño de fuente para móvil */
  margin: 0;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .hero-section-lic .nombre-lic-hero h1 {
     font-size: 45px; /* Tamaño de fuente para escritorio */
  }
  .btn-secondary {
    color: #fff;
    background-color: hsla(0, 0%, 100%, 0);
    border-color: #fff;
    margin-top: 11px;
  }
  .btn-secondary:hover {
  /* Fondo transparente con un toque de blanco */
  background-color: rgba(255, 255, 255, 0.1); 
  
  /* **CAMBIO AQUÍ:** Borde del mismo color transparente */
  border-color: rgba(255, 255, 255, 0.1); 
  
  /* Texto blanco */
  color: white;
}

  @media (max-width: 768px) {
    /* **CAMBIO AQUÍ: Usamos un selector más específico** */
    .nombre-lic-hero .btn-secondary {
        /* Los estilos que quieres */
        color: #fff !important; /* Usar !important como último recurso */
        background-color: hsla(0, 0%, 100%, 0) !important; 
        border-color: #fff !important; 
        margin-top: 8px !important;
    }
}
