.pr-section * { box-sizing: border-box; }
.pr-section button { border: 0; }

.pr-section { padding: 40px 0; background-color: #F2F9FD; }
.pr-grid { display: flex; flex-wrap: wrap; align-items: stretch; max-width: 1124px;
  margin: auto;}
.pr-left, .pr-right { flex: 1 1 50%; padding: 0 20px; min-width: 300px; }

@media (max-width: 1024px) {
  .pr-grid { flex-direction: column; }
  .pr-stats { justify-content: center; }
}

/* Columna izquierda */
.pr-left {
  text-align: left;
  background-color: var(--pr-left-bg, #F2F9FD);
  padding: 10px;
}
@media (max-width: 1024px) {
  .pr-left { padding: 30px; }
}

.pr-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #002855;
  text-align: left;
  margin: 0 0 21px 0;
}

.pr-intro {
  font-size: 18px;
  line-height: 28px;
  color: #2F2F2F;
  margin: 0 0 45px 0;
}

.pr-stats {
  display: flex; flex-wrap: wrap; gap: 12px 75px; margin-bottom: 59px;
}

.pr-stat { display: flex; flex-direction: column; align-items: center; }
.pr-stat__icon { max-width: 40px; max-height: 40px; }
.pr-stat__icon svg { display: block; width: 100%; height: 100%; }

.pr-stat__content { text-align: center; margin-top: 8px; }
.pr-stat__title {
  font-size: 16px; line-height: 28px; font-weight: 700; color: #2F2F2F; margin: 5px 0 0 0;
}
.pr-stat__desc  { margin: 0; font-weight: 700; color: #2F2F2F; }

.pr-cta { font-size: 19px; font-weight: 700; line-height: 21px; color: #333; margin-bottom: 0; }
.pr-btn {
  display: inline-block;
  font-size: 15px; line-height: 1;
  padding: 14px 50px; text-align: center; text-decoration: none;
  color: #fff; background-color: var(--pr-btn-bg, #035FA4);
  border: none; border-radius: 24px;
  transition: background-color .25s ease;
}
.pr-btn:hover { background-color: var(--pr-btn-bg-hover, #003865); }

/* Columna derecha */
.pr-right {
  background-color: #F2F9FD;
  align-content: center;
}
.pr-map { position: relative; width: 100%; }
.pr-map img { display: block; width: 100%; height: auto; }

/* Pin */
.pin {
  position: absolute;
  width: 15px; height: 15px;
  background: #035FA4;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  cursor: pointer;
  z-index: 10;
}
.pin::after {
  content: "";
  position: absolute; z-index: 10;
  width: 5px; height: 5px; margin: -3px; background: #fff; border-radius: 50%;
}
.pin .pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: -1;
}
.pin .pulse::after {
  content: "";
  position: absolute; top: -5px; left: -5px;
  width: 10px; height: 10px; border-radius: 50%;
  animation: pulsate 2s ease-out infinite;
  opacity: 0; box-shadow: 0 0 3px 1px #fff;
}

@keyframes pulsate {
  0%   { transform: scale(0.1); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scale(2); }
}

/* Tooltip */
.pr-tooltip {
  position: absolute; z-index: 20;
  max-width: 320px; background: #fff; color: #111;
  border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.15);
  padding: 12px 14px; font-size: 14px; line-height: 1.35;
  pointer-events: none; opacity: 0; transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease;
}
.pr-tooltip.visible { opacity: 1; transform: translateY(-10px); }
.pr-tooltip::after {
  content: ""; position: absolute; left: var(--arrow-x, 50%); transform: translateX(-50%);
  bottom: -8px; border: 8px solid transparent; border-top-color: #fff;
}

@media (max-width: 764px){
    .pr-stats {
  gap: 12px 20px;
  margin-bottom: 20px;
}
}
