/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo geral */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Cabeçalho */
header {
    background-color: #3b4a3f;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #3b4a3f;
    height: 8vh;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #00c851;
    display: flex;
    align-items: center;
}

.logo img {
    margin-left: 8px;
    width: 30px;
    height: 30px;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-list li {
    margin: 10px;
}

.nav-list a {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-list a:hover {
    background-color: #00c851;
}

/* Seção principal */
main {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    color: #3b4a3f;
    margin-bottom: 15px;
}

h1, h2, h3, p {
    text-align: justify;
}

p {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

/* Cards de eventos */
.eventos-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.evento-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3b4a3f;
}

.evento-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #555;
}

.evento-card .btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #00c851;
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.evento-card .btn:hover {
    background-color: #028a3b;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-info h4,
.footer-social h4,
.footer-location h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00c851;
}

.footer-location p {
    color: #fff;
}

.footer-info p {
    color: #555;
}

.footer-social a {
    color: #00c851;
    text-decoration: none;
}

.footer-info a {
    color: #fff;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        height: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-list li {
        margin: 5px 0;
    }

    .evento-card {
        max-width: 100%;
    }

    footer .footer-container {
        flex-direction: column;
        gap: 15px;
    }
}
