/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8E71C;
    color: #333;
}

header {
    background-color: #4A90E2;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
}

nav ul li {
    margin-right: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Seções */
section {
    padding: 60px 20px;
    text-align: center;
}

#home {
    background-color: #7ED321;
    color: #fff;
}

.cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #F5A623;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

#sobre, #eventos, #conteudo, #comunidade, #contato {
    background-color: #fff;
    margin-top: 20px;
}

/* Formulário de Contato */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form textarea, form button {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #4A90E2;
    border-radius: 5px;
}

form button {
    background-color: #4A90E2;
    color: #fff;
    cursor: pointer;
}

/* Rodapé */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Menu Responsivo */
.menu-toggle {
    display: none;
    background-color: #4A90E2;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #4A90E2;
        width: 100%;
        top: 60px;
        left: 0;
        z-index: 1000;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    nav ul.show {
        display: flex;
    }
}