* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  padding-bottom: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#topo {
  background-color: #3d3d3d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  padding: 12px 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
}

.header-center {
  flex: 1;
}

.btn-location {
  background-color: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
  color: #fff;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
}

.btn-location:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-location .fa-map-marker-alt {
  color: #ffc700;
  font-size: 16px;
}

.btn-location .fa-chevron-down {
  font-size: 12px;
  color: #fff;
}

.location-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.location-label {
  font-size: 12px;
  color: #ccc;
  font-family: "Roboto", sans-serif;
}

.location-address2 {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  font-family: "Roboto", sans-serif;
}

.search-bar {
  flex: 1;
  max-width: 500px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.search-bar i {
  color: #999;
  font-size: 16px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 0;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

.search-bar input::placeholder {
  color: #999;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.schedule-dropdown-container {
  position: relative;
}

.btn-schedule {
  background-color: #ffc700;
  border: none;
  padding: 10px 40px 10px 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  position: relative;
}

.btn-schedule:hover {
  background-color: #e6b300;
}

.btn-schedule i.fa-calendar {
  font-size: 18px;
  flex-shrink: 0;
}

.btn-schedule span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
}

.btn-schedule .fa-chevron-down {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.btn-schedule small {
  font-size: 13px;
  font-weight: 500;
}

.schedule-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #555;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 220px;
  display: none;
  z-index: 1000;
  overflow: hidden;
}

.schedule-dropdown.active {
  display: block;
}

.schedule-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  color: #fff;
}

.schedule-option:hover {
  background-color: #666;
}

.schedule-option:first-child {
  border-bottom: 1px solid #666;
}

.schedule-option i {
  font-size: 20px;
  color: #ffc700;
}

.schedule-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.schedule-option-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.schedule-option-text span {
  font-size: 12px;
  color: #ccc;
}

.btn-cart {
  background-color: #ffc700;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
  position: relative;
  color: #1a1a1a;
  font-size: 18px;
}

.btn-cart:hover {
  background-color: #e6b300;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff4444;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.mobile-cart-button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffc700;
  padding: 16px 20px;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", sans-serif;
  transition: background-color 0.2s;
}

.mobile-cart-button:active {
  background-color: #e6b300;
}

.mobile-cart-text {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
}

.mobile-cart-total {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

#opacidade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

#opacidade.active {
  display: block;
}

.fechar {
  display: none;
}

#lista {
  padding: 32px 0;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
}

.alert-promo {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

.alert-promo-special {
  background-color: #fff8e1;
  color: #000;
  border: 2px solid #000;
}

.categoria {
  margin-bottom: 48px;
}

.categoria-title {
  font-size: 16px;
  font-weight: 700;
  color: #666;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.produto-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e8e8e8;
  position: relative;
  display: flex;
  flex-direction: column;
}

.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Adicionando estilos para o ícone de soma sobre a imagem */
.btn-add-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background-color: #ffc700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a1a1a;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.btn-add-icon:hover {
  background-color: #e6b300;
  transform: scale(1.1);
}

.btn-add-icon:active {
  transform: scale(0.95);
}

/* Removendo estilos do botão antigo de adicionar ao carrinho */
/* .btn-add-to-cart was removed */

.produto-imagem-container {
  position: relative;
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
}

