/* Reseta estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Corpo da página */
body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-color: #2e7d32; /* Verde escuro */
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.subtitulo {
    opacity: 0.9;
    font-size: 1.2rem;
}

/* Seções */
section {
    max-width: 800px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Títulos */
h2 {
    margin-bottom: 15px;
    color: #2e7d32; /* Verde */
}

/* Listas e categorias */
.categoria {
    margin-bottom: 20px;
}

.categoria ul {
    margin-left: 20px;
}

/* Imagens */
.imagens img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
    margin-top: 10px;
    border: 2px solid #2e7d32;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background-color: #2e7d32; /* Verde */
    color: white;
}
