* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #5FB157;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 2em;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

nav {
    background-color: #A1C84D;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out; /* Animação de deslizar para baixo */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

nav a {
    color: #fff;
    margin: 0 20px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #f0f4f8;
    transform: scale(1.1); /* Aumento de escala ao passar o mouse */
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #5FB157;
    margin-bottom: 20px;
    font-size: 1.8em;
}

h3 {
    color: #A1C84D;
    margin-top: 25px;
    font-size: 1.5em;
}

p, ul {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

ul {
    list-style-type: disc;
    padding-left: 25px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

blockquote {
    font-style: italic;
    color: #555;
    background-color: #f9f9f9;
    padding: 15px;
    margin: 20px 0;
    border-left: 5px solid #A1C84D;
}
