@font-face {
  font-family: mirador;
  src: url(../Font/Rene\ Bieder\ -\ Mirador\ Book\ DEMO.otf);
}
@font-face {
  font-family: mirador-bold;
  src: url(../Font/Rene\ Bieder\ -\ Mirador\ Bold\ DEMO.otf);
}

html {
  --pink: #fa8cff;
  --dark-pink: #d27cd3;
  --yellow: #ffd900;
  --orange: #ec7138;
  --green: #d8ff6e;
  --light-purple: #f1eaf5;
  --purple: #8a5eff;
  --dark-puple: #6f10cd;
  --white: #fff;
  --grey: #d6d6d6;
  --dark-grey: #333;
  --black: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--dark-grey);
  font-family: "poppins", sans-serif;
  font-weight: 400;
  text-align: center;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  /* display: block; */
}

ion-icon {
  --ionicon-stroke-width: 40px;
  vertical-align: middle;
  cursor: pointer;
}

/* clears the ‘X’ from Internet Explorer */
input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99999;
}

.outline-btn {
  background-color: transparent;
  font-weight: 700;
  color: var(--dark-grey) !important;
  border: 3px solid var(--dark-grey) !important;
  border-radius: 3px;
  text-decoration: none;
}
.outline-btn:hover {
  background-color: var(--dark-grey);
  color: var(--white) !important;
}

/* Lime Nav */

.nav-lime {
  background-color: var(--green);
  text-align: center;
  padding: 5px 0;
  font-family: "Lato", sans-serif;
}

.nav-lime a:link,
.nav-lime a:visited {
  color: var(--dark-grey);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
}

.nav-lime-counter {
  display: flex;
  font-size: 14px;
  text-align: center;
  justify-content: center;
  margin: 2px 0 1px;
  font-weight: 700;
}
.nav-lime-number {
  background-color: var(--dark-grey);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 5px;
  vertical-align: middle;
}

.nav-lime-colon {
  margin: 0 2px;
}

/* Main Nav */

.nav-main {
  width: 100%;
  height: 90px;
  background-color: var(--white);
  display: grid;
  grid-template-columns: 3fr auto 3fr;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.nav-main a:link,
.nav-main a:visited {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-grey);
  text-decoration: none;
  margin: 3px 15px;
  transition: all 0.3s;
}

.nav-main a:hover {
  color: var(--purple);
}

.nav-main img {
  max-width: 128px;
  text-align: center;
  margin: 0 auto;
  justify-self: left;
}

.nav-main-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-main-left {
  display: flex;
  justify-content: end;
  align-items: center;
}
.nav-main-search-box {
  display: flex;
  margin-right: auto;
}

input[type="search"] {
  max-width: 160px;
}

.nav-icon,
.nav-icon:hover {
  color: var(--dark-grey);
}

.nav-icon-search {
  margin-top: 2px;
}

