* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
  scroll-behavior: smooth;
}

.topbar {
  position: sticky;
  top: 0;
  background: #111;
  color: white;
  text-align: center;
  padding: 16px;
  z-index: 1000;
}

.vitrine-colecoes {
  display: flex;
  flex-wrap: nowrap;          /* Garante que fiquem em uma única linha */
  justify-content: space-around; /* Distribui os cards igualmente */
  padding: 20px;
  background: #fff;
  overflow-x: hidden;          /* Impede scroll */
}

.card-colecao {
  flex: 1 1 0;
  max-width: 90px;             /* Tamanho menor para caber todos */
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.card-colecao img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

.card-colecao:hover {
  transform: scale(1.05);
}

.card-colecao span {
  font-weight: 600;
  font-size: 0.75rem;
}


.area-produtos {
  padding: 20px;
}

.colecao-produtos {
  display: none;
  margin-bottom: 40px;
}

.colecao-produtos h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.produtos-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
}

.card-produto {
  flex: 0 0 auto;
  width: 200px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease;
}

.card-produto img {
  width: 100%;
  border-radius: 8px;
}

.card-produto h4 {
  margin: 10px 0 5px;
}

.card-produto .preco {
  font-weight: bold;
  color: #E91E63;
}
.banner-container {
  width: 100%;
  overflow: hidden;
}

.banner-imagem {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.vitrine-colecoes {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 20px;
  background: #fff;
}

.card-colecao {
  flex: 0 0 auto;
  width: 120px;
  height: 200px;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.card-colecao img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.card-colecao span {
  display: block;
  font-size: 0.85rem;
  padding: 6px;
  color: #333;
  font-weight: 600;
}

.card-colecao:hover {
  transform: scale(1.05);
}
/* TOPO / CABEÇALHO */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;           /* Menor altura de fundo */
  background: #000000;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.4s ease;
  height: 80px;                /* Altura fixa */
}

/* Esconde o cabeçalho ao rolar */
.topbar.hide {
  transform: translateY(-100%);
}

/* Logo centralizada */
.topbar-logo img {
  height: 200px;                /* Tamanho ajustável da logo */
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

/* Ícones esquerda/direita */
.topbar-icon {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar-icon img.icon {
  width: 62px;
  height: 54px;
  filter: invert(1);          /* Deixa ícone branco se SVG preto */
  cursor: pointer;
}
.card-produto {
  flex: 0 0 auto;
  width: 160px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.card-produto:hover {
  transform: translateY(-4px);
}

.card-produto img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.card-produto-info h4 {
  font-size: 0.95rem;
  margin: 4px 0;
  color: #333;
}

.card-produto-info .preco {
  font-weight: bold;
  font-size: 1rem;
  color: #E91E63;
}
.area-produtos.destaque {
  background: #fff;
  padding-top: 30px;
  padding-bottom: 50px;
  border-top: 1px solid #eee;
}
.area-produtos.destaque h2 {
  font-size: 1.6rem;
  text-align: center;
  color: #222;
}
.banner-slider {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background: #bdb8b5; /* fundo neutro para completar o espaço */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 200%;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
}
.grade-fixa .produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.grade-fixa .card-produto {
  width: 100%;
  height: auto;
}
.banner-slider2 {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background: #bdb8b5; /* fundo neutro para completar o espaço */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 200%;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
}
.rotativo-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.rotativo-wrapper {
  display: flex;
  width: 100%; /* 100% para cada slide */
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.rotativo-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.grade-fixa .produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.grade-fixa .card-produto {
  width: 100%;
  height: auto;
}
.topbar-busca {
  display: none;
  position: absolute;
  left: 100px;
  right: 100px;
  top: 90px;
  z-index: 999;
  background: #fff;
  padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 8px;
}

.topbar-busca input {
  width: 100%;
  padding: 8px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  overflow: auto;
  padding: 20px;
}

.modal-content {
  background: white;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 6px;
}

.fechar-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.modal-content label,
.modal-content select,
.modal-content input {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 1rem;
}

.modal-content button {
  background-color: #E91E63;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content button:hover {
  background-color: #d81b60;
}
.opcoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
}

.opcao-btn {
  padding: 8px 16px;
  border: 2px solid #ccc;
  border-radius: 20px;
  background: white;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.opcao-btn:hover {
  border-color: #E91E63;
  color: #E91E63;
}

.opcao-btn.selecionado {
  background: #E91E63;
  color: white;
  border-color: #E91E63;
}
#cartIcon {
  position: fixed;
  top: 15px;
  right: 20px;
  cursor: pointer;
  z-index: 2000;
}

#cartIcon img {
  width: 40px;
  height: 40px;
}

#cartIcon span {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
  font-weight: bold;
}
#cartModalOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1999;
}

.cartModal {
  background: white;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  border-radius: 10px;
  max-height: 80vh;
  overflow-y: auto;
}
.quantidade-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.quantidade-wrapper input {
  width: 50px;
  text-align: center;
  font-size: 16px;
  padding: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.quantidade-wrapper button {
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  background-color: #e91e63;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quantidade-wrapper button:hover {
  background-color: #c2185b;
}
.banner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 300px;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}
.banner-estatico img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
.pedido-minimo-aviso {
  background-color: #fff8d8;
  color: #8a6300;
  border: 1px solid #e0c770;
  border-radius: 6px;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.cartModal {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  max-width: 400px;
  width: 90%;
  margin: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
  color: #333;
}

.cartModal h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #444;
  text-align: center;
}

#cartItems {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 12px;
  padding-right: 8px;
}

