:root{
  --ifood:#ea1d2c;
  --ifood-dark:#c31420;
  --bg:#f6f6f7;
  --card:#ffffff;
  --text:#171717;
  --muted:#6b7280;
  --line: rgba(17,24,39,.10);
  --font-sans: system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;

  --r-xl:26px;
  --r-lg:22px;
  --r:18px;
  --r-sm:14px;

  --shadow: 0 18px 50px rgba(16,24,40,.10);
  --shadow2: 0 10px 24px rgba(16,24,40,.08);

  --footer-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*{ box-sizing:border-box; }

/* Links dos cards de produto */
.pitem a,
.hcard a,
.htitle a{
  color: var(--text);;              /* cor de texto normal */
  text-decoration: none;    /* remove sublinhado */
}

/*
.pitem a:hover,
.hcard a:hover,
.htitle a:hover{
  color: var(--ifood);    
}
*/

body{
  margin:0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  padding-bottom: calc(var(--footer-h) + var(--safe-bottom));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:1055;
  overflow-x:hidden;
  overflow-y:auto;
  outline:0;
}
.modal.fade{
  opacity: 0;
  transition: opacity .18s ease;
}
.modal.show{
  display:block;
}
.modal.fade.show{
  opacity: 1;
}
.modal-dialog{
  position:relative;
  width:auto;
  margin: .5rem;
  pointer-events:none;
  max-width: 560px;
}
.modal.fade .modal-dialog{
  transform: translateY(10px) scale(.99);
  transition: transform .18s ease;
}
.modal.fade.show .modal-dialog{
  transform: none;
}
.modal-dialog-centered{
  display:flex;
  align-items:center;
  min-height: calc(100% - 1rem);
}
.modal-content{
  position:relative;
  display:flex;
  flex-direction:column;
  width:100%;
  pointer-events:auto;
  background-color:#fff;
  background-clip:padding-box;
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 18px;
  outline:0;
}
.modal-backdrop{
  position:fixed;
  inset:0;
  z-index:1050;
  background-color:#000;
  opacity:0;
}
.modal-backdrop.show{
  opacity: .55;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (min-width: 576px){
  .modal-dialog{
    margin: 1.75rem auto;
  }
  .modal-dialog-centered{
    min-height: calc(100% - 3.5rem);
  }
}

.gz-modal-sheet .modal-content{
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(16,24,40,.25);
}
.gz-modal-sheet .modal-header{
  border: 0;
  padding: 16px 16px 0;
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.gz-modal-sheet .modal-body{
  padding: 12px 16px 14px;
}
.gz-modal-sheet .modal-footer{
  border: 0;
  padding: 0 16px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.gz-modal-sheet.modal.fade .modal-dialog{
  transform: translateY(22px);
}
.gz-modal-sheet.modal.fade.show .modal-dialog{
  transform: none;
}
.gz-sheet-handle{
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: rgba(17,24,39,.14);
  margin: 10px auto 2px;
}
.gz-loc-icon{
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(0,0,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--ifood);
  flex: 0 0 auto;
}
.gz-loc-head{ min-width:0; }
.gz-loc-title{
  font-weight: 950;
  font-size: 18px;
  line-height: 1.15;
  color:#111;
}
.gz-loc-sub{
  font-size: 13px;
  color:#6b7280;
  margin-top: 4px;
  line-height: 1.35;
}
.gz-loc-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 12px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 16px;
  background:#fff;
}
.gz-loc-place{ min-width:0; }
.gz-loc-city{
  font-weight: 900;
  color:#111;
  line-height: 1.15;
}
.gz-loc-status{
  font-size: 12px;
  color:#6b7280;
  margin-top: 4px;
}
.gz-loc-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex: 0 0 auto;
}

.gz-fields{
  display:flex;
  gap:10px;
  margin-top: 12px;
}
.gz-field{
  flex: 1 1 auto;
  min-width: 0;
}
.gz-field-uf{
  flex: 0 0 96px;
}
.gz-field-label{
  display:block;
  font-size: 12px;
  color:#111;
  font-weight: 800;
  margin: 0 0 6px;
}
.gz-field-input{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.12);
  background: #fff;
  padding: 12px 12px;
  font-weight: 800;
  color:#111;
  line-height: 1.2;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.gz-field-input::placeholder{
  color:#9aa1aa;
  font-weight: 700;
}
.gz-field-input:hover{
  border-color: rgba(17,24,39,.20);
}
.gz-field-input:focus{
  border-color: rgba(0,0,255,.55);
  box-shadow: 0 0 0 4px rgba(0,0,255,.12);
}
.gz-field.is-error .gz-field-input{
  border-color: rgba(185,28,28,.55);
  box-shadow: 0 0 0 4px rgba(185,28,28,.14);
}
.gz-field-input[aria-invalid="true"]{
  border-color: rgba(185,28,28,.55);
  box-shadow: 0 0 0 4px rgba(185,28,28,.14);
}
.gz-field-input:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.gz-loc-error{
  margin-top: 10px;
  font-size: 12px;
  color:#b91c1c;
}
.btn.gz-loc-primary{
  width: 100%;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  background: #fff;
  color: var(--ifood);
  border: 1px solid rgba(0,0,255,.28);
  box-shadow: 0 10px 24px rgba(16,24,40,.10);
}
.btn.gz-loc-primary:hover{
  background: rgba(0,0,255,.06);
  border-color: rgba(0,0,255,.35);
}
.btn.gz-loc-primary:focus{
  box-shadow: 0 0 0 4px rgba(0,0,255,.14);
}
.btn.gz-loc-primary:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.btn.gz-loc-secondary{
  width: 100%;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 800;
}
@media (max-width: 576px){
  .gz-modal-sheet .modal-dialog{
    margin: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
  }
  .gz-modal-sheet .modal-dialog-centered{
    align-items: flex-end;
    min-height: 100%;
  }
  .gz-modal-sheet .modal-content{
    border-radius: 24px 24px 0 0;
  }
}

.gz-bag-modal .modal-header{
  align-items:center;
}
.gz-bag-icon{
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(0,0,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--ifood);
  flex: 0 0 auto;
}
.gz-bag-head{
  min-width:0;
  flex: 1;
}
.gz-bag-title{
  font-weight: 950;
  font-size: 18px;
  line-height: 1.15;
  color:#111;
}
.gz-bag-sub{
  font-size: 13px;
  color:#6b7280;
  margin-top: 4px;
  line-height: 1.35;
}
.btn.gz-bag-close{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  color:#111;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 18px rgba(16,24,40,.05);
  padding: 0;
}
.btn.gz-bag-close:hover{
  background: rgba(17,24,39,.03);
}
.btn.gz-bag-close:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.gz-bag-items{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.gz-bag-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 10px 10px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 18px;
  background:#fff;
}
.gz-bag-thumb{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:#f3f4f6;
  overflow:hidden;
  flex: 0 0 auto;
}
.gz-bag-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.gz-bag-main{
  min-width:0;
  flex: 1;
}
.gz-bag-name{
  font-weight: 950;
  font-size: 13.5px;
  color:#111;
  line-height: 1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.gz-bag-meta{
  font-size: 12px;
  color:#6b7280;
  margin-top: 5px;
}
.gz-bag-price{
  font-weight: 950;
  font-size: 13px;
  color:#111;
  white-space:nowrap;
}
.gz-bag-empty{
  padding: 10px 2px;
  color:#6b7280;
  font-size: 13px;
}
.gz-bag-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(17,24,39,.08);
}
.gz-bag-total-label{
  font-weight: 900;
  color:#111;
}
.gz-bag-total-value{
  font-weight: 1100;
  color:#111;
}
.btn.gz-bag-primary{
  width: 100%;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 950;
  background: var(--ifood);
  color:#fff;
  border: 0;
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.btn.gz-bag-primary:hover{
  filter: brightness(.96);
}
.btn.gz-bag-primary:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.btn.gz-bag-secondary{
  width: 100%;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce){
  .modal.fade{ transition: none; }
  .modal.fade .modal-dialog{ transition: none; }
}

@media (max-width: 420px){
  .gz-fields{
    flex-direction: column;
  }
  .gz-field-uf{
    flex: 1 1 auto;
  }
}
.app{
  max-width: 680px;
  margin: 0 auto;
  padding: 0 12px;
}

/* ===== Top bar (iFood vibe) ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 1045;
  padding: 10px 0 12px;
  background: linear-gradient(180deg, rgba(246,246,247,1) 0%, rgba(246,246,247,.92) 70%, rgba(246,246,247,0) 100%);
  backdrop-filter: blur(12px);
}
.top-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.iconbtn{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  color:#111;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 18px rgba(16,24,40,.05);
  transition: transform .12s ease;
}
.iconbtn:active{ transform: translateY(1px); }
.brandDot{
  display:flex; align-items:center; gap:10px;
  font-weight: 1100;
}
.brandDot .dot{
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--ifood);
  box-shadow: 0 0 0 6px rgba(0,0,0,.12);
}

.store-verified{
  font-size: 12px;
  font-weight: 900;
  color: #6b7280;
  margin-left: 6px;
  white-space: nowrap;
}

.gz-info{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.gz-info-box{
  border-radius: 18px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.16);
  padding: 10px 12px;
}
.gz-info-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.gz-info-row + .gz-info-row{
  margin-top: 8px;
}
.gz-info-row i{
  width: 18px;
  margin-top: 2px;
  color: rgba(34,197,94,.95);
  flex: 0 0 auto;
}
.gz-info-text{
  font-size: 13px;
  color: #14532d;
  line-height: 1.35;
}
.gz-info-row.is-neutral .gz-info-text{
  color:#111;
}
.gz-info-text .gz-company{
  font-weight: 950;
  color: #111;
}
.gz-info-text b{
  font-weight: 950;
}

.gz-search-results{
  margin-top: 12px;
}
.gz-search-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 10px 10px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 16px;
  background:#fff;
}
.gz-search-item + .gz-search-item{
  margin-top: 10px;
}
.gz-search-thumb{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:#f3f4f6;
  overflow:hidden;
  flex: 0 0 auto;
}
.gz-search-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.gz-search-main{
  min-width:0;
  flex: 1;
}
.gz-search-name{
  font-weight: 950;
  font-size: 13.5px;
  color:#111;
  line-height: 1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.gz-search-meta{
  font-size: 12px;
  color:#6b7280;
  margin-top: 5px;
}
.gz-search-price{
  font-weight: 950;
  font-size: 13px;
  color:#111;
  flex: 0 0 auto;
}
.gz-search-empty{
  padding: 10px 2px;
  color:#6b7280;
  font-size: 13px;
}
/* ===== Hero banner ===== */
.hero{
  position: relative;
  border-radius: var(--r-xl);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#000;
  border: 1px solid rgba(255,255,255,.10);
}
.hero__img{
  height: 120px;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.05);
}
.hero__fade{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.65) 100%);
}
.openBadge{
  position:absolute;
  top: 12px; left: 12px;
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.95);
  color:#fff;
  font-weight: 1100;
  font-size: 12px;
  box-shadow: 0 18px 30px rgba(34,197,94,.18);
}
.openBadge::before{
  content:"";
  width:8px;height:8px;border-radius:999px;background:#fff;opacity:.95;
  box-shadow: 0 0 0 4px rgba(255,255,255,.16);
}

