@import url(https://fonts.googleapis.com/css?family=Exo:300,400,500,600,700,800,900&display=swap);body {
  font-family: "Exo", sans-serif;
}

.container-m {
  width: 100%;
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1440px) {
  .container-m {
    width: 1320px;
    margin: 0 auto;
  }
}

@font-face {
  font-family: "Digital Light";
  src: url(/fonts/Digital-Light.ttf?cd50ba464ae4153bc0243cf1360a50bc);
}

@font-face {
  font-family: "Digital Medium";
  src: url(/fonts/Digital-Medium.ttf?10117842656409b4fdd1496074cc602c);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Digital Light", "Exo", sans-serif;
}

#hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 1200px) {
  #hero {
    grid-template-columns: 40% 55%;
  }
}

@media (max-width: 800px) {
  #hero {
    height: auto;
  }
}

#hero .video-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

#hero .video-background video {
  width: 100%;
}

@media (max-width: 1640px) {
  #hero .video-background video {
    width: auto;
    height: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

#hero .video-background:after {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(244, 139, 89, 0.6) 100%);
  opacity: 0.8;
  filter: alpha(opacity=30) progid:DXImageTransform.Microsoft.Alpha(opacity=30) progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000" , GradientType=0);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  content: " ";
}

#hero .caption {
  z-index: 10;
  position: relative;
  padding-left: 160px;
  padding-right: 160px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 800px) {
  #hero .caption {
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 1440px) {
  #hero .caption {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 600px) {
  #hero .caption {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#hero .caption .info {
  width: 100%;
  max-width: 55%;
  flex: 0.55 55%;
}

@media (max-width: 1440px) {
  #hero .caption .info {
    max-width: 40%;
    flex: 0.4 40%;
  }
}

@media (max-width: 800px) {
  #hero .caption .info {
    margin-top: 40px;
    width: 100%;
    flex: 1;
    max-width: 100%;
  }
}

#hero .caption .info .logo {
  width: 310px;
  margin-bottom: 140px;
}

@media (max-width: 800px) {
  #hero .caption .info .logo {
    width: 260px;
    margin-bottom: 80px;
  }
}

#hero .caption .info .lead {
  margin-top: 30px;
  width: 500px;
}

@media (max-width: 700px) {
  #hero .caption .info .lead {
    width: 100%;
  }
}

#hero .caption .info .lead h2 {
  color: #580900;
  font-weight: 900;
  font-size: 48px;
}

@media (max-width: 1220px) {
  #hero .caption .info .lead h2 {
    width: 90%;
  }
}

@media (max-width: 600px) {
  #hero .caption .info .lead h2 {
    font-size: 38px;
  }
}

#hero .caption .info .destaque {
  margin-top: 60px;
}

#hero .caption .info .destaque h3 {
  color: #FF2D24;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
}

#hero .caption .info .btn-caption {
  margin-top: 60px;
  position: relative;
}

#hero .caption .info .btn-caption button {
  display: block;
  max-width: 300px;
  text-align: center;
  text-decoration: none;
  padding: 26px 48px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  background: #FF2D24;
  transition: all 0.8s ease-out;
}

#hero .caption .info .btn-caption button:hover {
  background: #ff5e57;
}

#hero .caption .form {
  width: 100%;
  max-width: 40%;
  flex: 0.4 40%;
  background-color: #FF2D24;
  padding: 70px;
  border-radius: 5px;
  box-shadow: 1px 3px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1440px) {
  #hero .caption .form {
    max-width: 55%;
    flex: 0.55 55%;
    padding: 40px;
  }
}

@media (max-width: 800px) {
  #hero .caption .form {
    width: 100%;
    flex: 1;
    max-width: 100%;
    margin-top: 40px;
    margin-bottom: 120px;
    padding: 20px;
  }
}

#hero .caption .form h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 38px;
  margin-top: 0px;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  #hero .caption .form h2 {
    font-size: 32px;
  }
}

#hero .caption .form h2 span {
  color: #ffffff;
  font-weight: 900;
}

#hero .caption .form p {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 60px;
}

#hero .caption .form .form-g {
  margin-bottom: 35px;
  width: 100%;
}

#hero .caption .form .form-g label {
  color: #ffffff;
}

#hero .caption .form .form-g .input {
  padding: 18px 32px;
  display: block;
  border: 2px solid white;
  outline: none;
  background-color: white;
  border-radius: 3px;
  width: 100%;
  color: #4E4E56;
  font-size: 18px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
}

#hero .caption .form .form-g .input::-webkit-input-placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

#hero .caption .form .form-g .input::-moz-placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

#hero .caption .form .form-g .input:-ms-input-placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

