/* Nexo Group: vitrines dos projetos-modelo (sites ficticios mostrados nos aparelhos) */

/* ---------- Barbearia Navalha ---------- */
/* Barbearia Navalha: vitrine Nexo Group */

.ms--barbearia, .ms--barbearia * { box-sizing: border-box; }

.ms--barbearia {
  --bg: #15130F;
  --card: #201D18;
  --raise: #2A2620;
  --line: #322D26;
  --line-2: #4A4339;
  --bone: #EFE7D8;
  --bone-2: #CFC6B5;
  --brass: #C69645;
  --ox: #8A2A22;
  --muted: #9C9384;
  --off: #5E574C;
  --r-s: 4px;
  --r: 6px;
  --r-l: 10px;
  --sans: 'Mona Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  font-stretch: 100%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.ms--barbearia p,
.ms--barbearia ul,
.ms--barbearia ol { margin: 0; padding: 0; }
.ms--barbearia ul,
.ms--barbearia ol { list-style: none; }
.ms--barbearia svg { display: block; }
.ms--barbearia em { font-style: normal; }
.ms--barbearia small { font-size: inherit; }

.ms--barbearia .nv-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* faixa de poste de barbeiro */
.ms--barbearia .nv-pole {
  height: 6px;
  background: repeating-linear-gradient(-45deg,
    var(--ox) 0 7px, var(--bone) 7px 12px,
    var(--brass) 12px 19px, var(--bone) 19px 24px);
}
.ms--barbearia .nv-pole--thick { height: 10px; }

/* botões */
.ms--barbearia .nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--r);
  background: var(--brass);
  color: var(--bg);
  font-size: 16px;
  font-weight: 650;
  white-space: nowrap;
}
.ms--barbearia .nv-btn--sm { height: 42px; padding: 0 18px; font-size: 15px; }
.ms--barbearia .nv-btn--ghost { background: transparent; color: var(--bone); box-shadow: inset 0 0 0 1px var(--line-2); }
.ms--barbearia .nv-btn--block { display: flex; width: 100%; height: 50px; }
.ms--barbearia .nv-btn--dark { background: var(--bg); color: var(--bone); }

/* navegação */
.ms--barbearia .nv-nav { border-bottom: 1px solid var(--line); }
.ms--barbearia .nv-nav__in {
  display: flex;
  align-items: center;
  height: 78px;
  gap: 36px;
}
.ms--barbearia .nv-logo { display: flex; align-items: center; gap: 12px; }
.ms--barbearia .nv-logo__mark { width: 46px; height: 18px; color: var(--brass); flex: none; }
.ms--barbearia .nv-logo__txt { display: flex; flex-direction: column; }
.ms--barbearia .nv-logo__word {
  font-stretch: 75%;
  font-weight: 900;
  font-size: 30px;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.ms--barbearia .nv-logo__sub {
  font-size: 11px;
  line-height: 1;
  margin-top: 4px;
  color: var(--muted);
  letter-spacing: .24em;
  font-weight: 500;
}
.ms--barbearia .nv-nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
  color: var(--bone-2);
}
.ms--barbearia .nv-nav__menu { display: none; width: 26px; height: 26px; margin-left: auto; color: var(--bone); }
.ms--barbearia .nv-nav__menu svg { width: 26px; height: 26px; }

/* hero */
.ms--barbearia .nv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 44px;
}
.ms--barbearia .nv-hero__title {
  font-stretch: 75%;
  font-weight: 900;
  font-size: 124px;
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.ms--barbearia .nv-hero__title span { display: block; }
.ms--barbearia .nv-hero__title em { color: var(--brass); }
.ms--barbearia .nv-hero__lead {
  max-width: 440px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--bone-2);
}
.ms--barbearia .nv-hero__actions { display: flex; gap: 12px; margin-top: 32px; }
.ms--barbearia .nv-hero__today {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}
.ms--barbearia .nv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); flex: none; }

/* cartão de agendamento */
.ms--barbearia .nv-book {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7);
}
.ms--barbearia .nv-book__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--line);
}
.ms--barbearia .nv-book__title { font-size: 17px; font-weight: 650; }
.ms--barbearia .nv-book__step { font-size: 13px; color: var(--muted); white-space: nowrap; }
.ms--barbearia .nv-book__body { padding: 18px 22px 20px; }
.ms--barbearia .nv-field { margin-bottom: 16px; }
.ms--barbearia .nv-field__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ms--barbearia .nv-label { font-size: 13px; font-weight: 550; color: var(--muted); }
.ms--barbearia .nv-field__link { font-size: 13px; font-weight: 550; color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }
.ms--barbearia .nv-field__hint { font-size: 12px; color: var(--off); }

.ms--barbearia .nv-svc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--raise);
}
.ms--barbearia .nv-svc__name { font-size: 16px; font-weight: 650; line-height: 1.3; }
.ms--barbearia .nv-svc__meta { font-size: 13px; color: var(--muted); line-height: 1.35; }
.ms--barbearia .nv-svc__price { font-size: 17px; font-weight: 650; white-space: nowrap; }

.ms--barbearia .nv-pick { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.ms--barbearia .nv-pick li {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.ms--barbearia .nv-pick__name { font-size: 14px; font-weight: 550; color: var(--bone-2); }
.ms--barbearia .nv-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--raise);
  border: 1px solid var(--line-2);
  color: var(--bone);
  font-stretch: 75%;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}
.ms--barbearia .nv-pick li.is-on { border-color: var(--brass); box-shadow: inset 0 0 0 1px var(--brass); }
.ms--barbearia .nv-pick li.is-on .nv-mono { background: var(--brass); border-color: var(--brass); color: var(--bg); }
.ms--barbearia .nv-pick li.is-on .nv-pick__name { color: var(--bone); font-weight: 650; }

.ms--barbearia .nv-days { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; }
.ms--barbearia .nv-days li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 0 8px;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.ms--barbearia .nv-days small { font-size: 12px; color: var(--muted); line-height: 1.3; }
.ms--barbearia .nv-days span { font-stretch: 75%; font-weight: 800; font-size: 22px; line-height: 1.05; }
.ms--barbearia .nv-days li.is-on { background: var(--bone); border-color: var(--bone); color: var(--bg); }
.ms--barbearia .nv-days li.is-on small { color: #5B5448; }

.ms--barbearia .nv-slots { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.ms--barbearia .nv-slots li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 550;
}
.ms--barbearia .nv-slots li.is-off { border-color: var(--line); color: var(--off); }
.ms--barbearia .nv-slots s { text-decoration-thickness: 1px; }
.ms--barbearia .nv-slots li.is-on { background: var(--brass); border-color: var(--brass); color: var(--bg); font-weight: 700; }

.ms--barbearia .nv-book__body .nv-btn--block { margin-top: 20px; }
.ms--barbearia .nv-book__sum { margin-top: 10px; text-align: center; font-size: 13px; color: var(--muted); }

/* faixa de informações */
.ms--barbearia .nv-infobar { border-top: 1px solid var(--line); }
.ms--barbearia .nv-info {
  display: flex;
  gap: 44px;
  padding: 20px 0;
  font-size: 15px;
  color: var(--bone-2);
}
.ms--barbearia .nv-info li { display: flex; align-items: center; gap: 10px; }
.ms--barbearia .nv-info svg { width: 19px; height: 19px; color: var(--brass); flex: none; }

/* seções */
.ms--barbearia .nv-sec { padding: 112px 0; border-top: 1px solid var(--line); }
.ms--barbearia .nv-h2 {
  font-stretch: 75%;
  font-weight: 900;
  font-size: 84px;
  line-height: .88;
  text-transform: uppercase;
}
.ms--barbearia .nv-h2 span { display: block; }
.ms--barbearia .nv-text { font-size: 17px; line-height: 1.55; color: var(--bone-2); }

/* serviços */
.ms--barbearia .nv-services__grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.ms--barbearia .nv-services__intro .nv-text { margin-top: 28px; }
.ms--barbearia .nv-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.ms--barbearia .nv-note strong { font-weight: 600; color: var(--bone); }
.ms--barbearia .nv-prices { border-top: 1px solid var(--line-2); }
.ms--barbearia .nv-prices li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px 92px;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0 21px;
  border-bottom: 1px solid var(--line);
}
.ms--barbearia .nv-prices__name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.25;
}
.ms--barbearia .nv-prices__desc { margin-top: 4px; font-size: 15px; color: var(--muted); }
.ms--barbearia .nv-prices__time { font-size: 14px; color: var(--muted); text-align: right; white-space: nowrap; }
.ms--barbearia .nv-prices__val {
  font-stretch: 75%;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
.ms--barbearia .nv-prices__val small { font-size: 20px; font-weight: 700; color: var(--muted); margin-right: 1px; }
.ms--barbearia .nv-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--r-s);
  background: var(--ox);
  color: var(--bone);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

/* barbeiros */
.ms--barbearia .nv-team__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.ms--barbearia .nv-team__head .nv-text { max-width: 420px; justify-self: end; }
.ms--barbearia .nv-team__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ms--barbearia .nv-person {
  padding: 28px 28px 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
}
.ms--barbearia .nv-person__top { display: flex; align-items: flex-start; justify-content: space-between; }
.ms--barbearia .nv-person__chair { font-size: 13px; font-weight: 550; color: var(--muted); }
.ms--barbearia .nv-mono--lg {
  width: 68px;
  height: 68px;
  background: transparent;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  font-size: 32px;
  font-weight: 900;
}
.ms--barbearia .nv-person__name {
  margin-top: 36px;
  font-stretch: 75%;
  font-weight: 900;
  font-size: 46px;
  line-height: .9;
  text-transform: uppercase;
}
.ms--barbearia .nv-person__spec { margin-top: 12px; min-height: 50px; font-size: 16px; line-height: 1.5; color: var(--bone-2); }
.ms--barbearia .nv-person__rows { margin-top: 24px; }
.ms--barbearia .nv-person__rows p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.ms--barbearia .nv-person__rows span { color: var(--muted); }
.ms--barbearia .nv-person__rows strong { font-weight: 600; }
.ms--barbearia .nv-person__rows strong.is-brass { color: var(--brass); }

/* agendar é simples (faixa clara) */
.ms--barbearia .nv-steps { background: var(--bone); color: var(--bg); }
.ms--barbearia .nv-steps__in { padding-top: 96px; padding-bottom: 104px; }
.ms--barbearia .nv-steps__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1.5px solid var(--bg);
}
.ms--barbearia .nv-steps__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ms--barbearia .nv-steps__list li { padding: 36px 36px 0 0; }
.ms--barbearia .nv-steps__list li + li { padding-left: 36px; border-left: 1px solid #CDBFA8; }
.ms--barbearia .nv-steps__n {
  display: block;
  font-stretch: 75%;
  font-weight: 900;
  font-size: 64px;
  line-height: .9;
  color: var(--ox);
}
.ms--barbearia .nv-steps__t { margin-top: 20px; font-size: 21px; font-weight: 650; line-height: 1.25; }
.ms--barbearia .nv-steps__d { margin-top: 10px; font-size: 16px; line-height: 1.5; color: #5B5448; }

/* onde estamos */
.ms--barbearia .nv-local { border-top: 0; }
.ms--barbearia .nv-local__grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}
.ms--barbearia .nv-local__addr { margin-top: 28px; font-size: 22px; font-weight: 650; line-height: 1.3; }
.ms--barbearia .nv-local__info .nv-text { margin-top: 8px; }
.ms--barbearia .nv-hours { margin-top: 32px; border-top: 1px solid var(--line-2); font-size: 15px; }
.ms--barbearia .nv-hours li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone-2);
}
.ms--barbearia .nv-hours li.is-closed { color: var(--off); }
.ms--barbearia .nv-hours li.is-today { color: var(--bone); font-weight: 650; }
.ms--barbearia .nv-hours small {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brass);
}

