@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: #eee;
}
html::-webkit-scrollbar-thumb {
  background: #0984e3;
  border-radius: 5rem;
}

body {
  background: #eee;
}

section {
  padding: 3rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.5rem;
  color: #333;
}
.heading span {
  color: #0984e3;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  border-radius: 0.5rem;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer;
  background: #0984e3;
}
.btn:hover {
  background: #333;
}

@keyframes fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
}
/* ======= Header Section/Seção do cabeçalho ======= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0984e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 9%;
  /*Form search/Formulario de pesquisa*/
}
.header .logo {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bolder;
}
.header .logo i {
  color: gold;
}
.header .search-form {
  border-radius: 5rem;
  height: 5rem;
  width: 50rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  background: #fff;
}
.header .search-form input {
  width: 100%;
  padding-right: 1rem;
  font-size: 1.7rem;
  text-transform: none;
  color: #666;
}
.header .search-form label {
  font-size: 2rem;
  color: #666;
  cursor: pointer;
}
.header .search-form label:hover {
  color: #0984e3;
}
.header .icons a,
.header .icons div {
  font-size: 2.5rem;
  margin-left: 2rem;
  color: #fff;
  cursor: pointer;
}
.header .icons a:hover,
.header .icons div:hover {
  color: gold;
}

#search-btn {
  display: none;
}

.side-bar {
  position: fixed;
  top: 0;
  left: -110%;
  height: 100%;
  width: 30rem;
  background: #fff;
  z-index: 10000;
}
.side-bar.active {
  left: 0;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
}
.side-bar #close-side-bar {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 4rem;
  cursor: pointer;
  color: #666;
}
.side-bar #close-side-bar:hover {
  transform: rotate(90deg);
  color: #333;
}
.side-bar .user {
  padding: 2rem;
  background: #eee;
  text-align: center;
}
.side-bar .user img {
  height: 17rem;
  width: 17rem;
  border-radius: 50%;
  border: 1rem solid #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  margin-bottom: 0.5rem;
}
.side-bar .user h3 {
  padding: 0.5rem 0;
  font-size: 1.7rem;
  color: #666;
}
.side-bar .user a {
  font-size: 1.5rem;
  color: #0984e3;
}
.side-bar .user a:hover {
  color: #333;
}
.side-bar .navbar {
  padding-top: 1rem;
}
.side-bar .navbar a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.7rem;
  color: #666;
}
.side-bar .navbar a:hover {
  color: #0984e3;
}
.side-bar .navbar a:hover i {
  padding-right: 2rem;
}
.side-bar .navbar a i {
  padding-right: 0.5rem;
}

/* ======= Home Section/Seção de inicio ======= */
.home {
  background: #fff;
}
.home .slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  min-height: 50rem;
  padding: 2rem 0;
}
.home .slide .image {
  flex: 1 1 42rem;
  text-align: center;
}
.home .slide .image img {
  height: 30rem;
}
.home .slide .content {
  flex: 1 1 42rem;
}
.home .slide .content span {
  font-size: 2rem;
  color: #0984e3;
}
.home .slide .content h3 {
  padding-top: 0.5rem;
  color: #333;
  font-size: 3rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 3rem;
  color: #333;
}

/* ======= Banner Section/Seção de banner ======= */
.banner .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}
.banner .box-container .box {
  position: relative;
  height: 25rem;
  border: 0.2rem solid #333;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.banner .box-container .box:hover img {
  transform: scale(1.1);
}
.banner .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner .box-container .box .content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%) rotate(45deg);
}
.banner .box-container .box .content span {
  font-size: 1.7rem;
  color: #0984e3;
}
.banner .box-container .box .content h3 {
  font-size: 2rem;
  padding: 0.5rem 0;
  color: #333;
}

/* ======= Arrivals Section/Seção de Chegadas ======= */
.arrivals .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}
.arrivals .box-container .box {
  border-radius: 0.5rem;
  border: 0.2rem solid #333;
  padding: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
}
.arrivals .box-container .box .image img {
  height: 15rem;
}
.arrivals .box-container .box .image .hover-img {
  display: none;
}
.arrivals .box-container .box .content h3 {
  font-size: 2rem;
  color: #333;
}
.arrivals .box-container .box .content .price {
  padding: 0.5rem 0;
  font-size: 2rem;
  color: #0984e3;
  padding-bottom: 0.7rem;
}
.arrivals .box-container .box .content .price span {
  font-size: 1.5rem;
  color: #666;
  text-decoration: line-through;
}
.arrivals .box-container .box .content .stars {
  font-size: 1.5rem;
  color: gold;
}

/* ======= Footer Section/Seção de rodapé ======= */
.quick-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #333;
  justify-content: space-between;
}
.quick-links .logo {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bolder;
}
.quick-links .logo i {
  color: gold;
}
.quick-links .links a {
  margin: 0 1rem;
  font-size: 1.7rem;
  color: #fff;
}
.quick-links .links a:hover {
  color: gold;
}
.quick-links .share a {
  font-size: 2.5rem;
  color: #fff;
  margin-left: 2rem;
}
.quick-links .share a:hover {
  color: gold;
}

.credit {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  justify-content: space-between;
}
.credit p {
  font-size: 2rem;
  color: #666;
}
.credit p span {
  color: #0984e3;
}
.credit img {
  height: 4rem;
  filter: drop-shadow(0 0 0.1rem #333);
}

/* -- Responsividade -- */
@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 2rem;
  }

  section {
    padding: 3rem 2rem;
  }
}
@media (max-width: 991px) {
  .quick-links {
    flex-flow: column;
    text-align: center;
  }
  .quick-links .links {
    padding: 1rem 0;
  }
  .quick-links .links a {
    display: block;
    font-size: 2rem;
    padding: 1rem 0;
  }
  .quick-links .share a {
    margin: 0 1rem;
  }

  .credit {
    flex-flow: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #search-btn {
    display: inline-block;
  }

  .header .search-form {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    height: 6rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .search-form.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .swiper-button-next,
.swiper-button-prev {
    display: none;
  }

  .home .slide {
    text-align: center;
  }

  .newsletter {
    text-align: center;
  }
  .newsletter .content h3 {
    font-size: 4rem;
  }
  .newsletter .content p {
    font-size: 1.5rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .header {
    justify-content: center;
  }
  .header .logo {
    display: none;
  }
  .header .icons a,
.header .icons div {
    margin: 0 1rem;
  }

  .home .slide .image img {
    height: auto;
    width: 100%;
  }

  .arrivals .box-container .box {
    flex-flow: column;
    gap: 2rem;
    text-align: center;
  }

  .contact form .inputBox input {
    width: 100%;
  }

  .shopping-cart .cart-total {
    text-align: center;
  }
  .shopping-cart .cart-total .btn {
    width: 100%;
  }
}
/*

sass --watch ./css/style.scss:./css/style.css

*/

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