* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}


body {
    background-color: #e8f5e9;
    padding: 20px; 
}


.main-container {
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}


.header-section {
    text-align: center;
    padding: 40px 0 20px 0; 
}

.header-section h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 10px;
}

.header-section p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.imagem {
    margin-top: 10px;
    text-align: center;
}

.imagem img {
    max-width: 100%; 
    border-radius: 4px;
}

.imagem figcaption {
    margin-top: 10px;
    color: #555;
    font-size: 14px;
}

.secao {
    border-top: 3px dashed #a5d6a7;
    padding: 30px 0; 
}

.secao h2 {
    margin-bottom: 20px;
    color: #1b5e20; 
}

.secao p {
    margin-bottom: 15px; 
    line-height: 1.6; 
}

.secao li {
    margin-left: 30px;
    margin-bottom: 10px; 
    line-height: 1.5;
}

.destaque-verde {
    font-weight: 700;
    color: #2e7d32;
}


.secao-citacao {
    background-color: #f1f8e9;
    padding: 30px;
    margin: 20px 0;
    border-left: 5px solid #4caf50;
}

.texto-citacao {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.autor-citacao {
    color: #666;
    font-style: italic;
}

.secao-imagem {
    padding: 30px 0;
    border-top: 3px dashed #a5d6a7; 
}

.negrito {
    font-weight: bold;
    color: #2e7d32; /
}

footer {
    border-top: 3px dashed #a5d6a7;
    padding: 30px 0 40px 0;
    text-align: center;
}

footer h2 {
    color: #1b5e20;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline; 
}