@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;

  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
}


:root {
  /* --body-color: #E4E9F7; */
  --body-color: #f9f9f9;
  --sidebar-color: #FFF;
  --primary-color: #a6998b;
  --primary-color-light: #F6F5FF;
  --toggle-color: #DDD;
  --text-color: #707070;
  --title-color: #a6998b;

  --grid-columns: 12;
  --column-gap: 10px;
  --row-gap: 10px;

  --trans-02: all 0.2s ease;
  --trans-03: all 0.3s ease;
  --trans-04: all 0.4s ease;
  --trans-05: all 0.5s ease;
}

::selection {
  background: var(--primary-color);
  color: var(--primary-color-light);
}

html {
  font-size: 62.5%;
  display: flex;
  width: 100%;
  height: 100%;
}

body {
  /* display: flex; */
  /* flex: 1; */
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  overflow-x: hidden;
  background: var(--body-color);
  transition: var(--trans-04);
}

button {
  cursor: pointer;
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
  justify-content: center;
}

.l-1 {
  grid-column-start: span 1;
}

.l-2 {
  grid-column-start: span 2;
}

.l-3 {
  grid-column-start: span 3;
}

.l-4 {
  grid-column-start: span 4;
}

.l-5 {
  grid-column-start: span 5;
}

.l-6 {
  grid-column-start: span 6;
}

.l-7 {
  grid-column-start: span 7;
}

.l-8 {
  grid-column-start: span 8;
}

.l-9 {
  grid-column-start: span 9;
}

.l-10 {
  grid-column-start: span 10;
}

.l-11 {
  grid-column-start: span 11;
}

.l-12 {
  grid-column-start: span 12;
}

@media all and (max-width: 768px) {
  .l-1 {
    grid-column-start: span 12;
  }

  .l-2 {
    grid-column-start: span 12;
  }

  .l-3 {
    grid-column-start: span 12;
  }

  .l-4 {
    grid-column-start: span 12;
  }

  .l-5 {
    grid-column-start: span 12;
  }

  .l-6 {
    grid-column-start: span 12;
  }

  .l-7 {
    grid-column-start: span 12;
  }

  .l-8 {
    grid-column-start: span 12;
  }

  .l-9 {
    grid-column-start: span 12;
  }

  .l-10 {
    grid-column-start: span 12;
  }

  .l-11 {
    grid-column-start: span 12;
  }

  .l-12 {
    grid-column-start: span 12;
  }
}

/********************* shopping Demo-1 **********************/
.product-grid {
  font-family: Raleway, sans-serif;
  text-align: center;
  padding: 0 0 72px;
  border: 1px solid rgba(0, 0, 0, .1);
  overflow: hidden;
  position: relative;
  z-index: 1
}

.product-grid .product-image {
  position: relative;
  transition: all .3s ease 0s
}

.product-grid .product-image a {
  display: block
}

.product-grid .product-image img {
  width: 100%;
  height: auto
}

.product-grid .pic-1 {
  opacity: 1;
  transition: all .3s ease-out 0s
}

.product-grid:hover .pic-1 {
  opacity: 1
}

.product-grid .pic-2 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s ease-out 0s
}

.product-grid:hover .pic-2 {
  opacity: 1
}

.product-grid .social {
  width: 150px;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: 1;
  transition: all .3s ease 0s
}

.product-grid:hover .social {
  opacity: 1;
  top: 50%
}

.product-grid .social li {
  display: inline-block
}

.product-grid .social li a {
  color: #fff;
  background-color: #333;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  height: 40px;
  width: 40px;
  margin: 0 2px;
  display: block;
  position: relative;
  transition: all .3s ease-in-out
}

.product-grid .social li a:hover {
  color: #fff;
  background-color: #ef5777
}

.product-grid .social li a:after,
.product-grid .social li a:before {
  content: attr(data-tip);
  color: #fff;
  background-color: #000;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
  padding: 1px 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -30px
}

