    body, 
    .navbar, 
    .navbar * {
        font-family: 'Montserrat Arabic', sans-serif !important;
    }
    .fondo-azul-marino {
      background-color: #063649;
    }
    #cover-container {
      position: relative;
      background-image: url('../assets/img/mineria_portada.jpeg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 100vw;
      height: 100vh;

      display: flex;
      flex-direction: column;
      justify-content: center; 
      align-items: center;    
      text-align: center;
    }
    p,h2{
      color: white;
    }
    #cover-container::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.5); 
    }
    .titulo {
      display: inline-block; /* Para que el contenedor solo ocupe el ancho del texto */
      position: relative;
      margin-bottom: 20px; /* Espacio para la línea */
    }
    
    .company-name {
      position: relative;
      display: inline-block;
    }
    
    .company-name::after {
      content: "";
      position: absolute;
      bottom: -15px; /* Distancia desde la base del texto */
      left: 0;
      width: 100%; /* Mismo ancho que "ANFERMEX" */
      height: 5px;
      background: #BC9C22;
      
      /* Hacerlo responsive */
      height: 0.4vw;
      min-height: 3px;
      max-height: 6px;
      bottom: -1.5vw;
      min-bottom: -12px;
      max-bottom: -20px;
    }
    .cover-content {
      position: relative;
      z-index: 1;
      color: white;
    }
      .container-marketing {
        padding-top: 3rem;
        padding-bottom: 3rem;
      }
      .featurette-divider {
        margin: 5rem 0;
      }