#cartItems::-webkit-scrollbar {
  width: 6px;
}
#cartItems::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.cartModal hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 16px 0;
}

.cartModal p strong {
  font-size: 18px;
}

.cartModal button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  margin-top: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.cartModal button:hover {
  background-color: #111;
}
.cart-item {
  border-bottom: 1px dashed #ddd;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

.cart-item:last-child {
  border-bottom: none;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.card-produto img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
.banner img,
.banner-slider img,
.banner-estatico img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
.cartModal {
  max-width: 400px;
  width: 95%;
  margin: auto;
  font-size: 14px;
}

@media (max-width: 480px) {
  .cartModal {
    font-size: 13px;
    padding: 18px 14px;
  }
}
/* Garante preenchimento total da tela */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Container da tela de login */
.tela-login {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: linear-gradient(to bottom right, #0a0a0a, #1c1c1c);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex-direction: column;
}

/* Caixa do login */
#loginConsultora {
  background: #1f1f1f;
  padding: 36px 28px;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: fadeIn 0.4s ease;
  border: 1px solid #333;
  color: #fafafa;
}

/* Animação suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Título */
#loginConsultora h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #E91E63;
}

/* Campo de entrada */
#loginConsultora input {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  transition: border-color 0.3s ease;
}

#loginConsultora input:focus {
  border-color: #E91E63;
  outline: none;
}

#loginConsultora input::placeholder {
  color: #aaa;
}

/* Botão de login */
#loginConsultora button {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(to right, #E91E63, #ad1457);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
}

#loginConsultora button:hover {
  background: #c2185b;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.45);
}

/* Responsividade */
@media (max-width: 480px) {
  #loginConsultora {
    padding: 28px 20px;
  }

  #loginConsultora h2 {
    font-size: 1.4rem;
  }
}
#loginConsultora {
  background: #1f1f1f;
  padding: 48px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;  /* Pode ajustar conforme quiser */
  min-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: fadeIn 0.4s ease;
  border: 1px solid #333;
  color: #fafafa;
  flex-shrink: 0;
}
.tela-login {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: linear-gradient(to bottom right, #0a0a0a, #1c1c1c);
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

#loginConsultora {
  width: 100%;
  height: 100%;
  padding: 60px 24px;
  box-sizing: border-box;
  background: #111;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#loginConsultora h2 {
  font-size: 2rem;
  color: #E91E63;
  margin-bottom: 32px;
}

#loginConsultora input {
  width: 100%;
  max-width: 400px;
  padding: 14px;
  font-size: 1rem;
  margin-bottom: 20px;
  border: 1px solid #444;
  background: #1c1c1c;
  color: #fff;
  border-radius: 10px;
}

#loginConsultora button {
  width: 100%;
  max-width: 400px;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  background: linear-gradient(to right, #E91E63, #ad1457);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

#loginConsultora button:hover {
  background: #c2185b;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: auto; /* ← libera rolagem quando o conteúdo passa do viewport */
  font-family: 'Inter', sans-serif;
}
#loginConsultora {
  max-height: 100vh;
  overflow-y: auto;
}
.cartModal {
  background: #ffffff;
  color: #000000;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 420px;
  width: 90%;
  margin: auto;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  animation: abrirCarrinho 0.4s ease;
}

