/* Overlay modal — servicios 360klrmx.com */

#seccion-contacto,
#seccion-tiendas {
  scroll-margin-top: 100px;
}
.gora-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 45, 70, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gora-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.gora-overlay__panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s ease;
}

.gora-overlay.is-open .gora-overlay__panel {
  transform: translateY(0) scale(1);
}

.gora-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #f4f4f4;
  color: #1b3158;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.gora-overlay__close:hover {
  background: #1b3158;
  color: #fff;
}

.gora-overlay__hero {
  padding: 40px 48px 24px;
  background: linear-gradient(135deg, #1b3158 0%, #0a2d46 100%);
  color: #fff;
}

.gora-overlay__tag {
  display: inline-block;
  font-family: "Roboto Condensed", "Open Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a79262;
  margin-bottom: 8px;
}

.gora-overlay__title {
  margin: 0 0 12px;
  font-family: "Roboto Condensed", "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.gora-overlay__lead {
  margin: 0;
  font-family: Roboto, "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.gora-overlay__body {
  padding: 28px 48px 40px;
  font-family: Roboto, "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.78);
}

.gora-overlay__body ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
}

.gora-overlay__body li {
  margin-bottom: 8px;
}

.gora-overlay__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.gora-overlay__btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.gora-overlay__btn--primary {
  background: #a79262;
  color: #fff;
}

.gora-overlay__btn--primary:hover {
  background: #8f7849;
  color: #fff;
}

.gora-overlay__btn--secondary {
  background: transparent;
  color: #1b3158;
  border: 2px solid #1b3158;
}

.gora-overlay__btn--secondary:hover {
  background: #1b3158;
  color: #fff;
}

body.gora-overlay-open {
  overflow: hidden;
}

/* Cursor sobre cajas de servicio */
#row_servicios .nectar-fancy-box .box-link {
  cursor: pointer;
}
