/* ===========================================
   VIAJEROS EN DESTINO - Mapa Leaflet
   =========================================== */

.viajeros-mapa-section {
    display: none; /* Oculto hasta que AJAX cargue datos */
    clear: both;
    padding: 60px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.viajeros-mapa-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 0 0 8px;
}

.viajeros-mapa-subtitulo {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

/* --- Contador total --- */
.viajeros-total {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.viajeros-total-count {
    font-size: 2rem;
    font-weight: 700;
    color: #d45715;
    line-height: 1;
}

.viajeros-total-label {
    color: #666;
    font-size: 0.95rem;
}

/* --- Contenedor del mapa --- */
.viajeros-mapa-map {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- Markers personalizados --- */
.viajeros-marker {
    background: none !important;
    border: none !important;
}

.viajeros-marker-inner {
    position: relative;
    width: 30px;
    height: 40px;
}

.viajeros-marker-pin {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #d45715;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.viajeros-marker-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #d45715;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 11px;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    white-space: nowrap;
}

/* Badge sin viajeros: gris discreto */
.viajeros-marker-badge.vacio {
    background: #aaa;
}

/* Popup Leaflet */
.viajeros-popup .leaflet-popup-content {
    margin: 8px 12px;
    font-size: 13px;
    line-height: 1.4;
}

.viajeros-popup-nombre {
    font-weight: 600;
    color: #333;
}

.viajeros-popup-count {
    color: #d45715;
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .viajeros-mapa-section {
        padding: 25px 15px;
    }
    .viajeros-mapa-section h2 {
        font-size: 1.4rem;
    }
    .viajeros-mapa-map {
        height: 260px;
    }
    .viajeros-total-count {
        font-size: 1.6rem;
    }
}
