.btn-party-primary {
  background: linear-gradient(135deg, #ff6b9d, #c44cff);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-party-primary:hover {
  background: linear-gradient(135deg, #ff5a8c, #b23cef);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-party-secondary {
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-party-secondary:hover {
  background: linear-gradient(135deg, #218838, #1ba085);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.view-transition {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

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

.categoria-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.categoria-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b9d;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.produto-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.produto-card:hover {
  transform: translateY(-3px);
  border-color: #dee2e6;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-header {
  position: relative;
  overflow: hidden;
}

.section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  .display-3 {
    font-size: 2rem !important;
  }

  .lead.fs-4 {
    font-size: 1.1rem !important;
  }

  .btn-lg {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }

  .card-body.p-5 {
    padding: 2rem !important;
  }

  .display-1 {
    font-size: 3rem !important;
  }
}

.emoji-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.notification {
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.loading-spinner {
  width: 3rem;
  height: 3rem;
  border: 0.3rem solid rgba(255, 107, 157, 0.3);
  border-top: 0.3rem solid #ff6b9d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

html {
  scroll-behavior: smooth;
}

.filtros-container {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 1rem;
  border: 1px solid #dee2e6;
}

.filtros-container .form-select {
  border-radius: 0.5rem;
  border: 2px solid #e9ecef;
  transition: border-color 0.3s ease;
}

.filtros-container .form-select:focus {
  border-color: #ff6b9d;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #6c757d;
}

.empty-state .empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.categoria-modal-card {
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.categoria-modal-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b9d;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.categoria-modal-card:active {
  transform: translateY(-2px);
}

.modal.fade .modal-dialog {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

.categoria-modal-card .badge {
  transition: all 0.3s ease;
}

.categoria-modal-card:hover .badge {
  background-color: #ff6b9d !important;
  transform: scale(1.1);
}

.filter-indicator {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1060;
  animation: slideDownFade 0.5s ease;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.produto-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produto-popup.show {
  opacity: 1;
}

.produto-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.produto-popup-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 800px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: scale(0.7) rotateY(-15deg) rotateX(5deg) translateZ(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
}

.produto-popup.show .produto-popup-content {
  transform: scale(1) rotateY(0deg) rotateX(0deg) translateZ(0);
}

.produto-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.produto-popup-close:hover {
  background: #ff6b9d;
  color: white;
  transform: scale(1.1) rotate(90deg);
}

.produto-popup-body {
  display: flex;
  min-height: 500px;
}

.produto-popup-imagem {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.produto-popup-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produto-popup:hover .produto-popup-imagem img {
  transform: scale(1.05);
}

.produto-popup-info {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.produto-popup-categoria {
  margin-bottom: 15px;
}

.produto-popup-categoria .badge {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 20px;
}

.produto-popup-nome {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.produto-popup-descricao {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.produto-popup-preco-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 107, 157, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(255, 107, 157, 0.2);
}

.produto-popup-preco {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b9d;
  text-shadow: 0 2px 4px rgba(255, 107, 157, 0.3);
}

.produto-popup-acoes {
  display: flex;
  gap: 15px;
}

.produto-popup-acoes .btn {
  flex: 1;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.produto-popup-acoes .btn-primary {
  background: linear-gradient(135deg, #ff6b9d, #c44cff);
  border: none;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.produto-popup-acoes .btn-primary:hover {
  background: linear-gradient(135deg, #ff5a8c, #b23cef);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.produto-popup-acoes .btn-primary:active {
  transform: translateY(0);
}

.produto-popup-imagem::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.produto-popup:hover .produto-popup-imagem::before {
  left: 100%;
}

@media (max-width: 768px) {
  .produto-popup-content {
    width: 95vw;
    max-height: 95vh;
  }

  .produto-popup-body {
    flex-direction: column;
    min-height: auto;
  }

  .produto-popup-imagem {
    height: 250px;
  }

  .produto-popup-info {
    padding: 20px;
  }

  .produto-popup-nome {
    font-size: 1.5rem;
  }

  .produto-popup-preco {
    font-size: 2rem;
  }

  .produto-popup-preco-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .produto-popup-acoes {
    flex-direction: column;
  }
}

@keyframes popupFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotateY(-30deg) rotateX(10deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) rotateY(-5deg) rotateX(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg) rotateX(0deg);
  }
}

.produto-foto {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.produto-foto:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.produto-foto::after {
  content: "🔍 Clique para ver detalhes";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.produto-foto:hover::after {
  opacity: 1;
}

.carrinho-lateral {
  position: fixed;
  top: 0;
  right: -480px;
  width: 480px;
  height: 100vh;
  z-index: 10000;
  transition: right 0.3s ease;
  display: flex;
}

.carrinho-lateral.open {
  right: 0;
}

.carrinho-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.carrinho-lateral.open .carrinho-overlay {
  opacity: 1;
  pointer-events: all;
}

.carrinho-content {
  width: 480px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.carrinho-header {
  padding: 25px 30px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #ff6b9d, #c44cff);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carrinho-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-close-cart {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 16px;
}

.btn-close-cart:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(90deg);
}

.carrinho-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.carrinho-items {
  padding: 25px 30px;
}

.carrinho-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.carrinho-empty i {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.carrinho-empty p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #666;
}

.carrinho-empty small {
  color: #999;
}

.carrinho-item {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  grid-template-rows: auto auto;
  gap: 15px;
  align-items: center;
  padding: 20px 18px;
  margin-bottom: 18px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.carrinho-item:hover {
  border-color: #ff6b9d;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.item-foto {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.item-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-info {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.item-nome {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #333;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-preco {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

.item-controls {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  margin-top: 8px;
}

.btn-quantidade {
  background: #ff6b9d;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(255, 107, 157, 0.3);
}

.btn-quantidade:hover {
  background: #ff5a8c;
  transform: scale(1.1);
}

.quantidade {
  min-width: 35px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  background: rgba(255, 107, 157, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
  border: 2px solid rgba(255, 107, 157, 0.2);
}

.item-total {
  grid-column: 3;
  grid-row: 1;
  font-weight: 800;
  color: #ff6b9d;
  font-size: 1.15rem;
  text-align: right;
  justify-self: end;
  text-shadow: 0 1px 2px rgba(255, 107, 157, 0.2);
}

.btn-remove-item {
  grid-column: 4;
  grid-row: 1;
  background: #dc3545;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
  justify-self: end;
}

.btn-remove-item:hover {
  background: #c82333;
  transform: scale(1.1);
}

.carrinho-footer {
  padding: 25px 30px;
  border-top: 2px solid #f0f0f0;
  background: #f8f9fa;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.carrinho-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px 18px;
  background: white;
  border-radius: 12px;
  border: 2px solid #ff6b9d;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
}

.total-label {
  font-weight: 600;
  color: #333;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

.total-value {
  font-weight: 800;
  color: #ff6b9d;
  font-size: 1.6rem;
  text-shadow: 0 2px 4px rgba(255, 107, 157, 0.3);
  letter-spacing: 0.5px;
}

.btn-enviar-orcamento {
  width: 100%;
  padding: 18px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.btn-enviar-orcamento:hover {
  background: linear-gradient(135deg, #218838, #1ba085);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.btn-enviar-orcamento:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .carrinho-lateral {
    width: 420px;
    right: -420px;
  }

  .carrinho-content {
    width: 420px;
  }
}

@media (max-width: 768px) {
  .carrinho-lateral {
    width: 100vw;
    right: -100vw;
  }

  .carrinho-lateral.open {
    right: 0;
  }

  .carrinho-content {
    width: 100vw;
  }

  .carrinho-header {
    padding: 20px 25px;
  }

  .carrinho-header h3 {
    font-size: 1.25rem;
  }

  .carrinho-items {
    padding: 20px 25px;
  }

  .carrinho-item {
    grid-template-columns: 60px 1fr auto auto;
    gap: 12px;
    padding: 16px 15px;
    margin-bottom: 15px;
  }

  .item-foto {
    width: 60px;
    height: 60px;
  }

  .item-nome {
    font-size: 0.95rem;
  }

  .item-preco {
    font-size: 0.85rem;
  }

  .item-controls {
    gap: 8px;
    margin-top: 6px;
  }

  .btn-quantidade {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .quantidade {
    min-width: 30px;
    font-size: 0.95rem;
    padding: 4px 8px;
  }

  .item-total {
    font-size: 1rem;
  }

  .btn-remove-item {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .carrinho-footer {
    padding: 20px 25px;
  }

  .carrinho-total {
    padding: 16px 15px;
    margin-bottom: 20px;
  }

  .total-label {
    font-size: 1.05rem;
  }

  .total-value {
    font-size: 1.4rem;
  }

  .btn-enviar-orcamento {
    padding: 16px;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .carrinho-header {
    padding: 18px 20px;
  }

  .carrinho-header h3 {
    font-size: 1.15rem;
  }

  .carrinho-items {
    padding: 18px 20px;
  }

  .carrinho-item {
    grid-template-columns: 55px 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 10px;
    padding: 14px 12px;
  }

  .item-foto {
    width: 55px;
    height: 55px;
  }

  .item-info {
    grid-column: 2 / 4;
    grid-row: 1;
  }

  .item-controls {
    grid-column: 1 / 3;
    grid-row: 3;
    justify-self: start;
    margin-top: 8px;
  }

  .item-total {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    margin-top: 4px;
  }

  .btn-remove-item {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }

  .carrinho-footer {
    padding: 18px 20px;
  }
}

.carrinho-item {
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-bs-theme="dark"] .carrinho-content {
  background: #2d3748;
  color: white;
}

[data-bs-theme="dark"] .carrinho-header {
  border-bottom-color: #4a5568;
}

[data-bs-theme="dark"] .carrinho-item {
  background: #4a5568;
  color: white;
}

[data-bs-theme="dark"] .item-nome {
  color: white;
}

[data-bs-theme="dark"] .item-preco {
  color: #a0aec0;
}

[data-bs-theme="dark"] .quantidade {
  color: white;
}

[data-bs-theme="dark"] .carrinho-footer {
  background: #4a5568;
  border-top-color: #4a5568;
}

[data-bs-theme="dark"] .carrinho-total {
  background: #2d3748;
  border-color: #ff6b9d;
}

[data-bs-theme="dark"] .total-label {
  color: white;
}

[data-bs-theme="dark"] .carrinho-empty {
  color: #a0aec0;
}

[data-bs-theme="dark"] .carrinho-empty p {
  color: #e2e8f0;
}

.dropdown-categorias {
  position: relative;
  display: inline-block;
  z-index: 99999;
}

.dropdown-categorias summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-categorias summary::-webkit-details-marker {
  display: none;
}

.dropdown-categorias summary::marker {
  display: none;
}

.dropdown-categorias[open] summary .bi-chevron-down {
  transform: rotate(180deg);
}

.dropdown-content {
  position: fixed;
  background: white;
  border: 2px solid #ff6b9d;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 999999;
  min-width: 280px;
  max-height: 400px;
  overflow-y: auto;
  animation: dropdownFadeIn 0.3s ease;
}

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

.categoria-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

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

.categoria-item:hover {
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
}

.categoria-item.destaque {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.1),
    rgba(196, 76, 255, 0.1)
  );
  border-bottom: 2px solid #ff6b9d;
  font-weight: 600;
}

.categoria-item.destaque:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.2),
    rgba(196, 76, 255, 0.2)
  );
}

.categoria-nome {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  width: 100%;
  text-align: left;
  transition: color 0.3s ease;
}

.dropdown-divider {
  height: 2px;
  background: linear-gradient(135deg, #ff6b9d, #c44cff);
  margin: 8px 0;
}

@media (max-width: 768px) {
  .dropdown-content {
    min-width: 250px;
    max-height: 300px;
  }

  .categoria-item {
    padding: 12px 16px;
  }

  .categoria-nome {
    font-size: 0.95rem;
  }
}

[data-bs-theme="dark"] .dropdown-content {
  background: #2d3748;
  border-color: #ff6b9d;
}

[data-bs-theme="dark"] .categoria-item {
  border-bottom-color: #4a5568;
}

[data-bs-theme="dark"] .categoria-item:hover {
  background: rgba(255, 107, 157, 0.2);
}

[data-bs-theme="dark"] .categoria-nome {
  color: white;
}

[data-bs-theme="dark"] .categoria-item.destaque {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.2),
    rgba(196, 76, 255, 0.2)
  );
}

[data-bs-theme="dark"] .categoria-item.destaque:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.3),
    rgba(196, 76, 255, 0.3)
  );
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 1s linear infinite;
}
