:root {
  --primary-color: #2C8993;
  --secondary-color: #7FABB0;
  --third-color: #7FABB0;
  --fourth-color: #F0F7F8;
  --primary-color-light: #7FABB0;
  --primary-color-dark: #1E6169;
  --secondary-color-light: #5A9DA5;
  --secondary-color-dark: #144045;
  --contrast-color: #fbbf24;
  --text-color: #231f20;
  --light-color: #F0F7F8;
}

/* ── FDA disclaimer link ── */
.fda-disclaimer a,
.fda-disclaimer-block a {
  text-decoration: underline !important;
}

*,
*::before,
*::after {
  transition: 0.2s;
  box-sizing: border-box;
}

html {
  font-size: 20px;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 991px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--text-color);
  background-color: #F0F7F8;
  animation: fadeInPage 500ms forwards;
  margin: 0;
  overflow-x: hidden;
}

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

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

figure {
  margin-bottom: 0;
}

footer {
  background-color: var(--primary-color);
}
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);
}

/* CTA Headline */
.cta-headline {
  position: relative;
  background-color: var(--primary-color-dark);
  z-index: 1;
}
.cta-headline h2 {
  color: white;
}
.cta-headline h2 span {
  color: var(--third-color);
}
@media (max-width: 599px) {
  .cta-headline h2 {
    font-size: 1.2em;
  }
}
.cta-headline .timer {
  font-size: 2.2em;
  line-height: 1;
  font-weight: 800;
  color: white;
  margin: 0.25em auto 0;
}

