/* ==============================================================
   +movinghouse.mx — Consistency and responsive refinements v9
   - Service-page hero labels read as information, not buttons.
   - Share module stays compact and horizontal on laptop/desktop.
   - Testimonial carousel controls remain visible across breakpoints.
   ============================================================== */

/* Service-detail heroes: same informational treatment used on the home hero. */
.service-page #inicio .hero-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-page #inicio .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.service-page #inicio .hero-badge span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--mh-orange, #ff7a32);
  box-shadow: 0 0 0 5px rgba(255, 122, 50, .14);
}

.service-page #inicio .hero-chips {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 20px;
}

.service-page #inicio .hero-chips .chip {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 0;
  padding: 2px 15px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  white-space: normal;
}

.service-page #inicio .hero-chips .chip:first-child {
  padding-left: 0;
}

.service-page #inicio .hero-chips .chip + .chip {
  border-left: 1px solid rgba(255,255,255,.28);
}

.service-page #inicio .hero-chips .chip svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--mh-orange-2, #ff9b45);
}

/* A contained, genuinely horizontal share module on laptop and desktop. */
@media (min-width: 601px) {
  .share-block {
    display: grid !important;
    grid-template-columns: minmax(280px, 1fr) auto;
    align-items: center;
    gap: 18px 28px;
    width: min(100%, 940px);
    min-height: 0;
    margin: 26px auto 0;
    padding: 19px 24px;
  }

  .share-block > div:first-child {
    display: flex !important;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }

  .share-block > div:first-child strong {
    display: block;
    white-space: nowrap;
  }

  .share-block > div:first-child span {
    display: block;
    max-width: 520px;
    line-height: 1.45;
  }

  .share-actions {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .share-actions .share-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .share-status {
    grid-column: 1 / -1;
    min-height: 0;
    text-align: right;
  }
}

/* Keep carousel arrows visible and clearly associated with testimonials. */
.reviews-slider-tools {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
  margin: 10px 0 14px;
}

.reviews-slider-tools > span {
  display: none;
}

.reviews-slider-tools .slider-buttons {
  display: flex !important;
  align-items: center;
  gap: 9px;
}

.reviews-slider-tools .slider-buttons button {
  display: inline-grid !important;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--mh-line, #dce4ee);
  border-radius: 50%;
  background: #fff;
  color: var(--mh-navy, #061d3d);
  box-shadow: 0 8px 22px rgba(6,29,61,.09);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.reviews-slider-tools .slider-buttons button:hover,
.reviews-slider-tools .slider-buttons button:focus-visible {
  border-color: #ffb27f;
  background: #fff5ee;
  color: var(--mh-orange, #ff7a32);
}

@media (max-width: 600px) {
  /* On the white mobile sheet these remain plain informational labels. */
  .service-page #inicio .hero-badge {
    color: var(--mh-navy, #061d3d);
    font-size: 10.5px;
  }

  .service-page #inicio .hero-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
    gap: 0;
    margin-top: 17px;
  }

  .service-page #inicio .hero-chips .chip {
    min-height: 42px;
    padding: 4px 12px;
    color: var(--mh-navy, #061d3d);
    font-size: 11px;
  }

  .service-page #inicio .hero-chips .chip:first-child {
    padding-left: 0;
  }

  .service-page #inicio .hero-chips .chip + .chip {
    border-left-color: var(--mh-line, #dce4ee);
  }

  .reviews-slider-tools {
    min-height: 38px;
    margin: 2px 0 10px;
  }

  .reviews-slider-tools .slider-buttons button {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}