.nav-search,
.nav-search:focus {
  -webkit-appearance: none;
  appearance: none;
  height: 40px;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.nav-search::placeholder {
  opacity: 1;
  color: var(--dark-grey);
  padding-left: 10px;
}

.nav-search:active::placeholder,
.nav-search:focus::placeholder {
  opacity: 0;
}

.dropdown {
  position: relative;
  padding: 7px 16px;
  border-radius: 20px;
  background-color: transparent;

  transition: all 0.5s linear;
}

.dropdown:hover {
  background: var(--light-purple);
}

.dropdown:hover .dropdown-link,
.dropdown:hover .dropdown-link:visited {
  color: var(--dark-puple) !important;
}

.dropdown-link {
  white-space: nowrap;
  padding: 0;
  margin: 0 !important;
}

.dropdown-content {
  display: grid;
  gap: 30px;
  align-items: center;
  min-width: 700px;
  padding: 32px 37px 12px;
  position: absolute;
  top: 38px;
  left: -60px;
  background-color: var(--white);
  border: 1px solid var(--grey);
  border-radius: 8px;
  box-shadow: 0 4px 4px rgb(0, 0, 0, 8%), 0 4px 8px rgb(0, 0, 0, 12%),
    0 4px 16px rgb(0, 0, 0, 24%);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.dropdown:hover .dropdown-content {
  pointer-events: all;
  opacity: 1;
}

.dropdown-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dropdown-content ion-icon {
  margin-left: 6px;
}

.dropdown-content .dropdown-link:link,
.dropdown-content .dropdown-link:visited {
  text-decoration: underline;
  color: var(--dark-puple);
  font-size: 14px !important;
  font-weight: 400;
  text-align: right;
  line-height: 130%;
}

.dropdown-category-title {
  color: var(--dark-puple);
  font-family: "poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  padding-bottom: 9px;
}

.dropdown-content ul {
  list-style: none;
  border-left: 2px solid var(--dark-puple);
  padding: 0 10px;
}

.dropdown-content li a {
  list-style: none;
  font-weight: 400 !important;
  font-size: 12px !important;
  margin: 0 !important;
}

.dropdown-icon {
  font-weight: 900;
  font-size: 18px;
  margin: 0 2px;
}

.down-icon {
  display: inline-flex;
}

.up-icon {
  display: none;
}

.dropdown:hover .down-icon {
  display: none;
}

.dropdown:hover .up-icon {
  display: inline-flex;
}

.nav-main-user {
  position: relative;
}

/* user dropdown */

.nav-main-user-dropdown {
  display: none;
  visibility: hidden;
  /* pointer-events: none; */
  position: absolute;
  background-color: var(--white);
  z-index: 999999;
  width: 200px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  top: 95px;
  right: 82px;
  transition: all 1s ease;
}

.nav-main-user-dropdown.active {
  animation: opacity 0.3s ease;
}

.nav-main .nav-main-user-dropdown a:link,
.nav-main .nav-main-user-dropdown a:visited {
  margin: 0 !important;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

.user-dropdown-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.user-dropdown-header span {
  color: var(--grey);
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 40px;
  text-align: left;
  font-weight: 400 !important;
  transition: all 0.3s ease;
  background-color: transparent;
}
.user-dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.user-dropdown-item:hover {
  background-color: var(--purple);
  color: var(--white) !important;
}

/* bag dropdown */
.nav-main-bag-dropdown-bg,
.nav-main-bag-dropdown-content {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.nav-main-bag-dropdown-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(35, 35, 36, 0.67);
}

.nav-main-bag-dropdown-bg.active {
  animation: opacity 0.25s ease-in 0s;
}

.nav-main-bag-dropdown-content {
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  background-color: var(--white);
  padding: 8px 16px 50px;
  justify-content: space-between;
  box-shadow: rgb(0, 0, 0, 9%) 0px 0px 87px 0px;
  transform: translateX(200px);
  transition: all 1s ease;
}

.nav-main-bag-dropdown-content.active {
  animation: bag-dropdown 0.3s ease;
}

@keyframes bag-dropdown {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

.nav-main-bag-dropdown-content.active {
  display: flex;
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}

.nav-main-bag-dropdown-header-left,
.nav-main-bag-dropdown-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-main-bag-dropdown-header {
  justify-content: space-between;
}

.nav-main-bag-dropdown-header-left p {
  font-size: 20px;
  margin-left: 8px;
}

.nav-main-bag-dropdown-content a.outline-btn {
  font-size: 18px;
  display: inline-block;
  width: 100%;
  height: 50px;
  font-weight: 700;
  line-height: 45px;
  margin: 0;
}

.nav-main-bag-dropdown-product {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 16px;
  text-align: left;
  line-height: 1.2;
}

.nav-main-bag-dropdown-product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nav-main-bag-dropdown-content a.big-btn {
  font-size: 18px;
  width: 100%;
  margin: 0;
  background-color: var(--pink);
  font-weight: 700;
}

.nav-main-bag-dropdown-content a.big-btn:hover {
  background-color: var(--purple);
  color: var(--white);
}
.nav-main-bag-dropdown-text {
  padding: 0 32px;
}

.nav-main-bag-dropdown-subtittle,
.bag-dropdown-product-details-subtittle {
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

.nav-main-bag-dropdown-subtittle {
  font-size: 15px;
}

.bag-dropdown-product-details-subtittle {
  font-size: 13px;
  margin: 8px 0;
}

.bag-icon {
  pointer-events: none;
}

.fixed {
  position: fixed;
}

/* mobile menu */

.mobile-btn-open,
.mobile-btn-close,
.mobile-btn {
  display: none;
}

.mobile-nav {
  height: 100%;
  display: none;
  visibility: hidden;
  opacity: 0;
}

.mobile-nav-bg {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(35, 35, 36, 0.67);
  z-index: -1;
  transition: all 0.25s ease-in;
}

.active {
  display: block;
  visibility: visible;
  opacity: 1;
}

.mobile-nav-content {
  display: grid;
  grid-template-columns: auto;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 36px 24px;
  background-color: var(--white);
  border-top: 1px solid var(--grey);
  width: 90%;
  max-width: 312px;
  font-family: "poppins", sans-serif;
  text-align: left;
  height: min(79vh, 100vh);
  overflow-y: scroll;
  /* -webkit-overflow-scrolling: touch; */
}

.mobile-nav.active .mobile-nav-content {
  animation: menu-dropdown 0.3s ease;
}

@keyframes menu-dropdown {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

.mobile-nav.active .mobile-nav-bg {
  animation: 0.3s menu-bg-dropdown ease;
}

@keyframes menu-bg-dropdown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.mobile-nav a:link,
.mobile-nav a:visited {
  text-decoration: none;
}

.gradient-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(21deg, var(--orange) 23%, var(--yellow) 100%);
  padding: 8px 17px;
  border-radius: 4px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
}

.gradient-btn-icon {
  margin-right: 8px;
}

.mobile-nav-black-link {
  display: block;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  margin: 18px 18px 0;
}

.mobile-nav-black-link ion-icon {
  --ionicon-stroke-width: 50px;
  font-size: 13px;
}

.mobile-nav-dropdown {
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  padding: 24px 0;
}

ul {
  text-decoration: none;
  list-style: none;
}

.mobile-nav-content li a:link,
.mobile-nav-content li a:visited {
  color: var(--dark-puple);
  transition: all 0.3s ease;
}

.mobile-nav-content li a:hover {
  color: var(--purple);
}

.mobile-nav-dropdown-tab {
  background-color: #fafafa;
  border-radius: 28px;
  margin-bottom: 10px;
}
.mobile-nav-dropdown-tab-tittle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--light-purple);
  border-radius: 200px;
  color: var(--dark-puple);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
}

.mobile-nav-dropdown-tab-inner-ul {
  padding: 30px 22px;
  display: none;
  height: 0;
  transition: height 1s ease;
}

.mobile-nav-dropdown-tab-inner-ul.active {
  display: block;
  height: fit-content;
}

.mobile-nav-dropdown-tab-icon {
  transform: rotate(180deg);
}

.mobile-nav-dropdown-tab-icon.active {
  transform: rotate(0);
}

.mobile-nav-dropdown-tab-inner-ul li {
  padding-bottom: 18px;
  font-size: 14px;
}

.mobile-nav-dropdown-tab-inner-ul li:last-child {
  padding-bottom: 0;
}

.dropdown-tab-link {
  color: var(--dark-puple);
  font-size: 14px;
  text-decoration: underline !important;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.dropdown-tab-link:hover {
  color: var(--purple);
}

.mobile-nav-rank-link {
  display: block;
  font-size: 18px;
  color: var(--black);
  font-family: "mirador", "poppins", sans-serif;
  margin: 18px 15px 0;
}

.mobile-nav-rank-link span {
  font-family: "mirador-bold", "poppins", sans-serif;
}

.mobile-nav-rank-link ion-icon {
  font-size: 14px;
}

.mobile-nav-pink-container {
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  border-bottom: 1px solid var(--grey);
  border-top: 1px solid var(--grey);
  margin: 24px 0;
  padding: 24px 15px;
}
.mobile-nav-pink-container p {
  margin-bottom: 17px;
}
.mobile-nav-pink-quiz {
  color: var(--pink);
  font-size: 14px;
  text-decoration: underline !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-nav-pink-quiz:hover {
  color: var(--purple);

  font-size: 14px;
  text-decoration: underline !important;
}

.mobile-nav-purple-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--purple);
  color: var(--purple);
  font-weight: 400;
  font-family: "mirador";
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 200px;
  margin-bottom: 12px;
}

.mobile-nav-purple-link span {
  font-family: "mirador-bold";
}
/* mobile menu scrollbar */

.mobile-nav-content::-webkit-scrollbar {
  width: 7px;
}
.mobile-nav-content::-webkit-scrollbar-track {
  background-color: #d9d9d9;
  background-clip: content-box;
}
.mobile-nav-content::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(250, 140, 255, 0.9),
    rgba(138, 94, 255, 0.9)
  );
  border-radius: 4px;
}

/* Section Slidershow */

.section-slidershow {
  margin-top: 121px;
  width: 100%;
}

.slidelink-desktop {
  display: block;
}

.slidelink-mobile {
  display: none;
}

.slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 63px 64px;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  height: 545px;
}

