/* Catalogo Digital - Mobile First (clean / minimal) */
:root {
  --cor-primaria: #111111;
  --cor-secundaria: #111111;
  --cor-fundo: #fafaf9;
  --cor-texto: #111111;
  --cor-card: #ffffff;
  --cor-borda: #e7e5e4;
  --cor-muted: #78716c;
  --cor-danger: #b42318;
  --sombra: 0 1px 2px rgba(17, 17, 17, 0.04);
  --raio: 12px;
  --cor-botao-comprar: #2563eb;
  --header-h: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
  padding: 0.85rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--cor-borda);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 1;
}

.brand img {
  width: auto;
  max-width: min(220px, 48vw);
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: 0;
  box-shadow: none;
  flex-shrink: 0;
  padding: 0;
}

.logo-fallback {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cor-botao-comprar);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand .logo-fallback {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 1.15rem;
}

.company-brand .logo-fallback {
  width: 104px;
  height: 104px;
  border-radius: 20px;
  font-size: 2rem;
  border: 1px solid var(--cor-borda);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text span {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--cor-texto);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.icon-btn:hover {
  background: #f5f5f4;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--cor-botao-comprar);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-wrap {
  display: none;
  position: relative;
  flex: 1 1 100%;
  order: 3;
}

.search-wrap.open {
  display: block;
}

.search-wrap input {
  width: 100%;
  height: 44px;
  padding: 0 2.5rem 0 1rem;
  border: 1px solid var(--cor-borda);
  border-radius: 999px;
  background: #fff;
  outline: none;
}

.search-wrap input:focus {
  border-color: #a8a29e;
}

.search-wrap .clear-search {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--cor-muted);
  cursor: pointer;
  display: none;
}

.search-wrap.has-value .clear-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.banner {
  position: relative;
  margin: 1rem;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  background: #111111;
}

.banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.9;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.2rem;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.2) 55%, transparent 100%);
  color: #fafaf9;
}

.banner-content h1 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.banner-content p {
  margin: 0.45rem 0 1rem;
  font-size: 0.95rem;
  color: #d6d3d1;
  max-width: 28rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--cor-botao-comprar);
  color: #fff;
  width: fit-content;
}

.btn-dark {
  background: #111111;
  color: #fafaf9;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--cor-borda);
  color: var(--cor-texto);
}

.btn-block {
  width: 100%;
}

.btn-buy {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  background: var(--cor-botao-comprar);
  color: #fff;
  font-weight: 600;
}

.btn-buy:hover {
  filter: brightness(1.05);
}

.section {
  padding: 0 1rem 1.25rem;
}

.section-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.categories {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.categories::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--cor-borda);
  background: #fff;
  color: var(--cor-texto);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.88rem;
}

.chip.active {
  background: var(--cor-botao-comprar);
  border-color: var(--cor-botao-comprar);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-card {
  background: var(--cor-card);
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f5f5f4;
  cursor: pointer;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-promo {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #111111;
  color: #fafaf9;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-body {
  padding: 0.75rem 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.product-code {
  font-size: 0.7rem;
  color: var(--cor-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  cursor: pointer;
}

.product-desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--cor-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.price {
  font-weight: 700;
  color: var(--cor-texto);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.price-old {
  font-size: 0.78rem;
  color: var(--cor-muted);
  text-decoration: line-through;
}

.product-actions {
  margin-top: auto;
  padding-top: 0.75rem;
}

.product-actions .btn-buy {
  width: 100%;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.qty-control button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--cor-borda);
  background: #fff;
  color: var(--cor-texto);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty-control span {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 600;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--cor-muted);
}

.company-info {
  margin: 0.5rem 1rem 1.5rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
}

.company-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.company-brand img {
  width: 104px;
  height: 104px;
  border-radius: 20px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--cor-borda);
  background: #fff;
  padding: 8px;
}

.company-brand strong {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  display: block;
  letter-spacing: -0.02em;
}

.company-brand span {
  font-size: 0.82rem;
  color: var(--cor-muted);
}

.company-info h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.company-info dl {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.company-info dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cor-muted);
}

.company-info dd {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-links a {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--cor-borda);
  font-size: 0.8rem;
}

.app-footer {
  padding: 2rem 1rem calc(1.5rem + var(--safe-bottom));
  background: #111111;
  color: #fafaf9;
  text-align: center;
}

.app-footer .footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto 0.75rem;
}

.app-footer strong {
  font-family: var(--font-body);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.app-footer p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: #a8a29e;
}

.app-footer a {
  color: #fafaf9;
}

.app-footer .copy {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: #78716c;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

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

.drawer,
.modal {
  position: fixed;
  z-index: 60;
  background: #fff;
  transform: translateY(110%);
  transition: transform 0.28s ease;
}

.drawer.open,
.modal.open {
  transform: translateY(0);
}

.drawer {
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 88vh;
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: column;
}

.drawer-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--cor-borda);
}

.drawer-header h2,
.modal-header h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.drawer-body,
.modal-body {
  overflow: auto;
  padding: 1rem 1.1rem;
  flex: 1;
}

.drawer-footer {
  padding: 0.9rem 1.1rem calc(0.9rem + var(--safe-bottom));
  border-top: 1px solid var(--cor-borda);
  background: #fff;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cor-borda);
}

.cart-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f4;
}

.cart-item h3 {
  margin: 0;
  font-size: 0.9rem;
}

.cart-item .meta {
  font-size: 0.75rem;
  color: var(--cor-muted);
}

.cart-item .qty-control {
  margin-top: 0.5rem;
  background: transparent;
  padding: 0;
}

