body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fbf8f3;
    min-height: 100vh;
}

.cabecalho {
    background-color: white;
    padding: 5px 0;
}
.cabecalho img {
    width: 187px;
}

.botao__link {
    text-decoration: none;
    display: inline-block;
    color: #3C6940;
    font-size: 21px;
    cursor: pointer;
    margin: 0 -0.3em 0 -0.4em;
    padding: 0.1em 0.3em;
    margin-top: -1px;
    position: relative;
    z-index: 2;
}
.botao__link::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 -0.3em 0 -0.4em;
    padding: 0.2em 0.3em;
    border-radius: 0.8em 0.3em;
    background: transparent;
    background-image: linear-gradient( to right, rgba(255, 225, 0, 0.1), rgba(255, 225, 0, 0.7) 4%, rgba(255, 225, 0, 0.3) );
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: content-box;
}
.botao__link:hover::after {
    opacity: 1;
} 
.conteudo {
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    position: relative;
}
.conteudo::before {
    content: url("../images/elementos-visuais/element-2.png");
    position: absolute;
    left: 0;
    top: 200px;
}
.conteudo::after {
    content: url("../images/elementos-visuais/element-1.png");
    position: absolute;
    right: 0;
    bottom: 0;
    height: 92px;
}
.conteudo__caixa-texto {
    color: #333;
    position: relative;
}
.conteudo__caixa-texto h1 {
    color: #3C6940;
    font-size: 34px;
    border-left: 10px solid #fde84f;
    padding-left: 16px;
}
.conteudo__caixa-texto p {
    font-size: 30px;
    font-weight: 500;
}
