#padroes {
  --cor-primaria-um: #D58D00;
  --cor-primaria-dois: #8A5C00;
  --cor-primaria-tres: #FFB319;
  --cor-segundaria-um: #0055D6;
  --cor-segundaria-dois: #00378A;
  --botao-compra-um: #f7c72a;
  --botao-compra-dois: #755e13;
  --branco: #f5f5f5;
  --preto: #222;
  --padding-sessoes: 60px 0;
  --fonte-padrao: 16px;
}

@media screen and (max-width: 500px) {
  #padroes {
    --padding-sessoes: 30px 0;
  }
}

body {
  font-family: "Museo Sans 300";
  font-size: var(--fonte-padrao);
}

#intro {
  display: flow-root;
  background: url(/assets/img/teste-fundo-3.webp) rgba(0,0,0,.5);
  background-size: 100%;
  background-position: center top;
  background-blend-mode: overlay;
}

@media screen and (max-width: 500px) {
  #intro {
    background-size: 1100px;
    background-repeat: no-repeat;
    background-color: var(--preto);
  }
}

@media screen and (min-width: 1200px) {
  #intro {
    min-height: 100vh;
    max-height: max-content;
  }
}

#intro .row {
  margin: 0;
}

#contato-topo {
  padding: 0 22px;
  margin: 15px 0 0px 0;
}

#contato-topo a {
  color: white;
}

#menu {
  padding: 0 22px;
  border-collapse: separate;
  color: var(--branco);
}

@media screen and (max-width: 500px) {
  #menu {
    padding: 22px;
    padding-bottom: 0px;
  }
}

#menu div[class*='col-'] {
  border-bottom: 2px solid rgba(255, 255, 255, .5);
}

#logo {
  font-family: 'Museo Sans 500';
  font-size: 30px;
  margin: 0 0 15px 0;
  background-color: #046adb;
  padding: 0 5px;
}

@media screen and (max-width: 500px) {
  #logo {
    font-size: 25px;
    padding: 0;
    width: fit-content;
    width: -moz-fit-content;
  }
}

#titulo {
  margin-bottom: 10px;
  font-family: 'Museo Sans 500';
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.78px;
  margin-top: 30px;
}

@media screen and (max-width: 500px) {
  #titulo {
    font-size: 21px;
    line-height: 30px;
  }
}

#titulo-chamada {
  margin-bottom: 22px;
  font-size: 61px;
  line-height: 1.2em;
  text-align: center;
  margin: .67em 0;
  font-family: 'Museo Sans 500';
}

@media (min-width: 1200px) {
  #titulo-chamada {
    white-space: nowrap;
  }
}

@media screen and (max-width: 500px) {
  #titulo-chamada {
    font-size: 32px;
    margin: 20px 0 20px 0;
    line-height: 40px;
    font-weight: 400;
    min-height: 80px;
  }
}

#titulo-argumento {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.4em;
  text-align: center;
  letter-spacing: -.54px;
  font-weight: 300;
  font-family: 'Roboto';
}

@media screen and (max-width: 500px) {
  #titulo-argumento {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(.7);
    transform: translateY(-1200px) scale(.7);
    opacity: .7;
  }
  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

#chama-menu {
  display: none;
  position: relative;
}

#chama-menu:before {
  content: '\f0c9';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#chama-menu.ativo {
  background: rgba(255,255,255,.5);
}

#chama-menu.ativo:before {
  content: '\f00d';
}

#chama-menu:after {
  content: '';
  position: absolute;
  bottom: -165px;
  height: 0;
  width: 250px;
  background: white;
  left: -250px;
  transition: height .3s;
  vertical-align: top;
  transform-origin: top;
}

#chama-menu.ativo:after {
  height: 150px;
  animation: backInDown 1s;
  animation-iteration-count: 1;
}

@media screen and (max-width: 800px) and (orientation: portrait) {
  #chama-menu {
    display: inline-block;
    color: white;
  }
}

.btn.clean {
  width: 209px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  border: 1px solid var(--branco);
  border-radius: 1px;
  color: var(--branco);
  font-size: 17px;
  font-weight: 400;
  background-image: url(/assets/img/icon-shopping-cart.svg);
  background-position: 15% 48%;
  background-size: 16px;
  background-repeat: no-repeat;
}

.btn.clean:hover {
  background-color: var(--cor-segundaria-um);
}

