/* =========================================================
   POPUP DE PROYECTOS
========================================================= */

.leaflet-popup-content-wrapper {
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0;
  width: 330px !important;
}

.popup-proyecto {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #1f2937;
}

.popup-imagen,
.popup-imagen-vacia {
  width: 100%;
  height: 150px;
  background: #eef1f4;
}

.popup-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-imagen-vacia {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.popup-imagen-vacia span {
  font-size: 38px;
}

.popup-encabezado {
  padding: 16px;
  border-top: 5px solid #8b1e24;
}

.popup-categoria {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.popup-categoria-icono {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.popup-categoria-nombre,
.popup-codigo {
  display: block;
}

.popup-categoria-nombre {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

.popup-codigo {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}

.popup-titulo {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: #111827;
}

.popup-estado {
  margin: 0 16px 14px;
  padding: 8px 10px;
  border: 1px solid;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
}

.popup-datos {
  padding: 0 16px;
}

.popup-fila {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.popup-etiqueta {
  color: #6b7280;
  font-size: 12px;
}

.popup-valor {
  color: #111827;
  font-weight: 600;
  font-size: 12px;
  text-align: right;
}

.popup-monto .popup-valor {
  color: #8b1e24;
  font-size: 13px;
}

.popup-avance {
  padding: 12px 16px 0;
}

.popup-avance-cabecera {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.popup-barra {
  width: 100%;
  height: 8px;
  border-radius: 20px;
  background: #e5e7eb;
  overflow: hidden;
}

.popup-barra-progreso {
  height: 100%;
  border-radius: 20px;
}

.popup-descripcion,
.popup-observaciones {
  margin: 14px 16px 0;
  padding: 12px;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 12px;
  line-height: 1.5;
}

.popup-observaciones p {
  margin: 5px 0 0;
}

.popup-acciones {
  padding: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.popup-boton {
  flex: 1;
  padding: 9px 10px;
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.popup-boton-principal {
  background: #8b1e24;
  color: #ffffff;
}

.popup-boton-secundario {
  background: #e5e7eb;
  color: #1f2937;
}

.popup-boton:hover {
  opacity: 0.9;
}