/* ========================
	CTA - PRODUCTS
======================== */
.products {
  position: relative;
}
@media (max-width: 1399px) {
  .products > .nm-page-container {
    max-width: 100%;
  }
}
.products .productsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1399px) {
  .products .productsGrid {
    gap: 1em;
  }
}
@media (max-width: 767px) {
  .products .productsGrid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .products .productsGrid [data-offer=promo] {
    order: 2;
  }
  .products .productsGrid [data-offer=mid] {
    order: 3;
  }
  .products .productsGrid [data-offer=basic] {
    order: 1;
  }
}
.products .productsGrid > a {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.products .title {
  text-align: center;
  margin-bottom: 0.75em;
  font-size: 2.25em;
}
@media (max-width: 599px) {
  .products .title {
    font-size: 1.25em;
  }
}
.products a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.products a.buylink:hover .product-card {
  transform: translateY(-2px);
}
.product-card-wrap-inner {
  padding: 16px 8px;
}
.products .productsGrid > a.buylink {
  color: inherit;
}
.product-card {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
  font-family: "Nunito Sans", sans-serif;
  transition: transform 0.2s ease;
  box-shadow:
    0 0 0 3px var(--primary-color-dark),
    0 12px 48px rgba(44, 137, 147, 0.38),
    0 4px 12px rgba(0, 0, 0, 0.18);
}
.product-card-header {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  color: var(--primary-color);
  text-align: center;
  padding: 12px 16px;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card-body {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 200, 100, 0.13) 0%, transparent 55%),
    linear-gradient(175deg, var(--secondary-color-light) 0%, var(--primary-color) 45%, var(--secondary-color-dark) 100%);
  padding: 22px 20px 26px;
  text-align: center;
  position: relative;
}
.product-card-title {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  margin: 0 0 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.product-card-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.product-card-image {
  max-width: 190px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}
.product-card-price {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.product-card-price sup {
  font-size: 1.35rem;
  vertical-align: super;
  font-weight: 700;
}
.product-card-price sup.decimal {
  font-size: 1rem;
  font-weight: 800;
}
.product-card-per {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
@keyframes pulse-btn {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(44, 137, 147, 0.5), 0 0 0 0 rgba(44, 137, 147, 0.55);
  }
  50% {
    box-shadow: 0 6px 20px rgba(44, 137, 147, 0.7), 0 0 0 10px rgba(251, 191, 36, 0);
  }
}
.product-card-btn {
  display: block;
  pointer-events: none;
  box-sizing: border-box;
  width: 100%;
  background: linear-gradient(to bottom, #e9c756 0%, #d3b532 40%, #b3a422 100%);
  color: #1A4A50;
  font-weight: 900;
  font-size: 1.06rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 11px;
  padding: 15px 20px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  animation: pulse-btn 1.9s ease-in-out infinite;
}
.product-card-total {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 700;
}
.product-card-shipping {
  color: #6ee7b7;
  font-weight: 700;
  font-size: 0.85rem;
}
.product-card-shipping--paid {
  color: #fcd34d;
}
.product-card-guarantee-mini {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 800;
  margin: 8px 0 0;
  letter-spacing: 0.06em;
}

.no-thanks {
  display: block;
  text-align: center;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 16px;
  max-width: 600px;
  text-decoration: none;
}

/* 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;
  }
}

@media (max-width: 475px) {
  .accordion-button {
    font-size: 1rem !important;
  }
}
.accordion-button:not(.collapsed) {
  background-color: white;
  color: var(--text-color);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--secondary-color);
}

.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: linear-gradient(135deg, #1E6169, #2C8993);
  color: white;
}
#steps .steps-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
#steps .steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
#steps .steps-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#steps .step-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: "Nunito Sans", sans-serif;
}
#steps .step-item.current {
  background: var(--third-color);
  color: #fff;
}
#steps .step-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  margin-top: 4px;
  font-family: "Nunito Sans", sans-serif;
}
#steps .step-label.current {
  color: #fff;
}
#steps .step-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  padding: 0 6px;
  align-self: center;
  margin-bottom: 18px;
}
#steps .steps-headline {
  margin: 10px auto 0;
}
#steps .steps-headline h1 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1rem, 4vw, 1.65rem);
  margin: 0;
}
@media (max-width: 599px) {
  #steps .steps-headline h1 {
    font-size: 1rem;
  }
}
#steps .steps-headline h1 span {
  color: rgba(127, 171, 176, 0.7);
}
#steps .inner-divisor {
  height: 4px;
  max-width: 100px;
  margin: 0.5em auto 0;
  border-bottom: 6px dotted var(--secondary-color);
}

#video {
  background-image: linear-gradient(135deg, #1E6169, #2C8993);
}

#about {
  background-color: var(--primary-color);
  background-image: url("../images/about-bg.webp");
  background-size: cover;
  background-position: left center;
  color: white;
}
@media (max-width: 767px) {
  #about {
    background-image: url("../images/about-bg-mob.webp");
  }
}
#about .container {
  position: relative;
  z-index: 2;
}
#about h1 {
  color: white;
}
#about h1 span {
  color: var(--third-color);
}
#about img {
  max-width: 350px;
}
@media (max-width: 767px) {
  #about img {
    max-width: 250px;
  }
}
#about .button {
  width: -moz-fit-content;
  width: fit-content;
}

#benefits h2 span {
  color: var(--secondary-color);
}
#benefits .sub-title {
  text-align: center;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
}
#benefits .grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3em 2em;
}
@media (max-width: 375px) {
  #benefits .grid {
    grid-template-columns: 1fr;
  }
}
#benefits .box {
  background-color: #f1f7fb;
  text-align: center;
  border-radius: 1em;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.02) inset;
}
#benefits .box figure {
  display: block;
  background-color: var(--primary-color);
  max-width: 120px;
  padding: 1.25em;
  margin: -4em auto 1em;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3) inset, 0 2px 10px rgba(0, 0, 0, 0.1);
}
#benefits .box figure img {
  filter: brightness(20);
}
#benefits .box h4 {
  font-size: 1.15em;
}
#benefits .box.alt {
  background-color: #f7f7f7;
}
#benefits .box.alt figure {
  background-color: var(--secondary-color);
}

#ingredients {
  position: relative;
  background-image: linear-gradient(135deg, #1E6169, #2C8993);
  color: white;
}
#ingredients h2 {
  color: white;
}
#ingredients h2 span {
  color: rgba(255, 255, 255, 0.95);
}
#ingredients .grid {
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 2em;
}
@media (max-width: 599px) {
  #ingredients .grid {
    grid-template-columns: 1fr;
  }
}
#ingredients .box {
  display: flex;
  align-items: flex-end;
  position: relative;
  background-color: white;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3) inset, 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 1em;
  color: var(--text-color);
}
@media (max-width: 599px) {
  #ingredients .box {
    min-height: 650px;
  }
}
#ingredients .box .overlay {
  position: absolute;
  background-image: linear-gradient(to bottom, transparent, white 60%);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
#ingredients .box img {
  overflow: hidden;
}
#ingredients .box .content {
  position: relative;
}
#ingredients .box h4 {
  font-size: 1.15em;
  color: var(--primary-color);
}

#guarantee {
  position: relative;
  background: linear-gradient(145deg, #102F33 0%, #1E6169 28%, #2C8993 55%, #7FABB0 100%);
  color: white;
}
#guarantee .nm-container.guarantee-layout,
#guarantee .nm-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
#guarantee .guarantee-layout {
  padding: 3rem 0;
}
#guarantee .guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#guarantee .guarantee-figure {
  flex: 0 1 200px;
  text-align: center;
}
#guarantee .guarantee-copy {
  flex: 1 1 320px;
  max-width: 720px;
  text-align: center;
  min-width: 0;
}
#guarantee .guarantee-copy p {
  line-height: 1.55;
}

#guarantee h2 {
  color: white;
}
#guarantee h2 span {
  color: #fff;
}
#guarantee img {
  max-width: 200px;
}
#guarantee .guarantee-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.55rem, 3.8vw, 1.85rem);
  align-items: start;
  justify-items: center;
  width: 100%;
  max-width: min(540px, 100%);
  margin: 1.35rem auto 0;
}

#guarantee .guarantee-badges figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	min-width: 0;
	width: 100%;
}

#guarantee .guarantee-badges img {
	background-color: white;
	width: clamp(62px, 19vw, 112px);
	height: auto;
	max-width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 50%;
	border: 3px solid white;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
	margin-bottom: 0.2rem;
	flex-shrink: 0;
}

.guarantee-badge-caption {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.52rem, 1.85vw, 0.74rem);
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.82);
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4px;
}

/* Tablets: proporção intermediária, um pouco mais “respirado” na faixa média */
@media (min-width: 600px) and (max-width: 991px) {
  #guarantee .guarantee-badges {
    max-width: min(500px, 94%);
    gap: clamp(0.95rem, 3.2vw, 1.4rem);
  }
}

@media (max-width: 479px) {
  #guarantee .guarantee-badges {
    gap: clamp(0.45rem, 3vw, 0.95rem);
  }
}

/* Celulares muito estreitos: mantém 3 colunas, ícones um pouco menores */
@media (max-width: 380px) {
  #guarantee .guarantee-badges {
    max-width: 100%;
    gap: 0.35rem;
  }
  #guarantee .guarantee-badges img {
    width: clamp(54px, 28vw, 68px);
  }
  #guarantee .guarantee-badge-caption {
    font-size: 0.52rem !important;
  }
}

