.todosProdutos {
  text-decoration: none;
  color: white;
}

.text-descartaveis-menu {
  color: #0072aa !important;
}

.indice-categorias h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6d767e;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0;
}

.indice-categorias-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.indice-categoria-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.125);
  background-color: #fff;
  margin: 0 !important;
}

.indice-categoria-item:hover {
  transform: translateY(-5px);
}

.indice-categoria-item .badge-contador {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #f8f9fa;
  color: #6d767e;
  min-width: 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

@media (max-width: 768px) {
  .indice-categorias-lista {
    gap: 6px;
  }

  .indice-categoria-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.ofertas-header {
  background: #00675d;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.ofertas-header h2 {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.ofertas-header h2 i {
  color: #ffffff;
}

.ofertas-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .ofertas-container {
    padding: 16px;
    border-radius: 12px;
  }

  .ofertas-header {
    padding: 16px;
    border-radius: 10px;
  }

  .ofertas-header h2 {
    font-size: 1.2rem;
  }
}

/* Overlay suave para visitantes */
#outerLayer {
  position: relative;
}

.blurred {
  filter: blur(6px);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
  transition: all 0.3s ease;
}

.offer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  padding: 20px;
  padding-top: 0;
  height: 0;
  overflow: visible;
}

.overlay-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(121, 221, 47, 0.03) 100%
  );
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(121, 221, 47, 0.15);
  max-width: 480px;
  border: 1px solid rgba(121, 221, 47, 0.2);
  pointer-events: auto;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overlay-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00675d 0%, #00675d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(121, 221, 47, 0.3);
}

.overlay-card .icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.overlay-card h4 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 12px;
}

.overlay-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 8px;
}

.overlay-card .benefits {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  text-align: left;
}

.overlay-card .benefits-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #6d767e;
  font-size: 0.95rem;
}

.overlay-card .benefits-item:last-child {
  margin-bottom: 0;
}

.overlay-card .benefits-item i {
  color: #00675d;
  margin-right: 10px;
  font-size: 1.1rem;
}

.overlay-card .btn-primary {
  background: linear-gradient(135deg, #00675d 0%, #00675d 100%);
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(121, 221, 47, 0.3);
}

.overlay-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(121, 221, 47, 0.4);
}