@media screen and (max-width: 800px) and (orientation: portrait) {
  .btn.clean, #contato-topo {
    display: none;
    position: absolute;
  }
}

@media screen and (max-width: 800px) and (orientation: portrait) {
  .btn.clean {
    left: -212px;
    top: 144px;
    filter: invert(1);
    z-index: 3;
  }
}

@media screen and (max-width: 800px) and (orientation: portrait) {
  #contato-topo {
    top: 85px;
    width: 242px;
    color: var(--preto)!important;
    z-index: 5;
    left: 55px;
    text-align: left;
    font-size: 15px;
  }
}

@media only screen and (min-width: 361px) and (max-width: 400px) {
  #contato-topo {
    left: 21%;
  }
}

@media only screen and (min-device-width: 400px) and (max-device-width: 667px) {
  #contato-topo {
    left: 100px;
  }
}

@media screen and (max-width: 500px) {
  #contato-topo a {
    color: var(--preto)!important;
    z-index: 5;
  }
}

.btn.clean.ativo, #contato-topo.ativo {
  display: block;
  animation: backInDown 1s;
  animation-iteration-count: 1;
}

#pote-inicio {
  /*width: 100%;*/
  max-width: 246px;
}

@media screen and (max-width: 500px) {
  #pote-inicio {
    max-width: 195px;
    position: relative;
    z-index: 2;
  }
}

@media screen and (min-width: 1400px) {
  .container.maislargo {
    min-width: 1366px;
  }
}

#itens .primeiro {
  padding-left: 0;
}

#itens div[class*=col-] {
  background-image: url(/assets/img/linha-vertical-pqn.webp);
  background-position: 100% 50%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 500px) {
  #itens div[class*=col-] {
    padding: 0;
    padding-right: 5px;
    padding-left: 5px;
    max-width: 38%;
  }
}

@media screen and (max-width: 500px) {
  #itens div[class*=col-].sem-barra {
    padding-right: 0;
    max-width: 38%;
  }
}

@media screen and (max-width: 500px) {
  #itens div[class*=col-].primeiro {
    padding-left: 0;
    max-width: 31.3%;
  }
}

#itens div[class*=col-].ultimo {
  padding-right: 0;
  background-image: none;
  align-self: center;
}

#itens div[class*=col-].sem-barra {
  background-image: none;
}

.subtitulo-argumento {
  margin-top: 0;
  font-family: 'Museo Sans 500';
  font-size: 28px;
  line-height: 1.33em;
  font-weight: 400;
}

@media screen and (max-width: 500px) {
  .subtitulo-argumento {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (max-width: 500px) {
  .subtitulo-argumento ~ p.text-white {
    font-size: 13px;
    line-height: 21px;
  }
}

.button-diferente {
  position: relative;
  width: 182px;
  height: 38px;
  padding: 14px 26px;
  background-position: 75% 50%;
  background-size: 19px;
  transition: opacity .2s ease;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  display: inline-block;
  transition: all .3s ease-in;
  background-image: url('/assets/img/icon-shopping-cart.svg');
  background-repeat: no-repeat;
}

.b-diferente-borda {
  border-color: rgb(255,255,255);
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  z-index: 0;
  width: 160px;
  height: 38px;
  padding-right: 0;
  border-style: solid;
  border-width: 3px;
  border-radius: 0 20px 20px 0;
  background-color: rgba(0,0,0,.01);
  box-shadow: 0 0 20px 0 var(--cor-primaria-um);
  -webkit-transition: box-shadow .2s cubic-bezier(.19,1,.22,1);
  transition: box-shadow .2s cubic-bezier(.19,1,.22,1);
}

.b-diferente-dentro {
  border-color: rgb(255,255,255);
  z-index: 1;
  width: 115px;
  border-radius: 2px;
}

.b-diferente-texto {
  position: relative;
  z-index: 2;
}

.b-diferente-dentro, .b-diferente-borda {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  height: 38px;
  border-style: solid;
  border-width: 3px;
  left: 0;
}

.button-diferente:hover, .button-diferente.preto:hover {
  border-color: var(--cor-primaria-um);
  text-decoration: none;
  transform: scale(1.1);
  transition: all .3s ease-out;
  color: white;
  background-image: url('/assets/img/icon-shopping-cart-hover.webp');
}

.button-diferente:hover .b-diferente-borda, .button-diferente:hover .b-diferente-dentro {
  border-color: var(--cor-segundaria-um);
}

.button-diferente:hover .b-diferente-texto, .button-diferente.preto:hover .b-diferente-texto {
  color: var(--cor-primaria-um);
}

.button-diferente.preto {
  border-color: var(--preto);
  background-image: url('/assets/img/icon-shopping-cart-preto.webp');
}

.button-diferente.preto .b-diferente-borda {
  box-shadow: none;
}

.button-diferente.preto .b-diferente-borda, .button-diferente.preto .b-diferente-dentro {
  border-color: var(--preto);
}

.button-diferente.preto .b-diferente-dentro {
  background: var(--branco);
}

.button-diferente.preto .b-diferente-texto {
  color: var(--preto);
}

@media screen and (max-width: 500px) {
  #intro .button-diferente {
    display: none;
  }
}

.meio {
  align-self: center;
}

@media screen and (max-width: 500px) {
  .meio {
    padding-left: 0;
    padding-right: 0;
  }
}

#reviews {
  display: none;
}

