:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --ink: #1a1d21;
  --muted: #7b828c;
  --line: #eceef1;
  --brand: #e63946;
  --brand-dark: #c92a37;
  --green: #1fae5a;
  --radius: 18px;
  --shadow: 0 2px 12px rgba(20, 25, 35, .06);
  --shadow-lg: 0 8px 30px rgba(20, 25, 35, .12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased
}

.app {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  padding-bottom: 90px
}

img {
  display: block;
  max-width: 100%
}

.cover {
  position: relative;
  height: 170px;
  background: linear-gradient(135deg, #e63946, #c92a37);
  overflow: hidden
}

.cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(255, 255, 255, .18), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(0, 0, 0, .25), transparent 50%)
}

.cover-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  opacity: .22;
  filter: saturate(0)
}

.store {
  background: var(--surface);
  margin: -44px 16px 0;
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2
}

.store-top {
  display: flex;
  gap: 14px;
  align-items: center
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--line);
  display: grid;
  place-items: center;
  font-size: 30px;
  flex-shrink: 0;
  overflow: hidden
}

.store-info {
  flex: 1;
  min-width: 0
}

.store-info h1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15
}

.store-info .tag {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px
}

.badges {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap
}

.badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.badge.open {
  background: rgba(31, 174, 90, .12);
  color: var(--green)
}

.badge.closed {
  background: rgba(230, 57, 70, .12);
  color: var(--brand)
}

.badge.info {
  background: var(--bg);
  color: var(--muted)
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: p 1.6s infinite
}

@keyframes p {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

.tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  padding: 14px 0 8px;
  margin-top: 18px
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px;
  scrollbar-width: none
}

.tabs::-webkit-scrollbar {
  display: none
}

.tab {
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: .18s
}

.tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.section {
  padding: 8px 16px 0
}

.section h2 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.3px;
  margin: 18px 4px 12px;
  scroll-margin-top: 70px
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  transition: .18s;
  border: 1px solid transparent
}

.card:active {
  transform: scale(.99)
}

.card:hover {
  box-shadow: var(--shadow-lg)
}

.card-body {
  flex: 1;
  padding: 14px 14px 14px 16px;
  min-width: 0
}

.card-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.2px
}

.card-body .desc {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.card-body .price {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 9px
}

.card-thumb {
  width: 108px;
  flex-shrink: 0;
  position: relative;
  background: var(--bg);
  overflow: hidden
}

.card-thumb .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 40px;
  background: linear-gradient(135deg, #fafbfc, #f0f2f5)
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.plus {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(230, 57, 70, .4)
}

.qty-pill {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--brand);
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 3px 10px rgba(230, 57, 70, .4)
}

.qty-pill button {
  background: none;
  border: none;
  color: #fff;
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.qty-pill span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  min-width: 14px;
  text-align: center
}

.cartbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 100%;
  max-width: 520px;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  z-index: 40;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1)
}

.cartbar.show {
  transform: translateX(-50%) translateY(0)
}

.cartbar-inner {
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(230, 57, 70, .45);
  cursor: pointer
}

.cartbar-inner .l {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700
}

.cartbar .count {
  background: rgba(255, 255, 255, .25);
  border-radius: 8px;
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800
}

.cartbar .tot {
  font-weight: 800;
  font-size: 16px
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 22, .5);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  z-index: 50
}

.scrim.open {
  opacity: 1;
  pointer-events: auto
}

.sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  max-height: 88dvh; /* dvh não recalcula com a barra de URL do Safari, evitando o "pulsar" do modal */
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, .18);
  z-index: 60;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  flex-direction: column
}

.sheet.open {
  transform: translateX(-50%) translateY(0)
}

.sheet-grip {
  width: 38px;
  height: 4px;
  background: var(--line);
  border-radius: 99px;
  margin: 10px auto 4px
}

.sheet-head {
  padding: 6px 20px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.sheet-head h2 {
  font-size: 19px;
  font-weight: 800
}

.sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px
}

.sheet-foot {
  padding: 16px 20px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--surface)
}

.x {
  background: var(--bg);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1
}

.crow {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line)
}

.crow:last-child {
  border: none
}

.crow .ci-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fafbfc, #eef0f3);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
  overflow: hidden
}

.crow .ci-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.crow .ci-info {
  flex: 1;
  min-width: 0
}

.crow .ci-info .nm {
  font-weight: 700;
  font-size: 14px
}

