
.listContainer {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.listContainer.collapsed {
  max-height: 0;
}
.swiper {
  width: 100%;
  height: 400px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

:root {
  --cor-primaria: #FF8204;
  --cor-hover: #e67400;
}

.custom-scroll::-webkit-scrollbar {
  width: 10px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: #2d3748;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: var(--cor-primaria);
  border-radius: 5px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--cor-hover);
}

@keyframes pulsar {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
  max-height: 300px;
}

.swiper {
  width: 100%;
  height: 400px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--cor-primaria) !important;
}

.swiper-pagination-bullet-active {
  background: var(--cor-primaria) !important;
}

.category-card {
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.washer-card {
  background: linear-gradient(135deg, rgba(55, 65, 81, 0.7), rgba(75, 85, 99, 0.7));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 130, 4, 0.2);
  transition: all 0.3s ease;
}

.washer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  border-color: var(--cor-primaria);
}

.norma-badge {
  background: linear-gradient(45deg, var(--cor-primaria), #ff9933);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-block;
  margin: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--cor-primaria) !important;
}

.swiper-pagination-bullet-active {
  background: var(--cor-primaria) !important;
}

.category-card {
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.custom-scroll::-webkit-scrollbar {
  width: 4px;
}

.custom-scroll{
  scroll-behavior: smooth;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #f6803b;
}

.custom-scroll::-webkit-scrollbar-track {
  background-color: #d1d5db;
}

@font-face {
  font-family: 'Lucida';
  src: url('fonts/lucida-regular.ttf') format('truetype');
  font-display: swap;
}

:root {
  --cor-primaria: #FF8204;
  --cor-secundaria: #ffaa00;
  --cor-terciaria: #e67300;
  --cor-hover: #ff9930;
  --cor-sombra: rgba(0, 0, 0, 0.15);
}

.font-lucida {
  font-family: 'Lucida', 'Roboto', sans-serif;
}

@keyframes flutuar {
  0%, 100% {
      transform: translateY(0) rotate(0deg);
  }
  25% {
      transform: translateY(-15px) rotate(-1deg);
  }
  50% {
      transform: translateY(0) rotate(0deg);
  }
  75% {
      transform: translateY(15px) rotate(1deg);
  }
}

@keyframes brilho {
  0%, 100% {
      filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
  }
  50% {
      filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
  }
}

@keyframes pulsar {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
}

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

@keyframes girar {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

/* Animações para imagens */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}

/* Menu mobile */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
  max-height: 300px;
}

/* Animação para elementos */
.fade-in {
  animation: aparecer 0.8s ease forwards;
}
