:root {
  --primary-color: #787575;
  --primary-color-light: #d4cfcf;
  --primary-color-dark: #4e4e4e;
  --secondary-color: #ff0c12;
  --secondary-color-light: #ff3134;
  --secondary-color-dark: #9e1f20;
  --third-color: #ad5400;
  --fourth-color: #e05c3b;
  --contrast-color2: #047ba3;
  --contrast-color: #FCC961;
  --text-color: black;
  --light-color: #eaf0e3;
}

* {
  transition: 0.2s;
}

html {
  font-size: 20px;
  scroll-padding-top: 92px;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
}

img {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
}

figure {
  margin-bottom: 0;
}

footer {
  background-color: black;
}
footer .container {
  max-width: 1100px;
}
footer a:hover {
  opacity: 0.75;
}
footer .statements {
  font-size: 0.7em;
}
footer .small {
  font-size: 0.8em;
}

.fw-bold, b {
  font-weight: 800 !important;
}

.caret li {
  position: relative;
  padding-left: 6px;
  list-style: none;
}
.caret li::before {
  content: "\f231";
  font-family: "bootstrap-icons";
  position: absolute;
  top: -0.6em;
  left: -1em;
  color: var(--secondary-color);
  font-size: 1.6em;
  transform: translateY(10px) !important;
}

.grid {
  display: grid;
}

.divisor {
  position: relative;
  width: 100%;
}
.divisor.bottom {
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 10vw;
  margin-top: -10vw;
}

.esconder {
  display: none;
}

.clickbank#upsell1 .esconder, .clickbank#upsell2 .esconder, .clickbank#upsell3 .esconder {
  display: block;
}
.clickbank #copyb {
  display: none;
}

/* Button */
.button {
  background-image: linear-gradient(to top, #dadada 50%, #e0e0e0 51%);
  color: var(--text-color) !important;
  border: none !important;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.25em;
  font-weight: 900;
  border-radius: 0.5em;
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none;
  box-shadow: 0 -4px rgba(0, 0, 0, 0.05) inset;
}
.button:hover {
  background-image: linear-gradient(to bottom, #dadada 50%, #e0e0e0 51%);
  box-shadow: 0 4px rgba(0, 0, 0, 0.05) inset;
}
.button.alt {
  background-image: linear-gradient(to top, var(--primary-color) 50%, var(--primary-color-light) 51%);
  color: white !important;
  border: 2px solid var(--primary-color) !important;
}
.button.alt:hover {
  background-image: linear-gradient(to bottom, var(--primary-color) 50%, var(--primary-color-light) 51%);
}
.button.promo {
  color: var(--text-color) !important;
  background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
}
.button.promo:hover {
  background-image: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
}

/* Redirect to Checkout */
#spinner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  align-items: center;
  justify-content: center;
  flex-flow: column;
  z-index: 9999;
}
#spinner img {
  max-width: 300px;
  filter: invert(1) brightness(20);
}

/* Nav */
#nav-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}
#nav-header .logo {
  max-height: 54px;
  filter: saturate(0) brightness(20);
}
@media (max-width: 499px) {
  #nav-header .logo {
    max-height: 40px;
  }
}
#nav-header .nav-item .button {
  font-size: 1em;
}
#nav-header.sticky-nav {
  background-color: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
#nav-header.sticky-nav .logo {
  filter: none;
}
#nav-header.sticky-nav .nav-link {
  color: var(--text-color) !important;
}
@media (max-width: 991px) {
  #nav-header {
    background-color: white;
  }
  #nav-header .logo {
    filter: none;
  }
  #nav-header .nav-link {
    color: var(--text-color) !important;
  }
}

.bi-check-circle {
  color: var(--secondary-color);
}

.zoom-icon {
  position: absolute;
  left: calc(50% - 37px);
  top: 55px;
  font-size: 25px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 11px;
  padding: 15px 25px;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.zoom-icon:hover {
  background: var(--primary-color);
}

#steps {
  background-color: black;
  color: white;
}
#steps .container > div {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
#steps h1 {
  color: white;
}
#steps h1 span {
  color: var(--secondary-color);
}
#steps .step {
  position: relative;
  padding: 0.2em 0.8em;
  white-space: nowrap;
  border-radius: 0.2em;
}
#steps .step.current {
  background-color: var(--secondary-color-light);
  color: black;
  font-weight: 800;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (max-width: 599px) {
  #steps .step {
    font-size: 0.8em;
    padding: 0.2em 0.4em;
  }
}
#steps .steps-headline {
  margin: 1em auto 0;
}
#steps .steps-headline h1 {
  color: white;
  margin: 0;
}
@media (max-width: 599px) {
  #steps .steps-headline h1 {
    font-size: 1em;
  }
}
#steps .steps-headline h1 span {
  color: var(--secondary-color-light);
}
#steps .inner-divisor {
  height: 4px;
  max-width: 100px !important;
  margin-top: 0.5em;
  border-bottom: 6px dotted var(--secondary-color);
}