.slide1 {
  background-image: url("../img/20220714_familiaahfrete48_desk.webp");
  text-align: right;
  align-items: flex-end;
}

.slide2 {
  background-image: url("../img/20220712_oleofacialgota_desk.webp");
  text-align: left;
  align-items: flex-start;
}

.slide3 {
  background-image: url("../img/20220712_oleocorporal_desk.webp");
  text-align: right;
  align-items: flex-end;
}

.slidershow-tag {
  display: inline-block;
  padding: 0 10px;
  color: var(--dark-grey);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 150%;
  background-color: var(--dark-pink);
  margin-bottom: 20px;
}

.slidershow-p {
  font-size: 35px;
  text-decoration: none;
  line-height: 1.3;
}

.dark-font {
  color: var(--dark-grey);
  font-weight: 700;
}

.white-font {
  color: var(--white);
  font-weight: 600;
}

.section-slidershow a:link,
.section-slidershow a:active {
  text-decoration: none;
}

.slider-btn,
.slider-btn:hover {
  font-size: 18px;
  font-family: "poppins";
  font-weight: 600;
  border: none;
  border-radius: 4px;
  text-transform: lowercase;
  padding: 12px 20px;
  cursor: pointer;
}

.white-bg {
  background-color: var(--white);
  color: var(--dark-grey);
}