.cart-item .qty-control button {
  border: 1px solid var(--cor-borda);
  background: #fff;
  color: var(--cor-texto);
  width: 32px;
  height: 32px;
}

.cart-item .qty-control span {
  color: var(--cor-texto);
  flex: none;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.cart-item-actions .line-total {
  font-weight: 700;
}

.link-danger {
  border: 0;
  background: transparent;
  color: var(--cor-danger);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0;
}

.cart-summary {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}

.cart-summary .total {
  font-size: 1.05rem;
  font-weight: 700;
}

.modal {
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 92vh;
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: column;
}

.modal-media {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 42vh;
  background: #f5f5f4;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.modal-desc {
  margin: 0.75rem 0;
  color: var(--cor-muted);
  font-size: 0.92rem;
}

.modal-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.9rem 0 1rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(1.2rem + var(--safe-bottom));
  transform: translateX(-50%) translateY(150%);
  z-index: 80;
  background: #111111;
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  position: fixed;
  top: calc(var(--header-h) + 0.35rem);
  left: 1rem;
  right: 1rem;
  z-index: 55;
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
  padding: 0.85rem;
  display: none;
}

.menu-panel.open {
  display: block;
}

.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0 0.65rem;
}

.menu-panel-head h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.menu-panel .chip {
  display: block;
  width: 100%;
  margin-bottom: 0.4rem;
  text-align: left;
}

.loading,
.error-box {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--cor-muted);
}

.home {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fff 0%, var(--cor-fundo) 220px);
}

.home-shell {
  width: min(100%, 960px);
  margin-inline: auto;
  padding-inline: 1rem;
}

.home-hero {
  flex-shrink: 0;
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid var(--cor-borda);
  background: #fff;
}

.home-hero-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: var(--sombra);
}

.home-hero-text {
  min-width: 0;
}

.home-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home-lead {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--cor-muted);
  line-height: 1.45;
}

.home-layout {
  flex: 1 0 auto;
  display: grid;
  gap: 1.25rem;
  padding-block: 1.25rem 1.5rem;
  align-content: start;
}

.home-section-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cor-texto);
}

.home-about-card {
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: calc(var(--raio) + 4px);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--sombra);
}

.home-about-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cor-muted);
}

.home-about-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-about-slogan {
  margin: 0.35rem 0 0.65rem;
  font-size: 0.88rem;
  color: var(--cor-muted);
}

.home-about-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--cor-texto);
}

.home-about-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--cor-muted);
  line-height: 1.5;
}

.home-about-list li + li {
  margin-top: 0.35rem;
}

.home-about-link {
  display: inline-flex;
  margin-top: 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cor-botao-comprar);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-footer {
  flex-shrink: 0;
  padding: 2rem 0 calc(2rem + var(--safe-bottom));
  background: #111111;
  color: #fafaf9;
  text-align: center;
}

.home-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.home-footer-brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.home-footer-meta {
  margin: 0.15rem 0;
  font-size: 0.85rem;
  color: #a8a29e;
  line-height: 1.45;
}

.home-footer-meta a {
  color: #fafaf9;
  text-decoration: none;
}

.home-footer-meta a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-footer-actions {
  margin: 0.65rem 0 0;
}

.home-footer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none !important;
}

.home-footer-wa:hover {
  filter: brightness(1.05);
}

.home-footer-copy {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  color: #78716c;
}

.stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.store-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  color: inherit;
  text-decoration: none;
}

.store-card:hover {
  transform: translateY(-1px);
  border-color: #d6d3d1;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.07);
}

.store-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 96px;
  padding: 0.75rem;
  background: #fafaf9;
  border-right: 1px solid var(--cor-borda);
}

.store-card-media img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.store-card-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #111111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.store-card-body {
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
}

.store-card-body strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.store-card-body span {
  font-size: 0.82rem;
  color: var(--cor-muted);
  line-height: 1.35;
}

.store-card-cta {
  margin-top: 0.35rem;
  font-size: 0.78rem !important;
  font-weight: 600;
  color: var(--cor-botao-comprar) !important;
}

@media (min-width: 720px) {
  .home-hero {
    padding: 2rem 0 1.5rem;
  }

  .home-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 1.5rem;
    padding-block: 1.75rem 2rem;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .home-shell {
    padding-inline: 1.5rem;
  }
}

.error-box {
  color: var(--cor-danger);
}

body.drawer-open {
  overflow: hidden;
}

@media (min-width: 720px) {
  :root {
    --header-h: 84px;
  }

  .app-header {
    padding: 1rem 2rem;
  }

  .brand img {
    height: 64px;
    max-width: 280px;
  }

  .brand-text strong {
    font-size: 1.2rem;
  }

  .brand-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--cor-muted);
  }

  .search-wrap {
    display: block;
    grid-column: auto;
  }

  #btn-search {
    display: none;
  }

  .banner {
    margin: 1.25rem 1.5rem;
  }

  .banner img {
    height: 320px;
  }

  .banner-content {
    padding: 2rem;
  }

  .section,
  .company-info {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .company-info {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .drawer,
  .modal {
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(420px, 100%);
    max-height: 100vh;
    border-radius: 0;
    transform: translateX(110%);
  }

  .drawer.open,
  .modal.open {
    transform: translateX(0);
  }

  .modal {
    width: min(460px, 100%);
  }
}

@media (min-width: 1080px) {
  .app-header,
  .section,
  .banner,
  .company-info,
  .app-footer > * {
    max-width: 1120px;
  }

  .app-header,
  .banner,
  .section,
  .company-info {
    margin-left: auto;
    margin-right: auto;
  }

  .app-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