.produto-imagem {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.produto-nome {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  min-height: 40px;
}

.produto-descricao {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.produto-preco-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.produto-preco-antigo {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.produto-preco {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.produto-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #ff4444;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.promo-banner {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 20px;
  overflow: hidden;
}

.banner-image-full {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-mobile {
  display: none;
}

.banner-desktop {
  display: block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3d3d3d;
  color: #fff;
}

.cart-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.btn-close-cart {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.btn-close-cart:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  gap: 16px;
}

.cart-empty i {
  font-size: 64px;
}

.cart-empty p {
  font-size: 16px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  position: relative;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #fff;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.btn-qty {
  width: 28px;
  height: 28px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.btn-qty:hover {
  background-color: #ffc700;
  border-color: #ffc700;
}

.cart-item-quantity {
  font-size: 14px;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.btn-remove-item {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s;
}

.btn-remove-item:hover {
  color: #ff4444;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #e8e8e8;
  background-color: #f9f9f9;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background-color: #ffc700;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-checkout:hover {
  background-color: #e6b300;
}

.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.checkout-modal.active {
  display: flex;
}

.checkout-modal-content {
  background-color: #fff;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.checkout-header {
  padding: 24px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3d3d3d;
  color: #fff;
  border-radius: 16px 16px 0 0;
}

.checkout-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.checkout-body {
  padding: 24px;
}

.checkout-form h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #ffc700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-summary {
  margin-top: 24px;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.summary-items {
  margin-bottom: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e8e8e8;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item-name {
  flex: 1;
  font-size: 14px;
  color: #666;
}

.summary-item-qty {
  font-size: 14px;
  color: #999;
  margin: 0 12px;
}

.summary-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  padding-top: 12px;
  border-top: 2px solid #e8e8e8;
}

.btn-pay {
  width: 100%;
  padding: 16px;
  background-color: #ffc700;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-pay:hover {
  background-color: #e6b300;
}

.pix-display {
  text-align: center;
}

.pix-success-icon {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
  color: #fff;
}

.pix-display h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.pix-instructions {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.pix-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background-color: #fff8e1;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #f9a825;
}

.pix-value-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 24px;
}

.pix-value-display span {
  font-size: 14px;
  color: #666;
}

.pix-value-display strong {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.qrcode-section {
  margin: 24px 0;
  padding: 24px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.qrcode-section.hidden {
  display: none;
}

.pix-qrcode-img {
  width: 300px;
  height: 300px;
  max-width: 100%;
  border-radius: 8px;
  background-color: #fff;
  padding: 16px;
}

.btn-toggle-qrcode {
  width: 100%;
  padding: 12px;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-toggle-qrcode:hover {
  background-color: #e8e8e8;
}

.pix-code-section {
  margin-bottom: 24px;
}

.pix-code-section label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-align: left;
}

.pix-code-input-group {
  display: flex;
  gap: 8px;
}

.pix-code-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  background-color: #f9f9f9;
}

.btn-copy-pix {
  padding: 12px 24px;
  background-color: #ffc700;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.btn-copy-pix:hover {
  background-color: #e6b300;
}

.purchase-details {
  background-color: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
  text-align: left;
}

.purchase-details h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e8e8e8;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row span {
  font-size: 14px;
  color: #666;
}

.detail-row strong {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.location-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.location-modal-content {
  background-color: #fff;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.location-modal-header {
  padding: 24px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.btn-close-modal:hover {
  background-color: #f5f5f5;
}

.location-modal-body {
  padding: 24px;
}

.location-icon {
  width: 80px;
  height: 80px;
  background-color: #ffc700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: #1a1a1a;
}

.location-info {
  text-align: center;
  margin-bottom: 24px;
}

.location-city {
  font-size: 14px;
  color: #666;
}

.btn-change-location {
  width: 100%;
  padding: 14px;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-change-location:hover {
  background-color: #e8e8e8;
}

.btn-confirm-location {
  width: 100%;
  padding: 14px;
  background-color: #ffc700;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}

.btn-confirm-location:hover {
  background-color: #e6b300;
}

.main-footer {
  background-color: #3d3d3d;
  color: #fff;
  padding-top: 0;
  margin-top: 80px;
}

.footer-top {
  background-color: #2a2a2a;
  padding: 16px 0;
  /* Centralizando o botão de voltar ao topo */
  text-align: center;
}

.btn-voltar-topo {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 0 20px;
  transition: color 0.2s;
}

.footer-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid #555;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #ffc700;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.2s;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #ffc700;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.btn-baixar-app {
  background-color: #555;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  /* Centralizando o botão de baixar app */
  display: block;
  width: 100%;
  text-align: center;
}

.btn-baixar-app:hover {
  background-color: #ffc700;
  color: #1a1a1a;
}

.footer-bottom {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

.footer-legal strong {
  color: #ccc;
}

.footer-links-bottom {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}

.footer-links-bottom a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-bottom a:hover {
  color: #ffc700;
}

.footer-links-bottom span {
  color: #666;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  .header-top .container {
    flex-wrap: wrap;
    gap: 8px;
  }

  .logo {
    display: none;
  }

  .btn-location {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: flex-start;
    font-size: 12px;
    min-width: 0;
  }

  .location-address {
    font-size: 13px;
  }

  .location-label {
    font-size: 11px;
  }

  .header-actions {
    order: 2;
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .btn-cart {
    display: none;
  }

  .mobile-cart-button {
    display: flex;
  }

  .header-center {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }

  .btn-schedule {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 36px 8px 12px;
    line-height: 1.2;
    gap: 0;
    position: relative;
    font-size: 14px;
    min-width: 140px;
  }

  .btn-schedule span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .btn-schedule small {
    font-size: 11px;
  }

  .btn-schedule i.fa-calendar {
    display: none !important;
  }

  .btn-schedule .fa-chevron-down {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    margin: 0;
  }

  .search-bar {
    max-width: 100%;
    width: 100%;
  }

  .promo-banner {
    padding: 0 12px;
    margin-bottom: 24px;
  }

  .banner-image-full {
    border-radius: 12px;
  }

  .banner-desktop {
    display: none;
  }

  .banner-mobile {
    display: block;
  }

  .produtos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .produto-card {
    padding: 12px;
  }

  .produto-imagem-container {
    height: 140px;
  }

  .produto-nome {
    font-size: 13px;
    min-height: 36px;
  }

  .produto-preco {
    font-size: 16px;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .checkout-modal-content {
    width: 95%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pix-qrcode-img {
    width: 250px;
    height: 250px;
  }
}

/* ===== Proteções visuais e anti-seleção ===== */
body {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Bloqueia arrastar imagens e textos */
img, a, div, span, p {
  -webkit-user-drag: none; /* funciona no Chrome / Safari */
  user-select: none;        /* impede seleção de texto */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Desabilita highlight ao clicar */
* {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* (opcional) aviso se quiser mostrar na tela */
.no-inspect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 0, 0, 0.9);
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 10px;
  z-index: 9999;
  display: none;
}
