
.page-hero--sm {
  height: 40vh;
  min-height: 200px;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}
.page-hero--sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,28,.65) 0%,
    rgba(0,0,0,.15) 100%
  );
}
.page-hero__caption {
  position: absolute;
  bottom: 48px;
  left: 80px;
  color: #fff;
}
.page-hero__caption .section-label {
  color: var(--pink);
  margin-bottom: 10px;
}
.page-hero__caption h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}

/* ════════════════════════════════════════════
   SECCIÓN INTRO
   ════════════════════════════════════════════ */
.contacto-intro {
  padding: 88px 0;
}
.contacto-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Texto */
.contacto-intro__text h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 22px;
  line-height: 1.2;
}
.contacto-intro__text p {
  font-size: .97rem;
  line-height: 1.78;
  color: var(--gray);
  margin-bottom: 14px;
}
.contacto-intro__text p:last-of-type { margin-bottom: 36px; }

/* Lista datos de contacto */
.contacto-datos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacto-dato {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contacto-dato__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(191,48,60,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: background .25s;
}
.contacto-dato:hover .contacto-dato__icon {
  background: var(--red);
  color: #fff;
}
.contacto-dato__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contacto-dato__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
}
.contacto-dato__value {
  font-size: .97rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  font-style: normal; /* para <address> */
}
a.contacto-dato__value {
  color: var(--black);
  transition: color .2s;
}
a.contacto-dato__value:hover { color: var(--red); }

/* Imagen lateral */
.contacto-intro__img {
  position: relative;
}
.contacto-intro__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Badge "25 años" */
.contacto-intro__img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.35);
}
.badge-num {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.badge-txt {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-align: center;
  margin-top: 4px;
  opacity: .9;
}

/* ════════════════════════════════════════════
   SECCIÓN MAPA + SEGUNDA FOTO
   ════════════════════════════════════════════ */
.contacto-mapa-section {
  background: var(--light);
  padding: 80px 0;
}
.contacto-mapa-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Mapa */
.contacto-mapa {
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.contacto-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* Segunda foto */
.contacto-foto2 {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
}
.contacto-foto2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.contacto-foto2:hover img { transform: scale(1.04); }

.contacto-foto2__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
}

@media (max-width: 1024px) {
  .contacto-intro__inner { gap: 48px; }
  .contacto-mapa-inner { gap: 20px; }
}

@media (max-width: 768px) {
  .contacto-intro { padding: 56px 0; }
  .contacto-intro__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 48px;
  }
  /* En móvil: texto arriba, foto abajo */
  .contacto-intro__text { order: 1; }
  .contacto-intro__img  { order: 2; }

  .contacto-intro__img img { height: 320px; }
  .contacto-intro__img-badge { bottom: -16px; left: 16px; }

  .contacto-mapa-section { padding: 56px 0; }
  .contacto-mapa-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .contacto-mapa,
  .contacto-mapa iframe { min-height: 300px; }
  .contacto-foto2 { min-height: 280px; }

  .page-hero__caption { left: 28px; bottom: 32px; }
}