.botao-efeito {
    background-color: #2196F3;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;

    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Cresce ao passar o mouse */
.botao-efeito:hover {
    transform: scale(1.1);
}

/* Muda de cor ao clicar */
.botao-efeito:active {
    background-color: #f44336;
}
