@charset "UTF-8";
* {
  box-sizing: border-box;
  cursor: none;
}

.hidden-header {
  display: none;
}

body {
  margin: 0 auto;
  overflow-x: hidden;
}

main {
  padding-top: 100px;
}

@media all and (max-width: 768px) {
  main {
    padding-bottom: 100px;
    padding-top: 2rem;
  }
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: "Urbanist Black Italic", Arial, Helvetica, sans-serif;
  font-style: italic;
  background: none;
  border: none;
  font-size: clamp(0.6rem, 5vw, 1.5rem);
  display: flex;
  text-decoration: none;
  color: var(--black);
  margin: 0 1rem;
  align-items: center;
  position: relative;
  transition: none;
}

.filter-btn::after,
.filter-btn::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--primary-300);
  transition: width 0.3s, left 0.3s, right 0.3s;
}

.filter-btn::before {
  left: 50%;
}

.filter-btn::after {
  right: 50%;
}

.filter-btn:hover::after,
.filter-btn:hover::before {
  width: 50%;
  color: var(--primary-300);
}

.filter-btn:hover {
  color: var(--primary-300);
  fill: var(--primary-300);
}

.row {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.column {
  flex: 25%;
  height: auto;
  max-width: 300px;
  padding-right: 0.5rem;
}

.column:last-child {
  padding-right: 0;
}

.column img {
  background-color: #b180ff50;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  vertical-align: middle;
  width: 100%;
  max-width: 300px;
  height: auto;
  transition: transform 0.2s ease;
  object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .column {
    flex: 30%;
    max-width: 30%;
  }
}

@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 100%;
    max-width: 100%;
    padding: 0;
  }

  .column img {
    width: 200px;
  }
  .swiper-slide img {
    padding: 1rem;
  }
}

#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#lightbox-info {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: white;
  border-radius: 5px;
  z-index: 10000;
  text-align: center;
}

#lightbox-info h2,
#lightbox-info p {
  color: white !important;
  text-align: center;
}

#lightbox-title {
  font-size: 24px;
  margin-bottom: 10px;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

#lightbox-description {
  font-size: 18px;
  margin-bottom: 0;
  margin: 10px 0 0;
  font-size: 1rem;
}

#lightbox-description .button {
  display: block;
  margin: 1rem auto 0 auto;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.swiper-container {
  width: 80vw;
  height: 80vh;
  margin: 0 auto;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.active-category {
  color: var(--primary-300);
}

.inverso {
  color: var(--neutral-50) !important;
}

.inverso:hover {
  color: var(--primary-300) !important;
}