@media screen and (max-width: 500px) {
  #reviews {
    display: block;
    background: white;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-top: 45px;
    position: relative;
    top: -50px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: -30px;
  }
}

#estrelas {
  color: var(--yellow);
  width: fit-content;
  width: -moz-fit-content;
  display: inline-block;
  margin-right: 10px;
}

#avalicoes {
  font-size: 14px;
  display: inline-block;
  color: var(--gray);
}

.btn-mobile {
  background: var(--yellow);
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  padding: 9px 15px;
  width: 100%;
}

.btn-mobile:hover, .btn-mobile:active {
  color: #333;
  text-decoration: none;
}

#ultima-linha {
  width: 50%;
  white-space: nowrap;
}

@media screen and (max-width: 500px) {
  #ultima-linha {
    width: 100%;
    white-space: break-spaces;
    text-align: center;
  }
}

.microscopio {
  width: 25%;
}

@media screen and (max-width: 800px) and (orientation: portrait) {
  .microscopio {
    width: 100%;
    text-align: center;
  }
}

.microscopio:before {
  content: '';
  background: url('/assets/img/icon-microscope.svg') no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: block;
  float: left;
}

@media screen and (max-width: 500px) {
  .microscopio:before {
    display: inline-flex;
    float: none;
  }
}

#argumentos {
  background: url('/assets/img//poten-seccs-power-bg.webp') var(--cor-segundaria-dois) center top;
  background-repeat: repeat;
  background-size: cover;
  position: relative;
  padding: 88px 0;
  font-family: 'Museo Sans 300';
  background-blend-mode: luminosity;
}

@media screen and (max-width: 500px) {
  #argumentos {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 40px 0 0 0;
    background-image: url(/assets/img/casal.webp);
    background-color: #fff;
    background-blend-mode: normal;
    background-size: 150%;
  }
}

#argumento-texto, #argumento-itens {
  max-width: 440px;
  padding: 60px 50px 30px 50px;
  background-color: #fff;
}

@media screen and (max-width: 500px) {
  #argumento-texto, #argumento-itens {
    padding: 30px;
  }
}

@media screen and (max-width: 500px) {
  #argumento-texto:after {
    padding: 30px;
  }
}

#argumento-texto h2, #argumento-itens h2 {
  margin-top: 0;
  margin-bottom: 33px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.13em;
  font-family: 'Museo Sans 500';
}

@media screen and (max-width: 500px) {
  #argumento-texto h2, #argumento-itens h2, #segredo h2, #rigorosamente-testada, #o-que-a-midia, h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 500px) {
  #argumento-texto h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 500px) {
  h3 {
    font-size: 20px;
  }
}

.icone-lista:before {
  content: '\f560';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-color: var(--cor-segundaria-um);
  position: absolute;
  left: -15px;
  font-size: larger;
  color: var(--branco);
  padding: 1px 5px;
  border-radius: 100%;
}

.icone-lista {
  position: relative;
  padding-left: 22px;
}

.icone-lista strong {
  color: var(--cor-segundaria-dois);
}

.icone-lista em {
  font-size: calc(var(--fonte-padrao) / 1.1);
}

@media (min-width: 1200px) {
  .icone-lista.nalinha strong {
    white-space: nowrap;
  }
}

#maca-macro {
  width: 100%;
  max-width: 284px;
}

