/* =========================
   CONTACTO (base)
   ========================= */
.contacto-section {
  position: relative;
  overflow: hidden;
  background: #F5F3EE;
}

.contacto-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: #BFDFFF;
  border-radius: 50%;
  width: clamp(520px, 58vw, 980px);
  aspect-ratio: 1 / 1;
  left: clamp(-40vw, -34vw, -520px);
  top: 22%;
  transform: translateY(-22%);
  opacity: .6;
}

.contacto-row,
.contacto-info,
.contacto-mapa {
  position: relative;
  z-index: 1;
}

.contacto-section .title-section {
  text-align: left;
  margin-left: 0;
}

.c-subtitle {
  font-family: "Bodoni", serif;
  font-style: italic;
  font-size: clamp(18px, 1.2vw, 20px);
  margin: 0 0 10px 0;
  color: #1f2020;
}

.c-field {
  margin-bottom: 10px;
}

.c-label {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  font-weight: 700;
  color: #1f2020;
}

.c-value {
  margin: 2px 0 0 0;
  font-size: 14px;
}

.c-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.c-value a:hover {
  border-color: currentColor;
}

.mapa-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

/* =====================================
   =====================================
   ESCRITORIO (min-width: 992px)
   =====================================
   ===================================== */

@media (min-width: 992px) {
  /* Estilos específicos de escritorio si los hay */
}

/* =====================================
   =====================================
   MÓVIL (max-width: 991.98px)
   =====================================
   ===================================== */

@media (max-width: 991.98px) {
  .contacto-section::before {
    width: clamp(260px, 68vw, 460px);
    aspect-ratio: 1 / 1;
    left: auto;
    right: -24vw;
    top: -12vw;
    transform: none;
    opacity: .65;
  }

  .contacto-mapa {
    margin-top: 18px;
  }
}