.dark-bg {
  background-color: var(--dark-grey);
  color: var(--white);
}

.slide3 .slidershow-tag {
  background-color: var(--yellow);
}

.side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.302);
  padding: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 99;
}

.side-btn-left {
  left: 15px;
}
.side-btn-right {
  right: 48px;
}

.dots-slider {
  text-align: center;
  margin: 10px 0 70px 0;
}
.dot-slider {
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: var(--light-purple);
  border-radius: 100%;
  margin: 0 4px;
}

.dot-slider:hover,
.dot-slider:active,
.dot-slider:focus {
  background-color: var(--purple);
}

/* Section Banners */

.section-banners {
  margin: 70px auto 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  max-width: 1440px;
}

.banner {
  /* height: 379.802px; */
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner-wide {
  grid-column: 1 / -1;
}

.banner img {
  transform: scale(110%);
}

.banner .outline-btn {
  position: relative;
  bottom: 50px;
  background-color: transparent;
  padding: 14px 65px;
  font-weight: 700;
  color: var(--dark-grey) !important;
  border: 3px solid var(--dark-grey) !important;
  border-radius: 3px;
  font-size: 16px;
  text-decoration: none;
}
.outline-btn:hover {
  background-color: var(--dark-grey);
  color: var(--white) !important;
}

/* Section Products */
.section-products {
  text-align: center;
}

.formula {
  margin: 64px 0;
}
.formula-heading {
  font-family: "mirador-bold", "poppins", sans-serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.formula-link:link,
.formula-link:active,
.formula-link:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-grey);
  width: 247px;
  height: 48px;
  font-weight: 700;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  margin: 50px auto 0 auto;
}

