/* Filtro de estados */
.filtro-estados {
    margin-bottom: 20px;
    text-align: center;
}
.filtro-estados a {
    display: inline-block;
    margin: 5px;
    padding: 8px 16px;
    background: #eee;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}
.filtro-estados a:hover {
    background: #ccc;
}
.filtro-estados a.ativo {
    background: #1ea0d2;
    color: #fff;
}

/* Grid de cards */
.lista-cidades-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.cidade-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background-color: #fff;
}
.cidade-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.cidade-thumb {
    width: 100%;
    padding-top: 56.25%; /* proporção 16:9 */
    background-size: cover;
    background-position: center;
}
.cidade-info {
    padding: 15px;
    text-align: center;
}
.cidade-titulo {
    margin: 0;
    font-size: 18px !important;
    font-weight: 600;
}
