

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f0;
    color: #333333;
    margin: 20px;
}

.cabecalho {
    background-color: #d2ddbe;
    color: darkgreen;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    border-radius: 5px;
}

.cabecalho-marca {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cabecalho-imagem {
    width: 150px;
    height: 90px;
    object-fit: cover;
    border-radius: 5px;
}

.cabecalho-titulo {
    color: #414c2f;
}

.cabecalho-subtitulo {
    font-size: 14px;
    color: #9f7f40;
}

.cabecalho-lista {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.cabecalho-lista-item {
    display: block;
}

.cabecalho a {
    color: #19240f;
    font-family: Calibri, sans-serif;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 4px;
}

.secao {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.secao h2 {
    color: #414c2f;
    margin-bottom: 10px;
}

.conteudo {
    display: flex;
    gap: 20px;
    align-items: center;
}

.texto {
    flex: 1;
    line-height: 1.6;
}

.imagem img {
    max-width: 250px;
    height: auto;
    border-radius: 5px;
}

.botao-tema {
    background-color: #414c2f;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}




body.escuro {
    background-color: #1e2418;
    color: #e0e0e0;
}

body.escuro .cabecalho {
    background-color: #2c3523;
}

body.escuro .cabecalho-titulo {
    color: #a3c293;
}

body.escuro .cabecalho-subtitulo {
    color: #d4af37;
}

body.escuro .cabecalho a {
    color: #e0e0e0;
}

body.escuro .secao {
    background-color: #273020;
}

body.escuro .secao h2 {
    color: #a3c293;
}

body.escuro .botao-tema {
    background-color: #a3c293;
    color: #1e2418;
}
