.Progreso {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.Carga {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.Carga[Activa] {
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}
  
.Carga:not([Activa]) {
    opacity: 0;
    animation: fadeOut 0.5s ease-in-out;
}

.navbar{
    min-height: 80px;
    font-family: var( --font-family-global);
    font-size: 16px;
}

.navbar .espacio{
    min-width: 30px;
}

.navbar .imagen{
    max-height: 80px;
}

.navbar .nav-align {
    display: flex;
    align-items: center;
}


.navbar .nav-align .material-symbols-outlined {
    margin-right: 5px;
}

.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 100px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out; 

  }
  
.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover{
    transform: scale(1.2);
}

.breadcrumb a {
    text-decoration: none;
}