@keyframes abrirCarrinho {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cartModal h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.cartModal hr {
  border: none;
  border-top: 1px solid #000000;
  margin: 16px 0;
}

.cart-item {
  padding: 12px 0;
  border-bottom: 1px dashed #000000;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

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

#cartItems {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 6px;
}

#cartItems::-webkit-scrollbar {
  width: 6px;
}
#cartItems::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 3px;
}

/* Botão de finalizar */
.cartModal button {
  margin-top: 20px;
  padding: 14px;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(to right, #000000, #000000);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cartModal button:hover {
  background: #000000;
  transform: translateY(-2px);
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed #444;
  font-size: 0.95rem;
  gap: 8px;
}

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

.cart-item .nome {
  flex: 1;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  word-break: break-word;
}

.cart-item .preco {
  color: #E91E63;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
/* Aumenta a área de exibição das peças */
#cartItems {
  max-height: none;          /* Deixa crescer conforme o modal */
  height: auto;
  margin-bottom: 20px;
  overflow-y: visible;       /* Elimina scroll se couber tudo */
  padding-right: 0;
}

/* Modal maior */
.cartModal {
  max-height: 90vh;
  height: auto;
  overflow-y: auto;
  padding: 40px 24px;
  box-sizing: border-box;
}

/* Cada item com menos margem vertical */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed #444;
  font-size: 0.95rem;
  gap: 12px;
}

/* Ajusta o nome e o preço */
.cart-item .nome {
  flex: 1;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.cart-item .preco {
  font-weight: 600;
  color: #E91E63;
  white-space: nowrap;
}
#cartIcon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 56px;
  height: 56px;
  background: linear-gradient(to bottom right, #E91E63, #ad1457);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}

#cartIcon:hover {
  transform: scale(1.05);
}

#cartIcon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

#cartIcon span {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: #E91E63;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.topbar-usuario {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111;
  color: #fafafa;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  gap: 16px;
  font-family: 'Inter', sans-serif;
}

/* Avatar ou ícone */
.topbar-usuario .icone-usuario {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  color: #E91E63;
  font-weight: 600;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.05);
}

