@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: white;
  list-style: none;
}

/*Menu*/
body {
  background: linear-gradient(to bottom, #2a2829, #000000);
  background-repeat: no-repeat;
  min-height: 100vh;
}

#menu-container {
  display: flex;
  justify-content: space-between;
  width: auto;
  height: 80px;
  background: linear-gradient(to bottom, #2a2829, #000000);
  font-family: "Montserrat", sans-serif;
}

#logo {
  font-style: normal;
  font-family: "Berkshire Swash", serif;
  cursor: pointer;
  margin-left: 50px;
}

#logo h1 {
  font-weight: normal;
  font-size: 40px;
  background: linear-gradient(to right, #ffffff 50%, #544f51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#nav-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  font-family: "Montserrat", serif;
}

#nav-bar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  outline: none;
  flex-direction: row;
}

/*Menu dos produtos */
#menu-products-hidden {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.4s ease, transform 0.4s ease;
  visibility: hidden;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 10;
}

#menu-products-hidden.show {
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
  pointer-events: auto;
}

#container-menu-products {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

#img-products {
  width: 280px;
  height: 230px;
  margin-left: 50px;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid white;
}

#container-menu-products h2 {
  font-size: 20px;
}

#container-column {
  display: flex;
  margin-right: 50px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 50px 0 0;
}

#container-menu-products {
  display: flex;
  background: linear-gradient(to bottom, #2a2829, #000000);
  width: 100%;
  height: 290px;
}

/* Encerramento */

#left-elements {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

#search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* Search */

#sub-search-hidden {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.4s ease, transform 0.4s ease;
  visibility: hidden;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 10;
}

#sub-search-hidden.show-hidden {
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
  pointer-events: auto;
}

#sub-search {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, #2a2829, #000000);
}

.formulary-search {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#land {
  position: absolute;
  transform: translateY(2px);
  right: 23%;
}

#close {
  position: absolute;
  right: 17%;
}

.search-box {
  border: 1px solid white;
  width: 600px;
  height: 30px;
}

.search-box::placeholder {
  font-family: "Montserrat", serif;
  font-size: 20px;
  padding: 30px;
  color: white;
}

.button-search {
  background: none;
  border: none;
}

/* Encerramento */

#circle-cart {
  position: relative;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 50%;
  border: 1px solid white;
}

#number-purchases {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  right: 15px;
}

.login-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 50px;
}

/*Encerramento Menu*/

/*Inicio Titulo*/

#breadcrumb ol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 30px;
}

#breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: white;
}

#text-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 25px;
}

#text-title::before,
#text-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 5px;
  background-color: white;
  
}

#text-title::before {
  transform: translateX(-250%);
}

#text-title::after {
  transform: translateX(250%);
}

#bar-result-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#bar-result-container::before {
  display: block;
  content: "";
  position: absolute;
  margin-bottom: 30px;
  top: -15px;
  width: 1300px;
  height: 1px;
  background-color: white;
}

#bar-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1300px;
  height: 80px;
  border: 2px solid white;
  background: linear-gradient(to bottom, #2a2829, #000000);
}

#filter {
  cursor: pointer;
}

#filter::before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../icones/catalogo/filter.svg);
  background-size: cover;
  vertical-align: middle;
  margin-left: 30px;
}

#filter-select {
  display: none;
}

#ordination {
  border-bottom: 2px solid white;
  margin-right: 30px;
  cursor: pointer;
}

#ordination::after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../icones/catalogo/arrowdown.svg);
  background-size: cover;
  vertical-align: middle;
}

.one {
  width: 250px;
  height: 350px;
}

#catalog-container-grid {
  display: flex;
  justify-content: center;
}

#catalog {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  gap: 30px;
  margin-top: 30px;
}
.conjugate {
  position: relative;
}

.elemento-sobreposto {
  display: flex;
  opacity: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 250px;
  height: 120px;
  border-radius: 35px;
  top: 14.5em;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  gap: 10px;
  transition: 0.5s ease-in-out;
}

.elemento-sobreposto:hover {
  opacity: 1;
}

#button-catalog:hover {
  transform: translateY(10px);
}

#size {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#size p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid white;
  background: #544f51;
  cursor: pointer;
}
.img-catalog {
  width: 250px;
  height: 350px;
}

.text-elements {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#result {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0 30px;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
}

.button {
  width: 240px;
  height: 50px;
  font-size: 20px;
  border: 2px solid white;
  background: linear-gradient(to bottom, #2a2829, #000000);
  border-radius: 15px;
  transition: 0.5s ease-in-out;
}

.button:hover {
  transform: translateY(15px);
  border:none;
}

@media(min-width:1600px){
  #text-title h2{
    font-size:50px;
  }

  #text-title::before {
    transform: translateX(-320%);
  }

  #text-title::after {
    transform: translateX(320%);
  } 


  #text-title::before,
  #text-title:after {
    height: 3px;
  }

  .button {
    width: 245px;
    height: 55px;
    font-size: 25px;
    border: 2px solid white;
    background: linear-gradient(to bottom, #2a2829, #000000);
    border-radius: 15px;
  }

  #result p{
    font-size:20px;
  }

}