#guarantee .guarantee-fda-strip {
  max-width: 800px;
  margin: 1.75rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#guarantee .guarantee-fda-strip p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

#faq {
  background-image: linear-gradient(135deg, #1E6169, #2C8993);
  color: white;
}
#faq .container {
  max-width: 1000px;
}
#faq .accordion {
  position: relative;
  z-index: 2;
}
#faq .accordion-item {
  border-radius: 0.5em;
  margin-bottom: 0.25em;
  border: 0;
}
#faq .accordion-button {
  font-family: "Nunito Sans", sans-serif;
  font-weight: bold;
  border-radius: 0.25em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
#faq .accordion-body {
  padding-bottom: 1.5em;
}

#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;
  }
}

@media (max-width: 475px) {
  .accordion-button {
    font-size: 1rem !important;
  }
}
/* 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;
  right: 2vw;
}
@media (max-width: 599px) {
  .modal.downsell figure .guarantee-badge {
    max-width: 20vw;
    right: 0;
    top: 0;
  }
}
.modal.downsell .per-bottle {
  color: var(--primary-color);
  font-size: 2em;
}
.modal.downsell .savings {
  color: rgb(201, 42, 42);
  font-size: 1.6em;
}
.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;
}
.cartpanda.banner-hidden .cpd-default {
  display: none !important;
}
.cartpanda#vsl .cpd-default {
	display: none !important;
}

/* 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 h1 {
  color: var(--primary-color);
}
#thankyou .main-content img {
  max-width: 500px;
}

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

/* —— Responsividade página Front (#home) —— */
#home {
  overflow-x: hidden;
}

#home .nm-page-container,
#home footer .nm-page-container {
  padding-left: clamp(14px, 4vw, 20px);
  padding-right: clamp(14px, 4vw, 20px);
}

#home .section-front-pad {
  padding-top: clamp(1.35rem, 4vw, 2rem);
  padding-bottom: clamp(1.35rem, 4vw, 2rem);
}

#home figure img.label-img-shadow {
  max-width: min(920px, 100%);
  margin: 0 auto;
}

#home img:not(.product-card-image) {
  max-width: min(100%, calc(100vw - 28px));
  height: auto;
}

@media (max-width: 520px) {
  #steps .step-item {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  #steps .step-label {
    font-size: 0.65rem;
    max-width: 5.75rem;
    line-height: 1.28;
    text-align: center;
  }

  #steps .step-arrow {
    font-size: 0.88rem;
    margin-bottom: 12px;
    padding: 0 2px;
  }

  #steps .steps-inner {
    padding: 0 12px;
  }

  #home .products .productsGrid {
    gap: 1.35rem;
  }

  #home .product-card-wrap-inner {
    padding: 10px 4px;
  }

  #home .product-card {
    max-width: min(340px, 100%);
  }

  #home .product-card-body {
    padding: 16px 14px 20px;
  }

  #home .product-card-title {
    font-size: 1.18rem;
  }

  #home .product-card-price {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  #home .product-card-btn {
    padding: 12px 14px;
    font-size: 0.94rem;
  }

  #home .modal-overlay {
    padding: max(12px, env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
  }

  #home .modal-overlay .modal-header {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px;
  }

  #home .modal-overlay .modal-header h3 {
    flex: 1 1 calc(100% - 42px);
    font-size: 0.92rem;
  }

  #home .modal-overlay .modal-body {
    padding: 18px 16px;
  }

  #home .modal-overlay .modal-body-scroll {
    max-height: min(65vh, 480px);
  }

  #home .footer-front.footer-legal {
    padding: 2rem 12px;
  }

  #home #guarantee .guarantee-layout {
    padding: 2rem 0;
  }

  #home #guarantee .guarantee-copy h2 {
    font-size: clamp(1rem, 4.8vw, 1.35rem);
  }
}