/* mapa desenhado */
.ms--barbearia .nv-map {
  --x1: 14%;
  --x2: 46%;
  --x3: 84%;
  --y1: 20%;
  --y2: 64%;
  --y3: 88%;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--r-l);
  border: 1px solid var(--line);
  background: #1B1814;
}
.ms--barbearia .nv-map__st { position: absolute; background: #2D2922; }
.ms--barbearia .nv-map__st--h { left: -5%; right: -5%; height: 10px; }
.ms--barbearia .nv-map__st--v { top: -5%; bottom: -5%; width: 10px; }
.ms--barbearia .nv-map__st--h1 { top: var(--y1); }
.ms--barbearia .nv-map__st--av { top: var(--y2); height: 22px; background: #37322A; }
.ms--barbearia .nv-map__st--h3 { top: var(--y3); }
.ms--barbearia .nv-map__st--v1 { left: var(--x1); }
.ms--barbearia .nv-map__st--main { left: var(--x2); width: 16px; background: #37322A; }
.ms--barbearia .nv-map__st--v3 { left: var(--x3); }
.ms--barbearia .nv-map__block { position: absolute; }
.ms--barbearia .nv-map__praca {
  left: calc(var(--x2) + 16px + 18px);
  right: calc(100% - var(--x3) + 18px);
  top: calc(var(--y1) + 10px + 18px);
  bottom: calc(100% - var(--y2) + 18px);
  border: 1px dashed #4A4339;
  border-radius: var(--r);
  background: repeating-linear-gradient(45deg, transparent 0 9px, rgba(239, 231, 216, .035) 9px 10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms--barbearia .nv-map__praca span { font-size: 13px; color: var(--muted); }
.ms--barbearia .nv-map__label {
  position: absolute;
  font-size: 12px;
  font-weight: 550;
  color: var(--muted);
  white-space: nowrap;
}
.ms--barbearia .nv-map__label--av { left: calc(var(--x1) + 22px); top: calc(var(--y2) + 30px); }
.ms--barbearia .nv-map__label--h1 { left: calc(var(--x1) + 22px); top: calc(var(--y1) - 24px); }
.ms--barbearia .nv-map__label--main {
  left: calc(var(--x2) - 10px);
  top: 82%;
  transform: rotate(-90deg);
  transform-origin: left top;
}
.ms--barbearia .nv-map__pin {
  position: absolute;
  left: calc(var(--x2) + 8px - 17px);
  top: calc(44% - 42px);
  display: flex;
  align-items: flex-start;
}
.ms--barbearia .nv-map__pin svg { width: 34px; height: 42px; flex: none; }
.ms--barbearia .nv-map__tag {
  position: absolute;
  right: 44px;
  top: 4px;
  padding: 6px 10px;
  border-radius: var(--r);
  background: var(--bone);
  color: var(--bg);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

/* rodapé */
.ms--barbearia .nv-foot { border-top: 1px solid var(--line); padding-top: 64px; background: #110F0C; }
.ms--barbearia .nv-foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.ms--barbearia .nv-foot__line { margin-top: 18px; max-width: 260px; font-size: 15px; color: var(--muted); }
.ms--barbearia .nv-foot__col { font-size: 15px; line-height: 1.7; color: var(--bone-2); }
.ms--barbearia .nv-foot__k { margin-bottom: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.ms--barbearia .nv-foot__base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--off);
}

/* ---------- celular ---------- */
.ms--barbearia.is-mobile { font-size: 16px; }
.ms--barbearia.is-mobile .nv-wrap { padding: 0 20px; }
.ms--barbearia.is-mobile .nv-nav__in { height: 60px; gap: 16px; }
.ms--barbearia.is-mobile .nv-logo { gap: 10px; }
.ms--barbearia.is-mobile .nv-logo__mark { width: 36px; height: 14px; }
.ms--barbearia.is-mobile .nv-logo__word { font-size: 26px; }
.ms--barbearia.is-mobile .nv-logo__sub { font-size: 10px; }
.ms--barbearia.is-mobile .nv-nav__links,
.ms--barbearia.is-mobile .nv-nav__cta { display: none; }
.ms--barbearia.is-mobile .nv-nav__menu { display: block; }

.ms--barbearia.is-mobile .nv-hero__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 32px;
}
.ms--barbearia.is-mobile .nv-hero__title { font-size: 60px; }
.ms--barbearia.is-mobile .nv-hero__lead { margin-top: 14px; font-size: 16px; }
.ms--barbearia.is-mobile .nv-hero__actions,
.ms--barbearia.is-mobile .nv-hero__today { display: none; }

.ms--barbearia.is-mobile .nv-book__head { padding: 15px 16px 13px; }
.ms--barbearia.is-mobile .nv-book__title { font-size: 16px; }
.ms--barbearia.is-mobile .nv-book__step { display: none; }
.ms--barbearia.is-mobile .nv-book__body { padding: 14px 16px 18px; }
.ms--barbearia.is-mobile .nv-field { margin-bottom: 14px; }
.ms--barbearia.is-mobile .nv-pick { gap: 6px; }
.ms--barbearia.is-mobile .nv-pick li { height: 46px; padding: 0 8px; gap: 7px; }
.ms--barbearia.is-mobile .nv-mono { width: 26px; height: 26px; font-size: 14px; }
.ms--barbearia.is-mobile .nv-pick__name { font-size: 13px; }
.ms--barbearia.is-mobile .nv-days { gap: 5px; }
.ms--barbearia.is-mobile .nv-slots { gap: 5px; }
.ms--barbearia.is-mobile .nv-slots li { height: 34px; font-size: 13px; }

.ms--barbearia.is-mobile .nv-info { flex-direction: column; gap: 12px; padding: 22px 0 26px; }

.ms--barbearia.is-mobile .nv-sec { padding: 72px 0; }
.ms--barbearia.is-mobile .nv-h2 { font-size: 54px; }
.ms--barbearia.is-mobile .nv-services__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
.ms--barbearia.is-mobile .nv-services__intro .nv-text { margin-top: 18px; }
.ms--barbearia.is-mobile .nv-prices li { grid-template-columns: minmax(0, 1fr) auto; gap: 16px; padding: 18px 0 17px; }
.ms--barbearia.is-mobile .nv-prices__time { display: none; }
.ms--barbearia.is-mobile .nv-prices__name { font-size: 18px; gap: 10px; flex-wrap: wrap; }
.ms--barbearia.is-mobile .nv-prices__desc { font-size: 14px; }
.ms--barbearia.is-mobile .nv-prices__val { font-size: 30px; }

.ms--barbearia.is-mobile .nv-team__head { grid-template-columns: minmax(0, 1fr); gap: 18px; margin-bottom: 32px; }
.ms--barbearia.is-mobile .nv-team__head .nv-text { justify-self: start; }
.ms--barbearia.is-mobile .nv-team__list { grid-template-columns: minmax(0, 1fr); gap: 14px; }
.ms--barbearia.is-mobile .nv-person { padding: 22px 22px 4px; display: grid; grid-template-columns: 56px minmax(0, 1fr); column-gap: 18px; }
.ms--barbearia.is-mobile .nv-person__top { grid-row: 1 / span 2; }
.ms--barbearia.is-mobile .nv-person__chair { display: none; }
.ms--barbearia.is-mobile .nv-mono--lg { width: 56px; height: 56px; font-size: 26px; }
.ms--barbearia.is-mobile .nv-person__name { margin-top: 4px; font-size: 38px; }
.ms--barbearia.is-mobile .nv-person__spec { margin-top: 6px; min-height: 0; font-size: 15px; }
.ms--barbearia.is-mobile .nv-person__rows { grid-column: 1 / -1; margin-top: 18px; }

.ms--barbearia.is-mobile .nv-steps__in { padding-top: 64px; padding-bottom: 72px; }
.ms--barbearia.is-mobile .nv-steps__head { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 32px; }
.ms--barbearia.is-mobile .nv-steps__list { grid-template-columns: minmax(0, 1fr); }
.ms--barbearia.is-mobile .nv-steps__list li,
.ms--barbearia.is-mobile .nv-steps__list li + li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  padding: 24px 0;
  border-left: 0;
  border-bottom: 1px solid #CDBFA8;
}
.ms--barbearia.is-mobile .nv-steps__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.ms--barbearia.is-mobile .nv-steps__n { font-size: 48px; grid-row: 1 / span 2; }
.ms--barbearia.is-mobile .nv-steps__t { margin-top: 2px; font-size: 18px; }
.ms--barbearia.is-mobile .nv-steps__d { margin-top: 6px; font-size: 15px; }

.ms--barbearia.is-mobile .nv-local__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
.ms--barbearia.is-mobile .nv-local__addr { margin-top: 20px; font-size: 19px; }
.ms--barbearia.is-mobile .nv-map__label--av { left: calc(var(--x2) + 30px); }
.ms--barbearia.is-mobile .nv-map__tag { right: auto; left: 50%; top: -38px; transform: translateX(-50%); }
.ms--barbearia.is-mobile .nv-map { min-height: 360px; --x1: 8%; --x2: 34%; --x3: 92%; --y1: 18%; --y2: 66%; }

.ms--barbearia.is-mobile .nv-foot { padding-top: 48px; }
.ms--barbearia.is-mobile .nv-foot__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 20px; }
.ms--barbearia.is-mobile .nv-foot__brand { grid-column: 1 / -1; }
.ms--barbearia.is-mobile .nv-foot__col { font-size: 14px; }
.ms--barbearia.is-mobile .nv-foot__base { flex-direction: column; gap: 4px; margin-top: 40px; }

/* ---------- Bistrô Alecrim ---------- */
/* Bistrô Alecrim: cardápio digital com pedido pelo WhatsApp */

.ms--restaurante,
.ms--restaurante * { box-sizing: border-box; }

.ms--restaurante {
  --paper: #F3ECDF;
  --paper-2: #FBF7EF;
  --paper-3: #EAE1CF;
  --olive: #3E4A23;
  --tomato: #C2452D;
  --ink: #2B2219;
  --ink-2: rgba(43, 34, 25, 0.70);
  --ink-3: rgba(43, 34, 25, 0.48);
  --line: rgba(43, 34, 25, 0.14);
  --line-2: rgba(43, 34, 25, 0.24);
  --sage: #DCE0C8;
  --r-s: 6px;
  --r-l: 12px;
  --shadow: 0 1px 0 rgba(43, 34, 25, 0.05), 0 18px 32px -20px rgba(43, 34, 25, 0.35);
  --serif: 'Young Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Mona Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
}

.ms--restaurante p,
.ms--restaurante ul,
.ms--restaurante ol { margin: 0; padding: 0; }
.ms--restaurante ul,
.ms--restaurante ol { list-style: none; }
.ms--restaurante em { font-style: normal; }
.ms--restaurante p { text-wrap: pretty; }
.ms--restaurante .ba-nw { white-space: nowrap; }
.ms--restaurante s { text-decoration-thickness: 1.5px; }

.ms--restaurante svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ms--restaurante .ba-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- nav ---------- */
.ms--restaurante .ba-top { border-bottom: 1px solid var(--line); }
.ms--restaurante .ba-nav {
  display: flex;
  align-items: center;
  height: 72px;
}
.ms--restaurante .ba-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.ms--restaurante .ba-brand__sprig {
  width: 16px;
  height: 32px;
  color: var(--olive);
  stroke-width: 1.6;
  transform: rotate(12deg);
}
.ms--restaurante .ba-brand__name {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.ms--restaurante .ba-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.ms--restaurante .ba-links .is-on {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--tomato);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.ms--restaurante .ba-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--olive);
  color: var(--paper);
  border-radius: var(--r-s);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.ms--restaurante .ba-btn svg { width: 18px; height: 18px; }
.ms--restaurante .ba-btn--nav {
  margin-left: 32px;
  padding: 10px 16px 10px 14px;
}
.ms--restaurante .ba-burger { display: none; }

/* ---------- hero ---------- */
.ms--restaurante .ba-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 40px;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.ms--restaurante .ba-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.ms--restaurante .ba-status strong { color: var(--olive); font-weight: 600; }
.ms--restaurante .ba-status__sep { color: var(--ink-3); }
.ms--restaurante .ba-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5E7A2E;
  border: 2px solid var(--sage);
  box-sizing: content-box;
}
.ms--restaurante .ba-title {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ms--restaurante .ba-title__br { display: block; }
.ms--restaurante .ba-lede {
  text-wrap: balance;
  margin-top: 14px;
  max-width: 430px;
  font-size: 16.5px;
  color: var(--ink-2);
}

.ms--restaurante .ba-today {
  position: relative;
  overflow: hidden;
  background: var(--olive);
  color: var(--paper);
  border-radius: var(--r-l);
  padding: 22px 24px 22px 26px;
}
.ms--restaurante .ba-today__body { position: relative; max-width: 290px; }
.ms--restaurante .ba-today__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
}
.ms--restaurante .ba-today__name {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.1;
}
.ms--restaurante .ba-today__desc {
  text-wrap: balance;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(243, 236, 223, 0.78);
}
.ms--restaurante .ba-today__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.ms--restaurante .ba-today__price {
  background: var(--tomato);
  color: var(--paper);
  border-radius: var(--r-s);
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}
.ms--restaurante .ba-today__sprig {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 70px;
  height: 188px;
  margin-top: -94px;
  color: var(--sage);
  stroke-width: 1.7;
  transform: rotate(16deg);
}

/* ---------- tabs ---------- */
.ms--restaurante .ba-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ms--restaurante .ba-tabs {
  display: flex;
  gap: 8px;
  min-width: 0;
}
.ms--restaurante .ba-tab {
  flex-shrink: 0;
  padding: 8px 13px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-s);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--ink);
}
.ms--restaurante .ba-tab small {
  margin-left: 3px;
  font-size: 12px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.ms--restaurante .ba-tab.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.ms--restaurante .ba-tab.is-on small { color: rgba(243, 236, 223, 0.6); }
.ms--restaurante .ba-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--ink-2);
}
.ms--restaurante .ba-switch {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 10px;
  background: rgba(43, 34, 25, 0.18);
}
.ms--restaurante .ba-switch span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper-2);
}

/* ---------- menu ---------- */
.ms--restaurante .ba-menu {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 316px;
  gap: 52px;
  align-items: start;
}
.ms--restaurante .ba-cat__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 0 10px;
  border-bottom: 1.5px solid var(--ink);
}
.ms--restaurante .ba-cat__title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.ms--restaurante .ba-cat__note {
  font-size: 14px;
  color: var(--ink-2);
  text-align: right;
}
.ms--restaurante .ba-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 18px;
  padding: 15px 0 14px;
  border-bottom: 1px solid var(--line);
}
.ms--restaurante .ba-item:last-child { border-bottom: 0; }
.ms--restaurante .ba-item__line {
  display: flex;
  align-items: last baseline;
  gap: 10px;
}
.ms--restaurante .ba-item__name {
  flex: 0 1 auto;
  min-width: 0;
  font-family: var(--serif);
  font-size: 18.5px;
  line-height: 1.3;
  color: var(--ink);
}
.ms--restaurante .ba-lead {
  flex: 1 1 24px;
  min-width: 24px;
  height: 4px;
  align-self: flex-end;
  margin-bottom: 7px;
  background-image: radial-gradient(circle, rgba(43, 34, 25, 0.42) 1px, transparent 1.4px);
  background-size: 6px 4px;
  background-repeat: repeat-x;
  background-position: 0 50%;
}
.ms--restaurante .ba-price {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 650;
  color: var(--tomato);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ms--restaurante .ba-item__desc {
  margin-top: 3px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
.ms--restaurante .ba-veg {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 7px;
  border-radius: var(--r-s);
  background: var(--sage);
  color: var(--olive);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: 1px;
  white-space: nowrap;
}
.ms--restaurante .ba-item__act {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.ms--restaurante .ba-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-s);
  color: var(--ink);
}
.ms--restaurante .ba-add svg { width: 16px; height: 16px; stroke-width: 2; }
.ms--restaurante .ba-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-s);
  background: var(--olive);
  color: var(--paper);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ms--restaurante .ba-step {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 32px;
  padding: 0 9px;
  border-radius: var(--r-s);
  background: var(--olive);
  color: var(--paper);
}
.ms--restaurante .ba-step svg { width: 14px; height: 14px; stroke-width: 2; }
.ms--restaurante .ba-step__n {
  min-width: 10px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ms--restaurante .ba-step--light {
  background: transparent;
  border: 1.5px solid rgba(243, 236, 223, 0.45);
}
.ms--restaurante .ba-soldout {
  display: inline-block;
  margin-right: 8px;
  padding: 0 6px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-s);
  color: var(--ink-2);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: 1px;
  white-space: nowrap;
}
.ms--restaurante .ba-add.is-disabled { border-style: dashed; color: var(--ink-3); opacity: 0.6; }
.ms--restaurante .ba-item.is-out .ba-item__name,
.ms--restaurante .ba-item.is-out .ba-item__desc,
.ms--restaurante .ba-item.is-out .ba-price { color: var(--ink-3); }
.ms--restaurante .ba-item.is-out .ba-price { font-weight: 500; }
.ms--restaurante .ba-item.is-out .ba-lead { opacity: 0.45; }

.ms--restaurante .ba-orderbar { display: none; }

