.floating-button {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
}

.floating-button-top {
    background-color: #f00;
    color: #ffffff;
}

.floating-button-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
}

.floating-button-bottom {
    background-color: #34d058;
    color: #ffffff;
}

.floating-button:hover {
    opacity: 0.8;
}

.hovered {
    z-index: 10001;
}

.text-container {
    position: relative;
}

.divider {
    border-top: 1px solid #ccc;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.help-box {
    position: fixed;
    bottom: 1.9rem;
    left: 3.4rem;
    transform: translateY(-50%);
    align-items: center;
    border-radius: 10px;
    background-color: #ffffff; /* Cor de fundo do retângulo */
    color: #000;
    margin-left: 8px; /* Espaço entre o retângulo e o botão do WhatsApp */
    z-index: 999; /* Garante que o retângulo fique sobre outros elementos */
    box-shadow: 4rem;
}
