:root {
  --action-figures: #D86436;
  --engenharia: #5500FF;
  --joalheria: #FFD400;
  --odontologia: #E0EAF3;
  --uso-geral: #C1EF00;
}

#categories-slider {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  padding-bottom: 10rem;
}
#categories-slider .header {
  position: relative;
  width: 100%;
  height: 65px;
}
#categories-slider .header .navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  width: fit-content;
  margin: 0 auto;
  border-radius: 0 0 0.5rem 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  padding-left: 2rem;
}
#categories-slider .header .navbar .title {
  font-family: "Mont", sans-serif;
  font-weight: 800;
  line-height: 0;
}
#categories-slider .header .navbar .categories-navmenu {
  display: flex;
}
#categories-slider .header .navbar .categories-navmenu span {
  display: inline-block;
}
#categories-slider .header .navbar .categories-navmenu span a {
  display: block;
  width: 68px;
  height: 65px;
  margin: 0;
  text-align: center;
  padding: 0.25rem 0.5rem;
  background: #000;
}
#categories-slider .header .navbar .categories-navmenu span:last-child a {
  border-bottom-right-radius: 0.5rem;
}
#categories-slider .header .navbar .categories-navmenu span .action-figures {
  background: var(--action-figures);
}
#categories-slider .header .navbar .categories-navmenu span .engenharia {
  background: var(--engenharia);
}
#categories-slider .header .navbar .categories-navmenu span .joalheria {
  background: var(--joalheria);
}
#categories-slider .header .navbar .categories-navmenu span .odontologia {
  background: var(--odontologia);
}
#categories-slider .header .navbar .categories-navmenu span .odontologia svg {
  filter: contrast(0.5);
}
#categories-slider .header .navbar .categories-navmenu span .uso-geral {
  background: var(--uso-geral);
}
#categories-slider .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#categories-slider .body .slide {
  grid-template-columns: 1fr 1fr;
  padding: 1.5rem;
}
#categories-slider .body .slide .cat-image {
  text-align: right;
}
#categories-slider .body .slide .category-content {
  max-width: 800px;
}
#categories-slider .body .slide .category-content .product-infos {
  display: grid;
  grid-template-areas: "span span span" "title title title" "subt subt seals" "desc desc seals";
  grid-template-columns: 1fr 2fr 1fr;
}
#categories-slider .body .slide .category-content .product-infos span {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  line-height: 1rem;
  grid-area: span;
}
#categories-slider .body .slide .category-content .product-infos h2 {
  font-family: "Mont", sans-serif;
  font-size: clamp(3rem, 2vw + 2rem, 4.375rem);
  line-height: clamp(2rem, 2vw + 2rem, 4.375rem);
  font-weight: 700;
  margin-bottom: 0;
  grid-area: title;
  margin-bottom: 1rem;
}
#categories-slider .body .slide .category-content .product-infos h5 {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  grid-area: subt;
}
#categories-slider .body .slide .category-content .product-infos p {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: 0.875rem;
  margin-bottom: 0;
  grid-area: desc;
  text-align: justify;
}
#categories-slider .body .slide .category-content .product-infos .seals {
  grid-area: seals;
  justify-self: end;
  align-self: self-end;
}
#categories-slider .body .slide .category-content .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(153px, 1fr));
  gap: 0.5rem;
  margin-top: 2rem;
}
#categories-slider .body .slide .category-content .product-grid .product-item {
  position: relative;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
#categories-slider .body .slide .category-content .product-grid .product-item .hover-box {
  display: grid;
  grid-template-areas: "icon name" "excerpt excerpt" "button button";
  grid-template-columns: 45px 1fr;
  gap: 0.5rem;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  background: #f3f3f3;
  padding: 1rem;
  border-radius: 0.5rem;
  min-width: 195px;
}
#categories-slider .body .slide .category-content .product-grid .product-item .hover-box .icon {
  grid-area: icon;
}
#categories-slider .body .slide .category-content .product-grid .product-item .hover-box .product-name {
  grid-area: name;
  font-family: "Mont", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1E51;
  align-self: center;
  text-wrap: nowrap;
}
#categories-slider .body .slide .category-content .product-grid .product-item .hover-box .product-excerpt {
  grid-area: excerpt;
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  color: #0B1E51;
  text-wrap: wrap;
  margin-bottom: 0;
}
#categories-slider .body .slide .category-content .product-grid .product-item .hover-box .product-btn {
  display: inline-block;
  grid-column: 1/3;
  width: fit-content;
  background: #007aff;
  padding-inline: 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-family: "Barlow", sans-serif;
}
#categories-slider .body .slide .category-content .product-grid .product-item:hover .hover-box {
  visibility: visible;
  z-index: 10;
  opacity: 1;
  animation: slideToBottom 2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s 1 normal none running;
}