/* ---------- pedido ---------- */
.ms--restaurante .ba-aside { padding-top: 30px; }
.ms--restaurante .ba-cart {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 20px 20px 16px;
  box-shadow: var(--shadow);
}
.ms--restaurante .ba-cart__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.ms--restaurante .ba-cart__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}
.ms--restaurante .ba-cart__count { font-size: 13.5px; color: var(--ink-2); }
.ms--restaurante .ba-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 14px;
  padding: 3px;
  background: var(--paper-3);
  border-radius: var(--r-s);
}
.ms--restaurante .ba-seg__opt {
  padding: 7px 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--ink-2);
  white-space: nowrap;
}
.ms--restaurante .ba-seg__opt.is-on {
  background: var(--paper-2);
  border-color: var(--line);
  color: var(--ink);
  font-weight: 600;
}
.ms--restaurante .ba-cart__list { margin-top: 10px; }
.ms--restaurante .ba-cart__list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-2);
  font-size: 14.5px;
  line-height: 1.35;
}
.ms--restaurante .ba-cart__q { color: var(--ink-2); font-variant-numeric: tabular-nums; }
.ms--restaurante .ba-cart__p { font-weight: 600; font-variant-numeric: tabular-nums; }
.ms--restaurante .ba-field {
  position: relative;
  margin-top: 12px;
  padding: 8px 12px 9px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-s);
  background: #fff;
}
.ms--restaurante .ba-field__label {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink-3);
}
.ms--restaurante .ba-field__val {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}
.ms--restaurante .ba-field + .ba-field { margin-top: 8px; }
.ms--restaurante .ba-field--select svg {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  color: var(--ink-2);
}
.ms--restaurante .ba-cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 16px 0 14px;
  font-size: 15px;
  font-weight: 500;
}
.ms--restaurante .ba-cart__total strong {
  font-size: 23px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.ms--restaurante .ba-btn--block {
  display: flex;
  width: 100%;
  padding: 13px 14px;
  font-size: 15px;
}
.ms--restaurante .ba-cart__hint {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-3);
  text-align: center;
}
.ms--restaurante .ba-qr {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--sage);
  border-radius: var(--r-l);
  color: var(--ink);
}
.ms--restaurante .ba-qr svg { width: 26px; height: 26px; color: var(--olive); margin-top: 2px; }
.ms--restaurante .ba-qr p { font-size: 14px; line-height: 1.45; }
.ms--restaurante .ba-qr strong { font-weight: 600; }

/* ---------- massas + sobremesas ---------- */
.ms--restaurante .ba-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  padding-top: 24px;
}

/* ---------- bebidas ---------- */
.ms--restaurante .ba-drinks {
  margin-top: 48px;
  padding: 4px 32px 20px;
  background: var(--sage);
  border-radius: var(--r-l);
}
.ms--restaurante .ba-list--drinks {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 48px;
}
.ms--restaurante .ba-list--drinks .ba-item { border-bottom-color: rgba(43, 34, 25, 0.12); }
.ms--restaurante .ba-list--drinks .ba-item:nth-last-child(2) { border-bottom: 0; }
.ms--restaurante .ba-drinks .ba-add { background: var(--paper-2); }

/* ---------- como pedir ---------- */
.ms--restaurante .ba-how {
  margin-top: 80px;
  padding: 76px 0;
  background: var(--paper-3);
}
.ms--restaurante .ba-how__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: center;
}
.ms--restaurante .ba-h2 {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.ms--restaurante .ba-how__lede {
  text-wrap: balance;
  margin-top: 12px;
  max-width: 440px;
  font-size: 17px;
  color: var(--ink-2);
}
.ms--restaurante .ba-steps { margin-top: 28px; }
.ms--restaurante .ba-step-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
}
.ms--restaurante .ba-step-row__n {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--tomato);
}
.ms--restaurante .ba-step-row__t {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.3;
}
.ms--restaurante .ba-step-row p {
  margin-top: 4px;
  max-width: 420px;
  font-size: 15px;
  color: var(--ink-2);
}

.ms--restaurante .ba-chat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ms--restaurante .ba-chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--olive);
  color: var(--paper);
}
.ms--restaurante .ba-chat__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--olive);
}
.ms--restaurante .ba-chat__avatar svg { width: 13px; height: 26px; stroke-width: 1.6; transform: rotate(12deg); }
.ms--restaurante .ba-chat__name { font-size: 15.5px; font-weight: 600; line-height: 1.25; }
.ms--restaurante .ba-chat__sub { font-size: 12.5px; color: var(--sage); line-height: 1.3; }
.ms--restaurante .ba-chat__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 22px;
}
.ms--restaurante .ba-msg {
  max-width: 88%;
  padding: 10px 13px 7px;
  border-radius: var(--r-l);
  font-size: 14px;
  line-height: 1.45;
}
.ms--restaurante .ba-msg--out {
  align-self: flex-end;
  width: 300px;
  background: var(--sage);
  border-bottom-right-radius: 4px;
}
.ms--restaurante .ba-msg--in {
  align-self: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.ms--restaurante .ba-msg__list { margin: 6px 0 0; }
.ms--restaurante .ba-msg__list li,
.ms--restaurante .ba-msg__total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-variant-numeric: tabular-nums;
}
.ms--restaurante .ba-msg__total {
  margin: 6px 0 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(43, 34, 25, 0.3);
}
.ms--restaurante .ba-msg__time {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--ink-3);
  text-align: right;
}

/* ---------- horários e endereço ---------- */
.ms--restaurante .ba-visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 88px;
}
.ms--restaurante .ba-table { margin-top: 22px; }
.ms--restaurante .ba-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 12px;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  font-variant-numeric: tabular-nums;
}
.ms--restaurante .ba-row--head {
  padding-top: 0;
  padding-bottom: 8px;
  border-bottom-color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.ms--restaurante .ba-row.is-today {
  background: var(--sage);
  border-radius: var(--r-s);
  border-bottom-color: transparent;
  font-weight: 600;
}
.ms--restaurante .ba-row em {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tomato);
}
.ms--restaurante .ba-row .is-closed { color: var(--ink-3); }
.ms--restaurante .ba-hours__note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-2);
}
.ms--restaurante .ba-reserve {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-l);
}
.ms--restaurante .ba-reserve svg { width: 24px; height: 24px; color: var(--olive); margin-top: 1px; }
.ms--restaurante .ba-reserve p { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); }
.ms--restaurante .ba-reserve strong { color: var(--ink); font-weight: 600; }

.ms--restaurante .ba-map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  border-radius: var(--r-l);
}
.ms--restaurante .ba-map__art { width: 100%; height: 100%; }
.ms--restaurante .ba-map__bg { fill: var(--sage); stroke: none; }
.ms--restaurante .ba-map__park { fill: rgba(62, 74, 35, 0.2); stroke: none; }
.ms--restaurante .ba-map__road { stroke: var(--paper-2); stroke-width: 18; stroke-linecap: butt; }
.ms--restaurante .ba-map__road--thin { stroke-width: 9; }
.ms--restaurante .ba-map__label {
  position: absolute;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-2);
  white-space: nowrap;
}
.ms--restaurante .ba-map__label--street { left: 4%; top: 62.5%; margin-top: -6px; }
.ms--restaurante .ba-map__label--park { left: 54.6%; width: 28.3%; top: 29.5%; margin-top: -6px; text-align: center; color: var(--olive); }
.ms--restaurante .ba-map__pin {
  position: absolute;
  left: 60.5%;
  top: 71.5%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  background: var(--tomato);
  border: 4px solid var(--paper-2);
}
.ms--restaurante .ba-map__tag {
  position: absolute;
  left: 60.5%;
  top: 71.5%;
  margin: -12px 0 0 16px;
  padding: 4px 8px;
  border-radius: var(--r-s);
  background: var(--ink);
  color: var(--paper);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}
.ms--restaurante .ba-place__info { margin-top: 22px; }
.ms--restaurante .ba-place__addr {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
}
.ms--restaurante .ba-place__ref {
  margin-top: 6px;
  font-size: 15px;
  color: var(--ink-2);
}
.ms--restaurante .ba-place__list { margin-top: 18px; }
.ms--restaurante .ba-place__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.ms--restaurante .ba-place__list span { font-size: 14.5px; color: var(--ink-2); }
.ms--restaurante .ba-place__list strong {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

/* ---------- rodapé ---------- */
.ms--restaurante .ba-foot {
  background: var(--olive);
  color: var(--paper);
  padding: 56px 0 28px;
}
.ms--restaurante .ba-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.ms--restaurante .ba-brand--foot { color: var(--paper); }
.ms--restaurante .ba-brand--foot .ba-brand__sprig { color: var(--sage); }
.ms--restaurante .ba-foot__tag {
  margin-top: 14px;
  max-width: 270px;
  font-size: 15px;
  color: rgba(243, 236, 223, 0.75);
}
.ms--restaurante .ba-foot__h {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
}
.ms--restaurante .ba-foot__col p + p { margin-top: 2px; }
.ms--restaurante .ba-foot__col p { font-size: 14.5px; color: rgba(243, 236, 223, 0.88); }
.ms--restaurante .ba-foot__col .ba-foot__h { color: var(--sage); font-size: 13px; }
.ms--restaurante .ba-foot__base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 236, 223, 0.18);
}
.ms--restaurante .ba-foot__base small { font-size: 13px; color: rgba(243, 236, 223, 0.6); }

/* ================= mobile ================= */
.ms--restaurante.is-mobile .ba-wrap { padding: 0 20px; }

.ms--restaurante.is-mobile .ba-nav { height: 60px; }
.ms--restaurante.is-mobile .ba-links,
.ms--restaurante.is-mobile .ba-btn--nav { display: none; }
.ms--restaurante.is-mobile .ba-brand__name { font-size: 21px; }
.ms--restaurante.is-mobile .ba-brand__sprig { width: 14px; height: 28px; }
.ms--restaurante.is-mobile .ba-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: -8px;
  color: var(--ink);
}
.ms--restaurante.is-mobile .ba-burger svg { width: 24px; height: 24px; }

.ms--restaurante.is-mobile .ba-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.ms--restaurante.is-mobile .ba-status { font-size: 13.5px; }
.ms--restaurante.is-mobile .ba-title { margin-top: 8px; font-size: 30px; }
.ms--restaurante.is-mobile .ba-lede { display: none; }
.ms--restaurante.is-mobile .ba-today { padding: 15px 18px 16px; }
.ms--restaurante.is-mobile .ba-today__body { max-width: 230px; }
.ms--restaurante.is-mobile .ba-today__name { font-size: 24px; }
.ms--restaurante.is-mobile .ba-today__desc { font-size: 13.5px; }
.ms--restaurante.is-mobile .ba-today__foot { margin-top: 12px; }
.ms--restaurante.is-mobile .ba-today__sprig {
  right: 10px;
  width: 54px;
  height: 146px;
  margin-top: -73px;
}

.ms--restaurante.is-mobile .ba-bar { padding: 10px 0; }
.ms--restaurante.is-mobile .ba-tabs { overflow: hidden; margin-right: -20px; gap: 6px; }
.ms--restaurante.is-mobile .ba-tab { padding: 8px 12px; font-size: 14px; }
.ms--restaurante.is-mobile .ba-toggle { display: none; }

.ms--restaurante.is-mobile .ba-menu { grid-template-columns: minmax(0, 1fr); gap: 0; }
.ms--restaurante.is-mobile .ba-aside { display: none; }
.ms--restaurante.is-mobile .ba-cat__head {
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 0;
  padding-top: 18px;
  padding-bottom: 7px;
}
.ms--restaurante.is-mobile .ba-cat__title { font-size: 25px; }
.ms--restaurante.is-mobile .ba-cat__note { font-size: 13px; text-align: left; }
.ms--restaurante.is-mobile .ba-item,
.ms--restaurante.is-mobile .ba-duo .ba-item,
.ms--restaurante.is-mobile .ba-list--drinks .ba-item {
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 12px;
  padding: 11px 0 10px;
}
.ms--restaurante.is-mobile .ba-item__name { font-size: 16.5px; }
.ms--restaurante.is-mobile .ba-item__line { gap: 8px; }
.ms--restaurante.is-mobile .ba-lead { min-width: 14px; flex-basis: 14px; margin-bottom: 6px; }
.ms--restaurante.is-mobile .ba-price { font-size: 15px; }
.ms--restaurante.is-mobile .ba-item__desc {
  margin-top: 1px;
  font-size: 13.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ms--restaurante.is-mobile .ba-veg { margin-right: 6px; font-size: 11px; }
.ms--restaurante.is-mobile .ba-add,
.ms--restaurante.is-mobile .ba-qty { width: 30px; height: 30px; }
.ms--restaurante.is-mobile .ba-soldout { margin-right: 6px; font-size: 11px; }

.ms--restaurante.is-mobile .ba-orderbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 4px;
  padding: 10px 10px 10px 16px;
  background: var(--olive);
  color: var(--paper);
  border-radius: var(--r-l);
}
.ms--restaurante.is-mobile .ba-orderbar__info { display: flex; flex-direction: column; line-height: 1.2; }
.ms--restaurante.is-mobile .ba-orderbar__count { font-size: 12.5px; color: var(--sage); }
.ms--restaurante.is-mobile .ba-orderbar__total { font-size: 18px; font-weight: 700; font-variant-numeric: tabular-nums; }
.ms--restaurante.is-mobile .ba-orderbar__cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  background: var(--paper);
  color: var(--olive);
  border-radius: var(--r-s);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.ms--restaurante.is-mobile .ba-orderbar__cta svg { width: 17px; height: 17px; }

.ms--restaurante.is-mobile .ba-duo { grid-template-columns: minmax(0, 1fr); gap: 0; padding-top: 12px; }
.ms--restaurante.is-mobile .ba-drinks { margin-top: 36px; padding: 2px 16px 10px; }
.ms--restaurante.is-mobile .ba-list--drinks { grid-template-columns: minmax(0, 1fr); }
.ms--restaurante.is-mobile .ba-list--drinks .ba-item:nth-last-child(2) { border-bottom: 1px solid rgba(43, 34, 25, 0.12); }

.ms--restaurante.is-mobile .ba-how { margin-top: 48px; padding: 48px 0 52px; }
.ms--restaurante.is-mobile .ba-how__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
.ms--restaurante.is-mobile .ba-h2 { font-size: 30px; }
.ms--restaurante.is-mobile .ba-how__lede { font-size: 15.5px; }
.ms--restaurante.is-mobile .ba-steps { margin-top: 20px; }
.ms--restaurante.is-mobile .ba-step-row { grid-template-columns: 30px minmax(0, 1fr); gap: 10px; padding: 14px 0; }
.ms--restaurante.is-mobile .ba-step-row__n { font-size: 26px; }
.ms--restaurante.is-mobile .ba-step-row__t { font-size: 16px; }
.ms--restaurante.is-mobile .ba-step-row p { font-size: 14px; }
.ms--restaurante.is-mobile .ba-chat__body { padding: 16px 12px 18px; }
.ms--restaurante.is-mobile .ba-msg { font-size: 13.5px; }
.ms--restaurante.is-mobile .ba-msg--out { width: auto; max-width: 92%; }

.ms--restaurante.is-mobile .ba-visit { grid-template-columns: minmax(0, 1fr); gap: 44px; padding-top: 56px; padding-bottom: 60px; }
.ms--restaurante.is-mobile .ba-row { grid-template-columns: 1.1fr 1fr 1fr; gap: 8px; padding: 12px 8px; font-size: 14px; }
.ms--restaurante.is-mobile .ba-row--head { font-size: 12px; padding-top: 0; }
.ms--restaurante.is-mobile .ba-row em { display: block; margin-left: 0; }
.ms--restaurante.is-mobile .ba-place__addr { font-size: 22px; }
.ms--restaurante.is-mobile .ba-place__list li { flex-direction: column; gap: 1px; }
.ms--restaurante.is-mobile .ba-place__list strong { text-align: left; }

