bodybotao {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
    background: #f0f0f0;
}

.botaopaginas {
    display: inline-flex;
    align-items: center;
    margin: 20px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .botao:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

.whatsappbotao {
    background-color: #25D366;
}

.chatbotao {
    background-color: #007BFF;
}

.contatobotao {
    background-color: #FF5722;
}

.botao i {
    margin-right: 10px;
    font-size: 20px;
}

.container-botoesmarketing {
    position: relative; /* necessário para z-index funcionar */
    z-index: 10000;
    text-align: center;
    margin-top: 50px;
}

.botaomarketing {
    display: inline-block;
    padding: 8px 16px;
    background-color: #25D366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

    .botaomarketing:hover {
        background-color: #1ebe5d;
        color: white;
    }