/* Nome ou link de acesso */
.topbar-usuario .nome-usuario {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.topbar-usuario .nome-usuario:hover {
  color: #E91E63;
}
.topo-consultora {
  position: sticky;
  top: 0;
  width: 100%;
  background: #111;
  color: #fafafa;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid #222;
}

/* Saudação com nome */
.nome-consultora {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* Botão de sair */
.botao-sair {
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 6px 8px;
}

.botao-sair:hover {
  color: #E91E63;
}
.barra-topo {
  position: sticky;
  top: 0;
  width: 100%;
  background: #111;
  color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  font-family: 'Inter', sans-serif;
  z-index: 999;
}

/* Nome da consultora */
#nomeConsultoraAtiva {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* Botão de sair */
#botaoSair {
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 6px 10px;
  border-radius: 6px;
}

#botaoSair:hover {
  color: #E91E63;
  background-color: rgba(233, 30, 99, 0.1);
}
.barra-topo {
  height: 60px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #fafafa;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  border-bottom: 1px solid #222;
  z-index: 999;
}
#nomeConsultoraAtiva,
#botaoSair {
  line-height: 60px;
}
* {
  box-sizing: border-box;
}
.barra-topo {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
#botaoSair, #nomeConsultoraAtiva {
  margin: 0;
  padding: 0 10px;
  white-space: nowrap;
}
.nome-consultora {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}
.menu-admin {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 220px;
  background: #1c1c1c;
  color: #fafafa;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  font-family: 'Inter', sans-serif;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

/* Título ou logo opcional */
.menu-admin .titulo {
  font-size: 1.1rem;
  font-weight: bold;
  color: #E91E63;
  margin-bottom: 12px;
}

/* Itens de menu */
.menu-admin .item {
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-admin .item:hover {
  background: #292929;
  color: #E91E63;
}
.botao-admin {
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #E91E63, #AD1457);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
}

.botao-admin:hover {
  background: #C2185B;
  transform: translateY(-2px);
}

/* Container do botão e menu */
.painel-admin {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Botão principal (⚙️ Menu Admin) */
.painel-admin > button {
  background: linear-gradient(to right, #E91E63, #AD1457);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
  transition: transform 0.2s ease, background 0.3s ease;
}

.painel-admin > button:hover {
  transform: scale(1.04);
  background: #C2185B;
}

/* Menu com opções (flutuante) */
.menu-admin {
  background: #1e1e1e;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Botões internos do menu */
.menu-admin button {
  background: #2a2a2a;
  color: #fafafa;
  font-size: 0.95rem;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-admin button:hover {
  background: #333;
  color: #E91E63;
}
.painel-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1c1c1c;
  border-radius: 16px;
  padding: 32px 24px;
  width: 95%;
  max-width: 540px;
  color: #fafafa;
  z-index: 1100;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  font-family: 'Inter', sans-serif;
  animation: fadeInModal 0.35s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.painel-conteudo h2,
.painel-conteudo h3 {
  text-align: center;
  color: #E91E63;
  margin-bottom: 20px;
}

.painel-conteudo input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
}

.painel-conteudo label {
  color: #ccc;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* Botões do modal */
.painel-conteudo button {
  background: linear-gradient(to right, #E91E63, #AD1457);
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 12px;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s ease;
}

.painel-conteudo button:hover {
  background: #C2185B;
}
.lista-consultoras-verificacao {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.consultora-card {
  background: #2a2a2a;
  padding: 16px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.consultora-info {
  flex: 1;
  min-width: 200px;
}

.consultora-info strong {
  color: #E91E63;
}

.consultora-acoes {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.consultora-acoes button {
  background: #444;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consultora-acoes button:hover {
  background: #E91E63;
}
body {
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
}
.barra-topo,
#topoConsultora {
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
#nomeConsultoraAtiva,
#botaoSair {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60vw; /* ou o que couber bem */
}
@media (max-width: 480px) {
  .barra-topo,
  #topoConsultora {
    padding: 0 12px;
  }

  #botaoSair {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}
#topoConsultora,
.barra-topo {
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}
html, body {
  padding: 0;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}
button {
  max-width: 100%;
  word-break: break-word;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.barra-topo,
#topoConsultora {
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  overflow-x: hidden;
}
#nomeConsultoraAtiva,
#botaoSair {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60vw;
}
html, body {
  margin: 0;
  padding: 0;
  background: #ffffff; /* ou a cor real do fundo */
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body > *:first-child {
  margin-top: 0 !important;
}
#topoConsultora {
  margin-top: 0 !important;
  top: 0;
}
.painel-conteudo {
  max-height: 80vh; /* controla a altura máxima da modal */
  overflow-y: auto; /* permite rolar se o conteúdo passar */
  padding-right: 8px; /* evita cortar conteúdo ao lado */
}
#painelVerificarConsultoras .painel-conteudo {
  max-height: 80vh;
  overflow-y: auto;
}
.painel-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100vh;
  overflow: hidden; /* evita a modal em si de estourar */
  z-index: 1000;
}
.lista-pedidos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  max-height: 70vh;
  overflow-y: auto;
}

.pedido-card {
  background: #2a2a2a;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.pedido-card strong {
  color: #E91E63;
}
.fechar-x {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}

.lista-pedidos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 65vh;
  overflow-y: auto;
  padding: 8px;
  margin-top: 12px;
}

.pedido-card {
  background: #2a2a2a;
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
}
#modalBrinde {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#modalBrinde .modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
/* 🔲 Overlay escuro por trás do pop-up */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 0;
}

/* 📦 Conteúdo central do pop-up */
.popup-conteudo {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  position: relative;
  max-width: 620px;
  width: 90%;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
  text-align: center;
}

/* ❌ Botão de fechar "X" */
.fechar-popup {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #777;
}

/* 🖼️ Imagem do pop-up */
.popup-conteudo img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0px;
}
.selo-pix-popup {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffe600;
  color: #a00000;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  animation: piscarPix 1s infinite;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  z-index: 10000;
}

@keyframes piscarPix {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.selo-pix-rodape {
  margin-top: 14px;
  background-color: #ffe600;
  color: #a00000;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 22px;
  animation: piscarPix 1.2s infinite;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: inline-block;
}

/* Animação de piscar */
@keyframes piscarPix {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.selo-pix-rodape {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f6f6f3;
  color: #000000;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 24px;
  animation: piscarPix 1.2s infinite;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 10001;
}

@keyframes piscarPix {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.selo-pix-rodape {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fcfcf9;
  color: #000000;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
  animation: piscarPix 1.2s infinite;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  z-index: 10001;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .selo-pix-rodape {
    font-size: 14px;
    padding: 5px 10px;
  }
}
/* Selo de promoção piscando */
.card-produto.promocao::before {
  content: "PROMOÇÃO";
  position: absolute;
  top: 8px;
  left: 8px;
  background: #de1717;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  animation: piscar 1s infinite;
  z-index: 2;
}



/* Garante que o selo fique no topo do card */
.card-produto {
  position: relative;
}
/* Selo piscando para coleção Bazar */
#colecao-bazar .card-produto::before {
  content: "OFERTA";
  position: absolute;
  top: 6px;
  left: 6px;
  background: #ff0000;
  color: #fff;
  font-size: 0.6rem;
  font-weight: bold;
  padding: 0.5px 3px;
  border-radius: 4px;

}

/* Animação de piscar */
@keyframes piscarOferta {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Garante que o selo funcione bem */
#colecao-bazar .card-produto {
  position: relative;
}
/* Destacar coleção do Bazar */
#colecao-bazar {
  background: linear-gradient(135deg, #fff5f5, #ffeaea);
  padding: 30px 20px;
  border: 3px solid #ff4d4d;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  animation: destaqueBazar 3s infinite;
}

/* Animação de leve pulsação */
@keyframes destaqueBazar {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 0, 0, 0.6); }
}



/* Ícone do Bazar na vitrine */
.card-colecao.bazar {
  border: 3px solid #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  animation: brilhoBazar 2s infinite;
  position: relative;
}

/* Animação de brilho */
@keyframes brilhoBazar {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.4); transform: scale(1); }
  50% { box-shadow: 0 0 25px rgba(255, 0, 0, 0.7); transform: scale(1.05); }
}

