* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

.conteudo {
    width: 100%;
}

.cab {
    width: 100%;
}

.cab img {
    width: 100%;
}

.formulario {
    width: 100%;
    padding: 30px 20px;
    background-color: #681f7e;
}

.bg-button {
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #444;
    background-color: #e1b360;
    border: none;
    border-radius: 6px;
}

.bg-button:hover {
    background-color: #ffb360;
}

.descricao {
    margin: 20px 0;
    padding: 0 10px;
}

.descricao p {
    text-align: justify;
    margin: 5px 0;
    padding: 0;
}

.descricao .titulo {
    margin: 15px 0;
}

.confirmacao {
    width: 90%;
    margin: 100px auto;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
}

.confirmacao a {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: #4aca59;
    color: #fff;
    font-size: 28px;
    width: 100%;
    text-decoration: none;
    line-height: 1;
    padding: 16px 0;
}

.button-instagram {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 3px 2px #222;
    z-index: 999;
}

.button-instagram img {
    width: 100%;
}

.sate-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.fundo-fosco {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
}

.cab .mob {
    display: block;
}

.cab .desk {
    display: none;
}

@media(min-width: 996px) {
    .conteudo {
        width: 100%;
        margin: 0 auto;
    }

    .principal {
        width: 1200px;
        margin: 0 auto;
    }

    .cab .mob {
        display: none;
    }

    .cab .desk {
        display: block;
    }

}