.slideIndex {
  background: radial-gradient(#0092FF 0%, #2D2EC2 100%);
}
.slideIndex .header .navbar .title {
  color: #fff;
}

#slideIndex {
  display: none;
  text-align: center;
}
#slideIndex h3 {
  font-family: "Mont";
  font-weight: 700;
  font-size: clamp(2rem, 2vw + 1rem, 3.125rem);
  color: #E0EA00;
  margin-top: 3vw;
}
#slideIndex h4 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.85rem);
  font-weight: 400;
  color: #fff;
}
#slideIndex figure {
  margin-top: 3rem;
}

.slideActive {
  display: grid !important;
  animation: slideToBottom 1s cubic-bezier(0.075, 0.82, 0.165, 1) 0s 1 normal none running;
}

.action-figures {
  background: var(--action-figures);
  transition: background 0.5s ease-in-out;
}
.action-figures .header .navbar .title {
  color: #fff;
}

#action-figures {
  display: none;
}
#action-figures .category-content .product-infos span {
  color: #fff;
}
#action-figures .category-content .product-infos h2 {
  color: #E0EA00;
}
#action-figures .category-content .product-infos h5, #action-figures .category-content .product-infos p {
  color: #fff;
}

#engenharia {
  display: none;
}
#engenharia .category-content .product-infos span {
  color: #fff;
}
#engenharia .category-content .product-infos h2 {
  color: #00C3FF;
}
#engenharia .category-content .product-infos h5, #engenharia .category-content .product-infos p {
  color: #fff;
}

#joalheria {
  display: none;
}
#joalheria .category-content .product-infos span {
  color: #0B1E51;
}
#joalheria .category-content .product-infos h2 {
  color: #8600B5;
}
#joalheria .category-content .product-infos h5, #joalheria .category-content .product-infos p {
  color: #0B1E51;
}

#odontologia {
  display: none;
}
#odontologia .category-content .product-infos span {
  color: #0B1E51;
}
#odontologia .category-content .product-infos h2 {
  color: #0B1E51;
}
#odontologia .category-content .product-infos h5, #odontologia .category-content .product-infos p {
  color: #0B1E51;
}

#uso-geral {
  display: none;
}
#uso-geral .category-content .product-infos span {
  color: #0B1E51;
}
#uso-geral .category-content .product-infos h2 {
  color: #5500FF;
}
#uso-geral .category-content .product-infos h5, #uso-geral .category-content .product-infos p {
  color: #0B1E51;
}

.engenharia {
  background: var(--engenharia);
  transition: background 0.5s ease-in-out;
}
.engenharia .header .navbar .title {
  color: #fff;
}

.joalheria {
  background: var(--joalheria);
  transition: background 0.5s ease-in-out;
}
.joalheria .header .navbar .title {
  color: #5500FF;
}

.odontologia {
  background: var(--odontologia);
  transition: background 0.5s ease-in-out;
}
.odontologia .header .navbar .title {
  color: #0B1E51;
}

.uso-geral {
  background: var(--uso-geral);
  transition: background 0.5s ease-in-out;
}
.uso-geral .header .navbar .title {
  color: #5500FF;
}

@keyframes slideToBottom {
  from {
    transform: translateY(-5rem);
  }
  to {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1201px) {
  .cat-image {
    display: none;
  }
  #categories-slider .body .slide {
    grid-template-columns: 1fr;
  }
  #categories-slider .body .slide .category-content {
    max-width: 1024px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 769px) {
  #categories-slider .header .navbar .title {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  #categories-slider .header .navbar .title {
    display: none;
  }
  #categories-slider .body .slide .category-content {
    margin: auto;
  }
  #categories-slider .body .slide .category-content .product-infos {
    text-align: center;
    grid-template-areas: "linha linha linha" "title title title" "subt subt subt" "seals seals seals";
  }
  #categories-slider .body .slide .category-content .product-infos span {
    grid-area: linha;
  }
  #categories-slider .body .slide .category-content .product-infos p {
    display: none;
  }
  #categories-slider .body .slide .category-content .product-infos .seals {
    justify-self: center;
  }
  #categories-slider .body .slide .category-content .product-grid .product-item:nth-child(even) .hover-box {
    right: 0;
  }
}

/*# sourceMappingURL=home.css.map */
