/* Estilos generales */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

p {
    margin-top: 20px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-float img {
    width: 40px;
    margin-top: 10px;
}

/* Media query para hacer la página responsive */
@media only screen and (max-width: 768px) {
    .container {
        width: 90%;
    }
}
