html, body {
    margin: 0;
    padding: 0;
    font-family: Poppins;
    font-size: 26px;
    width: 100%;
    height: 100%;
    color: #4A4A4A;
}

a, a:link {
    text-decoration: none;
}

.centralizado {
    text-align: center;
}

.centralizadoVertical {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

/* menu */
.menu {
    width: 100%;
    display: flex;
    padding: 30px 0;
}

.itemMenu, .itemMenu a {
    color: black;
    font-size: 26px;
    text-align: center;
    width: 20%;
    text-decoration: none;
}

.titulo {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: clamp(24px, 200%, 50px);
    line-height: 65px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.amarelo {
    color: #E8BF62;
}

.fundoAmarelo {
    background-color: #E8BF62;
}

.fundoAmareloClaro {
    background-color: #F9ECD0;
}

.fundoRoxo {
    background-color: #7C62E8;
}

.fundoLaranja {
    background: radial-gradient(50% 50% at 50% 50%, #FED65A 0%, #FE9B00 100%);
}

.btnEntreEmContato, .btnEntreEmContato a, .btnEntreEmContato a:active, .btnEntreEmContato a:visited, .btnEntreEmContato a:hover, .btnEntreEmContato a:link {
    font-size: 18px;
    border-radius: 5px;
    padding: 5px;
    font-weight: bold;
    text-align: center;
    width: 200px;
    margin: auto;
    text-decoration: none;
    color: black;
}

.btnCliqueAqui, .btnCliqueAqui a, .btnCliqueAqui a:active, .btnCliqueAqui a:visited, .btnCliqueAqui a:hover, .btnCliqueAqui a:link {
    font-size: 30px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    width: 350px;
    margin: auto;
    text-decoration: none;
    background-color: #543128;
    text-shadow: none;
    line-height: 75px;
    height: 78px;
}

.linhaAmarela {
    background-color: #E8BF62;
    width: 200px;
    height: 10px;
}

.branco {
    color: #FFFFFF;
}

.homeTexto {
    font-size: 28px;
}

.homeLogo {
    width: 100%;
}

.listaDigital {

}

/* Accordion */
.accordion {
    display: block;
}

.accordion-item {
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    padding-bottom: 20px;
}

.tab-label {
    font-size: 30px;
}

.accordion-item input[type='checkbox'] {
    display: none;
}

.accordion-item label {
    display: block;
}

.accordion-item input[type='checkbox']:checked ~ .accordion-content, .accordion-item-visivel {
    display: block;
}

.accordion-item input[type='checkbox']:checked ~ .tab-label .seta, .accordion-seta-visivel {
    transform: rotate(180deg);
}

.accordion-content {
    padding-left: 70px;
    padding-top: 20px;
    padding-right: 60px;
    display: none;
    overflow: hidden;
    transition: max-height .2s ease-out;
}