/* =============================== */
/* ESTILO GERAL DO SITE            */
/* =============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f4f9f4;
    color: #1a1a1a;
    line-height: 1.6;
    padding-bottom: 40px;
}

/* Contêiner principal – CENTRALIZADO e sem encostar na borda */
.corpo {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 30px;          /* 💚 garante distância das bordas */
    box-sizing: border-box;
}

/* =============================== */
/* CABEÇALHO E MENU                */
/* =============================== */

nav {
    background-color: #2e7d32;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.menu li a:hover {
    color: #c8ffcd;
    text-shadow: 0px 0px 6px rgba(255,255,255,0.7);
}

/* =============================== */
/* TÍTULOS                         */
/* =============================== */

h1 {
    text-align: center;
    margin: 30px 0;
    color: #1b5e20;
    font-size: 36px;
}

h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #2e7d32;
    font-size: 26px;
}

h6 {
    font-size: 14px;
    margin-top: 5px;
    color: #555;
}

/* =============================== */
/* PARÁGRAFOS                      */
/* =============================== */

p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

/* =============================== */
/* IMAGENS                         */
/* =============================== */

img {
    display: block;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Imagens específicas da home */
.imagem img {
    width: 90%;
    max-width: 900px;
}

/* =============================== */
/* RODAPÉ                          */
/* =============================== */

footer {
    margin-top: 40px;
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}
