.btn-evrm{
    background:#D4AF37;
    color:#000;
    border:1px solid #B8941F;
    padding:12px 18px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
    transition:0.2s;
    min-height:42px;
    font-family:Arial, Helvetica, sans-serif;
}

.btn-evrm:hover{
    background:#F0D16B;
    color:#000;
    transform:translateY(-1px);
}

.btn-evrm:active{
    transform:translateY(0);
}

.btn-evrm-secundario{
    background:#111;
    color:#D4AF37;
    border:1px solid #D4AF37;
}

.btn-evrm-secundario:hover{
    background:#1f1f1f;
    color:#F0D16B;
}

.btn-evrm-perigo{
    background:#7f1d1d;
    color:#fff;
    border:1px solid #ef4444;
}

.btn-evrm-perigo:hover{
    background:#991b1b;
    color:#fff;
}

.btn-evrm-pequeno{
    padding:8px 12px;
    min-height:34px;
    font-size:12px;
}

.btn-evrm-grande{
    padding:15px 22px;
    min-height:50px;
    font-size:16px;
}

@media(max-width:700px){
    .btn-evrm{
        width:100%;
        text-align:center;
    }
}