.product-grid .social li a:after {
  content: '';
  height: 15px;
  width: 15px;
  border-radius: 0;
  transform: translateX(-50%) rotate(45deg);
  top: -20px;
  z-index: -1
}

.product-grid .social li a:hover:after,
.product-grid .social li a:hover:before {
  opacity: 1
}

.product-grid .product-discount-label,
.product-grid .product-new-label {
  color: #fff;
  background-color: #ef5777;
  font-size: 12px;
  text-transform: uppercase;
  padding: 2px 7px;
  display: block;
  position: absolute;
  top: 10px;
  left: 0
}

.product-grid .product-discount-label {
  background-color: #333;
  left: auto;
  right: 0
}

.product-grid .rating {
  color: #FFD200;
  font-size: 12px;
  padding: 12px 0 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: -1
}

.product-grid .rating li.disable {
  color: rgba(0, 0, 0, .2)
}

.product-grid .product-content {
  background-color: #fff;
  text-align: center;
  padding: 12px 0;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -27px;
  z-index: 1;
  transition: all .3s
}

.product-grid:hover .product-content {
  bottom: 0
}

.product-grid .title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: capitalize;
  margin: 0 0 10px;
  transition: all .3s ease 0s;
}

.product-grid .title a {
  color: #828282
}

.product-grid .title a:hover,
.product-grid:hover .title a {
  color: #ef5777
}

.product-grid .price {
  color: #333;
  font-size: 17px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 8px;
  text-align: center;
  transition: all .3s
}

.product-grid .price span {
  color: #999;
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 3px;
  display: inline-block
}

.product-grid .add-to-cart {
  color: #000;
  font-size: 13px;
  font-weight: 600
}

@media only screen and (max-width:990px) {
  .product-grid {
    margin-bottom: 30px
  }
}

/********************* Shopping Demo-4 **********************/
.product-grid4,
.product-grid4 .product-image4 {
  position: relative
}

.product-grid4 {
  font-family: Poppins, sans-serif;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
  transition: all .3s ease 0s;
  background: #FFF;
  margin: 5px 0;
}

.product-grid4:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.product-grid4 .product-image4 a {
  display: block
}

.product-grid4 .product-image4 img {
  width: 100%;
  height: auto
}

.product-grid4 .pic-1 {
  opacity: 1;
  transition: all .5s ease-out 0s
}

.product-grid4:hover .pic-1 {
  opacity: 0
}

.product-grid4 .pic-2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .5s ease-out 0s
}

.product-grid4:hover .pic-2 {
  opacity: 1
}

.product-grid4 .social {
  width: 180px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease 0s
}

.product-grid4 .social li {
  display: inline-block;
  opacity: 0;
  transition: all .7s
}

.product-grid4 .social li:nth-child(1) {
  transition-delay: .15s
}

.product-grid4 .social li:nth-child(2) {
  transition-delay: .3s
}

.product-grid4 .social li:nth-child(3) {
  transition-delay: .45s
}

.product-grid4:hover .social li {
  opacity: 1
}

.product-grid4 .social li a {
  color: #222;
  background: #fff;
  font-size: 17px;
  line-height: 36px;
  width: 40px;
  height: 36px;
  border-radius: 2px;
  margin: 0 5px;
  display: block;
  transition: all .3s ease 0s
}

.product-grid4 .social li a:hover {
  color: #fff;
  background: var(--primary-color)
}

.product-grid4 .social li a:after,
.product-grid4 .social li a:before {
  content: attr(data-tip);
  color: #fff;
  background-color: #000;
  font-size: 12px;
  line-height: 20px;
  border-radius: 3px;
  padding: 0 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -30px
}

.product-grid4 .social li a:after {
  content: '';
  height: 15px;
  width: 15px;
  border-radius: 0;
  transform: translateX(-50%) rotate(45deg);
  top: -22px;
  z-index: -1
}

.product-grid4 .social li a:hover:after,
.product-grid4 .social li a:hover:before {
  opacity: 1
}