.products-grid {
  margin: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 64px;
  justify-content: center;
  align-items: center;
}

.product {
  text-align: left;
  position: relative;
}

.product-rating ion-icon {
  vertical-align: middle;
}

.product-rating p {
  margin-left: 4px;
}

.product-rating {
  font-size: 16px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: clamp(41%, 20vh, 60%);
  z-index: 99;
  padding: 4px 8px;
  align-items: center;
  display: flex;
}

.free-delivery {
  background-color: var(--green);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 8px;
  position: absolute;
  top: 3%;
  line-height: 130%;
  border-radius: 3px 0 0 3px;
}

.recorrencia {
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  background-color: var(--light-purple);
  padding: 8px 12px;
  border-radius: 3px 0 0 3px;
  bottom: 41%;
  right: 0;
}

.product-img-a,
.product-img-b {
  margin: 0 auto;
}

.product-img-a {
  opacity: 1;
  transition: all 0.5s ease;
}
.product-img-b {
  opacity: 1;
  position: absolute;
  left: 0;
  z-index: -99;
}

.product-img-a:hover {
  opacity: 0;
}

.product-text {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.product-tittle:link,
.product-tittle:active,
.product-tittle:visited {
  color: var(--dark-grey);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-left: 16px;

  transition: all 0.3s;
}

.product-tittle:hover {
  color: var(--purple);
}

.product-subtittle {
  font-size: 15px;
  font-family: "lato", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 16px;
}

.product-price {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  margin: 10px 0 0 16px;
}

.full-price {
  color: #999;
  font-size: 13px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: line-through;
}

.tag-price {
  background-image: url("../img/tag.svg");
  background-repeat: no-repeat;
  font-size: 13px;
  font-weight: 700;
  margin-left: 4px;
  padding: 2px 4px 2px 13px;
  min-width: 65px;
  height: 20px;
}

.product-big-price {
  font-size: 18px;
  font-weight: 700;
}

.products-btn {
  margin-top: 16px;
  display: flex;
  width: 100%;
}
.big-btn,
.big-btn:link,
.big-btn:active {
  display: flex;
  width: 100%;
  font-size: 18px;
  background-color: var(--dark-grey);
  border-radius: 3px;
  height: 56px;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transform: all 0.3s ease-in;
  text-align: center;
}

.big-btn:hover {
  background-color: var(--dark-pink);
  color: var(--dark-grey);
}

.bag-btn {
  display: flex;
  border: 3px solid var(--dark-grey);
  background-color: var(--white);
  border-radius: 3px;
  margin-left: 12px;
  padding: 0 16px;
  height: 56px;
  align-items: center;
  transform: all 0.2s ease-in;
}
.btn-icon {
  color: var(--dark-grey);
  font-size: 17px;
}

.bag-btn:hover {
  background-color: var(--purple);
  border: 3px solid var(--purple);
}

.bag-btn:hover .btn-icon {
  color: var(--white);
}

.all-products-btn:link,
.all-products-btn:active,
.all-products-btn:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  width: 247px;
  height: 48px;
  font-weight: 700;
  color: var(--dark-grey);
  border: 3px solid var(--dark-grey);
  border-radius: 3px;
  font-size: 14px;
  text-decoration: none;
  margin: 50px auto 0 auto;
}

/* Section Treatments */

.treatments-heading {
  font-family: "mirador-bold", "poppins", sans-serif;
  font-size: 36px;
  padding: 0px 200px;
  margin: 60px 0 40px 0;
}

.treatments-containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 30px;
}

.treatment {
  position: relative;
}

.treatment img {
  padding: 5px;
  text-align: center;
  vertical-align: middle;
  border-radius: 8px;
  height: 82px;
  position: relative;
}