#btn-argumentos-mobile {
  display: none;
}

@media screen and (max-width: 500px) {
  #btn-argumentos-mobile {
    display: block;
    position: absolute;
    bottom: -190px;
    right: 0;
  }
}

.energy-sex {
  padding-left: 0;
  padding-right: 0;
}

#o-que-a-midia {
  padding-left: 10px;
}

@media screen and (max-width: 500px) {
  #o-que-a-midia {
    padding-left: 15px;
  }
}

#o-que-a-midia h2 {
  text-transform: uppercase;
  margin-top: 50px;
  margin-bottom: 30px!important;
}

@media screen and (max-width: 500px) {
  #argumento-itens {
    margin-top: 200px;
    padding-top: 70px;
  }
}

.deDia {
  text-align: right;
}

@media screen and (max-width: 500px) {
  .deDia {
    text-align: left;
  }
}

#fatos {
  margin: 44px 0;
  font-family: 'Museo Sans 500';
}

@media screen and (max-width: 500px) {
  #fatos {
    margin: 0;
    padding: 40px 0;
  }
}

#fatos p {
  font-weight: 300;
  font-family: 'Museo Sans 300';
}

#icones-laudo {
  width: 100%;
  display: flex;
}

@media screen and (max-width: 500px) {
  #icones-laudo {
    margin-bottom: 15px;
  }
}

#icones-laudo img {
  width: 100%;
  max-width: 60px;
}

.so_desktop {
  display: initial;
}

@media screen and (max-width: 500px) {
  .so_desktop {
    display: none;
  }
}

#pote-meia-bola {
  position: relative;
}

#pote-meia-bola img {
  width: 100%;
  position: relative;
  top: -94px;
  margin-bottom: -74px;
}

@media screen and (max-width: 500px) {
  #pote-meia-bola img {
    top: 0;
    margin-bottom: 20px;
    mix-blend-mode: darken;
  }
}

#certificados {
  width: 100%;
}

@media screen and (max-width: 500px) {
  #certificados {
    display: flow-root!important;
  }
}

#certificados img {
  mix-blend-mode: darken;
  margin: auto;
  flex-direction: row;
  width: 100%;
  max-width: 71px;
}

@media screen and (max-width: 500px) {
  #certificados img {
    margin: 0;
    width: 32%;
    float: left;
    max-width: 150px;
  }
}

#laboratorio {
  background-image: linear-gradient(to bottom, var(--cor-segundaria-um), var(--cor-segundaria-dois)), url(/assets/img/fundo-honey.webp);
  background-blend-mode: hard-light;
  background-size: cover;
}

@media screen and (max-width: 500px) {
  #laboratorio {
    background-image: linear-gradient(to bottom, var(--cor-segundaria-dois), var(--cor-segundaria-dois)), url(/assets/img/fundo-honey.webp);
    background-blend-mode: darken;
    background-position: center;
  }
}

#rigorosamente-testada {
  font-size: 1.50rem;
  text-align: left;
  width: 100%;
  padding: 3rem 0 1.5rem 0;
}

@media screen and (max-width: 500px) {
  #rigorosamente-testada {
    font-size: 22px;
  }
}

.fundo-branco {
  background: white;
}

#doutora {
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  #doutora {
    width: calc(100% - 35px);
    margin: 30px auto 0px auto;
    display: block;
  }
}

.midia-depoimento {
  background: white;
}

.midia-depoimento p {
  padding: 44px;
  background-image: url('/assets/img/apostrofo.svg');
  background-position: 22px 22px;
  background-size: 25px;
  background-repeat: no-repeat;
  font-size: 20px;
}

@media screen and (max-width: 500px) {
  .midia-depoimento p {
    padding: 29px 44px 29px 50px;
  }
}

#carousel-2 .carousel-indicators li {
  background-color: var(--preto)!important;
}

#carousel-2 .carousel-inner {
  height: 270px;
  background: white;
}

@media screen and (max-width: 500px) {
  #carousel-2 .carousel-inner {
    height: auto;
    min-height: 355px;
  }
}

@media screen and (max-width: 500px) {
  #carousel-2 {
    width: calc(100% - 30px);
    margin: auto;
  }
}

.carousel-control-next, .carousel-control-prev {
  filter: invert(1);
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  position: relative;
  top: 50px;
}

