/* ═══════════════════════════════════════════════════════════════════════════
   CAROUSEL DE BRASÕES DOS MUNICÍPIOS
═══════════════════════════════════════════════════════════════════════════ */

.municipios-brasoes-area {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0 24px;
}

.brasoes-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.brasoes-viewport {
    flex: 1;
    overflow: hidden;
}

.brasoes-track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: 80px;
    column-gap: 16px;
    row-gap: 12px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.brasao-slide {
    flex: 0 0 auto;
    width: 80px;
    display: flex;
    justify-content: center;
}

.brasao-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    width: 100%;
}

.brasao-link:hover {
    transform: translateY(-3px);
    transition: transform .2s;
}

.brasao-caption {
    font-size: 11px;
    text-align: center;
    color: #555;
    line-height: 1.25;
    word-break: break-word;
    max-width: 78px;
}

.brasao-link:hover .brasao-caption { color: #0066cc; }

.brasoes-btn {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    padding: 0;
    transition: background .2s, color .2s;
}

.brasoes-btn:hover:not(:disabled) {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

.brasoes-btn:disabled {
    opacity: .3;
    cursor: default;
}

@media (max-width: 480px) {
    .brasoes-track { grid-auto-columns: 70px; }
    .brasao-slide { width: 70px; }
    .brasoes-btn  { width: 24px; height: 24px; font-size: 17px; }
}