#video {
  background-image: linear-gradient(to bottom, var(--primary-color-light), var(--secondary-color));
}

#guarantee {
  position: relative;
  background-image: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color));
  color: white;
}
#guarantee .container {
  max-width: 1100px;
}
#guarantee h2 {
  color: white;
}
#guarantee h2 span {
  color: var(--contrast-color);
}
#guarantee img {
  max-width: 200px;
}
#guarantee .badges img {
  background-color: white;
  max-width: 100px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 599px) {
  #guarantee .badges img {
    max-width: 70px;
  }
}

#references * {
  font-weight: 700;
  word-break: break-all;
}
#references .container {
  max-width: 1100px;
}
#references ol {
  font-size: 0.8em;
  opacity: 0.75;
}
@media (max-width: 767px) {
  #references ol {
    font-size: 0.6em;
    padding-left: 1em;
    margin-top: -1em;
  }
}
#references span {
  color: #8f8f8f;
}

.fw-bolder {
  font-weight: 900;
}

.triangle {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--secondary-color);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  margin: -50px auto -30px;
  font-size: 100px;
  line-height: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .triangle {
    margin: -30px auto;
  }
}

/* Purchases Notifications */
.purchases-disclaimer {
  position: fixed;
  right: -800px;
  bottom: 20px;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color-dark);
  color: white;
  border-radius: 8px;
  font-size: 1em;
  font-style: italic;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
  transition: 0.6s;
  z-index: 999;
}
@media (max-width: 767px) {
  .purchases-disclaimer {
    font-size: 0.8em;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    max-width: 220px;
  }
}

.purchases-box {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}
.purchases-box img {
  max-width: 70px;
}
@media (max-width: 767px) {
  .purchases-box img {
    max-width: 40px;
  }
}

.purchased-bottle {
  background: white;
  border-radius: 50%;
}

.modal.downsell {
  background-color: var(--secondary-color);
}
.modal.downsell figure {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.modal.downsell figure .guarantee-badge {
  position: absolute;
  max-width: 100px;
  top: 1em;
  left: 2vw;
}
@media (max-width: 599px) {
  .modal.downsell figure .guarantee-badge {
    max-width: 20vw;
    right: 0;
    top: 0;
  }
}
.modal.downsell .per-bottle {
  font-size: 2.2em;
}
.modal.downsell .savings {
  color: rgb(14, 194, 110);
  font-size: 1.5em;
}
.modal.downsell .modal-dialog {
  max-width: 100%;
}
.modal.downsell .no-thanks {
  font-size: 1em;
  max-width: 100%;
}
.modal.downsell[aria-labelledby=secondDownsellLabel] {
  background-color: var(--fourth-color);
}
@media (max-width: 599px) {
  .modal.downsell .button-bg {
    font-size: 1em !important;
  }
  .modal.downsell h2 {
    font-size: 1.4em !important;
  }
  .modal.downsell .per-bottle {
    margin-top: 1em;
    font-size: 1.4em;
  }
  .modal.downsell .savings {
    font-size: 1.2em;
  }
}

/* Selling Platforms */
.buygoods .no-thanks:not(.btn) {
  text-decoration: underline;
}

/* Pages */
#home .timer {
  display: none !important;
}

#dtc #steps {
  padding-bottom: 6rem !important;
  margin-bottom: -6rem;
}
#dtc #references {
  margin-top: -2em;
}

#upsell1 .steps-headline h1 {
  font-size: 2.25em;
}
@media (max-width: 767px) {
  #upsell1 .steps-headline h1 {
    font-size: 1.6em;
  }
}
@media (max-width: 599px) {
  #upsell1 .steps-headline h1 {
    font-size: 1em;
  }
}
#upsell1 #k1, #upsell1 #k2, #upsell1 #k3 {
  display: none;
}
#upsell1 #k1.container, #upsell1 #k2.container {
  max-width: 420px;
}

#thankyou .main-content {
  background-image: linear-gradient(to bottom, var(--secondary-color-light), transparent);
}

#thankyou .main-content img {
  max-width: 500px;
}

/* NOVO PRODUTO */