.midia-caraousel {
  display: flex;
}

@media screen and (max-width: 500px) {
  .midia-caraousel {
    flex-direction: column-reverse;
  }
}

.midia-caraousel img.w-100 {
  max-width: 275px;
  height: 100%;
  margin: auto;
}

.midia-caraousel img.w-100[alt='Globo'] {
  max-width: 205px;
}

@media screen and (max-width: 500px) {
  .midia-caraousel img.w-100[alt='Globo'] {
    max-width: 207px;
    position: relative;
    top: 10px;
  }
}

@media screen and (max-width: 500px) {
  #globo {
    margin-bottom: 30px;
    display: inline-block;
  }
}

@media screen and (max-width: 500px) {
  .midia-caraousel img.w-100[alt='UOL'] {
    /*margin-bottom: -30px;*/
  }
}

#tipos-de-maca {
  width: 100%;
  /*margin: 0 auto;*/
  display: inline-flex;
}

@media screen and (max-width: 500px) {
  #tipos-de-maca {
    width: calc(100% - 30px);
    margin: 50px auto 15px auto;
    display: block;
  }
}

#iframe-video, #yt-player {
  width: 100%;
  height: 350px;
}

@media screen and (max-width: 500px) {
  #iframe-video, #yt-player {
    height: 300px;
  }
}

#segredo {
  background: var(--light);
  padding: var(--padding-sessoes);
}

#erecao {
  background: var(--light);
  padding: 0;
}

#erecao img {
  mix-blend-mode: darken;
}

@media screen and (max-width: 500px) {
  #erecao {
    background: transparent;
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  #erecao img {
    mix-blend-mode: normal;
    display: block;
    margin: 0 auto;
    width: calc(100% - 30px);
  }
}

@keyframes esquerdaDireita {
  from {
    margin-right: 7%;
  }
  to {
    margin-right: 40%;
  }
}

.prices {
  position: relative;
  padding: var(--padding-sessoes);
  z-index: 2;
}

.seta-preta {
  background-color: #e9ecef;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Museo Sans 500";
}

.price {
  background: white;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
  transition: background 0.3s,border 0.3s,border-radius 0.3s,box-shadow 0.3s;
  max-width: 320px;
  margin: 15px auto;
  padding: 0;
  text-align: center;
  transition: all .3s ease-in;
}

.fundo {
  background: #fff;
}

.economia {
  line-height: 1;
  color: white;
  font-size: 15px;
  font-weight: 700;
  background: var(--cor-segundaria-dois);
  width: fit-content;
  width: -moz-fit-content;
  padding: 5px;
  border-radius: 5px;
  position: relative;
  top: -15px;
  display: block;
  margin: 0 auto -10px auto;
}

.price.gold .economia {
  background: var(--green);
  animation: esquerdaDireita 2s ease-in-out infinite alternate;
  white-space: nowrap;
}

.economia span {
  animation: pulsar-opacidade ease-in-out 1.4s infinite;
}

.price .desconto {
  padding: 6px;
  background: var(--cor-segundaria-um);
  margin: 0 auto 5px auto;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  width: fit-content;
  width: -moz-fit-content;
  display: block;
}

.price .desconto span {
  font-weight: 700;
}

.valorPote {
  color: #54595f;
  font-size: 18px;
  font-weight: 300;
}

.valorPote strong {
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 2px;
}

.pote {
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  height: auto;
  max-width: 210px;
}

@media screen and (max-width: 500px) {
  .pote {
    width: 33%;
    float: left;
    margin-left: 10px;
  }
}

.descricaoPote {
  display: inline-flex;
  width: 85%;
  align-items: center;
}

.descricaoPote p {
  color: black;
  font-weight: 700;
  width: 100%;
  margin: 0px 0 5px 0;
}

@media screen and (max-width: 500px) {
  .descricaoPote {
    width: 63%;
  }
}

.descricaoPote p {
  text-transform: uppercase;
}

.descricaoPote p del {
  text-decoration: none;
  position: relative;
  z-index: 2;
  color: var(--red);
}

.descricaoPote p del:before {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--red);
  display: inline-block;
  position: absolute;
  transform: rotate( 10deg);
  bottom: 11px;
}

.descricaoPote p span {
  font-size: 33px;
  font-weight: 700;
}

@media screen and (max-width: 500px) {
  .descricaoPote p span {
    white-space: nowrap;
  }
}

