/* Reset padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* 🔹 Cabeçalho */
header {
    background: #1e3a8a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 600;
}

img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* 🔹 Banner */
.banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #64b5f6 100%);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.banner-content {
    max-width: 600px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.btn:hover {
    background: #e64a19;
    transform: scale(1.05);
}

/* 🔹 Seção de Eventos */
.eventos {
    text-align: center;
    padding: 60px 5%;
}

.eventos h2 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    width: 290px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img {
    height: 100px;
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin: 12px 0;
    font-size: 20px;
    color: #333;
}

.card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

/* 🔹 Rodapé */
footer {
    background: #6b6868;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

/* Estilo para o botão de menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto; /* Adiciona espaço automático à esquerda */
}

/* Ocultar o menu em telas menores */
@media (max-width: 700px) {
    nav ul.menu {
        display: none;
        flex-direction: column;
        background: #1e3a8a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    nav ul.menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
