/* MM Google Reviews - front
 * Paleta y tipografía tomadas del tema real de mimascota.com.gt (lui_parrot):
 * azul primario #2ABEF7 (botones "VER MÁS", radius 30px, uppercase), azul marino
 * #233B95 (barra superior), naranja #E89200 (precios/acentos), tipografía Quicksand.
 */
.mmgr-section {
  --mmgr-primary: #2ABEF7;
  --mmgr-primary-dark: #159FD6;
  --mmgr-navy: #233B95;
  --mmgr-accent: #E89200;
  --mmgr-heading: #222222;
  --mmgr-text-muted: #7A7A7A;
  --mmgr-font: 'Quicksand', Arial, sans-serif;

  padding: 40px 15px;
  box-sizing: border-box;
  font-family: var(--mmgr-font);
}
.mmgr-container {
  max-width: 1140px;
  margin: 0 auto;
}
.mmgr-header {
  text-align: center;
  margin-bottom: 24px;
}
.mmgr-title {
  font-family: var(--mmgr-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--mmgr-heading);
  margin: 0 0 10px;
}
.mmgr-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--mmgr-text-muted);
}
.mmgr-summary-score {
  font-size: 20px;
  font-weight: 700;
  color: var(--mmgr-heading);
}
.mmgr-stars {
  white-space: nowrap;
}
.mmgr-star {
  color: #d9d9d9;
  font-size: 16px;
}
.mmgr-star.is-filled {
  color: var(--mmgr-accent);
}
.mmgr-google-mark {
  font-weight: 600;
  font-size: 15px;
  margin-left: 4px;
  /* Los colores de la palabra "Google" van inline en el tpl: son la marca de
     Google y no deben recolorearse para mantener la atribución correcta. */
}

.mmgr-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mmgr-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  flex: 1 1 auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mmgr-track::-webkit-scrollbar {
  display: none;
}

.mmgr-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 18px 20px;
  box-sizing: border-box;
  box-shadow: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
}
.mmgr-card:hover {
  border-color: var(--mmgr-primary);
  box-shadow: 0 4px 14px rgba(42, 190, 247, 0.15);
}
@media (min-width: 576px) {
  .mmgr-card { flex: 0 0 calc(50% - 8px); max-width: calc(50% - 8px); }
}
@media (min-width: 992px) {
  .mmgr-card { flex: 0 0 calc(33.333% - 11px); max-width: calc(33.333% - 11px); }
}

.mmgr-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.mmgr-avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mmgr-primary);
  color: #fff;
  font-family: var(--mmgr-font);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mmgr-card-author strong {
  display: block;
  font-family: var(--mmgr-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--mmgr-heading);
  line-height: 1.3;
}
.mmgr-card-author .mmgr-star {
  font-size: 13px;
}
.mmgr-card-text {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin: 0 0 12px;
  flex: 1 1 auto;
}
.mmgr-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mmgr-text-muted);
}
.mmgr-google-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f3f4;
  color: #4285F4; /* azul oficial de Google: parte de la atribución de marca */
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmgr-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: var(--mmgr-navy);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.mmgr-arrow:hover {
  background: var(--mmgr-primary);
  border-color: var(--mmgr-primary);
  color: #fff;
}

.mmgr-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.mmgr-dots .mmgr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  border: none;
  padding: 0;
}
.mmgr-dots .mmgr-dot.is-active {
  background: var(--mmgr-primary);
}

.mmgr-cta {
  text-align: center;
  margin-top: 20px;
}
.mmgr-cta-link {
  display: inline-block;
  font-family: var(--mmgr-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: var(--mmgr-primary);
  border: 1px solid var(--mmgr-primary);
  border-radius: 30px;
  padding: 11px 28px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mmgr-cta-link:hover {
  background: var(--mmgr-primary-dark);
  border-color: var(--mmgr-primary-dark);
  color: #fff;
  text-decoration: none;
}
