@media(max-width: 640px) {
    .floating-button-m {
        position: fixed;
        bottom: 2rem;
        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-whatsapp-m {
        position: fixed;
        bottom: 2rem;
        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;
    }

    .help-box-m {
        position: fixed;
        bottom: 2rem;
        left: 4.5rem;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        border-radius: 10px;
        background-color: #ffffff;
        /* Cor de fundo do retângulo */
        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;
    }

    .floating-button-top {
        right: 2rem;
        background-color: #7d7d7d;
        /* Cinza 50% */
        color: #ffffff;
        /* Branco */
    }

    .floating-button-bottom {
        left: 2rem;
        background-color: #34d058;
        /* Verde do WhatsApp */
        color: #ffffff;
        /* Branco */
    }

    .floating-button:hover {
        opacity: 0.8;
    }

    .hovered {
        z-index: 10001;
        /* ou qualquer valor maior do que o z-index da navbar */
    }

    .text-container {
        position: relative;
    }

    .divider {
        border-top: 1px solid #ccc;
        /* ou a cor desejada */
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media(min-width: 640px) {
    .floating-button {
        position: fixed;
        bottom: 2rem;
        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-whatsapp {
        position: fixed;
        bottom: 2rem;
        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.8rem;
        width: 2.8rem;
    }

    .floating-button-top {
        right: 2rem;
        background-color: #7d7d7d;
        /* Cinza 50% */
        color: #ffffff;
        /* Branco */
    }

    .floating-button-bottom {
        left: 2rem;
        background-color: #34d058;
        /* Verde do WhatsApp */
        color: #ffffff;
        /* Branco */
    }

    .floating-button:hover {
        opacity: 0.8;
    }

    .hovered {
        z-index: 10001;
        /* ou qualquer valor maior do que o z-index da navbar */
    }

    .text-container {
        position: relative;
    }

    .divider {
        border-top: 1px solid #ccc;
        /* ou a cor desejada */
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .help-box {
        position: fixed;
        bottom: 1.8rem;
        left: 5rem;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        border-radius: 10px;
        background-color: #ffffff;
        /* Cor de fundo do retângulo */
        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;
    }
}