.ms--restaurante.is-mobile .ba-foot { padding: 44px 0 24px; }
.ms--restaurante.is-mobile .ba-foot__grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
.ms--restaurante.is-mobile .ba-foot__base { flex-direction: column; gap: 4px; margin-top: 32px; }

/* ---------- Quintal Pet ---------- */
/* Quintal Pet: vitrine de banho e tosa com agendamento e leva e traz */

.ms--petshop,
.ms--petshop * { box-sizing: border-box; }

.ms--petshop {
  --qp-cream: #FFFAF1;
  --qp-sun: #FFC247;
  --qp-navy: #1E2A4A;
  --qp-coral: #FF6F59;
  --qp-mint: #CBEBDD;
  --qp-white: #FFFFFF;
  --qp-ink-2: rgba(30, 42, 74, .68);
  --qp-ink-sun: rgba(30, 42, 74, .84);
  --qp-ink-3: rgba(30, 42, 74, .46);
  --qp-line: rgba(30, 42, 74, .14);
  --qp-r-lg: 24px;
  --qp-r-md: 14px;
  --qp-r-sm: 10px;
  --qp-shadow: 0 1px 2px rgba(30, 42, 74, .06), 0 22px 44px -22px rgba(30, 42, 74, .38);
  --qp-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --qp-body: 'Mona Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  display: block;
  background: var(--qp-cream);
  color: var(--qp-navy);
  font-family: var(--qp-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  overflow: hidden;
}

.ms--petshop p,
.ms--petshop ul,
.ms--petshop ol { margin: 0; padding: 0; }
.ms--petshop ul,
.ms--petshop ol { list-style: none; }
.ms--petshop small { font-size: inherit; }
.ms--petshop em { font-style: normal; }
.ms--petshop svg { display: block; flex: none; }

.ms--petshop .qp-ic {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ms--petshop .qp-paw { fill: currentColor; stroke: none; }

.ms--petshop .qp-only-m { display: none; }
.ms--petshop.is-mobile .qp-only-m { display: inline; }
.ms--petshop.is-mobile .qp-only-d { display: none; }

.ms--petshop .qp-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* botoes */
.ms--petshop .qp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: var(--qp-r-md);
  font-family: var(--qp-body);
  font-size: 16px;
  font-weight: 650;
  white-space: nowrap;
  border: 2px solid transparent;
}
.ms--petshop .qp-btn--sm { height: 42px; padding: 0 18px; font-size: 15px; }
.ms--petshop .qp-btn--navy { background: var(--qp-navy); color: var(--qp-cream); }
.ms--petshop .qp-btn--coral { background: var(--qp-coral); color: var(--qp-navy); }
.ms--petshop .qp-btn--sun { background: var(--qp-sun); color: var(--qp-navy); }
.ms--petshop .qp-btn--line { border-color: var(--qp-navy); color: var(--qp-navy); }
.ms--petshop .qp-btn--block { display: flex; width: 100%; justify-content: space-between; padding: 0 22px; font-size: 17px; }

/* topo amarelo */
.ms--petshop .qp-top { background: var(--qp-sun); }

.ms--petshop .qp-head {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 80px;
}
.ms--petshop .qp-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--qp-navy);
}
.ms--petshop .qp-brand__paw { width: 26px; height: 26px; transform: rotate(-14deg); }
.ms--petshop .qp-brand__name {
  font-family: var(--qp-display);
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.01em;
}
.ms--petshop .qp-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 550;
}
.ms--petshop .qp-head__end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.ms--petshop .qp-head__tel { font-size: 15px; font-weight: 600; }
.ms--petshop .qp-menu { display: none; }

/* hero */
.ms--petshop .qp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  grid-template-areas: "text book" "facts book";
  grid-template-rows: auto 1fr;
  column-gap: 64px;
  padding-top: 16px;
  padding-bottom: 40px;
}
.ms--petshop .qp-hero__text { grid-area: text; padding-top: 48px; }
.ms--petshop .qp-book { grid-area: book; }
.ms--petshop .qp-facts { grid-area: facts; align-self: end; }

.ms--petshop .qp-hero__title {
  font-family: var(--qp-display);
  font-weight: 600;
  font-size: 76px;
  line-height: .97;
  letter-spacing: -.025em;
  max-width: 11ch;
}
.ms--petshop .qp-hero__lead {
  margin-top: 26px;
  max-width: 440px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--qp-ink-sun);
}
.ms--petshop .qp-hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ms--petshop .qp-hero__call { font-size: 15px; color: var(--qp-ink-sun); }
.ms--petshop .qp-hero__call strong { color: var(--qp-navy); font-weight: 650; }

.ms--petshop .qp-facts {
  display: grid;
  gap: 12px;
  padding-top: 28px;
  border-top: 1.5px solid rgba(30, 42, 74, .2);
  max-width: 440px;
}
.ms--petshop .qp-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 550;
}
.ms--petshop .qp-facts .qp-ic { width: 20px; height: 20px; }

/* card de agendamento */
.ms--petshop .qp-book {
  background: var(--qp-white);
  border-radius: var(--qp-r-lg);
  padding: 24px 24px 22px;
  box-shadow: var(--qp-shadow);
  display: grid;
  gap: 16px;
}
.ms--petshop .qp-book__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.ms--petshop .qp-book__title {
  font-family: var(--qp-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.1;
}
.ms--petshop .qp-book__note { font-size: 13px; color: var(--qp-ink-2); font-weight: 500; }

.ms--petshop .qp-label {
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  margin-bottom: 9px;
}
.ms--petshop .qp-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.ms--petshop .qp-label-aside { font-size: 13px; color: var(--qp-ink-2); line-height: 1; }
.ms--petshop .qp-hint { margin-top: 8px; font-size: 13px; color: var(--qp-ink-2); line-height: 1.3; }

.ms--petshop .qp-sizes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.ms--petshop .qp-size {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 44px;
  border: 1.5px solid var(--qp-line);
  border-radius: var(--qp-r-md);
  font-size: 15px;
  font-weight: 600;
}
.ms--petshop .qp-size.is-on {
  background: var(--qp-navy);
  border-color: var(--qp-navy);
  color: var(--qp-cream);
}
.ms--petshop .qp-paw--s { width: 13px; height: 13px; }
.ms--petshop .qp-paw--m { width: 16px; height: 16px; }
.ms--petshop .qp-paw--l { width: 20px; height: 20px; }
.ms--petshop .qp-size.is-on .qp-paw { color: var(--qp-sun); }

.ms--petshop .qp-svcs { display: grid; gap: 6px; }
.ms--petshop .qp-svc {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 16px 0 14px;
  border: 1.5px solid var(--qp-line);
  border-radius: var(--qp-r-md);
  font-size: 15px;
  font-weight: 550;
}
.ms--petshop .qp-svc__name { flex: 1; }
.ms--petshop .qp-svc__price { font-weight: 650; }
.ms--petshop .qp-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(30, 42, 74, .3);
  flex: none;
}
.ms--petshop .qp-svc.is-on { border-color: var(--qp-navy); border-width: 2px; padding-left: 13.5px; padding-right: 15.5px; }
.ms--petshop .qp-svc.is-on .qp-radio { border: 5.5px solid var(--qp-navy); }

.ms--petshop .qp-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.ms--petshop .qp-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 54px;
  border: 1.5px solid var(--qp-line);
  border-radius: var(--qp-r-md);
  line-height: 1.1;
}
.ms--petshop .qp-day small { font-size: 12px; font-weight: 550; color: var(--qp-ink-2); }
.ms--petshop .qp-day strong { font-size: 19px; font-weight: 650; margin-top: 3px; }
.ms--petshop .qp-day.is-on { background: var(--qp-navy); border-color: var(--qp-navy); color: var(--qp-cream); }
.ms--petshop .qp-day.is-on small { color: rgba(255, 250, 241, .72); }
.ms--petshop .qp-day.is-off { background: var(--qp-cream); border-color: transparent; color: var(--qp-ink-3); }
.ms--petshop .qp-day.is-off small { color: var(--qp-ink-3); }
.ms--petshop .qp-day.is-off strong { text-decoration: line-through; text-decoration-thickness: 1.5px; font-weight: 550; }

.ms--petshop .qp-times {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.ms--petshop .qp-time {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1.5px solid var(--qp-line);
  border-radius: var(--qp-r-sm);
  font-size: 15px;
  font-weight: 600;
 
}
.ms--petshop .qp-time.is-on { background: var(--qp-navy); border-color: var(--qp-navy); color: var(--qp-cream); }
.ms--petshop .qp-time.is-off { background: var(--qp-cream); border-color: transparent; color: var(--qp-ink-3); font-weight: 500; }
.ms--petshop .qp-time s { text-decoration-thickness: 1.5px; }

.ms--petshop .qp-ride {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--qp-mint);
  border-radius: var(--qp-r-md);
}
.ms--petshop .qp-ride__ic { width: 24px; height: 24px; }
.ms--petshop .qp-ride__text { flex: 1; min-width: 0; display: grid; line-height: 1.25; }
.ms--petshop .qp-ride__text strong { font-size: 15px; font-weight: 650; }
.ms--petshop .qp-ride__text small { font-size: 13px; color: var(--qp-ink-2); }
.ms--petshop .qp-ride__price { font-size: 14px; font-weight: 650; white-space: nowrap; }
.ms--petshop .qp-switch {
  position: relative;
  width: 44px;
  height: 26px;
  border-radius: 13px;
  background: var(--qp-navy);
  flex: none;
}
.ms--petshop .qp-switch span {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--qp-white);
}

/* barra recortada do toldo */
.ms--petshop .qp-hem {
  height: 18px;
  background-image: radial-gradient(circle at 50% 0, var(--qp-sun) 17.5px, rgba(255, 194, 71, 0) 18px);
  background-size: 36px 18px;
  background-position: center top;
  background-repeat: repeat-x;
}

/* secoes */
.ms--petshop .qp-sec { padding: 92px 0; }
.ms--petshop .qp-h2 {
  font-family: var(--qp-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.ms--petshop .qp-lead {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--qp-ink-2);
  max-width: 520px;
}
.ms--petshop .qp-sec__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 44px;
}

/* precos */
.ms--petshop .qp-prices { padding-top: 80px; }
.ms--petshop .qp-cats {
  flex: none;
  width: 330px;
  padding: 18px 20px;
  border-radius: var(--qp-r-md);
  background: var(--qp-mint);
}
.ms--petshop .qp-cats__title { font-weight: 650; font-size: 15px; }
.ms--petshop .qp-cats__text { margin-top: 4px; font-size: 14px; line-height: 1.45; color: var(--qp-ink-2); }

.ms--petshop .qp-table {
  background: var(--qp-white);
  border-radius: var(--qp-r-lg);
  padding: 8px 32px;
  box-shadow: var(--qp-shadow);
}
.ms--petshop .qp-tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px 132px 132px;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--qp-line);
}
.ms--petshop .qp-tr--head { border-top: 0; align-items: end; padding: 22px 0 18px; }
.ms--petshop .qp-th { font-size: 13px; font-weight: 650; color: var(--qp-ink-2); }
.ms--petshop .qp-th--size {
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--qp-navy);
  gap: 2px;
}
.ms--petshop .qp-th--size .qp-paw { margin-bottom: 6px; }
.ms--petshop .qp-th--size strong { font-size: 15px; font-weight: 650; }
.ms--petshop .qp-th--size small { font-size: 12.5px; font-weight: 500; color: var(--qp-ink-2); }
.ms--petshop .qp-td-name { display: grid; gap: 3px; }
.ms--petshop .qp-td-name strong { font-size: 18px; font-weight: 650; }
.ms--petshop .qp-td-name small { font-size: 14.5px; color: var(--qp-ink-2); }
.ms--petshop .qp-td {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
 
}
.ms--petshop .qp-tag {
  display: inline-block;
  vertical-align: 2px;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--qp-cream);
  border: 1px solid var(--qp-line);
  font-size: 12px;
  font-weight: 600;
  color: var(--qp-ink-2);
}
.ms--petshop .qp-table__foot {
  border-top: 1px solid var(--qp-line);
  padding: 18px 0 16px;
  font-size: 14px;
  color: var(--qp-ink-2);
}

/* leva e traz */
.ms--petshop .qp-trip { background: var(--qp-mint); }
.ms--petshop .qp-trip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 72px;
  align-items: start;
}
.ms--petshop .qp-steps {
  margin-top: 44px;
  display: grid;
  gap: 0;
}
.ms--petshop .qp-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  padding-bottom: 30px;
}
.ms--petshop .qp-step:last-child { padding-bottom: 0; }
.ms--petshop .qp-step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 48px;
  bottom: 4px;
  border-left: 2px dashed rgba(30, 42, 74, .35);
}
.ms--petshop .qp-step:last-child::before { display: none; }
.ms--petshop .qp-step__n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--qp-navy);
  color: var(--qp-sun);
  font-family: var(--qp-display);
  font-weight: 600;
  font-size: 20px;
}
.ms--petshop .qp-step__body { padding-top: 9px; }
.ms--petshop .qp-step__body strong { display: block; font-size: 18px; font-weight: 650; line-height: 1.3; }
.ms--petshop .qp-step__body p { margin-top: 4px; font-size: 15.5px; color: var(--qp-ink-2); max-width: 400px; }

.ms--petshop .qp-areas {
  background: var(--qp-white);
  border-radius: var(--qp-r-lg);
  padding: 30px;
  box-shadow: var(--qp-shadow);
}
.ms--petshop .qp-areas__fare {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--qp-line);
}
.ms--petshop .qp-areas__fare strong {
  font-family: var(--qp-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.ms--petshop .qp-areas__fare span { font-size: 15px; color: var(--qp-ink-2); line-height: 1.35; }
.ms--petshop .qp-areas__title { font-size: 15px; font-weight: 650; margin-bottom: 14px; }
.ms--petshop .qp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ms--petshop .qp-chips li {
  padding: 7px 13px;
  border-radius: var(--qp-r-sm);
  background: var(--qp-cream);
  border: 1px solid var(--qp-line);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.3;
}
.ms--petshop .qp-areas__foot { margin-top: 20px; font-size: 14px; color: var(--qp-ink-2); line-height: 1.45; }

/* lojinha */
.ms--petshop .qp-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--qp-coral);
}
.ms--petshop .qp-more .qp-ic { width: 18px; height: 18px; }
.ms--petshop .qp-prods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.ms--petshop .qp-prod { display: flex; flex-direction: column; }
.ms--petshop .qp-prod__pic {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
  border-radius: var(--qp-r-lg);
  color: var(--qp-navy);
  margin-bottom: 16px;
}
.ms--petshop .qp-prod__pic--sun { background: var(--qp-sun); }
.ms--petshop .qp-prod__pic--coral { background: var(--qp-coral); }
.ms--petshop .qp-prod__pic--mint { background: var(--qp-mint); }
.ms--petshop .qp-prod__pic--navy { background: var(--qp-navy); color: var(--qp-sun); }
.ms--petshop .qp-prod__ic { width: 36%; height: 45%; stroke-width: 1.6; }
.ms--petshop .qp-prod__name { font-size: 16px; font-weight: 600; line-height: 1.3; min-height: 42px; }
.ms--petshop .qp-opts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ms--petshop .qp-opts span {
  padding: 4px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--qp-line);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.ms--petshop .qp-opts span.is-on { border-color: var(--qp-navy); background: var(--qp-navy); color: var(--qp-cream); }