.product-grid4 .product-discount-label,
.product-grid4 .product-new-label {
  color: #fff;
  background-color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 45px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 15px;
  transition: all .3s
}

.product-grid4 .product-discount-label {
  left: auto;
  right: 10px;
  background-color: #d7292a
}

.product-grid4:hover .product-new-label {
  opacity: 0
}

.product-grid4 .product-content {
  padding: 25px
}

.product-grid4 .title {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 0 7px;
  transition: all .3s ease 0s;
  font-weight: 500;
}

.product-grid4 .title a {
  color: #222
}

.product-grid4 .title a:hover {
  color: var(--primary-color)
}

.product-grid4 .price {
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 700;
  margin: 0 2px 15px 0;
  display: block
}

.product-grid4 .price span {
  color: #909090;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: line-through;
  text-align: left;
  vertical-align: middle;
  display: inline-block
}

.product-grid4 .add-to-cart {
  border: 1px solid #e5e5e5;
  display: inline-block;
  padding: 10px 20px;
  color: #888;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: all .3s
}

.product-grid4:hover .add-to-cart {
  border: 1px solid transparent;
  background: var(--primary-color);
  color: #fff;
}

.product-grid4 .add-to-cart:hover {
  background-color: #505050;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  text-decoration: none;
}

@media only screen and (max-width:990px) {
  .product-grid4 {
    margin-bottom: 30px
  }
}

.btn-primary {
  background: #a6998b;
}

.btn-success {
  background: #3BB8AA;
}

.btn-danger {
  background: #B8453B;
}

.btn-warning {
  background: #A5B83B;
}

.btn-info {
  background: #4E9BF3;
}

section.header {
  width: 100%;
  padding: 15px;
  background: #121214;
}

.row.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

section.header #logo {
  max-width: 200px;
  width: 100%;
}

section.header #searchInput {
  padding: 10px 15px;
  width: 100%;
  background: #f9f9f9;
  border-radius: 4px;
}

section.header #addCart {
  padding: 10px 15px;
  width: fit-content;
  background: #f9f9f9;
  border-radius: 4px;
}

section.header .btnSistema {
  background-color: #a6998b;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
}

.novoMenu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.linkSistema {
  font-size: 14px;
  color: var(--text-color);
}

.linkSistema:hover {
  color: var(--primary-color)
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, .05);
  margin-bottom: 3rem;
  padding: 10px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
}

nav ul li a {
  display: block;
  margin: 2px;
  padding: 7px 12px;
}

nav ul li a:first-child {
  display: block;
  margin-left: 0;
  padding: 7px 12px;
}



.prodInfo {
  margin: 3rem 0;
}

.prodInfo .title h1 {
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.prodInfo .desc span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2px;
  letter-spacing: .5px;
  color: #707070;
}

.prodInfo .valor {
  display: flex;
  flex-direction: column;
  margin: 3rem 0;
}

.prodInfo .valor h4 {
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: -0.5rem;
}

.prodInfo .valor .value {
  font-size: 3.6rem;
  font-weight: 600;
}

.prodInfo .valor .valueOld {
  font-size: 2rem;
  font-weight: 400;
  text-decoration: line-through;
  color: #a6998b;
}

.prodInfo .cart {
  display: flex;
}

.prodInfo .cart input {
  border: 0;
  height: 50px;
  padding: 10px 15px;
  max-width: 80px;
}

.prodInfo .cart button {
  border: 0;
  height: 50px;
  padding: 10px 15px;
  flex: 1;
  cursor: pointer;
  background: #a6998b;
  color: #FFF;
}

.prodInfo button:hover {
  background: #857b70;
}

.prodInfo .maisInfo {
  display: flex;
  font-size: 1.4rem;
  color: #707070;
  margin: 3rem 0;
  align-items: center;
  vertical-align: middle;
}

.prodInfo .maisInfo svg {
  font-size: .9rem;
  margin: .5rem;
  align-self: center;
}

#caracteristicas {
  margin: 3rem 0;
}

