* {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

*:focus, *:active, * {
  outline:0 !important;
  -webkit-tap-highlight-color: transparent;
}

input:focus, textarea:focus {
  outline: none;
}

@font-face {
  font-family: Geologica;
  src: url("fonts/Geologica.ttf");
}

@font-face {
  font-family: Karla;
  src: url("fonts/Karla.ttf");
}

@font-face {
  font-family: LeagueSpartan;
  src: url("fonts/LeagueSpartan.ttf");
}

@font-face {
  font-family: Quicksand;
  src: url("fonts/Quicksand.ttf");
}

body {
  background-color: #003172;
  /* font-family: Quicksand; */
  font-family: Geologica;
}

.header {
  width: 100%;
  height: 84px;
  /* background-color: #f5f5f5; */
  position: fixed;
  z-index: 9999;
  transition: all 0.2s linear!important;
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); */
}

.header.active {
  background-color: #003172;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.header.active .header-logo {
  /* background-image: url("../img/logo.png"); */
}

.header.active .header-menu li {
  /* color: #54b89f; */
}

.header.active .header-menu li.header-menu-white-btn {
  /* background-color: #54b89f; */
  /* color: #FFF; */
}

.header.active .header-menu li.header-menu-outline-btn {
  /* border-color: #54b89f; */
}

.header-content {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 17px 0px;
}

.header-logo {
  width: 220px;
  height: 50px;
  /* background-image: url("../img/logo.png"); */
  background-image: url("../img/logo.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.header-logo-video {
  width: 210px;
  height: 56px;
}

.header-menu {
  display: flex;
  gap: 22px;
  align-items: center;
}

.header-menu li {
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding: 20px 0px;
  transition: all 0.3s linear;
}

.header-menu li.header-menu-white-btn {
  background-color: #FFF;
  color: #54b89f;
  border-radius: 100px;
  padding: 10px 20px;
}

.header-menu li.header-menu-outline-btn {
  border: 1px solid #FFF;
  border-radius: 100px;
  padding: 10px 20px;
}

.header-menu li:hover, .header-menu li.active {
  color: #fafafa;
  transition: all 0.3s linear;
}

.header-menu li:hover {
  color: #2ee5cf;
}


.header-menu li:hover:before {
  /* content: "<"; */
  position: absolute;
  left: -12px;
}

.header-menu li:hover:after {
  /* content: "/>"; */
  position: absolute;
  right: -20px;
}

.header-menu-mobile-btn {
  display: none;
}

.banner {
  padding-top: 96px;
  background-color: #FFF;
  background: #003172;
}

.banner-content {
  max-width: 1200px;
  display: block;
  margin: auto;
  padding-top: 130px;
  padding-bottom: 130px;
  /* background-image: url("../img/banner.png"); */
  /* background-size: 500px; */
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right;
}

.banner-title {
  font-weight: 500;
  font-size: 50px;
  color: #FFF;
  max-width: 520px;
  line-height: 60px;
}

.banner-title:after {
  content: ".";
  color: #135bbb;
}

.banner-subtitle {
  color: #FFF;
  max-width: 450px;
  margin-top: 30px;
  line-height: 24px;
  font-size: 15px;
}

.banner-btn {
  border-radius: 100px;
  border: 0;
  padding: 10px 13px 10px 34px;
  font-weight: 1000;
  text-transform: uppercase;
  color: #FFF;
  font-size: 16px;
  font-family: 'Quicksand';
  cursor: pointer;
  margin-top: 30px;
  background-color: #ca2a2a;
  vertical-align: middle;
  padding-top: 13px;
  position: relative;
}

.banner-btn:after {
  content: "";
  background-image: url("../img/icon-right.svg");
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: 20px;
  background-repeat: no-repeat;
  border-radius: 100px;
  background-position: center;
  vertical-align: middle;
  background-color: #b21919;
  margin-left: 10px;
  margin-top: -3px;
}

#slider img {
  display: none;
  width: 100%;
  border-radius: 30px;
}

