.navbar-oficina {
    background-color: #ffc600;
    display: flex;
    justify-content: center;
}

.icone-oficina {
    -webkit-mask-image: url(/img/logo-svg.svg);
    mask-image: url(/img/logo-svg.svg);
    width: 180px;
    height: 58px;
    display: block;
    object-fit: cover;
    mask-position: center;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-mode: alpha;
    -webkit-mask-mode: alpha;
    mask-size: cover;
    -webkit-mask-size: cover;
    transition: background-color linear .15s;
    background-color: #000;
}

.botao-inscricao {
    width: 100%;
    background-color: transparent;
    border: #fff solid 1px;
    border-radius: 20px;
    transition: background-color .5s;
}

.botao-inscricao1 {
    width: 100%;
    background-color:  rgb(255, 187, 1);
    border: white solid 1px;
    border-radius: 10px;
    transition: background-color .5s;
}

.botao-inscricao:hover {
    background-color: #f39e00;
    color: #fff;
}