.btn-corpo, form input[type=submit],
.offer .text-offer a.btn-corpo{
    color: var(--color-body);
    padding: 15px 20px !important;
    font-size: 16px;
    display: inline-block;
    text-align: center !important;
    transition: .5s all;
    font-family:var(--fontPrimary);
    font-weight:600;
    cursor:pointer;
    min-width:150px;
    text-transform:uppercase;
    background:var(--colorSand);
}
.offer .text-offer a.btn-corpo.btn-gold:hover,
.offer .text-offer a.btn-corpo.btn-blue:hover,
.btn-corpo.btn-blue:hover,.btn-gold:hover, a.btn-corpo:hover{
    color:#fff;
    background:var(--colorSecondary);
}
.buttons-flex{
    display:flex;
    justify-content:center;
    gap:40px;
}
.buttons-flex.buttons-flex-column{
    flex-direction:column;
    gap:10px;
    max-width:max-content;
    margin:0 auto;
}
a.general-link{
    color: var(--colorSecondary);
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    text-decoration-line: underline;
}
@media(max-width:767px){
    .btn-corpo, form input[type=submit], .offer .text-offer a.btn-corpo{
        display:block;
    }
    .buttons-flex{
        flex-direction:column;
    }
}
