/* Protector de imagen */
.cssload-container img {
    user-select: none; 
    -moz-user-select: none; 
    -webkit-user-select: none;
    pointer-events: none;  
}

.protector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.preloader{
    background-color: #f1f1f1; /* Fondo de la página */
}

/* Imagen responsiva */
.responsive-image {
    width: 1250px;
    height: 750px;
}

@media (max-width: 1250px) {
    .responsive-image {
        width: 100%;
        height: auto; 
    }
}

@media (max-width: 650px) {
    .responsive-image {
        content: url('/assets/site/images/WB2.gif'); 
        width: 100%;
        height: auto; 
    }
}

/* Chat Whatsapp */
.whatsapp-link {
    position: fixed;
    bottom: 125px;
    left: 24px;
    width: 62px;
    height: 62px;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background-color: #25D366;
}
.whatsapp-link:hover {
    background-color: #1DA851;
}