body { display: flex; flex-direction: column; min-height: 100vh; }

/* page-band com layout flex (stats pills à direita) */
.page-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* stats pills */
.page-band-stats {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}
.band-stat {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    padding: .35rem .85rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(4px);
}
.band-stat i { color: #5ce0f0; font-size: .7rem; }

/* ================================================================
   MAP WRAPPER
================================================================ */
.map-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}
#map {
    flex: 1;
    width: 100%;
    min-height: 520px;
}

/* ================================================================
   LEAFLET LEGEND (custom)
================================================================ */
.info.legend {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    padding: .75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    color: #374151;
    min-width: 160px;
}
.legend-title {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
    margin: 0 0 .55rem;
}
.legend-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .35rem;
}
.legend-row:last-child { margin-bottom: 0; }
.legend-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(0,0,0,.15);
}
.legend-dot--itr   { background: #17A2B8; border-color: #0d6476; }
.legend-dot--outro { background: #adb5bd; border-color: #6c757d; }

@media (max-width: 576px) {
    .page-band-stats { display: none; }
}
