.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.hero-content h1 {
    font-size: 2rem;
    color: #343a40;
}

.hero-content p {
    font-size: 1.2rem;
    color: #6c757d;
}

.btn-hero {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #6c63ff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-hero:hover {
    background: #574bff;
}

/* Botões redondos clicáveis */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-option {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    transition: transform 0.3s;
}

.btn-option:hover {
    transform: scale(1.1);
}


.events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.events-header h3 {
    font-size: 1.8rem;
    color: #343a40;
    display: flex;
    align-items: center;
    gap: 10px;
}

.events-header i {
    font-size: 1.4rem;
    color: #6c63ff;
}

#city-filter {
    padding: 8px 12px;
    border: 2px solid #6c63ff;
    border-radius: 8px;
    font-size: 1rem;
    color: #343a40;
    background: #fff;
    cursor: pointer;
}

.event-card {
    display: block;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.3s;
    text-decoration: none;
    color: black;
}

.event-card:hover {
    background: #e9ecef;
    transform: scale(1.02);
}

.event-city {
    font-size: 0.9rem;
    font-weight: bold;
    color: #6c63ff;
}
  