#caracteristicas h2 {
  font-size: 3.6rem;
  font-weight: 500;
  margin: 3rem 0;
}

#caracteristicas table {
  background: #FFF;
}

#caracteristicas table thead {
  background: #a6998b;
  font-size: 1.6rem;
  border-radius: 6px;
  border: 0;
  color: #FFF;
}

#caracteristicas table thead th {
  background: #a6998b;
  font-size: 1.6rem;
  border: 0;
  color: #FFF;
  padding: 15px;
}

#caracteristicas table thead th:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

#caracteristicas table thead th:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

#caracteristicas table td {
  font-size: 1.6rem;
  border: 0;
  color: #707070;
  padding: 15px 20px;
  border-bottom: 1px solid #f1f2f5;
}

.carrinho button#finalizar,
.carrinho button#atualizar {
  border: 0;
  /* height: 50px; */
  padding: 10px 15px;
  flex: 1;
  cursor: pointer;
  background: #a6998b;
  color: #FFF;
  border-radius: 4px;
}

.carrinho button#finalizar:hover,
.carrinho button#atualizar:hover {
  background: #857b70;
}

.opcionais {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.opcionais span {
  margin: 1rem 0;
}

.opcionais label.color {
  width: 42px;
  height: 42px;
  padding: 2px;
  margin: 2px;
  border: 3px solid #FFF;
  background-color: #FFF;
  border-radius: 4px;
}

.opcionais input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
}

.opcionais input[type="radio"]:checked+label {
  border: 3px solid #888;
}

.opcionais span span {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
}

.opcionais span.color.active {
  border: 2px solid #827d7d;
}

.opcionais div {
  display: flex;
}

.opcionais .opcional {
  background-color: #f1f1f1;
  border-radius: 4px;
  padding: 7px 10px;
  margin: 2px;
  cursor: pointer;
}

.opcionais .opcional.active {
  background-color: #121214;
  color: #FFF;
}

.filtrosMaquinas {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filtrosMaquinas a {
  display: flex;
  flex-direction: column;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  overflow: hidden;
}

.filtrosMaquinas .col {
  flex-grow: 0;
  padding-left: 5px;
  padding-right: 5px;
}

.filtrosMaquinas a img {
  width: 80px;
  height: 80px;
  margin: 2px 0;
}

footer.pageFooter {
  /* background: #0E0E0D; */
  color: #707070;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  padding: 10px;
  bottom: 0;
  margin-top: 3rem;
}

.menuCategorias li a {
  color: #121214;
}

.modal {
  position: fixed;
  /* display: flex; */
  display: none;
  flex: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
  transition: all .2s;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 1170px;
  background-color: #FFF;
  z-index: 101;
  padding: 3rem;
  border-radius: .8rem;
}

.modal-close {
  padding: 1rem 1.4rem;
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}

.form-input {
  width: 100%;
  height: 5rem;
  border-radius: .8rem;
  background-color: #f5f5f5;
  color: #141412;
  padding: 1.5rem;
  border: 1px solid transparent;
  outline: none;
}

.form-input:focus {
  border: 1px solid #a6998b;
}

.modal #btnForm {
  background: #514233;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 500;
  /* height: 4rem; */
  border-radius: .6rem;
  padding: 1rem 2rem;
  /* margin: 1.5rem 0; */
  cursor: pointer;
}

.pagination {
  display: flex;
  margin-top: 3rem;
  justify-content: center;
  align-items: center;
}

.pagination a {
  padding: 7px 12px;
  background: var(--primary-color);
  color: var(--body-color);
  border-radius: 4px;
}


.topnav {
  overflow: hidden;
  background-color: transparent;
}

.topnav a {
  float: left;
  display: block;
  color: #121214;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .novoMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


/** RESPONSIVE **/

section.header .row .col-md-4 {
  gap: 5px;
  text-align: right;
}

@media all and (max-width: 768px) {
  section.header .row {
    gap: 10px;
    text-align: center;
  }

  section.header .row .col-md-4 {
    text-align: center;
  }
}