.cidades-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
    margin: 30px 0;
}
.cidades-hub-card {
    display: block;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-left: 4px solid #f37021;
    border-radius: 8px;
    padding: 16px 18px;
    text-decoration: none;
    color: #333;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.cidades-hub-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    color: #f37021;
}
.cidades-hub-card strong { display: block; font-size: 1.05rem; color: #f37021; margin-bottom: 4px; }
.cidades-hub-card span { font-size: 0.85rem; color: #777; }

.cidades-uf-lista {
    columns: 3;
    column-gap: 30px;
    margin: 25px 0;
}
@media (max-width: 768px) { .cidades-uf-lista { columns: 1; } }
.cidades-uf-lista a {
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid #f3702115;
    color: #444;
    text-decoration: none;
    font-size: 0.92rem;
    break-inside: avoid;
}
.cidades-uf-lista a:hover { color: #f37021; }
.cidades-uf-lista a .pop-badge {
    font-size: 0.75rem;
    color: #f37021;
    font-weight: bold;
    margin-left: 4px;
}
.voltar-hub { display: inline-block; margin-bottom: 20px; color: #f37021; font-weight: bold; text-decoration: none; }

.cidades-empresas-destaque {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-left: 4px solid #f37021;
    border-radius: 8px;
    padding: 16px 18px;
    margin: 25px 0;
}
.cidades-empresas-destaque p { margin: 0; color: #333; }
.cidades-empresas-destaque a {
    color: #f37021;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}
.cidades-empresas-destaque a:hover { text-decoration: underline; }
@media (max-width: 768px) {
    .cidades-empresas-destaque a {
        white-space: normal;
        width: 100%;
    }
}
