/* Reset and base styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: rgb(34, 34, 34);
    font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    /* Fundo geral em azul muito claro */
    --primary-color: #e3f2fd;
    /* Destaques e cabeçalho em azul médio/escuro */
    --secondary-color: #1976d2;
    /* Para bordas de lista */
    --accent-color: #0d47a1;
    /* Texto de links no rodapé */
    --link-color: #0b3d91;
}

body {
    font-size: 100%;
    background-color: var(--primary-color);
}

.conteudo {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.cabecalho {
    width: auto;
    margin-top: 2rem;
    max-width: 500px;
}

.cabecalho-titulo {
    padding: 1rem;
    font-size: 1.7rem;
    font-weight: 300;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cabecalho-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.conteudo-principal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.conteudo-paragrafo,
.conteudo-principal h4 {
    max-width: 500px;
}

.ingredientes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

.ingredientes li {
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.rodape {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.rodape a {
    color: var(--link-color);
}

.rodape-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 16px;
    font-weight: 700;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none;
    }
}

/* Responsive design */
@media (max-width: 800px) {
    .conteudo {
        flex-direction: column;
        margin-top: 0;
    }

    .cabecalho {
        margin-top: 0rem;
    }
}