.button {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Roboto';
  text-transform: uppercase;
  background-color: var(--botao-compra-um);
  border-radius: 5px;
  border-style: solid;
  border-width: 0 0 4px 0;
  border-color: var(--botao-compra-dois);
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  margin: 15px auto;
  color: black;
  text-decoration: none;
  padding: 12px 35px;
  background-repeat: no-repeat;
  transition: all .3s ease-in;
  letter-spacing: 1px;
}

.button:hover {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 500px) {
  .button {
    position: relative;
  }
}

@media screen and (max-width: 500px) {
  .button:after, .button:before {
    content: '';
    position: absolute;
    background: url('/assets/img/seta-comprar.svg') no-repeat left top;
    background-size: 100% auto;
    top: 0;
    height: 45px;
    width: 22%;
    filter: contrast(80%) brightness(104%) saturate(160%);
  }
}

@media screen and (max-width: 500px) {
  .button:before {
    left: -50px;
    top: 9px;
  }
}

@media screen and (max-width: 500px) {
  .button:after {
    right: -50px;
    top: 9px;
    transform: rotateY(-180deg);
  }
}

#uso {
  color: var(--gray);
  background: var(--light);
  padding: 15px 0;
  font-size: 14px;
  font-weight: 300;
}

.price:hover .button {
  transform: scale(1.1);
  transition: all .3s ease-out;
}

.price:hover .valorPote strong {
  color: white;
  background: #54595f;
}

@media screen and (max-width: 500px) {
  .price .row {
    flex-direction: column;
  }
}

#bula {
  padding: var(--padding-sessoes);
}

#fatos-numeros {
  min-height: 100px;
  align-items: start;
}

#fatos-numeros h2 {
  text-transform: uppercase;
}

.table.tabela-bula thead th, .table.tabela-bula tbody td {
  border-bottom: none;
  vertical-align: text-top;
  border-top: none;
  color: var(--gray);
  font-family: 'Museo Sans 300';
  font-size: 14px;
  line-height: 20px;
  padding: 4px 0;
}

.table.tabela-bula thead th {
  font-weight: 300;
}

.table.tabela-bula thead th:not(:first-child), .table.tabela-bula tbody td:not(:first-child) {
  text-align: right;
}

.table-responsive {
  border: 6px solid var(--preto);
  border-right: 0;
  border-left: 0;
  padding: 15px 0;
}

.tabela-bula tbody tr:nth-child(odd) {
  background: #e4e4e4;
}

.borda-lateral {
  border-right: 1px solid rgba(97,97,97,.2);
}

#informativo {
  font-size: 12px;
  padding-top: 10px;
  color: var(--gray);
}

section[class*='seta-'], div[class*='seta-'] {
  position: relative;
  padding: var(--padding-sessoes);
  z-index: 2;
}

.seta-branca {
  background-color: #fff !important;
}

#depoimentos.seta-branca {
  padding-bottom: 0;
}

.depoimentoswhats {
  max-width: 285px;
  margin: 0 auto;
}

.moldemao {
  position: relative;
  margin-top: 15px;
  min-height: 790px;
}