#hero .caption .form .form-g .input::-ms-input-placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

#hero .caption .form .form-g .input::placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

#hero .caption .form .new-price {
  font-size: 24px;
  color: #fff;
  text-align: center;
}

#hero .caption .form .new-price .antes {
  text-decoration: line-through;
}

#hero .caption .form .new-price .agora {
  font-weight: bold;
}

#hero .caption .form .btn-caption {
  margin-top: 15px;
  position: relative;
}

#hero .caption .form .btn-caption a,
#hero .caption .form .btn-caption button {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 26px 48px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  background: #ff503b;
  transition: all 0.8s ease-out;
  text-transform: uppercase;
  outline: none;
  border: none;
  display: block;
  width: 100%;
}

@media (max-width: 800px) {
  #hero .caption .form .btn-caption a,
  #hero .caption .form .btn-caption button {
    padding: 12px 38px;
  }
}

#hero .caption .form .btn-caption a:hover,
#hero .caption .form .btn-caption button:hover {
  background: #ff7e6e;
}

#hero .caption .form .terms {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-top: 25px;
  line-height: 24px;
}

#hero .caption .form .terms a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
}

#produto {
  padding-left: 160px;
  padding-right: 160px;
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #F8F8F8;
}

@media (max-width: 600px) {
  #produto {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#produto .title {
  margin-bottom: 80px;
  color: #F48B59;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
}

#produto .title span {
  color: #e32b39;
}

#produto .c {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  grid-gap: 60px;
}

@media (max-width: 800px) {
  #produto .c {
    grid-template-columns: repeat(1, 1fr);
  }
}

#produto .c .caracteristicas {
  margin-top: 60px;
}

#produto .c .caracteristicas .caracteristica {
  margin-bottom: 60px;
}

#produto .c .caracteristicas .caracteristica:last-child {
  margin-bottom: 0px;
}

#produto .c .caracteristicas .caracteristica h5 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 15px;
  color: #4E4E56;
}

#produto .c .caracteristicas .caracteristica p {
  color: #ACACB7;
}

#produto .c .produto-img img {
  width: 100%;
}

#produto .c .produto-img .ingredientes {
  margin-top: 30px;
}

@media (max-width: 800px) {
  #produto .details {
    margin-top: 40px;
  }
}

#produto .details .r {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #F48B59;
  border-bottom: 1px solid #F48B59;
}

#produto .details .r.info {
  grid-template-columns: 17% 19% 61%;
  align-items: center;
  border-top: none;
}

@media (max-width: 800px) {
  #produto .details .r.info {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 800px) {
  #produto .details .r {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  #produto .details .r {
    grid-template-columns: repeat(1, 1fr);
  }
}

#produto .details .r .d {
  display: flex;
}

#produto .details .r .d .icon img {
  width: 24px;
}

#produto .details .r .d .val {
  font-size: 16px;
  color: #F48B59;
  margin-left: 14px;
}

#produto .details .r .d .bold {
  font-weight: bold;
}

#produto .details .r .i .t {
  font-size: 18px;
  color: #F48B59;
}

#produto .details .r .i .val {
  font-size: 18px;
  color: #686a6b;
  font-weight: bold;
}

#produto .details .r .i .text {
  font-size: 18px;
  color: #686a6b;
}

#produto .btn-caption {
  margin-top: 30px;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
}

#produto .btn-caption a {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 26px 48px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  background: #FF2D24;
  transition: all 0.8s ease-out;
}

#produto .btn-caption a:hover {
  background: #ff5e57;
}

#testemunhos-medicos {
  padding-left: 160px;
  padding-right: 160px;
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #ee7539;
}

@media (max-width: 1440px) {
  #testemunhos-medicos {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 600px) {
  #testemunhos-medicos {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#testemunhos-medicos .title {
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 900;
  font-size: 32px;
  text-align: center;
}

#testemunhos-medicos .subtitulo {
  margin-bottom: 80px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

#testemunhos-medicos .c .testemunhos .testemunho {
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
}

#testemunhos-medicos .c .testemunhos .testemunho .text {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 30px;
}

#testemunhos-medicos .c .testemunhos .testemunho .name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

#testemunhos-medicos .c .testemunhos .testemunho .cargo {
  font-size: 13px;
  font-weight: 500;
}

#testemunhos-medicos .c .d {
  width: 150px;
  height: 2px;
  background-color: #ffffff;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 60px;
}

#video {
  padding-left: 160px;
  padding-right: 160px;
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #e15713;
}

@media (max-width: 800px) {
  #video {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 600px) {
  #video {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#video .title {
  margin-bottom: 80px;
  color: #ffffff;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
}

#video .video-js {
  width: 100%;
  height: 625px;
}

