

.containerxx {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagemxx {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher a tela */
}

/* Esconde a versão mobile no desktop */
.mobilexx {
    display: none;
}

/* Em telas menores que 768px, exibe a versão mobile e oculta a desktop */
@media (max-width: 768px) {
    .desktopxx {
        display: none;
    }
    .mobilexx {
        display: block;
    }
}

.whatsapp-button {
    position: fixed;
    z-index: 999;
    bottom: 80px;  /* Distância do rodapé */
    right: 10px;   /* Distância da lateral direita */
    width: 60px;   /* Tamanho do botão */
    height: 60px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}
