/* ============================================================
   CAT-OH — Página Contáctanos
   ============================================================ */

#co-contact-page {
  max-width: 1280px;
  margin: 0 auto;
  font-family: 'Nunito', sans-serif;
  color: #273B42;
}

/* ── 1. HERO ─────────────────────────────────────────────── */
#co-contact-page .co-contact-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  min-height: 320px;
}

#co-contact-page .co-contact-hero__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

#co-contact-page .co-contact-hero__title-box {
  position: absolute;
  left: 0;
  bottom: 40px;
  background: #308e95;
  padding: 22px 40px;
  max-width: 620px;
}

#co-contact-page .co-contact-hero__title {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ── 2. BREADCRUMB ───────────────────────────────────────── */
#co-contact-page .co-contact-breadcrumb {
  padding: 18px 24px;
  font-size: 14px;
  color: #FF6D26;
}
#co-contact-page .co-contact-breadcrumb a { color: #FF6D26; text-decoration: none; }
#co-contact-page .co-contact-breadcrumb a:hover { text-decoration: underline; }
#co-contact-page .co-contact-breadcrumb span.current { color: #54595F; }

/* ── 3. TARJETAS ─────────────────────────────────────────── */
#co-contact-page .co-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px;
}

#co-contact-page .co-contact-card {
  border-radius: 8px;
  padding: 36px 20px 28px;
  text-align: center;
}

#co-contact-page .co-contact-card--location { background: #e7f1f2; }
#co-contact-page .co-contact-card--hours    { background: #fcecec; }
#co-contact-page .co-contact-card--whatsapp { background: #fdefe2; }

#co-contact-page .co-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid currentColor;
  margin-bottom: 16px;
}
#co-contact-page .co-contact-card--location .co-contact-card__icon { color: #273B42; }
#co-contact-page .co-contact-card--hours    .co-contact-card__icon { color: #273B42; }
#co-contact-page .co-contact-card--whatsapp .co-contact-card__icon { color: #FF6D26; }
#co-contact-page .co-contact-card__icon svg { width: 26px; height: 26px; }
#co-contact-page .co-contact-card__icon img { width: 28px; height: 28px; object-fit: contain; }

#co-contact-page .co-contact-card__title {
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 8px;
  color: #273B42;
}
#co-contact-page .co-contact-card__title--wsp { color: #FF6D26; }

#co-contact-page .co-contact-card__text {
  font-size: 14.5px;
  color: #54595F;
  margin: 0;
  line-height: 1.5;
}
#co-contact-page .co-contact-card__text a { color: inherit; text-decoration: none; }
#co-contact-page .co-contact-card__text a:hover { text-decoration: underline; }

/* CTA WhatsApp dentro de la tarjeta */
#co-contact-page .co-contact-card__cta {
  display: inline-block;
  margin-top: 14px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s;
}
#co-contact-page .co-contact-card__cta:hover { background: #1eb857; }

/* ── 4. MAPA ─────────────────────────────────────────────── */
#co-contact-page .co-contact-map {
  position: relative;
  margin: 8px 0 0;
}
#co-contact-page .co-contact-map iframe {
  display: block;
  width: 100%;
}
#co-contact-page .co-contact-map__chip {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
}

/* ── 5. BLOQUE FINAL ─────────────────────────────────────── */
#co-contact-page .co-contact-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  background: #f7f7f7;
  padding: 48px 24px;
  margin-top: 0;
}

#co-contact-page .co-contact-final__text h2 {
  color: #308e95;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  margin: 0 0 16px;
}
#co-contact-page .co-contact-final__text p {
  font-size: 15px;
  color: #54595F;
  line-height: 1.6;
  margin: 0 0 12px;
}
#co-contact-page .co-contact-final__text a {
  color: #308e95;
  font-weight: 700;
  text-decoration: none;
}
#co-contact-page .co-contact-final__text a:hover { text-decoration: underline; }

#co-contact-page .co-contact-final__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* CTA principal de WhatsApp */
#co-contact-page .co-contact-final__wsp-cta {
  display: inline-block;
  background: #25D366;
  color: #fff !important;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  margin-bottom: 6px;
  transition: background 0.2s;
}
#co-contact-page .co-contact-final__wsp-cta:hover { background: #1eb857; text-decoration: none !important; }

#co-contact-page .co-contact-final__wsp-note {
  font-size: 13px;
  color: #808A8F;
  margin: 0 0 24px;
}

/* Lista de canales secundarios */
#co-contact-page .co-contact-final__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e2e2e2;
}
#co-contact-page .co-contact-final__list li {
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
}
#co-contact-page .co-contact-final__list strong {
  display: block;
  font-size: 15px;
  color: #273B42;
}
#co-contact-page .co-contact-final__list strong a { color: #308e95; text-decoration: none; }
#co-contact-page .co-contact-final__list strong a:hover { text-decoration: underline; }
#co-contact-page .co-contact-final__list span {
  display: block;
  font-size: 13px;
  color: #808A8F;
  margin-top: 2px;
}

/* ── 5.5 CTA REGRESO AL CATÁLOGO ─────────────────────────── */
#co-contact-page .co-contact-shop-cta {
  text-align: center;
  padding: 32px 16px 8px;
}
#co-contact-page .co-contact-shop-cta__text {
  font-size: 14px;
  color: #808A8F;
  margin: 0 0 16px;
}
#co-contact-page .co-contact-shop-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
#co-contact-page .co-contact-shop-cta__btn {
  display: inline-block;
  border: 1.5px solid #308e95;
  color: #308e95;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
#co-contact-page .co-contact-shop-cta__btn:hover {
  background: #308e95;
  color: #fff;
}

/* ── 6. BLOQUE LEGAL ─────────────────────────────────────── */
#co-contact-page .co-contact-legal {
  text-align: center;
  padding: 40px 16px 48px;
  background: #f7f7f7;
}
#co-contact-page .co-contact-legal__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #273B42;
  margin: 0 0 20px;
}
#co-contact-page .co-contact-legal__libro {
  display: inline-block;
}
#co-contact-page .co-contact-legal__libro img {
  height: 110px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
#co-contact-page .co-contact-legal__libro:hover img {
  opacity: 1;
  transform: scale(1.03);
}
#co-contact-page .co-contact-legal__text {
  font-size: 12px;
  color: #A6ACAF;
  margin: 16px 0 0;
}

@media (max-width: 768px) {
  #co-contact-page .co-contact-legal__title { font-size: 16px; }
  #co-contact-page .co-contact-legal__libro img { height: 85px; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  #co-contact-page .co-contact-hero__img { height: 240px; }
  #co-contact-page .co-contact-hero__title-box {
    left: 12px; right: 12px; bottom: 16px; padding: 16px 20px; max-width: none;
  }
  #co-contact-page .co-contact-hero__title { font-size: 22px; }

  #co-contact-page .co-contact-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  #co-contact-page .co-contact-final {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    text-align: center;
  }
  #co-contact-page .co-contact-final__image { order: -1; }
}