/* Selo "OFERTA" no ícone */
.card-colecao.bazar::before {
  content: "OFERTAS";
  position: absolute;
  top: 5px;
  left: 5px;
  background: #ff0000;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 4px;
  animation: piscarSelo 1s infinite;
}

@keyframes piscarSelo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* Grade de produtos do Bazar */
.area-produtos.bazar .produtos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas no celular */
  gap: 10px;
  padding: 8px;
}

/* Responsivo: mais colunas em telas maiores */
@media (min-width: 600px) {
  .area-produtos.bazar .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .area-produtos.bazar .produtos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card compacto */
.area-produtos.bazar .card-produto {
  width: 100%;
  max-width: 100px;
  height: 210px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
  background-color: #fff;
  overflow: hidden;
}

/* Imagem menor */
.area-produtos.bazar .card-produto img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background-color: #f0f0f0;
}

/* Informações reduzidas */
.area-produtos.bazar .card-produto-info {
  padding: 5px;
  text-align: center;
}

.area-produtos.bazar .card-produto-info h4 {
  font-size: 0.85em;
  margin: 2px 0;
}

.area-produtos.bazar .card-produto-info .preco {
  font-size: 0.9em;
  font-weight: bold;
  color: #444;
}
/* Grade de produtos responsiva */
.area-produtos .produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* padrão para desktop */
  gap: 12px;
  padding: 10px;
  justify-content: center;
}

/* Força 2 colunas no celular */
@media (max-width: 600px) {
  .area-produtos .produtos-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no celular */
  }
}

/* Card de produto com altura maior */
.area-produtos .card-produto {
  width: 100%;
  max-width: 140px;
  height: 260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
}

/* Imagem */
.area-produtos .card-produto img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background-color: #f0f0f0;
}