.treatment-tittle {
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 18px;
  font-weight: 600;
}

/* Section Quiz */

.section-quiz {
  margin: 94px 30px;
}
.quiz-mobile {
  display: none;
}

/* Section Ouvir, aprender e melhorar */

.section-ouvir {
  margin: 80px 154px;
  /* margin-bottom: 105px; */
}

.ouvir-heading {
  margin-bottom: 66px;
  font-size: 16px;
  font-weight: 400;
}

.ouvir-tittle {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.section-ouvir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 110px;
  column-gap: 64px;
}

.ouvir-text {
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  margin-bottom: 5px;
}

.ouvir-person {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}

/* Section Blog */

.blog-heading {
  font-size: 36px;
  margin-bottom: 64px;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  max-width: 1440px;
  grid-template-columns: auto auto;
  column-gap: 10px;
  margin: 0 auto 130px;
  padding: 10px 5px;
}

.blog-img {
  overflow: hidden;
  height: 375px;
  position: relative;
}

.blog-img-text,
.blog-img-text:link,
.blog-img-text:active {
  width: 300px;
  font-size: 26px;
  line-height: 46px;
  color: var(--dark-grey);
  font-weight: 700;
  text-align: left;
  position: absolute;
  top: 140px;
  left: 20px;
  transition: all 0.2s ease;
}

.blog-img-text:hover {
  color: var(--purple);
}

.blog-img-bg {
  background-color: #fff75f;
}

/* Testimonials */

.section-testimonials {
  margin: 0 50px 118px;
  text-align: center;
}

.testimonials-container {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 540px;
  letter-spacing: normal;
  margin: 0 auto;
}

.testimonials {
  height: 160px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: opacity 3s ease;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fa-quote-left,
.fa-quote-right {
  color: #d1d1d1;
  font-size: 18px;
  position: absolute;
  top: -16px;
}
.fa-quote-left {
  right: 101%;
}

.fa-quote-right {
  left: 101%;
}

.brands {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
}

.brands img {
  cursor: pointer;
  max-width: 110px;
  vertical-align: middle;
  margin: 0 35px;
}

.brand-testimonial {
  position: relative;
}

.brand-testimonial::after {
  content: "";
  position: absolute;
  transform: translateX(100%);
  height: 5px;
  width: 0%;
  background-color: var(--green);
  bottom: -10px;
  opacity: 0;
  left: 0px;
}

.brand-testimonial.active::after {
  content: "";
  width: 50%;
  left: -46px;
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Section IG */

.section-ig {
  margin: 0 auto 63px;
  text-align: center;
}

.heading-ig {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, Open Sans,
    Helvetica Neue, sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ig-img {
  width: 100%;
  height: 100%;
}

.ig-img-icon {
  width: 40px;
  height: 40px;
  color: #dddddd;
  background-color: var(--dark-grey);
  position: absolute;
  top: 8px;
  right: 4px;
}

.ig-container {
  position: relative;
}

.ig-info-container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.8);
  font-family: -apple-system, BlinkMacSystemFont, Roboto, Open Sans,
    Helvetica Neue, sans-serif;
  visibility: visible;
  opacity: 0;
  transition: all 0.3s ease;
}

.ig-info {
  display: flex;
  flex-direction: column;
  height: 80%;
  width: 80%;
  justify-content: center;
  align-items: center;
  margin: 10% auto;
  transform: translateY(10%);
  transition: all 0.3s ease;
}

.ig-likes-comments-container {
  display: flex;
  width: 70%;
  justify-content: space-between;
}

.ig-info-likes,
.ig-info-comments {
  display: inline-block;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}

.ig-info-text {
  max-height: 84px;
  font-size: 14px;
  line-height: 21px;
  overflow: hidden;
  margin-top: 12%;
}

.ig-container ion-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
}

.ig-container:hover .ig-info-container {
  opacity: 1;
  visibility: visible;
}

.ig-container:hover .ig-info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-ig-next-icon {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 30%);
  transform: translate(50%, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  opacity: 0.85;
}

