/* =========================
   PÁGINA CONTACTO
========================= */
.contact-page {
  padding: 26px 0 40px;
}

.contact-section {
  padding-bottom: 60px;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

/* =========================
   CARD DE CONTACTO
========================= */
.contact-card {
  width: min(100%, 610px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 36px;
  box-shadow: 16px 18px 28px rgba(85, 92, 140, 0.20);
  padding: 34px 34px 32px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-pill {
  width: 100%;
  min-height: 68px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(31, 98, 232, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(31, 98, 232, 0.22);
  filter: brightness(1.02);
}

.contact-pill img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.whatsapp-pill {
  background: #2d8a1f;
}

.phone-pill,
.mail-pill {
  background: #2f67e8;
}

/* =========================
   CTA
========================= */
.contact-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-cta {
  min-width: 430px;
  min-height: 120px;
  border-radius: 30px;
  background: linear-gradient(180deg, #2f67e8 0%, #2a60dd 100%);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 28px;
  box-shadow: 0 14px 24px rgba(47, 103, 232, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(47, 103, 232, 0.32);
}

.contact-cta span {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.12;
}

.paw-badge {
  width: 90px;
  height: 90px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paw-badge img {
  width: 90px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(85, 92, 140, 0.22));
}
/* =========================
   MAPA
========================= */
.map-section {
  width: min(100%, 760px);
}

.map-frame {
  width: 100%;
  height: 300px;
  border-radius: 0;
  overflow: hidden;
  background: #f3f5fb;
  border: 1px solid #c9d4f3;
}

/* =========================
   UBICACIÓN
========================= */
.location-card {
  width: min(100%, 700px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 34px;
  box-shadow: 16px 18px 28px rgba(85, 92, 140, 0.20);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: center;
  column-gap: 24px;
}

.location-icon-box {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background: #ffeef9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-icon-box img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.location-content h2 {
  margin: 0 0 10px;
  color: #1a1c1e;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.location-content p {
  margin: 0;
  color: #515456;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

/* =========================
   REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .contact-page {
    padding: 14px 0 28px;
  }

  .contact-layout {
    gap: 30px;
  }

  .contact-card {
    width: 100%;
    border-radius: 30px;
    padding: 24px 20px;
  }

  .contact-pill {
    min-height: 62px;
    font-size: 1rem;
    gap: 14px;
  }

  .contact-pill img {
    width: 30px;
    height: 30px;
  }

  .contact-cta-wrap {
    gap: 16px;
  }

  .contact-cta {
    min-width: 100%;
    min-height: 108px;
    border-radius: 26px;
    padding: 20px;
  }

  .contact-cta span {
    font-size: 1.35rem;
  }

    .paw-badge {
    width: 72px;
    height: 72px;
  }

  .paw-badge img {
    width: 72px;
  }
}

  .map-frame {
    height: 250px;
  }

  .location-card {
    width: 100%;
    grid-template-columns: 88px 1fr;
    column-gap: 16px;
    padding: 22px 20px;
    border-radius: 28px;
  }

  .location-icon-box {
    width: 82px;
    height: 82px;
    border-radius: 16px;
  }

  .location-icon-box img {
    width: 44px;
    height: 44px;
  }

  .location-content h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .location-content p {
    font-size: 0.96rem;
    line-height: 1.4;
  }
}

/* =========================
   MÓVIL
========================= */
@media (max-width: 520px) {
  .contact-layout {
    gap: 24px;
  }

  .contact-card {
    padding: 20px 16px;
    border-radius: 26px;
  }

  .contact-pill {
    min-height: 58px;
    font-size: 0.98rem;
    gap: 12px;
  }

  .contact-pill img {
    width: 28px;
    height: 28px;
  }

  .contact-cta {
    min-height: 96px;
    border-radius: 24px;
  }

  .contact-cta span {
    font-size: 1.15rem;
    line-height: 1.18;
  }

  .paw-badge {
    width: 68px;
    height: 68px;
  }

  .paw-badge img {
    width: 42px;
    height: 42px;
  }

  .map-frame {
    height: 220px;
  }

  .location-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    row-gap: 14px;
  }

  .location-content h2 {
    margin-bottom: 6px;
  }
}