﻿.card-botao {
    background: #f2f2f2;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    text-decoration: none;
    color: #014bbb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .2s ease;
}

    .card-botao .card-body {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-botao i {
        font-size: 55px;
        color: #1e56b3;
    }

    .card-botao .card-footer {
        border-top: none;
        background: transparent;
        text-align: center;
        color: black;
    }

    .card-botao:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }