    body, 
    .navbar, 
    .navbar * {
        font-family: 'Montserrat Arabic', sans-serif !important;
    }
    .fondo-azul-marino {
      background-color: #063649;
    }    
    .fondo-color-secundario {
      background-color: #051229ff;
    }
    /* MAPA */
    .map-container-fluid {
      width: 100%;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
    .map-wrapper {
      position: relative;
      display: inline-block;
      width: 80%; /* Ajusta tamaño del mapa */
      max-width: 1200px;
    }
    .map-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }
    .map-point {
      position: absolute;
      transform: translate(-50%, -50%);
      cursor: pointer;
      z-index: 5;
    }
    .map-point::before {
      content: "";
      display: block;
      width: 25px;
      height: 25px;
      background: red;
      border-radius: 50%;
      border: 2px solid #fff;
      box-shadow: 0 0 6px rgba(0,0,0,0.4);
    }
    .map-tooltip {
      display: none;
      position: absolute;
      top: -1500%;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.85);
      color: white;
      padding: 10px;
      border-radius: 8px;
      width: 200px;
      z-index: 10;
      text-align: left;
    }
    .map-tooltip img {
      width: 100%;
      height: 100%;
      height: auto;
      margin-bottom: 6px;
      border-radius: 4px;
    }
    .map-point:hover .map-tooltip {
      display: block;
    }

    /* Historial responsivo */
    .historial-row {
      border: 1px solid #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 15px;
      flex-wrap: wrap;
    }
    .historial-row .col {
      margin-bottom: 10px;
    }

    /* Titulos */
    h1 {
      margin-bottom: 15px;
    }