/* Container Principal */
.s28-map-container {
    width: 100%;
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
}

/* O Mapa */
#integradores-map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1; /* Garante que não sobreponha menus do site */
    border: 1px solid rgba(255,255,255,0.1);
}

/* Caixa de Status */
.s28-status-box {
    margin-top: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Status Sucesso (Achou o mais proximo) */
.s28-status-box.success {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
    color: #854d0e;
    border: 1px solid #fde047;
}

/* Estilização Premium do Popup do Leaflet */
.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    padding: 5px !important;
}

.leaflet-popup-content {
    font-family: 'Inter', sans-serif !important;
}

.leaflet-popup-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #eab308; /* Dourado / Amarelo da Studio28 */
    margin: 0 0 8px 0 !important;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 8px;
}

.leaflet-popup-content p {
    margin: 4px 0 !important;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
}

.leaflet-popup-content p strong {
    color: #111827;
}

/* Animação de Carregamento */
.s28-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #eab308;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