.ms--petshop .qp-prod__foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ms--petshop .qp-prod__foot strong { font-size: 19px; font-weight: 650; }
.ms--petshop .qp-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--qp-r-sm);
  background: var(--qp-navy);
  color: var(--qp-cream);
}
.ms--petshop .qp-add .qp-ic { width: 18px; height: 18px; stroke-width: 2; }

/* onde estamos */
.ms--petshop .qp-visit { padding-top: 24px; }
.ms--petshop .qp-visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: stretch;
}
.ms--petshop .qp-visit__addr { margin-top: 18px; font-size: 18px; line-height: 1.5; }
.ms--petshop .qp-visit__addr span { display: block; }
.ms--petshop .qp-status {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--qp-r-sm);
  background: var(--qp-mint);
  font-size: 14px;
  font-weight: 600;
}
.ms--petshop .qp-status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--qp-navy); }
.ms--petshop .qp-hours { margin-top: 22px; }
.ms--petshop .qp-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--qp-line);
  font-size: 15.5px;
}
.ms--petshop .qp-hours li:last-child { border-bottom: 1px solid var(--qp-line); }
.ms--petshop .qp-hours span { color: var(--qp-ink-2); }
.ms--petshop .qp-hours strong { font-weight: 600; text-align: right; }
.ms--petshop .qp-visit__tel { margin-top: 22px; font-size: 18px; font-weight: 650; }

.ms--petshop .qp-map {
  position: relative;
  min-height: 420px;
  border-radius: var(--qp-r-lg);
  background: #F4EAD6;
  overflow: hidden;
}
.ms--petshop .qp-map__road { position: absolute; background: var(--qp-white); }
.ms--petshop .qp-map__road--h1 {
  left: 0;
  right: 0;
  top: 56%;
  height: 28px;
  display: flex;
  align-items: center;
  padding-left: 22px;
}
.ms--petshop .qp-map__road--h1 span,
.ms--petshop .qp-map__park span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: rgba(30, 42, 74, .5);
  white-space: nowrap;
}
.ms--petshop .qp-map__road--h2 { left: 0; right: 0; top: 13%; height: 14px; }
.ms--petshop .qp-map__road--v1 { top: 0; bottom: 0; left: 18%; width: 14px; }
.ms--petshop .qp-map__road--v2 { top: 0; bottom: 0; left: 72%; width: 14px; }
.ms--petshop .qp-map__road--av { left: -20%; right: -20%; top: 84%; height: 16px; transform: rotate(-6deg); }
.ms--petshop .qp-map__park {
  position: absolute;
  left: calc(18% + 32px);
  right: calc(28% + 18px);
  top: calc(13% + 32px);
  bottom: calc(44% + 18px);
  border-radius: var(--qp-r-md);
  background-color: var(--qp-mint);
  padding: 12px;
}
.ms--petshop .qp-map__park span {
  display: inline-block;
  padding: 4px 6px;
  border-radius: 6px;
  background: var(--qp-mint);
}
.ms--petshop .qp-map__pin {
  position: absolute;
  left: 46%;
  top: calc(56% + 58px);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translate(-11px, -50%);
}
.ms--petshop .qp-map__label {
  padding: 8px 14px;
  border-radius: var(--qp-r-sm);
  background: var(--qp-navy);
  color: var(--qp-cream);
  font-family: var(--qp-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}
.ms--petshop .qp-map__dot {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--qp-coral);
  border: 4px solid var(--qp-white);
  box-shadow: var(--qp-shadow);
}

/* rodape */
.ms--petshop .qp-foot {
  background: var(--qp-navy);
  color: var(--qp-cream);
  padding: 80px 0 32px;
}
.ms--petshop .qp-foot__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 250, 241, .16);
}
.ms--petshop .qp-foot__title {
  font-family: var(--qp-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -.015em;
  max-width: 560px;
}
.ms--petshop .qp-foot__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 48px 0;
}
.ms--petshop .qp-brand--light { color: var(--qp-cream); }
.ms--petshop .qp-brand--light .qp-brand__paw { color: var(--qp-sun); }
.ms--petshop .qp-foot__brand > p { margin-top: 14px; font-size: 15px; color: rgba(255, 250, 241, .7); max-width: 260px; }
.ms--petshop .qp-foot__h { font-size: 14px; font-weight: 650; color: var(--qp-sun); margin-bottom: 12px; }
.ms--petshop .qp-foot__col p + p { margin-top: 6px; }
.ms--petshop .qp-foot__col p { font-size: 15px; color: rgba(255, 250, 241, .82); }
.ms--petshop .qp-foot__col .qp-foot__h { color: var(--qp-sun); }
.ms--petshop .qp-foot__legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 241, .16);
  font-size: 13px;
  color: rgba(255, 250, 241, .6);
}

/* ---------- celular ---------- */
.ms--petshop.is-mobile { font-size: 15px; }
.ms--petshop.is-mobile .qp-wrap { padding: 0 16px; }

.ms--petshop.is-mobile .qp-head { height: 62px; gap: 12px; }
.ms--petshop.is-mobile .qp-nav,
.ms--petshop.is-mobile .qp-head__end { display: none; }
.ms--petshop.is-mobile .qp-brand__name { font-size: 23px; }
.ms--petshop.is-mobile .qp-brand__paw { width: 22px; height: 22px; }
.ms--petshop.is-mobile .qp-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 40px;
  height: 40px;
}
.ms--petshop.is-mobile .qp-menu .qp-ic { width: 26px; height: 26px; stroke-width: 2; }

.ms--petshop.is-mobile .qp-hero {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "text" "book" "facts";
  grid-template-rows: auto;
  padding-top: 6px;
  padding-bottom: 28px;
}
.ms--petshop.is-mobile .qp-hero__text { padding-top: 0; }
.ms--petshop.is-mobile .qp-hero__title { font-size: 37px; line-height: 1.02; max-width: 10ch; }
.ms--petshop.is-mobile .qp-hero__lead { margin-top: 10px; font-size: 15.5px; }
.ms--petshop.is-mobile .qp-hero__actions { display: none; }
.ms--petshop.is-mobile .qp-facts { margin-top: 26px; padding-top: 20px; gap: 10px; }
.ms--petshop.is-mobile .qp-facts li { font-size: 14px; }

.ms--petshop.is-mobile .qp-book {
  margin-top: 18px;
  padding: 16px 16px 16px;
  gap: 14px;
  border-radius: 20px;
}
.ms--petshop.is-mobile .qp-book__head { display: none; }
.ms--petshop.is-mobile .qp-label { font-size: 12.5px; margin-bottom: 8px; }
.ms--petshop.is-mobile .qp-label-aside { font-size: 12.5px; }
.ms--petshop.is-mobile .qp-hint { margin-top: 6px; font-size: 12.5px; }
.ms--petshop.is-mobile .qp-sizes { gap: 6px; }
.ms--petshop.is-mobile .qp-size { height: 42px; font-size: 14px; gap: 5px; border-radius: 12px; }
.ms--petshop.is-mobile .qp-svc { height: 42px; font-size: 14.5px; border-radius: 12px; gap: 10px; }
.ms--petshop.is-mobile .qp-days { gap: 6px; }
.ms--petshop.is-mobile .qp-day { height: 52px; border-radius: 12px; }
.ms--petshop.is-mobile .qp-day strong { font-size: 17px; margin-top: 2px; }
.ms--petshop.is-mobile .qp-day small { font-size: 11.5px; }
.ms--petshop.is-mobile .qp-times { gap: 6px; }
.ms--petshop.is-mobile .qp-time { height: 38px; font-size: 14px; }
.ms--petshop.is-mobile .qp-ride { padding: 10px 12px; gap: 10px; border-radius: 12px; }
.ms--petshop.is-mobile .qp-ride__ic { width: 22px; height: 22px; }
.ms--petshop.is-mobile .qp-ride__text strong { font-size: 14.5px; }
.ms--petshop.is-mobile .qp-ride__text small { font-size: 12px; }
.ms--petshop.is-mobile .qp-ride__price { font-size: 13px; }
.ms--petshop.is-mobile .qp-btn--block { height: 50px; border-radius: 12px; font-size: 16px; }

.ms--petshop.is-mobile .qp-hem { height: 14px; background-size: 28px 14px; background-image: radial-gradient(circle at 50% 0, var(--qp-sun) 13.5px, rgba(255, 194, 71, 0) 14px); }

.ms--petshop.is-mobile .qp-sec { padding: 64px 0; }
.ms--petshop.is-mobile .qp-prices { padding-top: 52px; }
.ms--petshop.is-mobile .qp-h2 { font-size: 32px; }
.ms--petshop.is-mobile .qp-lead { font-size: 15.5px; margin-top: 12px; }
.ms--petshop.is-mobile .qp-sec__head { display: block; margin-bottom: 26px; }
.ms--petshop.is-mobile .qp-cats { width: auto; margin-top: 20px; padding: 14px 16px; }
.ms--petshop.is-mobile .qp-cats__title { font-size: 14.5px; }
.ms--petshop.is-mobile .qp-cats__text { font-size: 13.5px; }

.ms--petshop.is-mobile .qp-table { padding: 4px 16px; border-radius: 20px; }
.ms--petshop.is-mobile .qp-tr { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 6px; padding: 16px 0; }
.ms--petshop.is-mobile .qp-tr--head { padding: 16px 0 14px; }
.ms--petshop.is-mobile .qp-tr--head .qp-th:first-child { display: none; }
.ms--petshop.is-mobile .qp-td-name { grid-column: 1 / -1; }
.ms--petshop.is-mobile .qp-th--size strong { font-size: 14px; }
.ms--petshop.is-mobile .qp-th--size small { font-size: 11.5px; line-height: 1.25; }
.ms--petshop.is-mobile .qp-td-name strong { font-size: 16px; line-height: 1.3; }
.ms--petshop.is-mobile .qp-td-name small { font-size: 13px; line-height: 1.4; }
.ms--petshop.is-mobile .qp-td { font-size: 15px; padding: 7px 0; border-radius: var(--qp-r-sm); background: var(--qp-cream); }
.ms--petshop.is-mobile .qp-table__foot { font-size: 12.5px; padding: 14px 0 14px; }

.ms--petshop.is-mobile .qp-trip__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
.ms--petshop.is-mobile .qp-steps { margin-top: 30px; }
.ms--petshop.is-mobile .qp-step { grid-template-columns: 38px minmax(0, 1fr); gap: 14px; padding-bottom: 24px; }
.ms--petshop.is-mobile .qp-step::before { left: 18px; top: 42px; }
.ms--petshop.is-mobile .qp-step__n { width: 38px; height: 38px; font-size: 18px; }
.ms--petshop.is-mobile .qp-step__body { padding-top: 7px; }
.ms--petshop.is-mobile .qp-step__body strong { font-size: 16px; }
.ms--petshop.is-mobile .qp-step__body p { font-size: 14px; }
.ms--petshop.is-mobile .qp-areas { padding: 22px 18px; border-radius: 20px; }
.ms--petshop.is-mobile .qp-areas__fare { padding-bottom: 18px; margin-bottom: 18px; }
.ms--petshop.is-mobile .qp-areas__fare strong { font-size: 36px; }
.ms--petshop.is-mobile .qp-areas__fare span { font-size: 13.5px; }
.ms--petshop.is-mobile .qp-chips { gap: 6px; }
.ms--petshop.is-mobile .qp-chips li { font-size: 13px; padding: 6px 11px; }
.ms--petshop.is-mobile .qp-areas__foot { font-size: 13px; }

.ms--petshop.is-mobile .qp-sec__head--shop .qp-more { margin-top: 16px; }
.ms--petshop.is-mobile .qp-prods { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
.ms--petshop.is-mobile .qp-prod__pic { aspect-ratio: 1 / 1; border-radius: 18px; margin-bottom: 12px; }
.ms--petshop.is-mobile .qp-prod__ic { width: 42%; height: 42%; }
.ms--petshop.is-mobile .qp-prod__name { font-size: 14px; min-height: 36px; }
.ms--petshop.is-mobile .qp-opts { gap: 4px; margin-top: 8px; }
.ms--petshop.is-mobile .qp-opts span { font-size: 11.5px; padding: 3px 7px; border-radius: 7px; }
.ms--petshop.is-mobile .qp-prod__foot { margin-top: 10px; }
.ms--petshop.is-mobile .qp-prod__foot strong { font-size: 16.5px; }
.ms--petshop.is-mobile .qp-add { width: 34px; height: 34px; }

.ms--petshop.is-mobile .qp-visit { padding-top: 8px; }
.ms--petshop.is-mobile .qp-visit__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
.ms--petshop.is-mobile .qp-visit__addr { font-size: 15.5px; margin-top: 12px; }
.ms--petshop.is-mobile .qp-status { font-size: 13px; margin-top: 18px; }
.ms--petshop.is-mobile .qp-hours li { font-size: 14px; padding: 11px 0; }
.ms--petshop.is-mobile .qp-visit__tel { font-size: 16px; margin-top: 18px; }
.ms--petshop.is-mobile .qp-map { min-height: 240px; border-radius: 20px; }
.ms--petshop.is-mobile .qp-map__road--h1 { height: 22px; padding-left: 14px; }
.ms--petshop.is-mobile .qp-map__road--h1 span,
.ms--petshop.is-mobile .qp-map__park span { font-size: 11px; }
.ms--petshop.is-mobile .qp-map__road--v1 { left: 10%; }
.ms--petshop.is-mobile .qp-map__park { left: calc(10% + 26px); right: calc(28% + 14px); top: calc(13% + 26px); bottom: calc(44% + 14px); padding: 8px; }
.ms--petshop.is-mobile .qp-map__pin { left: 34%; top: calc(56% + 46px); }
.ms--petshop.is-mobile .qp-map__label { font-size: 14px; padding: 6px 11px; }

.ms--petshop.is-mobile .qp-foot { padding: 56px 0 26px; }
.ms--petshop.is-mobile .qp-foot__cta { display: block; padding-bottom: 36px; }
.ms--petshop.is-mobile .qp-foot__title { font-size: 28px; margin-bottom: 22px; }
.ms--petshop.is-mobile .qp-foot__cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px 20px; padding: 36px 0; }
.ms--petshop.is-mobile .qp-foot__brand { grid-column: 1 / -1; }
.ms--petshop.is-mobile .qp-foot__col:last-child { display: none; }
.ms--petshop.is-mobile .qp-foot__col p { font-size: 14px; }
.ms--petshop.is-mobile .qp-foot__legal { font-size: 12px; }

/* ---------- Clínica Serena ---------- */
/* Clinica Serena: vitrine de odontologia (escopo .ms--clinica) */

