* {
    margin: 0;
    padding: 0;
    border: 0;
}

.btn-wsp {
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background-image: url('https://cdn-icons-png.flaticon.com/128/4494/4494494.png');
    background-size: 100%; /* Ajusta el tamaño de la imagen */
    background-position: center; /* Centra la imagen en el botón */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    border-radius: 50%; /* Asegura que el botón sea circular */
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 300ms ease;
}

.btn-wsp:hover {
    background: transparent;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    .btn-wsp {
        width: 63px;
        height: 63px;
        line-height: 63px;
    }
}



.container {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* Esto es para 16:9, puedes ajustar según necesites */
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%; /* Mantiene la relación de aspecto 16:9 */
}

.embed-responsive-item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