.moldemao:before {
  content: '';
  background: url(/assets/img//fundo-com-mao.webp) center no-repeat;
  background-size: contain;
  display: block;
  width: 800px;
  height: 850px;
  position: absolute;
  z-index: 3;
  overflow: hidden;
  top: -5%;
  left: 9%;
}

@media screen and (max-width: 500px) {
  .moldemao {
    padding: 0 0 125px 0;
    margin-bottom: -83px;
    min-height: 740px;
  }
}

@media only screen and (min-width: 280px) and (max-width: 320px) {
  .moldemao {
    min-height: 740px;
    margin-bottom: -172px;
  }
}

@media screen and (max-width: 500px) {
  .moldemao:before {
    width: 100%;
    height: 100%;
    background-size: 555px;
    background-position: -155px 3px;
    left: 0;
  }
}

@media screen and (min-width: 500px) and (max-width: 800px) and (orientation: portrait) {
  .moldemao:before {
    width: 100%;
    height: 100%;
    background-size: 555px;
    background-position: -155px 3px;
    left: 0;
  }
}

@media only screen and (min-width: 280px) and (max-width: 320px) {
  .moldemao:before {
    background-position: -126px 5px;
    background-size: 480px;
  }
}

@media only screen and (min-width: 381px) and (max-width: 400px) {
  .moldemao:before {
    background-position: -136px 3px;
  }
}

@media only screen and (min-width: 361px) and (max-width: 380px) {
  .moldemao:before {
    background-position: -145px 3px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 500px) {
  .moldemao:before {
    background-position: -130px 3px;
  }
}

@media only screen and (min-width: 501px) and (max-width: 800px) and (orientation:portrait) {
  .moldemao:before {
    background-position: 30px 3px;
  }
}

@media screen and (max-width: 500px) {
  .depoimentoswhats {
    width: 65%;
    max-width: 234px;
  }
}

@media screen and (min-width: 501px) and (max-width: 800px) and (orientation: portrait) {
  .depoimentoswhats {
    width: 65%;
    max-width: 225px;
  }
}

@media screen and (max-width: 500px) {
  .seta-branca:after, .seta-preta:before, .seta-vermelha:before, .seta-cinza:before {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .linha-vermelha {
    margin-top: -10px;
  }
}

.slick-prev, .slick-next {
  z-index: 150;
  top: 38%;
}

.slick-prev {
  left: -40px;
}

.slick-next {
  right: -38px;
}

.slick-prev:before, .slick-next:before {
  content: '';
  color: black;
  font-family: "Font Awesome 5 Free";
}

.slick-prev:before {
  content: "\f053";
  font-weight: 900;
  font-size: 40px;
}

.slick-next:before {
  content: "\f054";
  font-weight: 900;
  font-size: 40px;
}

#icones {
  padding: var(--padding-sessoes);
  background-image: url(/assets/img/teste-fundo-5.webp), linear-gradient(125deg, var(--cor-segundaria-um), var(--cor-segundaria-dois));
  background-blend-mode: multiply;
  background-size: cover;
  position: relative;
  z-index: 2;
  color: #fff;
  background-position: center;
}

#icones h2, #icones p {
  text-align: center;
}

#icones h2 {
  position: relative;
  z-index: 3;
}

.box-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.box-icons img {
  width: 80px;
  margin-right: 10px;
}

@media screen and (max-width: 500px) {
  .box-icons img {
    width: 43px;
    margin-right: 25px;
  }
}

#faq h2 {
  z-index: 3;
  position: relative;
}

@media screen and (max-width: 500px) {
  #faq h2:before {
    content: 'DÚVIDAS FREQUENTES';
    display: block;
    font-weight: bold;
  }
}

@media screen and (max-width: 500px) {
  #faq h2 strong {
    display: none;
  }
}

.acordeon {
  cursor: pointer;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
  color: var(--preto);
  background: var(--light);
  padding: 15px;
  margin: 0;
  border-bottom: 3px solid var(--preto);
  display: flex;
}

.acordeon:before {
  font-family: "Font Awesome 5 Free";
  content: '\f067';
  font-size: 13px;
  float: left;
  margin-right: 10px;
  margin-left: 5px;
  font-weight: 900;
  vertical-align: middle;
}

.acordeon.active:before {
  content: '\f068';
  position: relative;
  top: 2px;
}

.acordeon.active {
  font-weight: bold;
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border: 1px solid var(--gray-dark);
  border-top: 0;
}

.panel p {
  padding: 15px 0;
  text-align: left;
}

@media screen and (max-width: 500px) {
  .seta-branca:after, .seta-preta:before, .seta-vermelha:before, .seta-cinza:before {
    display: none;
  }
}

.icones-rodape li {
  line-height: 40px;
  font-size: 18px;
}

.icones-rodape li:first-child {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid;
  color: var(--preto);
  font-weight: bold;
}

.footer-dark ul.icones-rodape li a {
  color: var(--gray)!important;
  opacity: 1 !important;
}

.footer-dark ul.icones-rodape li a:hover {
  color: var(--contraste-um) !important;
}