.ms--clinica, .ms--clinica * { box-sizing: border-box; }
.ms--clinica p, .ms--clinica ul, .ms--clinica ol { margin: 0; padding: 0; }
.ms--clinica li { list-style: none; margin: 0; padding: 0; }
.ms--clinica svg { display: block; flex: none; }
.ms--clinica .sr-hero__title, .ms--clinica .sr-h2, .ms--clinica .sr-conv__text, .ms--clinica .sr-foot__title { text-wrap: balance; }
.ms--clinica .sr-hero__lead, .ms--clinica .sr-head__lead, .ms--clinica .sr-list__desc, .ms--clinica .sr-steps p, .ms--clinica .sr-first__lead, .ms--clinica .sr-crew p, .ms--clinica .sr-where__note, .ms--clinica .sr-checks span, .ms--clinica .sr-doc__spec, .ms--clinica .sr-facts span { text-wrap: pretty; }
.ms--clinica strong { font-weight: 600; }

.ms--clinica {
  --white: #FFFFFF;
  --mist: #EEF5F2;
  --teal: #0F5C55;
  --ink: #14292B;
  --sand: #EFE6D8;
  --coral: #E4785F;
  --muted: #56696A;
  --faint: #A2AEAD;
  --line: #D8E3DF;
  --off: #F4F7F6;
  --r-lg: 28px;
  --r-md: 16px;
  --r-pill: 999px;
  --shadow: 0 1px 2px rgba(20, 41, 43, 0.06), 0 24px 48px -24px rgba(20, 41, 43, 0.28);
  display: block;
  background: var(--white);
  color: var(--ink);
  font-family: 'Mona Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: 100%;
  line-height: 1.5;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

.ms--clinica .sr-i {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ms--clinica .sr-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* botoes */
.ms--clinica .sr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border: 1.5px solid var(--teal);
  border-radius: var(--r-pill);
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.ms--clinica .sr-btn--sm { height: 44px; padding: 0 20px; font-size: 15px; }
.ms--clinica .sr-btn--line { background: transparent; color: var(--teal); }
.ms--clinica .sr-btn--light { background: var(--white); border-color: var(--white); color: var(--teal); }
.ms--clinica .sr-btn--block { display: flex; width: 100%; }

/* cabecalho */
.ms--clinica .sr-top__in { display: flex; align-items: center; gap: 40px; height: 92px; }
.ms--clinica .sr-logo { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.ms--clinica .sr-logo__mark { width: 32px; height: 32px; color: var(--teal); stroke-width: 1.5; }
.ms--clinica .sr-logo__txt { display: flex; flex-direction: column; line-height: 1; }
.ms--clinica .sr-logo__name { font-size: 24px; font-weight: 600; font-stretch: 115%; letter-spacing: -0.02em; }
.ms--clinica .sr-logo__sub { margin-top: 4px; font-size: 12px; color: var(--muted); }
.ms--clinica .sr-nav { display: flex; gap: 32px; margin-left: auto; font-size: 15px; font-weight: 500; }
.ms--clinica .sr-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink);
}
.ms--clinica .sr-menu svg { width: 22px; height: 22px; }

/* primeira dobra */
.ms--clinica .sr-hero {
  display: flex;
  gap: 48px;
  padding: 56px;
  border-radius: var(--r-lg);
  background: var(--mist);
}
.ms--clinica .sr-hero__copy { flex: 1 1 440px; min-width: 0; display: flex; flex-direction: column; padding-top: 12px; }
.ms--clinica .sr-hero__title {
  font-size: 58px;
  font-weight: 500;
  font-stretch: 112%;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.ms--clinica .sr-hero__title span { display: block; }
.ms--clinica .sr-hero__lead { max-width: 430px; margin-top: 24px; font-size: 18px; line-height: 1.55; color: var(--muted); }
.ms--clinica .sr-crew { display: flex; align-items: center; gap: 14px; max-width: 430px; margin-top: 32px; }
.ms--clinica .sr-crew p { font-size: 15px; line-height: 1.45; color: var(--ink); }
.ms--clinica .sr-stack { display: flex; flex: none; }
.ms--clinica .sr-stack .sr-av { border: 3px solid var(--mist); width: 46px; height: 46px; }
.ms--clinica .sr-stack .sr-av + .sr-av { margin-left: -12px; }

/* avatar com iniciais */
.ms--clinica .sr-av {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  font-stretch: 112%;
  letter-spacing: 0.02em;
}
.ms--clinica .sr-av--sand { background: var(--sand); color: var(--teal); }
.ms--clinica .sr-av--white { background: var(--white); color: var(--teal); }
.ms--clinica .sr-av--sm { width: 34px; height: 34px; font-size: 11px; }
.ms--clinica .sr-av--lg { width: 72px; height: 72px; font-size: 22px; letter-spacing: 0; }

/* cartao de agendamento */
.ms--clinica .sr-book {
  flex: 0 2 420px;
  min-width: 0;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.ms--clinica .sr-book__title { font-size: 20px; font-weight: 600; font-stretch: 108%; letter-spacing: -0.01em; line-height: 1.3; }
.ms--clinica .sr-status { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 14px; color: var(--muted); }
.ms--clinica .sr-status strong { color: var(--ink); }
.ms--clinica .sr-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(228, 120, 95, 0.18);
}
.ms--clinica .sr-fields { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--r-md); }
.ms--clinica .sr-field { display: flex; align-items: center; gap: 12px; min-height: 64px; padding: 11px 14px 11px 16px; }
.ms--clinica .sr-field + .sr-field { border-top: 1px solid var(--line); }
.ms--clinica .sr-field__txt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.ms--clinica .sr-field__lb { font-size: 12px; line-height: 1.3; color: var(--muted); }
.ms--clinica .sr-field__val { font-size: 16px; font-weight: 500; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ms--clinica .sr-field__chev { width: 18px; height: 18px; color: var(--muted); }

.ms--clinica .sr-pick { margin-top: 22px; }
.ms--clinica .sr-pick__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.ms--clinica .sr-pick__lb { font-size: 14px; font-weight: 600; }
.ms--clinica .sr-pick__aside { font-size: 13px; color: var(--muted); }
.ms--clinica .sr-days { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.ms--clinica .sr-days li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  line-height: 1.1;
}
.ms--clinica .sr-days span { font-size: 12px; color: var(--muted); }
.ms--clinica .sr-days strong { margin-top: 5px; font-size: 19px; font-weight: 600; font-stretch: 108%; }
.ms--clinica .sr-slots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.ms--clinica .sr-slots li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
}
.ms--clinica .sr-days .is-on, .ms--clinica .sr-slots .is-on { background: var(--teal); border-color: var(--teal); color: var(--white); }
.ms--clinica .sr-days .is-on span { color: rgba(255, 255, 255, 0.78); }
.ms--clinica .sr-days .is-off, .ms--clinica .sr-slots .is-off { background: var(--off); border-color: var(--off); color: var(--faint); }
.ms--clinica .sr-days .is-off span { color: var(--faint); }
.ms--clinica .sr-days .is-off strong, .ms--clinica .sr-slots .is-off { text-decoration: line-through; text-decoration-thickness: 1px; }
.ms--clinica .sr-book__cta { margin-top: 24px; }
.ms--clinica .sr-book__note { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }

/* fatos rapidos */
.ms--clinica .sr-facts { max-width: 430px; margin-top: auto; padding-top: 40px; }
.ms--clinica .sr-facts li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.ms--clinica .sr-facts li:last-child { padding-bottom: 0; }
.ms--clinica .sr-facts svg { width: 24px; height: 24px; color: var(--teal); }
.ms--clinica .sr-facts strong { display: block; font-size: 15px; line-height: 1.35; }
.ms--clinica .sr-facts span { display: block; font-size: 14px; line-height: 1.4; color: var(--muted); }

/* secoes */
.ms--clinica .sr-sec { padding-top: 100px; }
.ms--clinica .sr-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 40px; }
.ms--clinica .sr-h2 { font-size: 44px; font-weight: 500; font-stretch: 112%; line-height: 1.08; letter-spacing: -0.028em; }
.ms--clinica .sr-head__lead { max-width: 400px; font-size: 17px; line-height: 1.55; color: var(--muted); }

/* especialidades */
.ms--clinica .sr-list { border-top: 1px solid var(--line); }
.ms--clinica .sr-list li {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr) 150px 22px;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.ms--clinica .sr-list__name { font-size: 24px; font-weight: 500; font-stretch: 110%; letter-spacing: -0.015em; line-height: 1.2; }
.ms--clinica .sr-list__desc { font-size: 16px; color: var(--muted); }
.ms--clinica .sr-list__price { font-size: 14px; color: var(--muted); text-align: right; white-space: nowrap; }
.ms--clinica .sr-list__price strong { margin-left: 4px; font-size: 17px; color: var(--ink); }
.ms--clinica .sr-list__go { width: 22px; height: 22px; color: var(--teal); }

/* equipe */
.ms--clinica .sr-docs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ms--clinica .sr-doc { display: flex; flex-direction: column; padding: 28px; border-radius: var(--r-lg); background: var(--mist); }
.ms--clinica .sr-doc__txt { margin-top: 28px; }
.ms--clinica .sr-doc__name { font-size: 21px; font-weight: 600; font-stretch: 108%; letter-spacing: -0.012em; line-height: 1.25; }
.ms--clinica .sr-doc__spec { margin-top: 4px; font-size: 15px; color: var(--muted); }
.ms--clinica .sr-doc__foot { margin-top: auto; padding-top: 28px; }
.ms--clinica .sr-doc__foot p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.ms--clinica .sr-doc__foot p > span:last-child { color: var(--ink); font-weight: 500; }
.ms--clinica .sr-doc__foot .sr-status { margin-top: 0; font-size: 14px; }

