section#carousels {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
section#carousels li {
  flex: 0 0 100%;
  background-size: cover;
  height: calc(100vh - 125px);
  align-content: center;
  justify-content: center;
}
section#carousels li .data {
  text-align: center;
}
section#carousels li .data h2 {
  padding: 0 0 20px 0;
  color: white;
}
section#carousels li .data .btn {
  border: 2px solid white;
  background: transparent;
  color: white;
  transition: 0.3s;
}
section#carousels li .data .btn:hover {
  background: white;
  color: #303030;
}
section#carousels button {
  display: none;
  position: absolute;
  top: calc((100vh - 150px) / 2);
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50px;
  padding: 8px 20px;
  transition: 0.3s;
}
section#carousels button .arrow span::before,
section#carousels button .arrow span::after {
  background-color: white !important;
}
section#carousels button.previous {
  left: 20px;
}
section#carousels button.previous .arrow span::before,
section#carousels button.previous .arrow span::after {
  left: auto !important;
}
section#carousels button.next {
  right: 20px;
}

section#carousels:hover button {
  display: block;
}

section#features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: calc(100vh - 125px);
}
section#features li {
  overflow: hidden;
  position: relative;
}
section#features li .pic {
  background-size: cover;
  background-position: center;
  height: 100%;
  transition: 0.3s;
}
section#features li .data {
  height: 100%;
  width: 100%;
  background-color: transparent;
  position: absolute;
  top: 0;
  align-content: end;
  padding: 40px;
}
section#features li .data h2 {
  color: black;
  margin: 0;
  padding: 8px 14px;
  border: 2px solid white;
  width: max-content;
  font-size: 16px;
  background: white;
}
section#features li .data p {
  display: none;
}
section#features li:hover .pic {
  scale: 1.2;
}
section#features li:hover .data {
  background-color: rgba(0, 0, 0, 0.25);
}
section#features li:hover .data h2 {
  background: transparent;
  color: white;
  border-color: white;
  font-size: 20px;
  padding: 14px 20px;
}
section#features li:hover .data p {
  font-size: 20px;
  color: white;
  line-height: 28px;
  display: block;
  font-weight: 600;
}

section#features.impar li:first-child {
  grid-row-start: 1;
  grid-row-end: 3;
}

section#collections {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
section#collections a {
  display: block;
  flex: 0 0 calc((100% - 40px) / 5);
  height: 60vh;
  background-size: cover;
  transition: 0.3s;
  position: relative;
}
section#collections a h2 {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: white;
}
section#collections a:first-child {
  background: orangered;
  color: white;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  text-transform: uppercase;
  flex: 0 0 40px !important;
  font-size: 20px;
  font-weight: bold;
  align-content: center;
  text-align: center;
  letter-spacing: 12px;
}
section#collections a:hover {
  flex: 0 0 30%;
}

section.list,
.favorites-home,
.history-home {
  padding: 20px;
}
section.list .header,
.favorites-home .header,
.history-home .header {
  display: grid;
  grid-template-columns: auto 1fr 24px auto 24px;
  gap: 20px;
  align-items: center;
}
section.list .header h2,
.favorites-home .header h2,
.history-home .header h2 {
  font-size: 48px;
}
section.list .header a,
.favorites-home .header a,
.history-home .header a {
  color: royalblue;
  font-size: 16px;
  font-weight: 500;
  width: max-content;
}

section#carousels button,
section.list button,
.favorites-home button,
.history-home button {
  border: none;
  outline: none;
  background: transparent;
  font-size: 34px;
  font-weight: bold;
  cursor: pointer;
}
section#carousels button span.text,
section.list button span.text,
.favorites-home button span.text,
.history-home button span.text {
  top: 12px;
}
section#carousels button .arrow span,
section.list button .arrow span,
.favorites-home button .arrow span,
.history-home button .arrow span {
  display: inline-block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  position: relative;
  cursor: pointer;
}
section#carousels button .arrow span::before,
section#carousels button .arrow span::after,
section.list button .arrow span::before,
section.list button .arrow span::after,
.favorites-home button .arrow span::before,
.favorites-home button .arrow span::after,
.history-home button .arrow span::before,
.history-home button .arrow span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 15px;
  background-color: #333;
  top: 0;
  transition: top 0.1s ease;
}
section#carousels button.previous span::before,
section.list button.previous span::before,
.favorites-home button.previous span::before,
.history-home button.previous span::before {
  left: 0;
  top: -13px;
  transform: rotate(45deg);
}
section#carousels button.previous span::after,
section.list button.previous span::after,
.favorites-home button.previous span::after,
.history-home button.previous span::after {
  left: 0;
  top: -6px;
  transform: rotate(-45deg);
}
section#carousels button.next span::before,
section.list button.next span::before,
.favorites-home button.next span::before,
.history-home button.next span::before {
  left: 8px;
  top: -13px;
  transform: rotate(-45deg);
}
section#carousels button.next span::after,
section.list button.next span::after,
.favorites-home button.next span::after,
.history-home button.next span::after {
  left: 8px;
  top: -6px;
  transform: rotate(45deg);
}

.favorites-home {
  background: #f5f5f5;
  padding-bottom: 60px;
  margin: 60px 0 0 0;
}

.history-home {
  background: #eee;
  padding-bottom: 60px;
}

section#collection {
  padding: 20px;
}
section#collection .header span {
  margin: 0 0 20px 0;
  display: block;
}
section#collection .header span a {
  color: black;
  margin: 0 10px;
}
section#collection .header span a:first-child {
  margin: 0 10px 0 0;
}
section#collection .header span a:last-child {
  margin: 0 0 0 10px;
}
section#collection .header h2 {
  font-size: 48px;
  margin: 0;
}
section#collection .header p {
  color: gray;
}
section#collection .all {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 40px 0 80px 0;
}
section#collection .all a {
  flex: 0 0 180px;
  border-radius: 5px;
  background: white;
  z-index: 1;
  transition: 0.3s;
  opacity: 0.8;
}
section#collection .all a img {
  width: 100%;
  border-radius: 5px 5px 0 0;
  aspect-ratio: 1/1;
  object-fit: cover;
}
section#collection .all a h4 {
  margin: 0;
  font-size: 14px;
  color: black;
  padding: 12px 18px;
  text-align: left;
}
section#collection .all a.active {
  background: black !important;
  opacity: 1;
}
section#collection .all a.active h4 {
  color: white;
}
section#collection .all a:hover {
  opacity: 1;
}
section#collection .all::after {
  background: #eee;
  width: 100%;
  height: 160px;
  content: "";
  position: absolute;
  left: 0;
  margin-top: 80px;
}

section#filters {
  padding: 40px 20px;
}
section#filters h2 {
  flex: 0 0 100%;
  font-size: 34px;
  margin: 0 0 30px 0;
  text-align: left;
  font-weight: bold;
}
section#filters h2 button {
  outline: none;
  border: none;
  background: transparent;
  font-size: 34px;
  color: #aaa;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  padding: 0 0 5px 0;
  margin: 0 10px 0 0;
  cursor: pointer;
}
section#filters h2 button.active {
  color: black;
  border-color: black;
}
section#filters .box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
section#filters .box a {
  flex: 0 0 180px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: 0.3s;
}
section#filters .box a img {
  width: 100%;
  filter: grayscale(1);
  transition: 0.3s;
  aspect-ratio: 1;
  object-fit: contain;
}
section#filters .box a h4 {
  text-align: center;
  color: black;
  font-size: 24px;
}
section#filters .box a:hover {
  border-color: black;
}
section#filters .box a:hover img {
  filter: none;
}

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