/* =========================================
   ESTILOS DE LA FICHA MODAL Y SU MINIMAPA
========================================= */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); 
    z-index: 9999; justify-content: center; align-items: center; padding: 20px;
}
.modal-window {
    background: white; width: 100%; max-width: 900px; max-height: 90vh;
    border-radius: 6px; box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    display: flex; flex-direction: column; overflow-y: auto; overflow-x: hidden;
}
.ficha-header { 
    padding: 20px 30px; 
    background: var(--color-plomo-claro, #f4f4f4); /* Fallback por si acaso */
    border-bottom: 4px solid #fd2827; 
}
.top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.estado-badge { font-size: 11px; font-weight: 700; color: white; padding: 4px 8px; border-radius: 3px; text-transform: uppercase; }
.badge-activo { background-color: var(--color-rojo, #fd2827); color: white; }
.badge-inactivo { background-color: var(--color-amarillo, #ffc107); color: #333; }
.close-ficha { background: none; border: none; font-size: 24px; cursor: pointer; color: #777; }
#ficha-titulo { font-size: 1.4rem; color: #222; margin-bottom: 5px; line-height: 1.2; }
.ficha-date { font-size: 0.85rem; color: #777; font-style: italic; font-weight: 400; }

.ficha-body { padding: 25px 30px; }
.ficha-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; margin-bottom: 20px; align-items: start; }
.section-header-wrapper {
    border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0;
    margin-top: 25px; margin-bottom: 10px; padding: 8px 0;
}
.section-header-wrapper.first-section { margin-top: 0; }
.section-header-wrapper.text-center { text-align: center; }
.section-label-red { color: var(--color-rojo, #fd2827); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin: 0; letter-spacing: 0.5px; }

.ficha-list { list-style: none; padding: 0; margin: 0; }
.ficha-list li { display: flex; align-items: baseline; gap: 8px; padding: 7px 0; border-bottom: 1px dotted #ccc; font-size: 0.9rem; color: #555; }
.ficha-list li:last-child { border-bottom: none; }
.ficha-list li strong { color: #222; font-weight: 700; min-width: 90px; }

.col-mapa { width: 100%; }
.ficha-map-wrapper { height: 100%; min-height: 220px; background: #eee; }
#mapa-detalle { width: 100%; height: 220px; border-radius: 4px; border: 1px solid #ddd; }
.text-desc { font-size: 0.95rem; color: #666; line-height: 1.6; margin-top: 10px; }
#wrapper-imagen img { max-width: 100%; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border-radius: 4px; }

.no-scroll { overflow: hidden; }

/* Responsive Ficha */
@media (max-width: 768px) {
    .ficha-grid { grid-template-columns: 1fr; gap: 20px; }
    .col-mapa { width: 100%; height: 300px; min-height: 300px; }
    #mapa-detalle { height: 100%; width: 100%; }
    .modal-window { width: 95%; margin: 10px auto; max-height: 90vh; }
}