.icones-rodape li:before {
  content: '';
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.icones-rodape li.fale:before {
  content: "\f590";
  font-weight: 900;
}

.icones-rodape li.sac:before {
  content: "\f0e0";
  font-weight: normal;
}

.icones-rodape li.whatsapp:before {
  content: "\f232";
  font-family: "Font Awesome 5 Brands";
  font-weight: normal;
}

.icones-rodape li.whatsapp {
  background: var(--green);
  padding: 0px 7px;
  color: white;
  font-size: medium;
  border-radius: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
}

.footer-dark .icones-rodape li.whatsapp a {
  color: white!important;
}

.icones-rodape li.horario:before {
  content: "\f017";
  font-weight: normal;
}

.icones-rodape li.links:before {
  content: "\f0c1";
  font-weight: 900;
}

.icones-rodape li.pedido:before {
  content: "\f0d1";
  font-weight: 900;
  margin-right: 6px;
}

.icones-rodape li.aviso:before {
  content: "\f06a";
  font-weight: 900;
  margin-right: 10px;
}

@media screen and (max-width: 500px) {
  .icones-rodape li.aviso:before {
    margin-right: 11px;
  }
}

.icones-rodape li.paginas:before {
  content: "\f15b";
  font-weight: 900;
  margin-right: 15px;
}

.icones-rodape li.pagamento:before {
  content: "\f09d";
  font-weight: 400;
}

.icones-rodape li.segura:before {
  content: "\f023";
  font-weight: 900;
}

@media screen and (max-width: 500px) {
  .footer-dark ul.icones-rodape ~ img, .footer-dark ul.icones-rodape {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 500px) {
  .seta-branca:after, .seta-preta:before, .seta-vermelha:before, .seta-cinza:before {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .seta-preta {
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 500px) {
  .seta-preta .row {
    flex-direction: column;
  }
}

.footer-dark {
  color: var(--gray);
  background-color: white;
  border-top: 2px solid var(--branco);
  padding-bottom: 0px !important;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-dark ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

.footer-dark ul a:hover {
  opacity: 0.8;
}

#btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  display: none;
  z-index: 27;
  border-radius: 50%;
  animation: zoomOut .3s 1;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }
  to {
    opacity: 0;
  }
}

#btn-whatsapp:before {
  content: '\f232';
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  padding: 1px 8px;
  display: block;
  color: white;
  font-size: 25px;
  cursor: pointer;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }
  50% {
    opacity: 1;
  }
}

#btn-whatsapp.ativo {
  display: block;
  animation: zoomIn .3s 1;
}

.navigation-clean .navbar-toggler {
  border-color: transparent;
}

.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-light .navbar-toggler-icon:before {
  content: '\f0c9';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: relative;
  top: 6px;
}

button[aria-expanded="true"].navbar-toggler .navbar-toggler-icon:before {
  content: '\f00d';
}

#maisMargem {
  margin-bottom: 90px;
}

@media screen and (max-width: 500px) {
  #ciencia {
    flex-direction: column-reverse;
  }
}

.argumentos-icons-item {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  box-shadow: 1px 1px 5px #ccc;
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 15px;
}

.argumentos-icons-item:first-child {
  margin-top: 28px;
}

@media screen and (max-width: 500px) {
  .argumentos-icons-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.argumentos-icons-item .argumentos-icone {
  flex: 1;
  max-width: 45px;
  margin-right: 10px;
  align-self: self-start;
}

@media screen and (max-width: 500px) {
  .argumentos-icons-item .argumentos-icone {
    align-self: center;
    margin-bottom: 5px;
  }
}

.argumentos-icons-item .argumentos-icone img {
  /*width: 100%;*/
  max-width: 45px;
}

@media screen and (max-width: 500px) {
  .argumentos-icons-item .argumentos-textos-item {
    text-align: center;
  }
}

.argumentos-icons-item .argumentos-textos-item h3 {
  margin-bottom: 0;
  font-weight: 900;
  font-size: var(--fonte-padrao);
}

.argumentos-icons-item .argumentos-textos-item p {
  margin-bottom: 0;
}

#potencializador {
  font-size: 22px;
}

@media screen and (max-width: 500px) {
  #potencializador {
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  #the-best {
    background-color: var(--branco);
  }
}

/* DEBUG IPHONE 5 */

@media screen and (max-width: 320px) {
  #txt-nyt img {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  #logo {
    font-size: 21px;
  }
}

@media screen and (max-width: 320px) {
  #titulo-chamada {
    min-height: 120px;
  }
}

@media screen and (max-width: 320px) {
  #chama-menu:after {
    left: -232px;
    bottom: -160px;
  }
}

@media screen and (max-width: 320px) {
  .btn.clean {
    left: -195px;
  }
}

@media screen and (max-width: 320px) {
  #contato-topo {
    left: 44px;
  }
}