.fold.white {
  background-color: #FFF;
}

.fold.silver {
  background-color: #f3f2f2;
}

.fold-content {
  max-width: 1200px;
  display: block;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 70px;
}

.fold-content.center {
  text-align: center;
}

.fold-content.flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

.fold-column-25 {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}

.fold-column {
  width: 50%;
}

.fold-column-img {
  width: 100%;
}

.fold-content.full {
  max-width: 100%;
  padding-left: 200px;
}

.fold-title {
  color: #013172;
  font-size: 48px;
  line-height: 56px;
  font-weight: bold;
  margin-bottom: 20px;
}

.fold-text {
  color: #000;
  font-size: 22px;
  line-height: 30px;
  margin-top: 40px;
}

.category-icon {
  width: 80%;
  height: auto;
  border-radius: 100%;
  background-color: #ededed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fold-column-25.active .category-icon {
  background-color: #e7caf9;
}

.category-icon-img {
  width: 80%;
}

.category-label {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.fold-column-25.active .category-label {
  color: #62079a;
}


.products {
  text-align: center;
}

.product-item {
  width: 32%;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.1s linear;
  cursor: pointer;
}

.product-item:hover {
  transform: scale(1.05)!important;
}

.product-item a {
  padding: 20px;
  display: block;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}

.product-item a:before {
  /* content: "Vendido e entregue por:"; */
  color: #FFF;
  position: absolute;
  font-size: 8px;
  padding: 5px 12px;
  border-radius: 100px;
  padding-right: 66px;
  text-transform: uppercase;
  background-color: #003172;
  background-image: url("../img/colchoa-logo.png");
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
  background-position-y: 3px;
}

.product-item-cover {
  width: 100%;
  border-radius: 20px 20px 0px 0px;
}

.product-item-info {
  background-color: #003172;
  border-radius: 0px 0px 20px 20px;
  padding: 15px;
  padding-left: 20px;
  padding-bottom: 20px;
  text-align: left;
  margin-top: -4px;
  z-index: 1;
  position: relative;
}

.product-item-info:before {
  /* content: ""; */
  width: 0; 
  height: 0; 
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  
  border-left: 60px solid #003172;
}

.product-item-name {
  display: block;
  color: #FFF;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
  text-decoration: none;
}

.product-item-price {
  display: inline-block;
  color: #FFF;
  vertical-align: middle;
  margin-left: 2px;
  text-decoration: none;
}

.product-item-apartir {
  color: #fff;
  font-size: 8px;
  display: inline-block;
  background-color: #135bbb;
  padding: 2px 5px 3px 5px;
  border-radius: 100px;
  vertical-align: middle;
  text-decoration: none;
}

.product-item-icon {
  position: absolute;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  right: 10px;
  top: 10px;
  background-color: #FFF;
  background-image: url("../img/icon-bag.svg");
  background-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
}

.product-item-buy {
  background-color: #ca2a2a;
  background-image: url("../img/icon-bag.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
  border-radius: 100px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 35px 10px 15px;
  position: absolute;
  top: 22px;
  right: 20px;
  color: #FFF;
}

.casal, .queen, .king {
  display: none;
}

.pergunta-frequentes {
  display: block;
  margin-top: 50px;
}

.pergunta-frequente {
  position: relative;
  background-color: white;
  padding: 25px 30px;
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  transition: all 0.2s linear;
}

.pergunta-frequente.active {
  background-color: #013172;
}

.pergunta-frequente-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pergunta-frequente-title {
  font-weight: bold;
  font-size: 20px;
}

.pergunta-frequente.active .pergunta-frequente-title {
  color: #FFF;
}

.pergunta-frequente-icon {
  width: 60px;
  height: 30px;
  border-radius: 100px;
  border: 1px solid #eaeaea;
  cursor: pointer;
  background-color: #f3f2f2;
  background-image: url("../img/icon-right-long.svg");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.pergunta-frequente.active .pergunta-frequente-icon {
  background-image: url("../img/icon-close.svg");
}

.pergunta-frequente-text {
  display: none;
  margin-top: 20px;
  line-height: 25px;
  font-size: 15px;
}

.pergunta-frequente.active .pergunta-frequente-text {
  display: block;
  color: #FFF;
}

.contato {
  background: #003172;
}

.contato-social {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #003a88;
}

.contato-social-item {
  width: 70px;
  height: 70px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
}

.contato-social-item.visa {
  background-image: url("../img/icon-bandeira-visa.png");
  background-size: 50px;
}

.contato-social-item.mastercard {
  background-image: url("../img/icon-bandeira-mastercard.png");
  background-size: 40px;
}

.contato-social-item.elo {
  background-image: url("../img/icon-bandeira-elo.png");
  background-size: 46px;
}

.contato-social-item.hipercard {
  background-image: url("../img/icon-bandeira-hipercard.png");
  background-size: 50px;
}

.contato-social-item.diners {
  background-image: url("../img/icon-bandeira-diners.png");
  background-size: 36px;
}

.contato-social-item.discover {
  background-image: url("../img/icon-bandeira-discover.png");
  background-size: 50px;
}

.contato-social-item.amex {
  background-image: url("../img/icon-bandeira-amex.png");
  background-size: 50px;
}

.contato-content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0px;
  padding-bottom: 20px;
  display: block;
}

.contato-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contato-column {
  
}

.contato-column-logo {
  display: block;
  width: 120px;
  height: 30px;
  background-image: url("../img/logo.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.contato-column-title {
  display: block;
  color: #FFF;
  /* font-family: Baloo-Regular; */
  font-size: 20px;
  margin-bottom: 15px;
}

.contato-column-link {
  display: block;
  color: #FFF;
  text-decoration: none;
  margin-top: 10px;
  line-height: 18px;
  font-size: 14px;
}

.contato-column-link b {
  font-weight: bold;
  /* font-family: Baloo-Regular; */
  font-size: 16px;
}

.contato-column-social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.contato-column-social-item {
  width: 40px;
  height: 40px;
  text-align: center;
}

.contato-column-social-item svg {
  width: 25px;
  height: 100%;
}

.contato-direitos {
  display: block;
  margin-top: 60px;
}

.contato-direitos-title {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #FFF;
}

.contato-direitos-subtitle {
  display: block;
  text-align: center;
  font-size: 10px;
  color: #FFF;
  font-weight: bold;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .header-content {
    padding: 25px 20px;
    justify-content: center;
  }

  .header-logo {
    width: 130px;
    height: 34px;
  }

  .header-menu {
    display: none;
  }

  .banner-title {
    font-size: 50px;
    line-height: 55px;
    text-align: center;
  }

  .banner-subtitle {
    text-align: center;
  }

  .banner-btn {
    width: 100%;
    height: 60px;
    margin-bottom: 30px;
    padding: 10px;
  }

  .banner-btn:after {
    position: absolute;
    margin-left: unset;
    margin-top: unset;
    top: 10px;
    right: 12px;
  }

  .fold-content {
    padding: 20px;
  }

  .fold-content.flex {
    display: block;
  }

  .fold-column {
    width: 100%;
  }

  .fold-title {
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
  }

  .product-item {
    width: 100%;
  }

  .product-item a {
    padding: 20px 0px 0px 0px;
  }

  .pergunta-frequentes {
    margin-top: 30px;
  }

  .pergunta-frequente {
    padding: 15px 20px;
  }

  .pergunta-frequente-title {
    font-size: 15px;
    line-height: 20px;
    width: calc(100% - 70px);
  }

  .contato-social {
    display: block;
    text-align: center;
  }

  .contato-social-item {
    width: calc(25% - 4px);
    display: inline-block;
  }

  .contato-content {
    padding-top: 50px;
  }

  .contato-columns {
    display: block;
    padding: 0px 10px;
  }

  .contato-column {
    text-align: center;
    margin-bottom: 50px;
  }

  .contato-column-logo {
    margin: auto;
  }
}