.next-icon {
  color: var(--white);
  font-size: 22px;
  margin-left: 6px;
}

.section-ig-next-icon:hover {
  opacity: 1;
}

/* Form Section */

.section-form {
  background-color: var(--light-purple);
  padding: 50px 30px 25px;
  text-align: center;
}

.form-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.form-text-container {
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.714286;
}

.form-text {
  margin: 15px 0 24px;
  font-size: 15px;
  font-family: "lato", sans-serif;
  font-weight: 400;
}

.form-input-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-input-btn input,
.form-input-btn input:focus {
  outline: none;
  border: none;
  height: 60px;
  width: 400px;
  border-radius: 3px;
  padding: 0 16px;
  margin-right: 40px;
}

.form-input-btn input::placeholder {
  font-size: 15px;
  font-family: "lato", sans-serif;
}

.form-btn {
  font-size: 16px;
  font-family: "lato", sans-serif;
  font-weight: bold;
  color: var(--dark-grey);
  background-color: var(--pink);
  border: none;
  padding: 12px 24px;
  height: 60px;
  /* margin-right: 40px; */
}

.form-btn:hover {
  cursor: pointer;
}

/* Footer */

.footer-container {
  max-width: 890px;
  margin: 63px auto 0 auto;
  text-align: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 42px;
  margin: 0 15px 42px;
}

.footer-container ul {
  list-style: none;
}

.footer-grid-tittle {
  font-size: 14px;
  color: #262626;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.84;
}

.footer-grid-text:link,
.footer-grid-text:active,
.footer-grid-text:visited {
  font-size: 13px;
  font-family: "lato", sans-serif;
  color: var(--black) !important;
  transition: all 0.2s ease;
  line-height: 1.84;
}

.footer-grid-text:hover {
  color: var(--purple) !important;
}

.siga-container {
  text-align: center;
}
.siga-tittle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 9px;
}
.siga-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}
.siga-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: var(--pink);
  color: var(--white);
  border-radius: 50%;
  margin: 0 11px;
  transition: all 0.3s ease;
}

.siga-logo ion-icon {
  font-size: 20px;
}

.siga-logo:hover {
  background-color: var(--purple);
}

.footer-sallve-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 38px;
}

.back-to-top {
  margin-bottom: 55px;
}

.back-to-top a:link,
.back-to-top a:active,
.back-to-top a:visited {
  font-size: 12px;
  text-decoration: none;
  color: var(--black);
  font-family: "lato", sans-serif;
}

.back-to-top ion-icon {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 5px;
}

.back-to-top:hover a {
  color: var(--purple);
}

.ingredientes {
  border-style: solid none;
  border-color: #e7e7e7;
  padding: 16px 40px;
  width: 100%;
  font-family: "lato", sans-serif;
  font-size: 12px;
  line-height: 1.84;
  font-weight: 400;
}

.ingredientes a:link,
.ingredientes a:visited,
.sallve-midia a:link,
.sallve-midia a:visited {
  color: var(--dark-grey) !important;
}

.ingredientes a:hover,
.sallve-midia a:hover,
.footer-bottom a:hover {
  color: var(--purple) !important;
}

.p-bold {
  font-weight: 600;
}

.sallve-midia {
  border-bottom: solid;
  border-color: #e7e7e7;
  padding: 16px 40px;
  width: 100%;
  font-family: "lato", sans-serif;
  font-size: 12px;
  line-height: 1.84;
  font-weight: 400;
}

.footer-bottom {
  padding: 10px 0;
}

.footer-bottom p,
.footer-bottom a:link {
  font-size: 11px;
  color: var(--dark-grey);
  font-family: "lato", sans-serif;
  text-decoration: none;
  display: block;
}

.footer-bottom-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 30px;
  row-gap: 16px;
  padding: 0 15px;
  margin: 10px auto;
  justify-content: center;
  align-self: center;
}

.footer-bottom-payment {
  max-width: 220px;
  grid-column: 1 / -1;
  margin: 15px auto;
}