/* primeira consulta */
.ms--clinica .sr-first {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 64px;
  padding: 56px 64px;
  border-radius: var(--r-lg);
  background: var(--sand);
}
.ms--clinica .sr-first__lead { max-width: 380px; margin-top: 18px; font-size: 17px; line-height: 1.55; color: #4B5A57; }
.ms--clinica .sr-first__price { max-width: 380px; margin: 36px 0 28px; padding-top: 18px; border-top: 1px solid rgba(20, 41, 43, 0.16); }
.ms--clinica .sr-first__price p:first-child { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 16px; font-weight: 500; }
.ms--clinica .sr-first__price strong { flex: none; white-space: nowrap; font-size: 28px; font-weight: 600; font-stretch: 108%; letter-spacing: -0.02em; color: var(--teal); }
.ms--clinica .sr-first__dur { margin-top: 2px; font-size: 14px; color: #4B5A57; }
.ms--clinica .sr-steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding: 26px 0;
  border-top: 1px solid rgba(20, 41, 43, 0.16);
}
.ms--clinica .sr-steps li:first-child { padding-top: 6px; border-top: 0; }
.ms--clinica .sr-steps li:last-child { padding-bottom: 0; }
.ms--clinica .sr-steps__n { font-size: 22px; font-weight: 500; font-stretch: 112%; line-height: 1.2; color: var(--teal); }
.ms--clinica .sr-steps__t { font-size: 20px; font-weight: 600; font-stretch: 108%; letter-spacing: -0.01em; line-height: 1.3; }
.ms--clinica .sr-steps p + p { margin-top: 6px; font-size: 16px; color: #4B5A57; }

/* convenios */
.ms--clinica .sr-conv { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; padding: 48px 64px; border: 1px solid var(--line); border-radius: var(--r-lg); }
.ms--clinica .sr-conv__text {
  max-width: 460px;
  margin: 18px 0 32px;
  font-size: 24px;
  font-weight: 450;
  font-stretch: 106%;
  line-height: 1.4;
  letter-spacing: -0.012em;
}
.ms--clinica .sr-checks { display: flex; flex-direction: column; gap: 26px; }
.ms--clinica .sr-checks li { display: flex; align-items: flex-start; gap: 14px; }
.ms--clinica .sr-checks svg { width: 22px; height: 22px; margin-top: 1px; color: var(--teal); stroke-width: 1.8; }
.ms--clinica .sr-checks strong { display: block; font-size: 17px; line-height: 1.35; }
.ms--clinica .sr-checks span { display: block; margin-top: 3px; font-size: 16px; color: var(--muted); }

/* onde estamos */
.ms--clinica .sr-where { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center; }
.ms--clinica .sr-map { position: relative; height: 400px; overflow: hidden; border-radius: var(--r-lg); background: var(--mist); }
.ms--clinica .sr-map__svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.ms--clinica .sr-map__bg { fill: var(--mist); }
.ms--clinica .sr-map__park { fill: #DCEAE3; }
.ms--clinica .sr-map__tree { fill: #C9DED4; }
.ms--clinica .sr-map__st { fill: none; stroke: var(--white); stroke-width: 12; stroke-linecap: round; }
.ms--clinica .sr-map__st--thin { stroke-width: 8; }
.ms--clinica .sr-map__main { fill: none; stroke: var(--white); stroke-width: 22; }
.ms--clinica .sr-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 4px solid var(--white);
  border-radius: var(--r-pill);
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}
.ms--clinica .sr-pin svg { width: 22px; height: 22px; stroke-width: 1.8; }
.ms--clinica .sr-pin__lb {
  position: absolute;
  left: 50%;
  bottom: calc(50% + 36px);
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: var(--r-md);
  background: var(--white);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.ms--clinica .sr-pin__lb strong { display: block; font-size: 15px; line-height: 1.3; }
.ms--clinica .sr-pin__lb span { display: block; font-size: 13px; color: var(--muted); }
.ms--clinica .sr-where__addr { margin-top: 22px; font-size: 21px; font-weight: 500; font-stretch: 106%; line-height: 1.35; }
.ms--clinica .sr-where__note { margin-top: 6px; font-size: 16px; color: var(--muted); }
.ms--clinica .sr-hours { margin-top: 28px; border-top: 1px solid var(--line); }
.ms--clinica .sr-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.ms--clinica .sr-hours li span:last-child { font-weight: 500; }
.ms--clinica .sr-hours li:last-child span:last-child { color: var(--muted); font-weight: 400; }
.ms--clinica .sr-where__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* rodape */
.ms--clinica .sr-foot { margin-top: 100px; padding: 64px 0 30px; background: var(--teal); color: var(--white); }
.ms--clinica .sr-foot__top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.ms--clinica .sr-foot__title { max-width: 560px; font-size: 44px; font-weight: 500; font-stretch: 112%; line-height: 1.08; letter-spacing: -0.028em; }
.ms--clinica .sr-foot__cols { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr)); gap: 32px; padding: 40px 0 48px; }
.ms--clinica .sr-logo--light { align-items: flex-start; color: var(--white); }
.ms--clinica .sr-logo--light .sr-logo__mark { color: var(--white); }
.ms--clinica .sr-logo--light .sr-logo__sub { color: rgba(255, 255, 255, 0.7); }
.ms--clinica .sr-foot__lb { margin-bottom: 8px; font-size: 13px; color: rgba(255, 255, 255, 0.64); }
.ms--clinica .sr-foot__col p span { display: block; font-size: 15px; line-height: 1.6; }
.ms--clinica .sr-foot__base { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.16); font-size: 13px; color: rgba(255, 255, 255, 0.64); }

/* ===== celular ===== */
.ms--clinica.is-mobile .sr-wrap { padding: 0 20px; }
.ms--clinica.is-mobile .sr-top__in { height: 72px; gap: 16px; }
.ms--clinica.is-mobile .sr-nav, .ms--clinica.is-mobile .sr-top__cta { display: none; }
.ms--clinica.is-mobile .sr-menu { display: flex; }
.ms--clinica.is-mobile .sr-logo__mark { width: 28px; height: 28px; }
.ms--clinica.is-mobile .sr-logo__name { font-size: 21px; }
.ms--clinica.is-mobile .sr-logo__sub { font-size: 11px; }

.ms--clinica.is-mobile .sr-hero-wrap { padding: 0 8px; }
.ms--clinica.is-mobile .sr-hero { flex-direction: column; gap: 24px; padding: 28px 12px 12px; border-radius: 24px; }
.ms--clinica.is-mobile .sr-hero__copy { display: contents; }
.ms--clinica.is-mobile .sr-hero__title { padding: 0 8px; font-size: 38px; line-height: 1.06; }
.ms--clinica.is-mobile .sr-hero__lead { margin-top: -10px; padding: 0 8px; font-size: 16px; }
.ms--clinica.is-mobile .sr-crew { order: 3; margin-top: 0; padding: 4px 8px 0; }
.ms--clinica.is-mobile .sr-crew p { font-size: 14px; }
.ms--clinica.is-mobile .sr-facts { order: 4; margin-top: -8px; padding: 0 8px 4px; }
.ms--clinica.is-mobile .sr-book { flex: none; padding: 20px; border-radius: 22px; }
.ms--clinica.is-mobile .sr-book__title { font-size: 19px; }
.ms--clinica.is-mobile .sr-fields { margin-top: 18px; }
.ms--clinica.is-mobile .sr-field { min-height: 60px; padding: 9px 12px 9px 14px; }
.ms--clinica.is-mobile .sr-pick { margin-top: 18px; }
.ms--clinica.is-mobile .sr-days { gap: 6px; }
.ms--clinica.is-mobile .sr-days li { height: 60px; }
.ms--clinica.is-mobile .sr-days strong { font-size: 18px; }
.ms--clinica.is-mobile .sr-slots { gap: 6px; }
.ms--clinica.is-mobile .sr-slots li { height: 44px; }
.ms--clinica.is-mobile .sr-book__cta { margin-top: 20px; }


.ms--clinica.is-mobile .sr-sec { padding-top: 64px; }
.ms--clinica.is-mobile .sr-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.ms--clinica.is-mobile .sr-h2 { font-size: 32px; }
.ms--clinica.is-mobile .sr-head__lead { font-size: 16px; }

.ms--clinica.is-mobile .sr-list li {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "name price" "desc desc";
  gap: 6px 16px;
  align-items: baseline;
  padding: 18px 0;
}
.ms--clinica.is-mobile .sr-list__name { grid-area: name; font-size: 20px; }
.ms--clinica.is-mobile .sr-list__price { grid-area: price; font-size: 13px; }
.ms--clinica.is-mobile .sr-list__price strong { font-size: 15px; }
.ms--clinica.is-mobile .sr-list__desc { grid-area: desc; font-size: 15px; }
.ms--clinica.is-mobile .sr-list__go { display: none; }

.ms--clinica.is-mobile .sr-docs { grid-template-columns: minmax(0, 1fr); gap: 12px; }
.ms--clinica.is-mobile .sr-doc { display: grid; grid-template-columns: 60px minmax(0, 1fr); gap: 0 16px; padding: 20px; border-radius: 22px; }
.ms--clinica.is-mobile .sr-av--lg { width: 60px; height: 60px; font-size: 19px; }
.ms--clinica.is-mobile .sr-doc__txt { margin-top: 0; align-self: center; }
.ms--clinica.is-mobile .sr-doc__name { font-size: 19px; }
.ms--clinica.is-mobile .sr-doc__spec { font-size: 14px; }
.ms--clinica.is-mobile .sr-doc__foot { grid-column: 1 / -1; padding-top: 16px; }
.ms--clinica.is-mobile .sr-doc__foot p { padding: 9px 0; }

.ms--clinica.is-mobile .sr-first { grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 36px 24px; border-radius: 24px; }
.ms--clinica.is-mobile .sr-first__lead { font-size: 16px; }
.ms--clinica.is-mobile .sr-first__price { margin: 28px 0 24px; }
.ms--clinica.is-mobile .sr-first__intro .sr-btn { display: flex; width: 100%; }
.ms--clinica.is-mobile .sr-steps li { grid-template-columns: 32px minmax(0, 1fr); padding: 22px 0; }
.ms--clinica.is-mobile .sr-steps li:first-child { padding-top: 0; }
.ms--clinica.is-mobile .sr-steps li:last-child { padding-bottom: 0; }
.ms--clinica.is-mobile .sr-steps__t { font-size: 18px; }
.ms--clinica.is-mobile .sr-steps p + p { font-size: 15px; }

.ms--clinica.is-mobile .sr-conv { grid-template-columns: minmax(0, 1fr); gap: 32px; padding: 30px 20px; border-radius: 24px; }
.ms--clinica.is-mobile .sr-conv__text { margin: 14px 0 24px; font-size: 20px; }
.ms--clinica.is-mobile .sr-checks { gap: 22px; padding-top: 0; }
.ms--clinica.is-mobile .sr-checks span { font-size: 15px; }

.ms--clinica.is-mobile .sr-where { grid-template-columns: minmax(0, 1fr); gap: 32px; }
.ms--clinica.is-mobile .sr-map { height: 260px; border-radius: 22px; }
.ms--clinica.is-mobile .sr-where__info { order: -1; }
.ms--clinica.is-mobile .sr-where__addr { margin-top: 16px; font-size: 19px; }
.ms--clinica.is-mobile .sr-where__note { font-size: 15px; }
.ms--clinica.is-mobile .sr-where__ctas { flex-direction: column; }

.ms--clinica.is-mobile .sr-foot { margin-top: 64px; padding: 48px 0 28px; }
.ms--clinica.is-mobile .sr-foot__top { flex-direction: column; align-items: stretch; gap: 28px; padding-bottom: 40px; }
.ms--clinica.is-mobile .sr-foot__title { font-size: 32px; }
.ms--clinica.is-mobile .sr-foot__cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px 20px; padding: 36px 0 40px; }
.ms--clinica.is-mobile .sr-foot__cols .sr-logo { grid-column: 1 / -1; }
.ms--clinica.is-mobile .sr-foot__col:last-child { grid-column: 1 / -1; }
.ms--clinica.is-mobile .sr-foot__base { flex-direction: column; gap: 6px; }

/* ajustes da revisao: voz tipografica propria (sem a largura expandida da Nexo) e sem preco */
.ms--clinica .sr-hero__title, .ms--clinica .sr-h2, .ms--clinica .sr-foot__title { font-stretch: 100%; font-weight: 450; letter-spacing: -0.022em; }
.ms--clinica .sr-logo__name { font-stretch: 100%; font-weight: 550; }
.ms--clinica .sr-list__price--agendar { color: var(--teal); font-weight: 600; }
.ms--clinica .sr-list__price--agendar strong { color: var(--teal); }
.ms--clinica .sr-doc__cro { margin-top: 2px; font-size: 13px; color: var(--muted); }
.ms--clinica.is-mobile .sr-doc__cro { font-size: 12px; }

/* ---------- Ateliê Linho ---------- */
/* Ateliê Linho: catálogo digital com pedido pelo WhatsApp */

.ms--loja, .ms--loja * { box-sizing: border-box; }

.ms--loja {
  --linen: #F6F3EC;
  --ink: #1E1D1B;
  --sage: #7D8C6D;
  --sand: #E4D9C6;
  --rust: #A2512E;
  --cru: #FBF8F2;
  --sage-t: #DFE4D6;
  --muted: #6D6962;
  --body: #46433E;
  --line: rgba(30, 29, 27, .14);
  --r: 3px;
  --shadow: 0 1px 2px rgba(30, 29, 27, .06), 0 14px 34px rgba(30, 29, 27, .14);
  --serif: 'Bodoni Moda', 'Didot', 'Bodoni 72', 'Times New Roman', serif;
  --sans: 'Mona Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.ms--loja p, .ms--loja ul, .ms--loja ol, .ms--loja li { margin: 0; padding: 0; list-style: none; }
.ms--loja svg { display: block; overflow: visible; }
.ms--loja s { text-decoration: line-through; }

.ms--loja .al-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* icones de interface */
.ms--loja .al-ico { display: inline-flex; width: 22px; height: 22px; flex: none; }
.ms--loja .al-ico svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ms--loja .al-ico--sm { width: 18px; height: 18px; }
.ms--loja .al-ico--xs { width: 14px; height: 14px; }

/* tipografia */
.ms--loja .al-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.ms--loja .al-h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.ms--loja .al-lead { font-size: 17px; line-height: 1.55; color: var(--body); margin-top: 16px; max-width: 440px; }

/* botoes */
.ms--loja .al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: var(--r);
  background: var(--ink);
  color: var(--linen);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.ms--loja .al-btn--o { background: transparent; color: var(--ink); }
.ms--loja .al-btn--l { background: var(--linen); border-color: var(--linen); color: var(--ink); }

/* barra do topo */
.ms--loja .al-top { background: var(--ink); color: var(--sand); font-size: 12.5px; font-stretch: 87.5%; letter-spacing: .01em; }
.ms--loja .al-top__in { display: flex; justify-content: space-between; align-items: center; height: 36px; }

/* cabecalho */
.ms--loja .al-head { border-bottom: 1px solid var(--line); }
.ms--loja .al-head__in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 76px; }
.ms--loja .al-nav { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
.ms--loja .al-logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.ms--loja .al-head__r { display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.ms--loja .al-menu { display: none; }
.ms--loja .al-bag { position: relative; display: inline-flex; }
.ms--loja .al-bag__n {
  position: absolute;
  top: -5px;
  right: -8px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--linen);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
}

/* hero desktop */
.ms--loja .al-hero { padding: 40px 0 84px; }
.ms--loja .al-hero__in { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 64px; }
.ms--loja .al-hero__txt { display: flex; flex-direction: column; padding-top: 28px; }
.ms--loja .al-kick { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--muted); }
.ms--loja .al-kick__sw { width: 22px; height: 10px; background: var(--sage); border-radius: 1px; }
.ms--loja .al-hero__t {
  margin-top: 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 92px;
  line-height: .94;
  letter-spacing: -0.03em;
}
.ms--loja .al-hero__t span { display: block; }
.ms--loja .al-hero__p { margin-top: 30px; max-width: 390px; font-size: 17px; line-height: 1.55; color: var(--body); }
.ms--loja .al-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.ms--loja .al-hero__art { position: relative; }
.ms--loja .al-mos {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 8px;
  height: 540px;
}
.ms--loja .al-mos__a { grid-row: 1 / 3; }
.ms--loja .al-mos__a .al-g { width: 42%; margin: 0 0 0 29%; padding-top: 26px; }
.ms--loja .al-mos__b .al-g { width: 62%; margin: 0 auto; padding-top: 10px; }
.ms--loja .al-mos__c .al-g { width: 50%; margin: 0 auto; padding-top: 14px; }

/* painel de tecido: o "fotografico" do catalogo */
.ms--loja .al-pn { position: relative; overflow: hidden; border-radius: var(--r); background-color: var(--sand); }
.ms--loja .al-pn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .04) 0 1px, transparent 1px 2px),
    linear-gradient(165deg, rgba(255, 255, 255, .09), rgba(0, 0, 0, .06));
}
.ms--loja .al-pn > * { position: relative; }
.ms--loja .al-pn--sage { background-color: var(--sage); color: var(--linen); }
.ms--loja .al-pn--sand { background-color: var(--sand); color: rgba(30, 29, 27, .72); }
.ms--loja .al-pn--rust { background-color: var(--rust); color: var(--linen); }
.ms--loja .al-pn--ink { background-color: #2A2926; color: var(--sand); }
.ms--loja .al-pn--cru { background-color: var(--cru); color: rgba(30, 29, 27, .72); box-shadow: inset 0 0 0 1px rgba(30, 29, 27, .1); }
.ms--loja .al-pn--sand::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .13) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, rgba(60, 48, 30, .04) 0 1px, transparent 1px 2px),
    linear-gradient(165deg, rgba(255, 255, 255, .12), rgba(60, 48, 30, .05));
}
.ms--loja .al-pn--cru::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(60, 48, 30, .022) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, rgba(60, 48, 30, .022) 0 1px, transparent 1px 2px),
    linear-gradient(165deg, rgba(255, 255, 255, .2), rgba(60, 48, 30, .045));
}