/* ===== Store card ===== */
.store{
  margin-top: -28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  /*box-shadow: var(--shadow2);*/
  padding: 12px;
  position: relative;
  overflow:hidden;
}
.store-top{
  display:flex;
  gap: 12px;
  align-items:center;
}
.store-logo{
  width: 90px;
  height: 90px;
  border-radius: 100%;
  overflow:hidden;
  border: 3px solid #fff;
  background:#fff;
  box-shadow: 0 14px 26px rgba(16,24,40,.12);
  flex:0 0 auto;
}
.store-logo img{ width:100%; height:100%; object-fit:cover; }
.store-name{
  margin:0;
  font-size: 17px;
  font-weight: 1200;
  line-height: 1.15;
  display:flex;
  align-items:center;
  gap: 8px;
}
.store-meta{
  margin-top: 7px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1100;
  color:#3b4452;
  background:#f3f4f6;
  border: 1px solid rgba(17,24,39,.06);
  user-select:none;
}
.pill.green{
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.20);
  color:#166534;
}

.store-bottom{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(17,24,39,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.rating-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e9e9e9;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  font-size:14px;
  line-height:1;
  margin: 8px 0 4px 0;
}

.rating-badge .star{
  color:#f5b301; /* amarelo estrela */
  font-size:16px;
  transform: translateY(-.5px);
}

.rating-badge .score{
  font-weight:700;
  color:#f5b301;
}

.rating-badge .count{
  color:#666;
  font-size:13px;
}


.btn-details{
  border-radius: 999px;
  font-weight: 1200;
  font-size: 12px;
  padding: 9px 12px;
}

/* Search */
.search{
  margin-top: 10px;
  display:flex;
  gap: 10px;
}
.searchbox{
  flex:1;
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  padding: 5px 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  box-shadow: 0 12px 20px rgba(16,24,40,.05);
}
.searchbox i{ color: #8b94a3; }
.searchbox input{
  width:100%;
  border:0;
  outline:none;
  background: transparent;
  font-weight: 1100;
  color: var(--text);
}
.filter{
  width: 42px; height: 42px;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  color: var(--ifood);
  display:grid;
  place-items:center;
  box-shadow: 0 12px 20px rgba(16,24,40,.05);
}

.card-produto{
  cursor: pointer;
}

/* ===== iFood Tabs (underline) ===== */
.tabs{
  margin-top: 12px;
  display:flex;
  gap: 18px;
  overflow-x:auto;
  padding: 0 2px;
  border-bottom: 1px solid rgba(17,24,39,.08);
  scrollbar-width:none;
  -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar{ display:none; }
.tab{
  position:relative;
  white-space:nowrap;
  padding: 10px 2px 12px;
  font-weight: 1200;
  font-size: 13px;
  color:#6b7280;
  text-decoration:none;
  user-select:none;
}
.tab.active{
  color: var(--ifood);
}
.tab.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:3px;
  border-radius:999px;
  background: var(--ifood);
}

/* ===== Sections ===== */
.section{ margin-top: 14px; }
.sectionTitle{
  display:flex; justify-content:space-between; align-items:center;
  padding: 0 4px; margin-bottom: 8px;
}
.sectionTitle h2{
  margin:0;
  font-size: 13px;
  letter-spacing:.35px;
  font-weight: 1300;
  color:#3b4452;
}
.seeall{
  font-size: 12px;
  font-weight: 1300;
  color: var(--ifood);
  text-decoration:none;
}

/* ===== Destaques Swiper ===== */
.swiper{ padding: 4px 2px 12px; }
.swiper-slide{ width:auto !important; min-width: 320px; }
.hcard{
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: var(--r-xl);
  overflow:hidden;
  /*box-shadow: 0 16px 30px rgba(16,24,40,.06);*/
}
.hinner{
  padding: 12px;
  display:flex;
  gap: 12px;
  align-items:center;
}
.hthumb{
  width: 96px; height: 96px;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  flex:0 0 auto;
  position: relative;
}
.hthumb img{ width:100%; height:100%; object-fit:cover; }
.hbadge{
  position:absolute; left: 8px; top: 8px;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-weight: 1100;
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hinfo{ min-width:0; flex:1; display:flex; flex-direction:column; gap: 6px; }
.htitle{
  font-weight: 1300;
  font-size: 14.5px;
  line-height: 1.15;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.hprice{
  display:flex;
  gap: 8px;
  align-items:baseline;
  font-weight: 1300;
}
.hprice s{ color:#9aa1aa; font-weight: 1100; }
.hadd{
  border:0;
  background:none;
  padding:0;
  color: var(--ifood);
  font-weight: 1300;
  text-align:left;
  font-size: 13px;
}

/* ===== Produtos (iFood list) ===== */
.plist{
  display:grid;
  gap: 12px;
  margin: 10px 0 18px;
}
.pitem{
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: var(--r-xl);
  /*box-shadow: 0 16px 34px rgba(16,24,40,.06);*/
  padding: 16px 20px;
  display:grid;
  grid-template-columns: 1fr 130px;
  gap: 12px;
  align-items:center;
  cursor:pointer;
  position: relative;
  overflow:hidden;
}
.ptitle{ margin:0 0 6px; font-size: 15px; font-weight: 1300; line-height: 1.15; }
.pdesc{ margin:0 0 8px; font-size: 12.5px; color:#7a828f; line-height: 1.25; }
.pfrom{ font-size: 11.5px; font-weight: 1300; color: #16a34a; margin-bottom: 2px; }
.prow{ display:flex; gap: 8px; align-items:baseline; }
.pprice{ font-weight: 1400; font-size: 17px; color: #16a34a; }
.pold{ color:#a2aab6; font-weight: 1200; text-decoration: line-through; font-size: 12px; }

.pimgWrap{
  width: 130px;
  height: 98px;
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  position:relative;
}
.pimg{ width:100%; height:100%; object-fit: cover; display:block; transform: scale(1.02); }

.plus{
  position:absolute;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 0;
  background: var(--ifood);
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow: 0 20px 34px rgba(0,0,0,.25);
  transition: transform .12s ease, background .15s ease;
}
.plus:active{ transform: translateY(1px) scale(.98); background: var(--ifood-dark); }

/* ===== Footer nav ===== */
.footer-nav{
  position: fixed;
  left:0; right:0;bottom:0;
  height: calc(var(--footer-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background:#fff;
  border-top: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 -18px 40px rgba(16,24,40,.08);
  z-index: 1030;
  display:flex;
  justify-content: space-around;
  align-items:center;
}
.nav-item{
  position: relative;
  display:flex;
  flex-direction:column;
  gap: 4px;
  align-items:center;
  text-decoration:none;
  color:#6b7280;
  font-size: 10.5px;
  font-weight: 1300;
  min-width: 70px;
  padding-top: 8px;
  user-select:none;
}
.nav-item i{ font-size: 20px; }
.nav-item.active{ color: #0000FF; }
.cart-badge{
  position:absolute;
  top: 4px;
  right: 18px;
  background: #0000FF;
  color:#fff;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 10px;
  padding: 0 6px;
  box-shadow: 0 12px 22px rgba(0,0,0,.25);
}

/* ===== Bag bar ===== */
#bag-bar{
  position: fixed;
  left:0; right:0;
  bottom: calc(var(--footer-h) + 12px + var(--safe-bottom));
  z-index: 1040;
  transform: translateY(120px);
  transition: transform .22s ease;
  pointer-events: none;
  padding: 0 12px;
  display: none;
}
#bag-bar.is-visible{
  transform: translateY(0);
  pointer-events: auto;
  display: block;
}
.bag-inner{
  max-width: 680px;
  margin: 0 auto;
  height: 58px;
  border-radius: 20px;
  background: var(--ifood);
  color:#fff;
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
  display:grid;
  grid-template-columns: 52px 1fr auto;
  align-items:center;
  padding: 0 14px;
  gap: 10px;
  cursor:pointer;
}
.bag-left{
  width: 44px; height: 44px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  display:grid;
  place-items:center;
}
.bag-left svg{ width: 20px; height: 20px; stroke:#fff; fill:none; stroke-width:2; }
.bag-center{ font-weight: 1400; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.bag-price{ font-weight: 1400; white-space:nowrap; }

/* ===== Checkout ===== */
.gz-checkout-body{
  background: #f5f6fb;
}
.gz-checkout-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  padding: 10px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,24,39,.10);
  z-index: 1040;
  display:flex;
  align-items:center;
  gap:10px;
}
.btn.gz-checkout-menu{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  color:#111;
  display:grid;
  place-items:center;
  padding: 0;
}
.btn.gz-checkout-menu:hover{
  background: rgba(17,24,39,.03);
}
.btn.gz-checkout-back{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: #0000FF;
  color:#fff;
  display:grid;
  place-items:center;
  padding: 0;
  box-shadow: 0 18px 34px rgba(0,0,255,.22);
}
.btn.gz-checkout-back:hover{
  filter: brightness(.96);
}
.btn.gz-checkout-menu:focus-visible,
.btn.gz-checkout-back:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.gz-checkout-title{
  flex: 1;
  min-width: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  font-weight: 1100;
  color:#111;
  line-height: 1.1;
  font-size: 15px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.gz-checkout-main{
  max-width: 720px;
  margin: 0 auto;
  padding: 76px 12px calc(190px + var(--footer-h) + var(--safe-bottom));
}
.gz-checkout-card{
  background:#fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 18px 36px rgba(16,24,40,.06);
}
.gz-checkout-card + .gz-checkout-card{
  margin-top: 12px;
}
.gz-checkout-card-title{
  font-weight: 1300;
  font-size: 14px;
  color:#0000FF;
  margin: 0 0 12px;
}
.gz-checkout-muted{
  color:#6b7280;
  font-weight: 900;
}
.gz-checkout-check{
  margin-top: 10px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 12.5px;
  color:#111;
  font-weight: 900;
  user-select:none;
}
.gz-checkout-check input{
  margin-top: 2px;
}
.gz-checkout-tabs{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.gz-checkout-tab{
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  padding: 12px 12px;
  font-weight: 1100;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.gz-checkout-tab:hover{
  background: rgba(17,24,39,.03);
}
.gz-checkout-tab.is-active{
  border-color: rgba(0,0,255,.35);
  box-shadow: 0 0 0 4px rgba(0,0,255,.10);
}
.gz-checkout-tab:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.gz-checkout-cep{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.gz-checkout-mini{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 12.5px;
  color:#111;
  font-weight: 900;
  user-select:none;
}
.gz-checkout-mini input{ margin-top: 2px; }
.gz-cep-status{
  margin-top: 10px;
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 1000;
  background: rgba(0,0,255,.06);
  border: 1px solid rgba(0,0,255,.14);
  color:#111;
}
.gz-cep-status.is-error{
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.18);
}
.gz-checkout-grid2{
  display:grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}
@media (max-width: 420px){
  .gz-checkout-grid2{
    grid-template-columns: 1fr;
  }
}
.gz-checkout-pickup{
  border-radius: 18px;
  background: rgba(0,0,255,.06);
  border: 1px solid rgba(0,0,255,.14);
  padding: 12px;
}
.gz-checkout-pickup-title{
  font-weight: 1100;
  color:#111;
  display:flex;
  align-items:center;
  gap: 10px;
}
.gz-checkout-pickup-text{
  margin-top: 6px;
  color:#6b7280;
  font-size: 13px;
  line-height: 1.35;
}
.gz-pay{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.gz-card-fields{
  margin-top: 12px;
}
.btn.gz-installments-btn{
  width: 100%;
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  padding: 12px 14px;
  font-weight: 1100;
  color:#111;
  text-align:left;
}
.btn.gz-installments-btn:hover{
  background: rgba(17,24,39,.03);
}
.btn.gz-installments-btn:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}

.gz-mid-modal{
  border-radius: 22px;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 24px 60px rgba(16,24,40,.18);
  overflow:hidden;
}
.gz-mid-head{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(17,24,39,.08);
  background:#fff;
}
.gz-mid-title{
  width: 100%;
  text-align: center;
  padding: 0 44px;
  font-weight: 1200;
  color:#111;
}
.gz-mid-title-error{
  color:#ef4444;
  font-weight: 1300;
}
.btn.gz-mid-close{
  position: absolute;
  right: 14px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  display:grid;
  place-items:center;
  padding: 0;
}
.btn.gz-mid-close:hover{
  background: rgba(17,24,39,.03);
}
.btn.gz-mid-close:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.gz-mid-body{
  padding: 14px 14px;
  background:#fff;
  text-align:center;
}
.gz-mid-text{
  color:#111;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 950;
}
.gz-parcels{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 420px){
  .gz-parcels{
    grid-template-columns: 1fr;
  }
}
.gz-parcel-btn{
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  padding: 12px 12px;
  font-weight: 1100;
  color:#111;
  text-align:center;
}
.gz-parcel-btn:hover{
  background: rgba(17,24,39,.03);
}
.gz-parcel-btn:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}

.gz-pix-qr{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  padding: 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.gz-pix-qr img{
  width: 220px;
  height: 220px;
  object-fit: contain;
}
.gz-pix-text{
  width: 100%;
  border-radius: 16px;
  background: rgba(17,24,39,.04);
  border: 1px solid rgba(17,24,39,.08);
  padding: 10px 10px;
  font-size: 12px;
  line-height: 1.35;
  word-break: break-word;
}
.gz-pix-actions{
  margin-top: 12px;
  display:flex;
  justify-content:center;
  width: 100%;
}
.btn.gz-pix-open{
  border-radius: 16px;
  padding: 10px 14px;
  font-weight: 1100;
  border: 0;
  background: #0000FF;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.btn.gz-pix-open:hover{
  filter: brightness(.96);
}
.btn.gz-pix-copy{
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 1300;
  font-size: 15px;
  border: 1px solid rgba(17,24,39,.12);
  background:#fff;
  color:#111;
}
.btn.gz-pix-copy:hover{
  background: rgba(17,24,39,.03);
}
.btn.gz-pix-copy.is-copied{
  background: #16a34a;
  border: 0;
  color:#fff;
  box-shadow: 0 18px 34px rgba(22,163,74,.20);
}
.btn.gz-pix-open:focus-visible,
.btn.gz-pix-copy:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.gz-pix-meta{
  margin-top: 10px;
  color:#6b7280;
  font-size: 12px;
  font-weight: 1000;
}

.gz-pix-status{
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 1100;
  background: rgba(0,0,255,.06);
  border: 1px solid rgba(0,0,255,.14);
  color:#111;
  margin-bottom: 12px;
}
.gz-steps{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.gz-step{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.08);
  background:#fff;
  padding: 12px 12px;
}
.gz-step-num{
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: #0000FF;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight: 1300;
  flex: 0 0 auto;
}
.gz-step-txt{
  color:#111;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 950;
}
.gz-pix-poll{
  display:flex;
  align-items:center;
  gap: 10px;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.08);
  background:#fff;
  padding: 12px 12px;
}
.gz-pix-poll-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0000FF;
  box-shadow: 0 0 0 6px rgba(0,0,255,.10);
}
.gz-pix-poll-text{
  color:#111;
  font-size: 13px;
  font-weight: 1000;
}
.gz-thanks{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding: 12px 6px 0;
}
.gz-thanks-ico{
  width: 66px;
  height: 66px;
  border-radius: 26px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.18);
  color:#16a34a;
  display:grid;
  place-items:center;
  font-size: 26px;
}
.gz-thanks-title{
  margin-top: 12px;
  font-weight: 1300;
  color:#111;
  font-size: 18px;
}
.gz-thanks-sub{
  margin-top: 6px;
  color:#6b7280;
  font-size: 13px;
  font-weight: 1000;
  line-height: 1.35;
}
.gz-thanks-actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;
}
.gz-pay-btn{
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  padding: 12px 12px;
  display:flex;
  align-items:center;
  gap: 12px;
  text-align:left;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.gz-pay-btn:hover{
  background: rgba(17,24,39,.03);
}
.gz-pay-btn:active{
  transform: translateY(1px);
}
.gz-pay-btn.is-active{
  border-color: rgba(0,0,255,.35);
  box-shadow: 0 0 0 4px rgba(0,0,255,.10);
}
.gz-pay-btn:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}
.gz-pay-ico{
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: rgba(0,0,255,.10);
  display:grid;
  place-items:center;
  color:#0000FF;
  flex: 0 0 auto;
}
.gz-pay-title{
  font-weight: 1100;
  color:#111;
  line-height: 1.1;
}
.gz-pay-sub{
  margin-top: 4px;
  color:#6b7280;
  font-size: 12.5px;
  font-weight: 900;
}
.gz-summary-items{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.gz-summary-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.gz-summary-left{
  min-width:0;
  display:flex;
  gap:10px;
  align-items:baseline;
}
.gz-summary-name{
  font-weight: 1000;
  color:#111;
  line-height: 1.2;
  font-size: 13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.gz-summary-qty{
  font-weight: 1000;
  color:#6b7280;
  font-size: 12px;
  white-space:nowrap;
}
.gz-summary-price{
  font-weight: 1100;
  color:#111;
  white-space:nowrap;
}
.gz-summary-sep{
  margin: 12px 0;
  border-top: 2px dotted rgba(17,24,39,.16);
}
.gz-summary-totals{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.gz-summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#111;
  font-size: 13px;
  font-weight: 950;
}
.gz-summary-free{
  color:#16a34a;
}
.gz-summary-total{
  font-size: 14px;
  font-weight: 1100;
}
.gz-checkout-success{
  margin-top: 12px;
  border-radius: 18px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.16);
  padding: 12px;
  color:#14532d;
  font-size: 13px;
  line-height: 1.35;
}
.gz-checkout-success b{
  font-weight: 1100;
}
.gz-checkout-actionbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--footer-h) + var(--safe-bottom));
  padding: 10px 12px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(17,24,39,.10);
  z-index: 1035;
}
.gz-checkout-action-inner{
  max-width: 720px;
  margin: 0 auto 10px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
}
.gz-checkout-action-label{
  color:#6b7280;
  font-size: 12px;
  font-weight: 1100;
}
.gz-checkout-action-items{
  color:#6b7280;
  font-size: 12.5px;
  font-weight: 1000;
  margin-top: 4px;
}
.gz-checkout-action-price{
  font-weight: 1200;
  font-size: 18px;
  color:#111;
  white-space:nowrap;
}
.gz-checkout-finish{
  width: 100%;
  border-radius: 18px;
  padding: 13px 14px;
  font-weight: 1200;
  border: 0;
  background: #0000FF;
  color:#fff;
  box-shadow: 0 22px 44px rgba(0,0,255,.22);
}
.gz-checkout-finish:hover{
  filter: brightness(.96);
}
.gz-checkout-finish:disabled{
  opacity: .55;
  box-shadow: none;
}
.gz-checkout-finish:focus-visible{
  outline: 2px solid rgba(0,0,255,.65);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  .gz-pay-btn{ transition: none; }
  .gz-checkout-tab{ transition: none; }
  .gz-checkout-finish{ transition: none; }
}

/* ===== Modal bottom sheet ===== */
.modal.modal-product .modal-dialog{
  max-width: 680px;
  margin: 0 auto;
  align-items: end;
  min-height: 100dvh;
}
.modal-product .modal-content{
  border: 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  overflow:hidden;
  box-shadow: 0 -26px 80px rgba(0,0,0,.35);
}
.handle{
  height: 5px;
  width: 54px;
  border-radius: 999px;
  background: rgba(17,24,39,.20);
  margin: 10px auto 0;
}
.prod-hero{
  position:relative;
  background:#000;
}
.prod-hero img{
  width:100%;
  height: min(42dvh, 360px);
  object-fit: cover;
  display:block;
}
.btn-back{
  position:absolute;
  left: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color:#fff;
  display:grid;
  place-items:center;
  font-size: 20px;
  backdrop-filter: blur(12px);
}
.modal-product .modal-body{
  padding: 16px 16px 10px;
  max-height: 40dvh;
  overflow:auto;
}
.prod-title{
  margin:0 0 6px;
  font-weight: 1400;
  font-size: 18px;
  line-height: 1.15;
}
.prod-desc{
  margin:0 0 12px;
  color:#222;
  opacity:.85;
  font-size: 13.5px;
  line-height: 1.45;
}
.obs-box{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.12);
  padding: 12px 14px;
  outline: none;
  resize: none;
}
.modal-product .modal-footer{
  position: sticky;
  bottom: 0;
  background:#fff;
  border-top: 1px solid rgba(17,24,39,.10);
  padding: 12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
}
.price{ font-weight: 1400; font-size: 18px; }
.qty{ display:flex; align-items:center; gap: 10px; }
.btn-qty{
  width: 44px;
  height: 40px;
  border-radius: 18px;
  border: 0;
  background: #0f1115;
  color:#fff;
  font-size: 22px;
  line-height: 0;
}
.qty-num{ min-width: 28px; text-align:center; font-weight:1400; font-size: 16px; }
.btn-add{
  width: 100%;
  height: 54px;
  border-radius: 20px;
  border: 0;
  background: var(--ifood);
  color:#fff;
  font-weight: 1400;
  text-transform: uppercase;
  letter-spacing: .6px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.btn-add:hover{ background: var(--ifood-dark); }


 /* Modal base */
  .modal.modal-product .modal-dialog{
    max-width: 500px;
  }
  .modal-product .modal-content{
    border:0; border-radius:var(--radius);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
    overflow:hidden;
  }



.reviews{
  max-width: 920px;
  margin: 0 auto;
  padding: 18px;
  background: #fff;


background: #fff;
    border: 1px solid rgba(17, 24, 39, .10);
    border-radius: var(--r-xl);
    /* box-shadow: 0 16px 34px rgba(16, 24, 40, .06); */
    padding: 16px 20px;



}

.reviews__title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:#111;
  font-size:16px;
}

.reviews__title i{ color:#111; }

.reviews__summary{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  background:#fafafa;
  border:1px solid #ededed;
  border-radius:14px;
  padding:16px;
}

.reviews__score{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.reviews__scoreValue{
  font-size:34px;
  font-weight:800;
  letter-spacing:-0.5px;
  color:#111;
}

.reviews__stars{
  display:flex;
  gap:3px;
  font-size:14px;
  color:#f5b301;
}

.reviews__meta{
  font-size:12px;
  color:#666;
}

.reviews__dist{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.reviews__distRow{
  display:grid;
  grid-template-columns: 14px 1fr 42px;
  align-items:center;
  gap:10px;
}

.reviews__distLabel{
  font-size:12px;
  color:#333;
  font-weight:700;
}

.reviews__distVal{
  font-size:12px;
  color:#666;
  text-align:right;
}

.reviews__bar{
  height:10px;
  background:#eee;
  border-radius:99px;
  overflow:hidden;
}

.reviews__bar span{
  display:block;
  height:100%;
  background:#f5b301;
  border-radius:99px;
}

.reviews__totals{
  padding-top:6px;
  font-size:12px;
  color:#777;
  text-align:right;
}

.reviews__list{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.review{
  display:grid;
  grid-template-columns: 46px 1fr;
  gap:12px;
  padding:14px;
  border:1px solid #eee;
  border-radius:14px;
  background:#fff;
}

.review__avatar{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#efefef;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#777;
}

.review__top{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:10px;
}

.review__name{
  color:#111;
  font-size:14px;
}

.review__time{
  font-size:12px;
  color:#888;
  white-space:nowrap;
}

.review__stars{
  margin-top:6px;
  color:#f5b301;
  font-size:13px;
  display:flex;
  gap:3px;
}

.review__text{
  margin:8px 0 0 0;
  color:#333;
  font-size:13px;
  line-height:1.35;
}

/* Responsivo desktop */
@media (min-width: 860px){
  .reviews__summary{
    grid-template-columns: 220px 1fr;
    align-items:center;
  }
}


.app-reviews{
  background:#fff;
  border-radius:16px;
  padding:16px 20px;
  border:1px solid #eee;
}

.app-reviews__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.app-reviews__header h3{
  margin:0;
  font-size:16px;
}

.app-reviews__count{
  font-size:12px;
  color:#777;
}

.app-reviews__badge{
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;

      background: rgba(22,163,74,.10);
      border: 1px solid rgba(22,163,74,.25);
      color: #16a34a;
}

.app-reviews h2.title {
    margin: 0;
    font-size: 15px;
    letter-spacing: .35px;
    color: var(--text);
}

.app-reviews__summary{
  margin:10px 0 14px;
  font-size:13px;
  color:#555;
}

.stars{
  color:#f5b301;
  font-size:14px;
}

.stars.small{
  font-size:13px;
}

.review-item{
  display:flex;
  gap:10px;
  padding:12px 0;
  border-top:1px solid #eee;
}

.avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#f1f1f1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#888;
}

.content{
  flex:1;
}

.top{
  display:flex;
  justify-content:space-between;
  font-size:13px;
}

.top span{
  color:#999;
}

.content p{
  margin:4px 0 0;
  font-size:13px;
  color:#333;
}

.btn-more{
  margin-top:12px;
  width:100%;
  background:#fff;
  border:1px solid #d90000;
  color:#d90000;
  padding:10px;
  border-radius:12px;
  font-weight:600;
}

.review-item{
  transition: opacity .25s ease, transform .25s ease;
}

.footer {
  background: var(--ifood);
  border-top: 1px solid var(--ifood-dark);
  padding: 16px 12px;
  text-align: center;
  margin-top: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: #FFF; /* vermelho do seu site */
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 12px;
  color: #FFF;
}

.footer-trust{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:12px;
  color:#FFF;
  margin:6px 0 10px;
}

.footer-trust i{
  color:#FFF; /* vermelho do seu tema */
  font-size:13px;
}