/* Informações */
.area-produtos .card-produto-info {
  padding: 6px;
  text-align: center;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-produtos .card-produto-info h4 {
  font-size: 0.85em;
  margin: 4px 0;
  line-height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 2.4em;
}

.area-produtos .card-produto-info .preco {
  font-size: 0.9em;
  font-weight: bold;
  color: #04bd04;
  margin-top: 4px;
}

/* Aplica a todos os tipos de card */
.area-produtos.grade-fixa .card-produto,
.area-produtos.bazar .card-produto,
.area-produtos.cropped .card-produto,
.area-produtos.sutia .card-produto {
  all: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 140px;
  height: 260px;
  margin: 0 auto;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
}
.card-produto-info .preco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.preco-original {
  font-size: 0.85em;
  color: #000000;
  text-decoration: line-through;
}

.preco-promocional {
  font-size: 1em;
  font-weight: bold;
  color: #d60000;
}
.titulo-colecoes {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6em; /* letras menores */
  font-weight: 300; /* mais fino e delicado */
  color: #ffffff;
  background-color: #000000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 0;
  margin: 0 0 30px;
  position: relative;
}


.card-produto.promocao .preco {
  color: #d60000; /* vermelho vibrante */
  font-weight: bold;
}
@keyframes pulsar {
  0% {
    box-shadow: 0 0 0px rgba(214, 0, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 12px rgba(214, 0, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 0px rgba(214, 0, 0, 0.6);
  }
}

.card-produto.promocao {
  animation: pulsar 1.5s infinite;
  border: 2px solid #d60000;
  border-radius: 6px;
}
.aviso-bazar {
  background-color: #fff8e1;
  color: #000;
  border-left: 4px solid #ff9800;
  padding: 12px 16px;
  margin: 20px auto;
  max-width: 600px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95em;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}
.esgotado {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}
.botao-tamanho {
  margin: 4px;
  padding: 6px 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}

.botao-tamanho.esgotado {
  background-color: #eee;
  color: #999;
  cursor: not-allowed;
}
.indisponivel {
  text-decoration: line-through;
  opacity: 0.5;
  pointer-events: none;
}
.opcao-btn.indisponivel {
  text-decoration: line-through;
  opacity: 0.5;
  pointer-events: none;
}
#precoTotal.destacado {
  animation: destaqueTotal 0.6s ease;
  color: #d35400;
  font-weight: bold;
}

@keyframes destaqueTotal {
  0% { transform: scale(1); color: #d35400; }
  50% { transform: scale(1.2); color: #e67e22; }
  100% { transform: scale(1); color: #d35400; }
}
#cartModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.cartModal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.cart-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.pedido-minimo-aviso {
  color: #d9534f;
  font-weight: bold;
  margin-top: 10px;
}
#cartModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.cartModal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.cart-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.pedido-minimo-aviso {
  color: #d9534f;
  font-weight: bold;
  margin-top: 10px;
}

#modal-pedido {
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  border-radius: 8px;
}
#modal-pedido button {
  margin: 10px 5px;
}

.pedido-estilizado {
  font-family: Arial, sans-serif;
  color: #000;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}

.pedido-estilizado h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pedido-estilizado ul {
  list-style: none;
  padding-left: 0;
}

.pedido-estilizado li {
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}
.pedido-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 6px;
}

.pedido-card button {
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.pedido-card button:hover {
  background-color: #005fa3;
}
.pedido-card {
  background: #000000;
  border: 1px solid #000000;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 6px;
}
.pedido-card button {
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}
.pedido-card button:hover {
  background-color: #005fa3;
}
.cart-item {
  margin-bottom: 1rem;
}

.cart-item input[type="number"] {
  width: 60px;
  margin-left: 5px;
}
.cartModal {
  background: #fefefe;
  padding: 2rem;
  border-radius: 16px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-item {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.cart-item .quantidade-controle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantidade-controle span {
  font-size: 1rem;
  min-width: 24px;
  text-align: center;
}

.cart-item .remover-btn {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #ff4d4d;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.cart-buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-buttons button:first-child {
  background: #ccc;
}

.cart-buttons button:last-child {
  background: #28a745;
  color: white;
}

.cart-buttons button:last-child:hover {
  background: #218838;
}

#cartTotal {
  font-size: 1.3rem;
  font-weight: bold;
  color: #444;
  margin-top: 1rem;
}
.quantidade-controle button {
  background: #000;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.quantidade-controle button:hover {
  background: #333;
}
.remover-btn {
  align-self: flex-end;
  background: #ff4d4d;
  color: rgb(0, 0, 0);
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.remover-btn:hover {
  background: #e60000;
  transform: scale(1.05);
}
.quantidade-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-quantidade {
  background-color: #eee;
  border: none;
  padding: 6px 12px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.btn-quantidade:hover {
  background-color: #ccc;
}

#quantidade {
  width: 50px;
  text-align: center;
  font-size: 16px;
}
