.contato {
    .box-contato {
        padding: 40px 20px;
        border-radius: 15px;
        border: 3px solid var(--azul-claro);
        background:#F7FDFF;
    
        .label-file {
            border-radius: 15px;
            border: 2px solid var(--azul-claro);
            height: 125px;
            padding-top: 10px;
            padding-left: 20px;
            width: 100%;
            color: #4B4B4B;
            background-color: #FFF;
            
            &:hover {
                cursor: pointer;
            }
        }
    }
    
}
.mvv {
    .card-mvv {
        border-radius: 15px;
        background: #F7FDFF;
        box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
        height: 100%;
        padding: 0 25px 25px 25px;

        .box-icon {
            width: 100%;
            border-radius: 0px 0px 15px 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 0;
            margin-bottom: 30px;

            &.card-m {
                background: var(--azul-claro);
            }
            
            &.card-vi {
                background: var(--azul-medio);
            }
            
            &.card-va {
                background: #005475;
            }
        }

        h3 {
            color: #FFF;
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 22px; /* 110% */
            margin-bottom: 0;
        }

        a {
            color: #4B4B4B;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 25px; /* 156.25% */
            text-align: center;
            text-decoration: none;
            display: block;
        }
    }
}