@media (max-width: 800px) {
  #video .video-js {
    height: 445px;
  }
}

@media (max-width: 600px) {
  #video .video-js {
    height: 325px;
  }
}

#o-que-e {
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #F8F8F8;
}

#o-que-e .title {
  margin-bottom: 80px;
  color: #F48B59;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
}

@media (max-width: 600px) {
  #o-que-e .title {
    font-size: 38px;
  }
}

#o-que-e p {
  color: #4E4E56;
  margin-bottom: 30px;
  font-size: 21px;
}

#o-que-e .container-m {
  margin-top: 80px;
}

#o-que-e .image-break {
  margin-top: 80px;
}

#o-que-e .image-break img {
  width: 100%;
  margin: 0 auto;
  display: block;
  border-radius: 4px;
}

#o-que-e .r {
  display: grid;
  grid-template-columns: 40% 55%;
  grid-gap: 30px;
}

@media (max-width: 1200px) {
  #o-que-e .r {
    grid-template-columns: 40% 55%;
  }
}

@media (max-width: 800px) {
  #o-que-e .r {
    display: block;
  }
}

@media (max-width: 800px) {
  #o-que-e .video {
    margin-bottom: 40px;
  }
}

#o-que-e .video video {
  width: 100%;
  height: 72.6%;
}

#o-que-e .video .detail {
  display: block;
  font-size: 18px;
  color: #4E4E56;
  margin-top: 30px;
  font-size: 21px;
}

#o-que-e .video .detail .small {
  font-size: 16px;
}

footer {
  padding-top: 45px;
  padding-bottom: 145px;
}

.after-fixed {
  position: fixed;
  width: 100%;
  bottom: 0px;
  left: 0px;
  background-color: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

.after-fixed.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 780px) {
  .after-fixed {
    display: none;
  }
}

.after-fixed span {
  margin-right: 15px;
  display: block;
  font-size: 18px;
}

@media (max-width: 800px) {
  .after-fixed span {
    font-size: 14px;
    padding-left: 12px;
  }
}

.after-fixed a {
  margin-right: 15px;
  display: block;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  background: #FF2D24;
  transition: all 0.8s ease-out;
}

@media (max-width: 800px) {
  .after-fixed a {
    padding: 8px 28px;
    font-size: 14px;
  }
}

.after-fixed a:hover {
  background: #ff5e57;
}

.after-fixed a.btn-no {
  background-color: #4E4E56;
}

.after-fixed a.btn-no:hover {
  background: #666671;
}

.section-form {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 120px;
  background-size: cover;
  background-position: center;
  padding: 70px;
  border-radius: 5px;
  box-shadow: 1px 3px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 800px) {
  .section-form {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .section-form {
    padding: 20px;
  }
}

.section-form .form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

@media (max-width: 800px) {
  .section-form .form {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
  }
}

.section-form h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 38px;
  margin-top: 0px;
  margin-bottom: 15px;
}

.section-form h2 span {
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 600px) {
  .section-form h2 {
    font-size: 32px;
  }
}

.section-form p {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 60px;
}

.section-form .form-g {
  margin-bottom: 35px;
  width: 100%;
}

.section-form .form-g label {
  color: #ffffff;
}

.section-form .form-g .input {
  padding: 18px 32px;
  display: block;
  border: 2px solid white;
  outline: none;
  background-color: white;
  border-radius: 3px;
  width: 100%;
  color: #4E4E56;
  font-size: 18px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
}

.section-form .form-g .input::-webkit-input-placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

.section-form .form-g .input::-moz-placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

.section-form .form-g .input:-ms-input-placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

.section-form .form-g .input::-ms-input-placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

.section-form .form-g .input::placeholder {
  color: rgba(78, 78, 86, 0.7);
  font-size: 18px;
}

.section-form .new-price {
  font-size: 24px;
  color: #fff;
  text-align: center;
}

.section-form .new-price .antes {
  text-decoration: line-through;
}

.section-form .new-price .agora {
  font-weight: bold;
}

.section-form .btn-caption {
  position: relative;
}

.section-form .btn-caption button {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 16px 18px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  background: #ff503b;
  transition: all 0.8s ease-out;
  text-transform: uppercase;
  border: none;
  width: 100%;
}

.section-form .btn-caption button:hover {
  background: #ff7e6e;
}

.section-form .terms {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-top: 25px;
  line-height: 24px;
}

.section-form .terms a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
}

.form-buy .error {
  background-color: #FF2D24;
  padding: 12px;
  color: #fff;
  display: none;
}

.form-buy.has-error-form .error {
  display: block;
}

.form-buy .loading {
  background: #ff7e6e;
  cursor: no-drop;
}