@media (max-width: 380px) {
  #steps .steps-row {
    gap: 4px;
  }

  #home .footer-links-row-front .footer-sep {
    display: none;
  }

  #home .footer-links-row-front {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Product Disclaimer */
.product-disclaimer {
	background-color: #f5f5f5;
	border-left: 4px solid var(--primary-color);
	border-radius: 0.5em;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 1.75rem 1.6rem;
}

.product-disclaimer h3 {
	color: var(--primary-color);
	font-size: 1.5em;
	font-weight: 900;
}

.product-disclaimer p {
	font-size: 0.95em;
	line-height: 1.6;
	color: var(--text-color);
}

.product-disclaimer strong {
	color: var(--primary-color);
	font-weight: 800;
}

@media (max-width: 767px) {
	.product-disclaimer {
		padding: 1.5em !important;
	}
	
	.product-disclaimer h3 {
		font-size: 1.25em;
	}
	
	.product-disclaimer p {
		font-size: 0.9em;
	}
}

.nm-page-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.disclaimer-shell {
  max-width: 920px;
  margin: 0 auto;
}

.nm-mb-md {
  margin-bottom: 1rem;
}
.nm-mb-sm {
  margin-bottom: 0.65rem;
}
.nm-mb-zero {
  margin-bottom: 0;
}

.section-front-pad {
  padding: 2rem 0;
}

.label-wrap {
  text-align: center;
  padding: 2.5rem 0;
}

.label-img-shadow {
  border-radius: 0.35rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.footer-front.footer-legal {
  background: var(--primary-color);
  padding: 2.75rem 16px 2.5rem;
}

.footer-inner-front {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

.footer-links-row-front {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
}

.footer-links-row-front a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-decoration: none;
}

.footer-links-row-front a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.35);
  padding: 0 0.35rem;
}

.fda-disclaimer-block {
  max-width: 760px;
  margin: 0 auto 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.fda-disclaimer-block a {
  color: #fff;
  text-decoration: underline;
}

.fda-disclaimer-block a:hover {
  opacity: 0.85;
}

.copyright-line {
  margin: 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  padding: 16px;
  overflow-y: auto;
  animation: nmFadeIn 0.18s ease;
}
.modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@keyframes nmFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-box {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 680px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.28);
  animation: nmSlideUp 0.2s ease;
}
@keyframes nmSlideUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-overlay .modal-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color-dark));
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-overlay .modal-header h3 {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0;
}
.modal-overlay .modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}
.modal-overlay .modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.modal-overlay .modal-body {
  padding: 26px 28px;
  font-family: "Nunito Sans", sans-serif;
  color: #2d2d2d;
  font-size: 0.92rem;
  line-height: 1.65;
}
.modal-overlay .modal-body-scroll {
  max-height: min(72vh, 560px);
  overflow-y: auto;
}
.modal-overlay .modal-body h4 {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.98rem;
  margin: 1.35rem 0 0.4rem;
}
.modal-overlay .modal-body h4:first-child {
  margin-top: 0;
}
.modal-overlay .modal-body p {
  margin: 0 0 0.75rem;
}
.modal-overlay .modal-body ul {
  padding-left: 1.25rem;
}
.modal-overlay .modal-body ul li {
  margin-bottom: 0.4rem;
}
.modal-overlay .modal-body .modal-p-meta {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.highlight-box {
  background: #F0F7F8;
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin: 0.85rem 0;
  border: 1px solid #C8DFE1;
  text-align: center;
}
.modal-p-bold {
  font-weight: 800;
  margin: 0 0 0.35rem !important;
}
.nm-btn-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: var(--primary-color);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 0.35rem;
}
.nm-btn-mail:hover {
  background: var(--primary-color-dark);
}
.address-box {
  background: #F0F7F8;
  border-left: 4px solid var(--primary-color);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.modal-footer-note {
  border-top: 1px solid #eee;
  background: #f9f9f9;
  padding: 14px 24px;
  font-size: 0.76rem;
  color: #6b7280;
}

.buygoods-disclaimer-block {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.25rem 16px 2rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #4b5563;
  text-align: center;
}

/* NOVO PRODUTO */