.ms--loja .al-g { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ms--loja .al-g * { vector-effect: non-scaling-stroke; }
.ms--loja .al-g .dot { fill: currentColor; stroke: none; }

/* cartao de pedido rapido */
.ms--loja .al-qv {
  position: absolute;
  left: -44px;
  bottom: 20px;
  width: 290px;
  padding: 20px 20px 20px;
  background: var(--cru);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.ms--loja .al-qv__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.ms--loja .al-qv__n { font-family: var(--serif); font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; }
.ms--loja .al-qv__p { font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; }
.ms--loja .al-qv__m { margin-top: 4px; font-size: 13px; font-stretch: 87.5%; color: var(--muted); }
.ms--loja .al-qv__opt { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.ms--loja .al-qv__l { font-size: 13px; color: var(--muted); }
.ms--loja .al-qv__l strong { font-weight: 500; color: var(--ink); }
.ms--loja .al-sw { display: flex; gap: 8px; }
.ms--loja .al-sw li { width: 22px; height: 22px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(30, 29, 27, .12); }
.ms--loja .al-sw li.is-sel { box-shadow: 0 0 0 2px var(--cru), 0 0 0 3px var(--ink); }
.ms--loja .al-sw--sage { background: var(--sage); }
.ms--loja .al-sw--sand { background: var(--sand); }
.ms--loja .al-sw--ink { background: #2A2926; }
.ms--loja .al-btn--wa { width: 100%; margin-top: 18px; height: 46px; font-size: 14.5px; }

/* tamanhos */
.ms--loja .al-sz { display: flex; gap: 6px; }
.ms--loja .al-sz li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 12.5px;
  font-weight: 500;
}
.ms--loja .al-sz li.is-sel { background: var(--ink); border-color: var(--ink); color: var(--linen); }
.ms--loja .al-sz li.is-off {
  color: rgba(30, 29, 27, .32);
  border-color: rgba(30, 29, 27, .09);
  background: linear-gradient(to top right, transparent calc(50% - .6px), rgba(30, 29, 27, .22) 50%, transparent calc(50% + .6px));
}

/* hero mobile (escondido no desktop) */
.ms--loja .al-mhero { display: none; }

/* catalogo */
.ms--loja .al-cat { padding: 24px 0 100px; }
.ms--loja .al-cat__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.ms--loja .al-cat__t .al-lead { margin-top: 12px; }
.ms--loja .al-chips { display: flex; gap: 8px; flex: none; }
.ms--loja .al-chips li {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.ms--loja .al-chips li.is-on { background: var(--ink); border-color: var(--ink); color: var(--linen); }
.ms--loja .al-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
}
.ms--loja .al-bar__sort { display: inline-flex; align-items: center; gap: 6px; }
.ms--loja .al-bar__sort strong { font-weight: 500; color: var(--ink); }

.ms--loja .al-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px 20px; margin-top: 12px; }
.ms--loja .al-card__pn { aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center; }
.ms--loja .al-card__pn .al-g { width: 56%; }
.ms--loja .al-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 9px 5px;
  border-radius: var(--r);
  background: var(--cru);
  color: var(--rust);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  z-index: 1;
}
.ms--loja .al-card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-top: 14px; }
.ms--loja .al-card__n { font-size: 15.5px; font-weight: 500; white-space: nowrap; }
.ms--loja .al-card__p { display: flex; align-items: baseline; gap: 8px; font-size: 15.5px; font-weight: 500; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ms--loja .al-card__p s { font-size: 13px; font-weight: 400; color: var(--muted); }
.ms--loja .al-sale { color: var(--rust); }
.ms--loja .al-card__m { margin-top: 2px; font-size: 13px; font-stretch: 87.5%; color: var(--muted); }
.ms--loja .al-card .al-sz { margin-top: 12px; }

/* tecido e cartela */
.ms--loja .al-fab { padding: 0 0 88px; }
.ms--loja .al-fab__in { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 72px; align-items: center; }
.ms--loja .al-cartela { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.ms--loja .al-cartela__sw .al-pn {
  height: 380px;
  border-radius: var(--r) var(--r) 0 0;
  -webkit-mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 12px 100%;
  mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 12px 100%;
}
.ms--loja .al-cartela__sw { display: flex; flex-direction: column; }
.ms--loja .al-cartela__sw p { margin-top: 12px; font-size: 13px; font-weight: 500; font-stretch: 87.5%; }
.ms--loja .al-fab__txt .al-h2 span { display: block; }
.ms--loja .al-sub { margin-top: 32px; font-size: 14px; font-weight: 600; }
.ms--loja .al-care { margin-top: 12px; border-top: 1px solid var(--line); }
.ms--loja .al-care li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--body); }
.ms--loja .al-note { margin-top: 18px; font-size: 13.5px; color: var(--muted); }

/* como comprar */
.ms--loja .al-how { background: var(--sand); padding: 92px 0; }
.ms--loja .al-how__in { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr); gap: 72px; align-items: center; }
.ms--loja .al-steps { margin-top: 40px; }
.ms--loja .al-steps li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 12px; padding: 20px 0; border-top: 1px solid rgba(30, 29, 27, .16); }
.ms--loja .al-steps li:last-child { border-bottom: 1px solid rgba(30, 29, 27, .16); }
.ms--loja .al-steps__n { font-family: var(--serif); font-weight: 500; font-size: 36px; line-height: .9; color: var(--rust); }
.ms--loja .al-steps__t { font-size: 16.5px; font-weight: 600; }
.ms--loja .al-steps__d { margin-top: 3px; font-size: 15px; color: var(--body); }

.ms--loja .al-chat { background: var(--cru); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; max-width: 470px; justify-self: end; width: 100%; }
.ms--loja .al-chat__head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.ms--loja .al-chat__av {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--linen);
  font-family: var(--serif);
  font-size: 15px;
}
.ms--loja .al-chat__nm { font-size: 15px; font-weight: 600; line-height: 1.25; }
.ms--loja .al-chat__st { font-size: 12.5px; color: var(--sage); }
.ms--loja .al-chat__body { display: flex; flex-direction: column; gap: 10px; padding: 18px; background: #F1EDE4; }
.ms--loja .al-chat__day { align-self: center; padding: 3px 10px; border-radius: var(--r); background: var(--cru); font-size: 11.5px; color: var(--muted); }
.ms--loja .al-msg { position: relative; max-width: 86%; padding: 11px 13px 24px; border-radius: 8px; font-size: 14px; line-height: 1.45; }
.ms--loja .al-msg--out { align-self: flex-end; background: var(--sage-t); border-top-right-radius: 2px; }
.ms--loja .al-msg--in { align-self: flex-start; background: var(--cru); border-top-left-radius: 2px; }
.ms--loja .al-msg ul { margin: 8px 0; padding: 8px 0; border-top: 1px solid rgba(30, 29, 27, .12); }
.ms--loja .al-msg li, .ms--loja .al-msg__tot { display: flex; justify-content: space-between; gap: 16px; }
.ms--loja .al-msg li span:last-child, .ms--loja .al-msg__tot span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; }
.ms--loja .al-msg__tot { padding-top: 8px; margin: -8px 0 8px; border-top: 1px solid rgba(30, 29, 27, .12); font-weight: 600; }
.ms--loja .al-msg__time { position: absolute; right: 10px; bottom: 6px; display: flex; align-items: center; gap: 3px; font-size: 11px; color: var(--muted); }
.ms--loja .al-msg__time svg { width: 15px; height: 15px; fill: none; stroke: var(--sage); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ms--loja .al-chat__foot { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-top: 1px solid var(--line); }
.ms--loja .al-chat__in { flex: 1; height: 40px; padding: 0 14px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 20px; font-size: 14px; color: rgba(30, 29, 27, .4); }
.ms--loja .al-chat__send { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--sage); }
.ms--loja .al-chat__send svg { width: 18px; height: 18px; fill: none; stroke: var(--linen); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* medidas e loja */
.ms--loja .al-info { padding: 96px 0; }
.ms--loja .al-info__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: stretch; }
.ms--loja .al-size { padding: 8px 40px 0 0; }
.ms--loja .al-size__note { margin-top: 14px; max-width: 420px; font-size: 15px; color: var(--body); }
.ms--loja .al-tbl { margin-top: 28px; font-size: 15px; }
.ms--loja .al-tbl__r { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; padding: 13px 0; border-bottom: 1px solid var(--line); }
.ms--loja .al-tbl__r span:first-child { font-weight: 600; }
.ms--loja .al-tbl__h { border-bottom-color: var(--ink); font-size: 13px; font-stretch: 87.5%; color: var(--muted); padding-top: 0; }
.ms--loja .al-tbl__h span:first-child { font-weight: 400; }
.ms--loja .al-size__foot { margin-top: 18px; font-size: 13.5px; color: var(--muted); }

.ms--loja .al-visit { padding: 40px; background: var(--sage); border-radius: var(--r); color: var(--ink); }
.ms--loja .al-visit__addr { margin-top: 20px; font-size: 20px; font-weight: 500; line-height: 1.35; }
.ms--loja .al-visit__addr span { display: block; font-weight: 400; color: rgba(30, 29, 27, .75); font-size: 16px; }
.ms--loja .al-hours { margin-top: 22px; border-top: 1px solid rgba(30, 29, 27, .22); }
.ms--loja .al-hours li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(30, 29, 27, .22); font-size: 15px; }
.ms--loja .al-hours li span:last-child { font-weight: 500; }
.ms--loja .al-visit__cta { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.ms--loja .al-visit__tel { font-size: 12.5px; line-height: 1.3; color: rgba(30, 29, 27, .75); }
.ms--loja .al-visit__tel strong { display: block; font-size: 16px; font-weight: 500; color: var(--ink); }

/* rodape */
.ms--loja .al-foot { background: var(--ink); color: var(--sand); padding: 64px 0 26px; }
.ms--loja .al-foot__top { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 32px; padding-bottom: 48px; }
.ms--loja .al-foot__logo { font-family: var(--serif); font-size: 44px; line-height: 1; letter-spacing: -0.02em; color: var(--linen); }
.ms--loja .al-foot__brand p { margin-top: 14px; font-size: 14.5px; color: rgba(228, 217, 198, .7); }
.ms--loja .al-foot__col li { font-size: 14.5px; padding: 4px 0; color: rgba(228, 217, 198, .78); }
.ms--loja .al-foot__col li.al-foot__h { padding-bottom: 10px; font-size: 13px; font-weight: 600; color: var(--linen); }
.ms--loja .al-foot__bot { display: flex; justify-content: space-between; gap: 16px; padding-top: 22px; border-top: 1px solid rgba(228, 217, 198, .16); font-size: 12.5px; color: rgba(228, 217, 198, .55); }

/* ===== mobile ===== */
.ms--loja.is-mobile .al-wrap { padding: 0 16px; }
.ms--loja.is-mobile .al-top__in { justify-content: center; height: 30px; }
.ms--loja.is-mobile .al-top { font-size: 11.5px; }
.ms--loja.is-mobile .al-top__r { display: none; }

.ms--loja.is-mobile .al-head__in { grid-template-columns: 44px 1fr 44px; height: 56px; }
.ms--loja.is-mobile .al-nav { display: none; }
.ms--loja.is-mobile .al-menu { display: inline-flex; width: 24px; height: 24px; }
.ms--loja.is-mobile .al-logo { font-size: 24px; text-align: center; }
.ms--loja.is-mobile .al-head__r { gap: 0; padding-right: 6px; }

.ms--loja.is-mobile .al-hero { display: none; }
.ms--loja.is-mobile .al-mhero { display: block; padding: 10px 16px 0; }
.ms--loja.is-mobile .al-mhero__pn { height: 290px; padding: 22px 20px 20px; display: flex; flex-direction: column; align-items: flex-start; }
.ms--loja.is-mobile .al-mhero__k { font-size: 12.5px; font-weight: 500; color: rgba(246, 243, 236, .82); }
.ms--loja.is-mobile .al-mhero__t {
  margin-top: 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: .98;
  letter-spacing: -0.025em;
  color: var(--linen);
}
.ms--loja.is-mobile .al-mhero__t span { display: block; }
.ms--loja.is-mobile .al-mhero__p { margin-top: 12px; max-width: 150px; font-size: 13.5px; line-height: 1.4; color: rgba(246, 243, 236, .88); }
.ms--loja.is-mobile .al-mhero__g { position: absolute; right: 14px; bottom: 6px; width: 150px; }
.ms--loja.is-mobile .al-mhero .al-btn { margin-top: auto; height: 44px; padding: 0 20px; font-size: 14px; }

.ms--loja.is-mobile .al-cat { padding: 14px 0 72px; }
.ms--loja.is-mobile .al-cat__head { display: block; }
.ms--loja.is-mobile .al-cat__t { display: none; }
.ms--loja.is-mobile .al-chips { margin-right: -16px; overflow: hidden; }
.ms--loja.is-mobile .al-chips li { height: 34px; padding: 0 14px; font-size: 13.5px; }
.ms--loja.is-mobile .al-bar { margin-top: 12px; padding: 9px 0; font-size: 12.5px; }
.ms--loja.is-mobile .al-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; margin-top: 2px; }
.ms--loja.is-mobile .al-card__row { display: block; margin-top: 9px; }
.ms--loja.is-mobile .al-card__n { font-size: 14.5px; }
.ms--loja.is-mobile .al-card__p { font-size: 14.5px; margin-top: 1px; }
.ms--loja.is-mobile .al-card__m { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ms--loja.is-mobile .al-card .al-sz { margin-top: 8px; }
.ms--loja.is-mobile .al-sz li { width: 28px; height: 26px; font-size: 12px; }
.ms--loja.is-mobile .al-tag { top: 10px; left: 10px; font-size: 11px; }

.ms--loja.is-mobile .al-h2 { font-size: 36px; }
.ms--loja.is-mobile .al-h3 { font-size: 30px; }
.ms--loja.is-mobile .al-lead { font-size: 15.5px; margin-top: 12px; }

.ms--loja.is-mobile .al-fab { padding: 0 0 72px; }
.ms--loja.is-mobile .al-fab__in { display: flex; flex-direction: column; align-items: stretch; gap: 36px; }
.ms--loja.is-mobile .al-cartela { gap: 6px; }
.ms--loja.is-mobile .al-cartela__sw .al-pn { height: 180px; }
.ms--loja.is-mobile .al-cartela__sw p { font-size: 11.5px; margin-top: 8px; }
.ms--loja.is-mobile .al-sub { margin-top: 28px; }
.ms--loja.is-mobile .al-care li { font-size: 14.5px; padding: 12px 0; }

.ms--loja.is-mobile .al-how { padding: 64px 0; }
.ms--loja.is-mobile .al-how__in { display: flex; flex-direction: column; align-items: stretch; gap: 36px; }
.ms--loja.is-mobile .al-steps { margin-top: 28px; }
.ms--loja.is-mobile .al-steps li { grid-template-columns: 36px minmax(0, 1fr); padding: 16px 0; }
.ms--loja.is-mobile .al-steps__n { font-size: 32px; }
.ms--loja.is-mobile .al-steps__t { font-size: 15.5px; }
.ms--loja.is-mobile .al-steps__d { font-size: 14px; }
.ms--loja.is-mobile .al-chat { max-width: none; }
.ms--loja.is-mobile .al-chat__body { padding: 14px; }
.ms--loja.is-mobile .al-msg { max-width: 92%; font-size: 13.5px; }

.ms--loja.is-mobile .al-info { padding: 64px 0; }
.ms--loja.is-mobile .al-info__in { display: flex; flex-direction: column; gap: 48px; }
.ms--loja.is-mobile .al-size { padding: 0; }
.ms--loja.is-mobile .al-size__note { font-size: 14.5px; }
.ms--loja.is-mobile .al-tbl { font-size: 14px; }
.ms--loja.is-mobile .al-tbl__r { grid-template-columns: 1.15fr 1fr 1fr 1fr; }
.ms--loja.is-mobile .al-tbl__h { font-size: 12px; }
.ms--loja.is-mobile .al-visit { padding: 28px 22px; }
.ms--loja.is-mobile .al-visit__addr { font-size: 18px; }
.ms--loja.is-mobile .al-hours li { font-size: 14.5px; }
.ms--loja.is-mobile .al-visit__cta { gap: 18px; }
.ms--loja.is-mobile .al-visit .al-btn { height: 46px; padding: 0 20px; font-size: 14.5px; }

.ms--loja.is-mobile .al-foot { padding: 52px 0 24px; }
.ms--loja.is-mobile .al-foot__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 20px; padding-bottom: 36px; }
.ms--loja.is-mobile .al-foot__brand { grid-column: 1 / 3; }
.ms--loja.is-mobile .al-foot__logo { font-size: 36px; }
.ms--loja.is-mobile .al-foot__col:last-child { grid-column: 1 / 3; }
.ms--loja.is-mobile .al-foot__col li { font-size: 14px; }
.ms--loja.is-mobile .al-foot__bot { flex-direction: column; gap: 6px; font-size: 12px; }