.crow .ci-info .pr {
  color: var(--muted);
  font-size: 13px;
  margin-top: 1px
}

.stepper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border-radius: 10px;
  padding: 4px
}

.stepper button {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center
}

.stepper span {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 14px
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 50px 20px
}

.empty .e-emoji {
  font-size: 46px;
  margin-bottom: 10px
}

.field {
  margin-bottom: 14px
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 6px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  transition: .15s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface)
}

.pays {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px
}

.pay {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--bg);
  transition: .15s
}

.pay.sel {
  border-color: var(--brand);
  background: rgba(230, 57, 70, .06);
  color: var(--brand)
}

.pay .pi {
  font-size: 19px;
  display: block;
  margin-bottom: 3px
}

.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px
}

.mode {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: var(--bg);
  transition: .15s
}

.mode.sel {
  border-color: var(--brand);
  background: rgba(230, 57, 70, .06);
  color: var(--brand)
}

.mode .mi {
  font-size: 20px;
  display: block;
  margin-bottom: 3px
}

.fee-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px
}

.sumrow {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 7px
}

.sumrow.total {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin: 10px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line)
}

.btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: .18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px
}

.btn-wa {
  background: #25d366;
  color: #fff
}

.btn-wa:active {
  transform: scale(.98)
}

.btn-wa:disabled {
  opacity: .5
}

.btn-ghost {
  background: var(--bg);
  color: var(--ink);
  margin-top: 9px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px
}

.closed-banner {
  background: rgba(230, 57, 70, .1);
  color: var(--brand-dark);
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px
}

.ok-screen {
  text-align: center;
  padding: 30px 10px
}

.ok-screen .o-emoji {
  font-size: 60px;
  margin-bottom: 10px
}

.ok-screen h2 {
  font-size: 22px;
  margin-bottom: 6px
}

.ok-screen p {
  color: var(--muted);
  font-size: 14px
}

.ck-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 20px
}

.ck-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px
}

.ck-step-bar {
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background: var(--line);
  transition: .3s
}

.ck-step.active .ck-step-bar,
.ck-step.done .ck-step-bar {
  background: var(--brand)
}

.ck-step span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .3px;
  text-transform: uppercase
}

.ck-step.active span,
.ck-step.done span {
  color: var(--brand)
}

.ck-summary {
  background: var(--bg);
  border-radius: 12px;
  padding: 13px 14px;
  margin-bottom: 18px;
  border: 1px solid var(--line)
}

.ck-summary-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 3px
}

.ck-summary-val {
  font-weight: 700;
  font-size: 14px
}

.ck-summary-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px
}

@media (max-width: 480px) {
  body {
    font-size: 12.5px
  }

  .card-body h3 {
    font-size: 12px
  }

  .card-body .desc {
    font-size: 10px
  }

  .card-body .price {
    font-size: 15px
  }

  .tab {
    font-size: 13px
  }

  .store-info h1 {
    font-size: 20px
  }

  .store-info .tag {
    font-size: 12px
  }

  .badge {
    font-size: 11px
  }

  .section h2 {
    font-size: 16px
  }

  .crow .ci-info .nm {
    font-size: 13px
  }

  .crow .ci-info .pr {
    font-size: 12px
  }

  .sumrow {
    font-size: 13px
  }

  .sumrow.total {
    font-size: 18px
  }

  .btn {
    font-size: 15px
  }

  .pay {
    font-size: 12px
  }

  .field label {
    font-size: 12px
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 14px
  }
}

.troco-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 22, .55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.troco-overlay.open {
  display: flex
}

.troco-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px 20px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .2)
}

.troco-icon {
  font-size: 22px;
  text-align: center;
  margin-bottom: 6px
}

.troco-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px
}

.troco-sub {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px
}

.troco-input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  text-align: center;
  margin-bottom: 14px;
  box-sizing: border-box;
  background: var(--bg);
  color: var(--ink)
}

.troco-btn-confirm {
  background: var(--brand);
  color: #fff;
  margin-bottom: 10px
}

.troco-btn-skip {
  background: var(--bg);
  color: var(--ink)
}

.foot {
  text-align: center;
  padding: 24px 16px;
  color: var(--muted);
  font-size: 12px
}

.foot a {
  color: var(--brand);
  text-decoration: none
}

.pay-info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line)
}

.pay-info-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 7px
}

.pay-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.pay-info-pill {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink)
}

.info-btn {
  margin-top: 12px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  transition: .15s
}

.info-btn:active {
  background: var(--bg)
}

.info-sheet-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px
}

.info-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: .15s
}

.info-tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand)
}

.info-section {
  display: none
}

.info-section.active {
  display: block
}

.info-address-block {
  background: var(--bg);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6
}

.pay-group-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin: 14px 0 6px
}

.pay-group-title:first-child {
  margin-top: 0
}

.pay-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500
}

.pay-detail-item:last-child {
  border: none
}

.foot-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 13px
}

.foot-line {
  margin-top: 2px
}

.foot-admin {
  margin-top: 6px
}

.skel {
  background: var(--surface);
  border-radius: var(--radius);
  height: 130px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden
}

.skel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .04), transparent);
  animation: sk 1.3s infinite
}

@keyframes sk {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.top1-wrap {
  padding: 14px 16px 0
}

.top1 {
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 110px;
  box-shadow: var(--shadow-lg);
  transition: .18s
}

.top1:active {
  transform: scale(.99)
}

.top1-fire {
  position: absolute;
  inset: 0;
  background: url('/fire-51.gif') center/cover no-repeat;
  z-index: 0
}

.top1-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 5, 0, .72) 55%, rgba(10, 5, 0, .2));
  z-index: 1
}

.top1-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative
}

.top1-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
  width: fit-content;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2)
}

.top1-name {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.3px;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5)
}

.top1-price {
  color: rgba(255, 210, 100, .95);
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px
}

.top1-thumb {
  width: 110px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden
}

.top1-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.top1-thumb .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 48px
}

/* ---- Carrossel Lançamentos & Promoções ---- */
@keyframes featIn {
  from { opacity: 0; transform: translateX(22px) }
  to   { opacity: 1; transform: translateX(0) }
}

.feat-in {
  animation: featIn .32s ease
}

.feat-orig-price {
  text-decoration: line-through;
  opacity: .6;
  font-size: 12px;
  margin-right: 4px
}

.feat-dots {
  display: flex;
  gap: 5px;
  margin-top: 10px
}

.feat-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: .25s
}

.feat-dot.active {
  width: 16px;
  background: rgba(255, 255, 255, .9)
}

/* ---- Modal Termos de Uso ---- */
.terms-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  backdrop-filter: blur(2px)
}

.terms-modal {
  background: var(--surface);
  border-radius: 22px 22px 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  max-height: 88dvh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg)
}

.terms-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0
}

.terms-head h2 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.3px
}

.terms-body {
  overflow-y: auto;
  padding: 18px 20px;
  flex: 1;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink)
}

.terms-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 18px 0 6px;
  color: var(--ink)
}

.terms-body h3:first-child {
  margin-top: 0
}

.terms-body p {
  color: #4a5060;
  margin-bottom: 6px
}

.terms-body ul {
  padding-left: 18px;
  color: #4a5060;
  margin-bottom: 6px
}

.terms-body ul li {
  margin-bottom: 4px
}

.terms-foot {
  padding: 14px 20px 20px;
  border-top: 1px solid var(--line);
  flex-shrink: 0
}

.terms-foot .btn {
  width: 100%;
  font-size: 15px
}

/* Checkbox de termos no formulário de cadastro */
#termsCheckWrap {
  margin: 12px 0 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px
}

#termsCheckWrap input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
  cursor: pointer
}

#termsCheckWrap label {
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer
}

#termsCheckWrap a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none
}

@keyframes termsShake {
  0%,100% { transform: translateX(0) }
  20%     { transform: translateX(-5px) }
  40%     { transform: translateX(5px) }
  60%     { transform: translateX(-4px) }
  80%     { transform: translateX(4px) }
}

.terms-wrap-shake {
  animation: termsShake 0.45s ease !important;
}
.terms-wrap-shake input[type="checkbox"],
.terms-wrap-shake label {
  color: #dc2626 !important;
  outline: 2px solid #dc2626;
  border-radius: 3px;
}

/* WhatsApp FAB */
.wapp-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.wapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0,0,0,.45);
}
.wapp-fab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 640px) {
  .wapp-fab { right: max(20px, calc(50% - 310px)); }
}

/* Alinhamento dos ícones Font Awesome (substituem os antigos emojis) */
.fa-solid, .fa-regular, .fa-brands { line-height: 1; vertical-align: -0.05em; }
