/* =========================================================
   Resina Extreme - PG
   Layout replicado da estrutura "build your bundle".
   Imagens substituidas por placeholders cinza (.ph).
   ========================================================= */

:root {
  --green: #55bf6d;
  --orange: #f36e21;
  --orange-soft: rgba(241, 107, 32, .3);
  --red: #c8202f;
  --navy: #003e69;
  --blue-light: #ddf3ff;
  --blue-accent: #009bdf;
  --cta: #009bdf;
  --line: #d7d7d7;
  --muted: #6c757d;
  --black: #1c1c1c;
  --white: #ffffff;
  --ph: #d4d4d4;
  --ph-dark: #bcbcbc;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

img { max-width: 100%; }
hr { border: 0; border-top: 1px solid #dddedc; margin: 1rem 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.stars { color: #f5a623; letter-spacing: 1px; }
.double-dagger { font-size: .7em; vertical-align: super; }

/* ---------- PLACEHOLDERS (no lugar das imagens) ---------- */
.ph {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
  background: var(--ph);
  background-image: linear-gradient(135deg, rgba(255,255,255,.35) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.35) 50%, rgba(255,255,255,.35) 75%, transparent 75%);
  background-size: 16px 16px;
  border-radius: 4px;
}
.ph--icon { width: 22px; height: 22px; min-height: 22px; border-radius: 50%; }
.ph--icon-lg { width: 60px; height: 60px; min-height: 60px; border-radius: 50%; }
.ph--avatar { width: 20px; height: 20px; min-height: 20px; border-radius: 50%; margin-right: 5px; }
.ph--seal { width: 44px; height: 44px; min-height: 44px; border-radius: 50%; }

/* =========================================================
   TOPBAR + COUNTDOWN
   ========================================================= */
.save-lp-topbar__container {
  z-index: 9999;
  position: sticky;
  top: 0;
  background: linear-gradient(45deg, #134b71, #246a99);
  font-weight: 400;
  color: white;
  height: 50px;
  gap: .5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: .5rem;
  padding-right: .5rem;
  text-align: center;
  width: 100%;
}

.save-lp-topbar__text-container {
  text-transform: uppercase;
  color: white;
  align-items: center;
}

.save-lp-topbar__text-primary { font-weight: 800; font-size: .8rem; }
@media (max-width: 425px) { .save-lp-topbar__text-primary { font-size: .7rem; } }
@media (max-width: 395px) { .save-lp-topbar__text-primary { font-size: .6em; } }

.save-lp-topbar__text-secondary { font-size: .7rem; font-weight: 600; }
@media (max-width: 420px) { .save-lp-topbar__text-secondary { font-size: .6rem; } }

.save-lp-topbar-clock-wrapper { grid-gap: 0; display: flex; gap: 4px; }

.save-lp-topbar-clock {
  background: var(--red);
  border-radius: 6px;
  padding: 3px 10px;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 26px 5px 26px 5px 26px;
}
@media (max-width: 360px) { .save-lp-topbar-clock { padding: 3px; } }

.save-lp-topbar-clock-number { font-size: 1.1rem; font-weight: 800; line-height: 1; }
@media (max-width: 360px) { .save-lp-topbar-clock-number { font-size: .9rem; } }

.save-lp-topbar-clock-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
}

.save-lp-topbar-clock-colon {
  place-self: center;
  font-size: .7rem;
  font-weight: 800;
  transform: translateY(-5px);
}

.save-lp-topbar-clock-box {
  background: transparent;
  color: white;
  padding: 0;
  height: auto;
  margin: 0;
}

/* =========================================================
   ABOVE THE FOLD
   ========================================================= */
/* Grid nomeado: em mobile empilha, em desktop vira duas colunas
   com o carrossel fixo a esquerda ocupando as tres linhas. */
.save-lp-atf-container {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "carousel"
    "social-proof"
    "product-form";
}

@media (min-width: 1024px) {
  .save-lp-atf-container {
    max-width: 1012px;
    margin: 0 auto;
    margin-top: 2rem;
    grid-row-gap: 1rem;
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 450px;
    grid-template-areas:
      "carousel social-proof"
      "carousel title"
      "carousel product-form";
  }
}

.save-lp-atf-title-container { grid-area: title; }
.save-lp-atf-social-proof-container { grid-area: social-proof; }
.save-lp-atf-carousel-container { grid-area: carousel; }
.save-lp-atf-product-form-container { grid-area: product-form; }

@media (max-width: 1024px) {
  .save-lp-atf-title-container { margin-bottom: 1rem; }
  .save-lp-atf-social-proof-container { margin-bottom: 1rem; }
}

.save-lp_carousel__title-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 0 1rem;
}

.save-lp_carousel__main-title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.save-lp_carousel__sub-title {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin: 0;
  color: #353535;
}
.save-lp_carousel__sub-title span { color: var(--orange); font-weight: 700; }

@media (min-width: 1024px) {
  .save-lp_carousel__main-title { font-size: 2.5rem; }
  .save-lp_carousel__sub-title { font-size: 15px; line-height: 1.25; }
}

.save-lp-step1_social-proof_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
  margin-bottom: 0;
  font-size: .75rem;
}
.save-lp-step1_social-proof_container-item:not(:first-child) {
  border-left: 1px solid #c7c7c7;
  padding-left: .5rem;
}
.save-lp-step1_social-proof_stars { display: flex; gap: .5rem; align-items: center; }
.save-lp-step1_social-proof_container strong { font-weight: 700; }

/* ---------- CAROUSEL ---------- */
.save-lp_carousel {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: .75rem;
}
.save-lp_carousel__container {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.save-lp_carousel__main-image-wrapper { position: relative; }
.save-lp_carousel__main-image {
  display: block;
  width: 100%;
  /* height:auto e obrigatorio: sem ele o atributo height="1254" do HTML
     vence o aspect-ratio e a imagem estica na vertical */
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
  border-radius: 0;
}
.save-lp_carousel__main-image[hidden] { display: none; }

.save-lp_carousel__arrow-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.25);
  opacity: .9;
  transition: all .25s ease;
  cursor: pointer;
  font-size: 11px;
  color: #292524;
}
.save-lp_carousel__arrow-btn:hover {
  background: rgba(255,255,255,.28);
  box-shadow: 0 6px 16px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.35);
  transform: translateY(-50%) scale(1.05);
}
.save-lp_carousel__arrow-btn-prev { left: 1rem; }
.save-lp_carousel__arrow-btn-next { right: 1rem; }
.save-lp_carousel__arrow-btn svg { transition: transform .18s ease; }
.save-lp_carousel__arrow-btn-next:active svg { transform: translateX(2px); }
.save-lp_carousel__arrow-btn-prev:active svg { transform: translateX(-2px); }

.save-lp_carousel__thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: .5rem;
  margin-bottom: 0;
  width: 100%;
  padding-left: .5rem;
  padding-right: .5rem;
  align-items: center;
  justify-content: center;
}
.save-lp_carousel__thumbnail {
  opacity: .5;
  border-radius: .375rem;
  padding: .25rem;
  cursor: pointer;
  border: 0;
  background: transparent;
  transition: opacity .2s, transform .2s;
}
.save-lp_carousel__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: .25rem;
}
.save-lp_carousel__thumbnail.active-thumbnail { opacity: 1; transform: scale(1.1); }
@media (max-width: 1024px) {
  .save-lp_carousel__thumbnail.active-thumbnail { box-shadow: 0 0 0 2px #e87722; }
}

@media (min-width: 1024px) {
  .save-lp_carousel { max-width: 512px; }
  .save-lp_carousel__main-image { border-radius: .375rem; box-shadow: 0 4px 6px rgba(0,0,0,.1); }
  .save-lp_carousel__thumbnail { padding: 1rem; }
}

/* =========================================================
   PRODUCT FORM / BUNDLE
   ========================================================= */
.save-lp_bundle-wrapper-2 { max-width: 600px; margin: 0 auto; }

.save-lp_product-order-wrap {
  grid-column-gap: .5rem;
  outline-offset: 0;
  background-color: #e9f8fe;
  border: 1px dashed #004f4f;
  border-radius: 8px;
  outline: 3px solid rgba(205, 223, 229, .19);
  align-items: center;
  padding: .7rem 1rem;
  font-size: .75rem;
  display: flex;
  position: relative;
  margin: 1rem;
  margin-top: 0;
  gap: .5rem;
}
.save-lp_ring-container {
  position: relative;
  height: 22px;
  width: 22px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-shrink: 0;
}
.save-lp_ring-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.save-lp_order-by { color: #353535; font-size: .75rem; font-weight: 700; }

.save-lp_selector-step { margin: 0 1rem; }

/* ---------- QUANTITY SELECTOR ---------- */
.save67-quantity-selector {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.save67-quantity-selector-card {
  cursor: pointer;
  background-color: #fff;
  border: .06rem solid var(--line);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: visible;
}
.save67-quantity-selector-card.is-wide { grid-column: 1 / -1; }

.save67-quantity-selector-card.is-active {
  border: .1rem solid #000;
  background-color: var(--orange-soft) !important;
}

.save67-most-popular {
  border-radius: 7px;
  background-color: var(--red);
  color: white;
  height: 1.15rem;
  padding: .15rem .75rem;
  font-size: .55rem;
  font-weight: 600;
  position: absolute;
  top: -.55rem;
  bottom: auto;
  left: auto;
  right: auto;
  white-space: nowrap;
}

.save67-quantity-selector-content {
  grid-column-gap: .15rem;
  grid-row-gap: .15rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.save67-quantity-selector-radio {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: auto;
  bottom: auto;
  left: .5rem;
  right: auto;
  background: #fff;
}
.save67-quantity-selector-card.is-active .save67-quantity-selector-content .save67-quantity-selector-radio {
  border: 6px solid #000;
  background-color: white;
}

.save67-qty-selector-title { font-size: 1rem; font-weight: 700; line-height: 1; text-align: center; }

/* valor cheio do kit: e o numero que o cliente compara */
.save67-qty-selector-total {
  margin-top: .2rem;
  color: #101820;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}
.save67-quantity-selector-card.is-active .save67-qty-selector-total { color: #7a3206; }

.save67-quantity-selector-price {
  margin-top: .1rem;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1;
  color: #4a5560;
}

@media (max-width: 380px) {
  .save67-qty-selector-total { font-size: 1.25rem; }
  .save67-quantity-selector-price { font-size: .74rem; }
}

/* ---------- ATC ---------- */
.save-lp_product-atc-wrapper { margin: 0 1rem; }
.save-lp_product-breakline hr { margin: .75rem auto; }

.save-lp_product-subandsave-discount {
  font-weight: 700;
  font-size: .7rem;
  padding-bottom: 10px;
}
#subandsavediscount { font-weight: 800; color: var(--orange); }

.save-lp_product-atc,
.save-lp-product-atc {
  background-color: var(--cta);
  border-radius: 10px;
  grid-column-gap: .75rem;
  gap: .75rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  height: 60px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s ease, transform .15s ease;
}
.save-lp_product-atc:hover,
.save-lp-product-atc:hover { filter: brightness(1.05); }
.save-lp_product-atc:active,
.save-lp-product-atc:active { transform: translateY(1px); }

.save-lp_product-atc-text,
.save-lp-product-atc-text { color: white; font-weight: 700; width: 100%; }

.save-lp_product-atc-arrow,
.save-lp-product-atc-arrow { width: 25px; color: #fff; font-size: 1.4rem; line-height: 1; }

.save-lp_atc-benefits-wrapper,
.save-lp-atc-benefits-wrapper-bottom-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: .5rem;
  padding: 0 5px;
}
.save-lp_atc-benefits-item,
.save-lp-atc-benefits-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.save-lp_atc-benefits-item-text,
.save-lp-atc-benefits-item-text {
  font-size: 12px;
  line-height: 110%;
  margin-left: 5px;
  font-weight: bold;
}
@media (max-width: 380px) {
  .save-lp_atc-benefits-item-text { font-size: 10px; }
}

.guarantee-badge {
  margin-top: .5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: #f2f0ed;
  border-radius: 12px;
}
.guarantee-badge__copy { font-size: 12px; line-height: 1.25; color: #1a1a1a; }
.guarantee-badge__copy strong { font-weight: 700; }
.seal-svg-badge { display: flex; justify-content: center; align-items: center; flex-shrink: 0; }

.save-lp_product-atc-benefits-wrapper { padding: 5px; padding-right: 0; }
.save-lp_product-atc-benefits-title {
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 5px;
  font-weight: 600;
}
.save-lp_product-atc-benefits-list { display: flex; flex-direction: column; }
.save-lp_product-atc-benefits-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}
.save-lp_product-atc-benefits-list-img { width: 20px; flex-shrink: 0; }
.save-lp_product-atc-benefits-list-item-text {
  font-size: 11px;
  margin-left: 5px;
  font-weight: 400;
}

.buy-once-product-breakline hr { margin: .75rem 0; margin-left: -5px; }
.buy-once-wrapper {
  margin: .75rem 1rem 0 1rem;
  flex-direction: column;
  align-items: center;
}
.buy-once-title {
  color: #353535;
  font-weight: 700;
  font-size: .75rem;
  padding-bottom: 4px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: center;
}
.buy-once-title a { color: #353535; }
.buy-once-text { text-align: center; font-weight: 400; font-size: .7rem; }

/* =========================================================
   DIFERENCIAIS + REVIEWS
   ========================================================= */
.save56-ing-reviews-wrap { background: linear-gradient(to top, #ffffff, var(--blue-light)); }

.save56-ingredients-wrapper {
  padding: 2rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.save56-ingredients-title { font-size: 2.2rem; line-height: 1; text-align: center; font-weight: 800; }
@media (max-width: 480px) { .save56-ingredients-title { font-size: 1.7rem; } }
.save56-ingredients-subtitle { font-size: 14px; text-align: center; padding: 1rem 0; }

.save56-ingredients-image {
  position: relative;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  /* hachura de espera: aparece enquanto a arte final nao esta na pasta */
  background: var(--ph);
  background-image: linear-gradient(135deg, rgba(255,255,255,.35) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.35) 50%, rgba(255,255,255,.35) 75%, transparent 75%);
  background-size: 16px 16px;
  aspect-ratio: 1 / 1;
}
.save56-ingredients-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.save56-ingredients-icons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 3rem;
}
.save56-ingredients-icons-item { display: flex; flex-direction: column; margin: 1rem 0; }
.save56-ingredients-icon-item-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
.save56-ingredients-icons-icon { min-width: 60px; min-height: 60px; }
.save56-ingredients-icons-item-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 1rem;
  line-height: 1;
}
.save56-ingredients-icons-item-subtext {
  font-size: 1rem;
  text-align: center;
  padding-top: .5rem;
  margin: 0 -3rem;
}
.save56-video-wrapper { display: flex; align-items: center; justify-content: center; }

.save56-reviews-wrapper { padding: 2rem; padding-bottom: 0; padding-top: 0; }
.save56-reviews-item-wrapper { display: flex; flex-direction: column; margin: 2.3rem 0; text-align: center; }
.save56-reviews-stars { display: flex; justify-content: center; font-size: 1.2rem; }
.save56-reviews-title { font-size: 1.2rem; font-weight: bold; }
.save56-reviews-review { font-size: .8rem; }
.save56-reviews-name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  margin-top: .3rem;
}
.save56-reviews-verified { font-size: .8rem; font-weight: 200; }

@media (min-width: 1012px) {
  .save56-video-icon-wrapper { display: flex; }
  .save56-video-wrapper { flex: 1; display: flex; align-items: center; justify-content: end; }
  .save56-ingredients-icons-wrapper { flex: 1; display: flex; align-items: start; }
  .save56-ingredients-icon-item-title-wrapper { justify-content: flex-start; }
  .save56-ingredients-icons-item-subtext { text-align: start; margin: 0; }
  .save56-reviews-wrapper { display: flex; align-items: start; justify-content: center; }
  .save56-reviews-item-wrapper { max-width: 250px; margin: 2rem; }
}

/* =========================================================
   COMO USAR
   ========================================================= */
.save56-howto-wrapper {
  padding: 2rem;
  background: linear-gradient(to bottom, #ffffff, var(--blue-light));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.save56-howto-title { font-size: 2.2rem; line-height: 1; text-align: center; font-weight: 800; }
@media (max-width: 480px) { .save56-howto-title { font-size: 1.7rem; } }
.save56-howto-subtitle { font-size: 14px; text-align: center; padding: 1rem 0; }
.save56-howto-steps-wrapper { display: flex; flex-direction: column; }
.save56-howto-steps-item-wrapper { display: flex; flex-direction: row; margin: 1rem; }
.save56-howto-steps-item-img {
  width: 110px;
  height: 110px;
  background: transparent;
  flex-shrink: 0;
}
.save56-howto-steps-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.save56-howto-steps-item-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 20px;
  justify-content: center;
}
.save56-howto-steps-item-title { font-size: 18px; font-weight: bold; }
.save56-howto-steps-item-subtitle { font-size: 14px; }

@media (min-width: 1012px) {
  .save56-howto-steps-wrapper { flex-direction: row; }
  .save56-howto-steps-item-wrapper {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
  }
  .save56-howto-steps-item-text-wrap {
    align-items: center;
    text-align: center;
    margin-left: 0;
    margin-top: 20px;
  }
}

/* =========================================================
   VIDEOS
   ========================================================= */
.savelp__videos__container {
  position: relative;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.savelp__videos__container-inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.savelp__videos__title-container {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.xl-condensed-semibold {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 769px) {
  .xl-condensed-semibold { font-size: 48px; line-height: 56px; }
}

.md-neutral-regular {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}
@media (min-width: 769px) {
  .md-neutral-regular { font-size: 24px; line-height: 30px; }
}
.nowrap { white-space: nowrap; }

/* 2 colunas no mobile, 4 no desktop: prints de conversa precisam
   de largura para o texto continuar legivel. */
.savelp__videos__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 900px) {
  .savelp__videos__list { grid-template-columns: repeat(4, 1fr); }
}
.savelp__videos__list-item {
  /* proporcao real dos prints, sem cortar a conversa */
  aspect-ratio: 620 / 1342;
  position: relative;
  display: grid;
  width: 100%;
  border-radius: .5rem;
  overflow: hidden;
}
.savelp__videos__list-item > * { grid-area: 1 / 1; }

/* deslocamento laranja atras de cada card */
.savelp__videos__list-item::before {
  content: '';
  position: absolute;
  background: var(--orange);
  width: 100%;
  height: 100%;
  bottom: -.5rem;
  left: -.5rem;
  border-radius: .5rem;
  overflow: hidden;
}
.savelp__videos__list-item-image {
  border-radius: .5rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
  max-width: 100%;
  background: #ffffff;
}
.savelp__videos__list-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* =========================================================
   COMPARATIVO
   ========================================================= */
.save56-compare-wrapper {
  background: var(--blue-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.save56-compare-title { font-size: 2.2rem; font-weight: 800; line-height: 1; }
@media (max-width: 480px) { .save56-compare-title { font-size: 1.7rem; } }
.save56-compare-subtitle { font-size: 14px; padding: .5rem 2rem 0; }
.save56-compare-img-wrapper {
  max-width: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1rem;
}
.save56-compare-chart {
  margin-bottom: .5rem;
  flex: 1;
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   FAQ
   ========================================================= */
.save56-faq-section-wrap {
  margin: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.save56-faq-section-wrapper-width { max-width: 1000px; width: 100%; }
.save56-faq-section-title {
  font-size: 2.2rem;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  font-weight: 800;
}
@media (max-width: 480px) { .save56-faq-section-title { font-size: 1.7rem; } }

.save56-faq-itemTitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  padding: 1rem 0;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px dashed #010101;
  border-radius: 0;
  outline: none;
  font-size: 11px;
  transition: .4s ease-out;
  text-transform: uppercase;
}
.save56-faq-itemTitle:after {
  content: '\002795';
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}
.activesave56-faq { color: var(--blue-accent); }
.activesave56-faq:after { content: '\002796'; }

.save56-faq-itemDesc {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease-out;
}
.save56-faq-itemText { padding: 15px; font-size: 13px; padding-top: 8px; }

@media (min-width: 600px) {
  .save56-faq-section-wrap { margin: 20px 10%; }
}

/* =========================================================
   AVALIACOES
   ========================================================= */
.reviews-section { padding: 2rem 1rem 2.5rem; background: #ffffff; }
.reviews-inner { max-width: 1000px; margin: 0 auto; }

.reviews-title {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  margin: 0 0 1.5rem;
}
@media (max-width: 480px) { .reviews-title { font-size: 1.7rem; } }

.reviews-summary {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e6e9ec;
}
@media (min-width: 720px) {
  .reviews-summary { grid-template-columns: 220px 1fr; gap: 2.5rem; }
}

.reviews-score { text-align: center; display: grid; gap: .25rem; }
.reviews-score__value { font-size: 3rem; font-weight: 800; line-height: 1; }
.reviews-score__stars { color: #f5a623; font-size: 1.25rem; letter-spacing: 2px; }
.reviews-score__count { font-size: .8rem; color: var(--muted); }
.reviews-score__count b { color: var(--black); }

.reviews-bars { display: grid; gap: 6px; }
.reviews-bar { display: grid; grid-template-columns: 42px 1fr 34px; gap: 8px; align-items: center; font-size: .75rem; }
.reviews-bar__track { height: 8px; border-radius: 999px; background: #e9edf1; overflow: hidden; }
.reviews-bar__fill { display: block; height: 100%; background: #f5a623; border-radius: 999px; }
.reviews-bar__qtd { text-align: right; color: var(--muted); }

.reviews-toolbar { display: flex; justify-content: flex-end; padding: .9rem 0; }
.reviews-sort { font-size: .78rem; font-weight: 700; display: flex; align-items: center; gap: .5rem; }
.reviews-sort select {
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.reviews-list { display: grid; gap: 1.1rem; }
.review-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .85rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #eef1f4;
}
.review-card:last-child { border-bottom: 0; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f4fb;
  color: #0b5f88;
  font-size: .85rem;
  font-weight: 800;
}
.review-head { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .6rem; }
.review-name { font-size: .92rem; font-weight: 800; }
.review-verified {
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1e7a3a;
  background: #eefaf1;
  border-radius: 999px;
  padding: 3px 7px;
}
.review-date { font-size: .72rem; color: var(--muted); margin-left: auto; }
.review-stars { color: #f5a623; font-size: .9rem; letter-spacing: 1px; margin-top: .25rem; }
.review-title { font-size: .9rem; font-weight: 800; margin: .3rem 0 .15rem; }
.review-body { font-size: .85rem; line-height: 1.45; margin: 0; }
.review-origem { font-size: .7rem; color: var(--muted); margin-top: .35rem; }

.reviews-mais {
  display: block;
  margin: 1.4rem auto 0;
  min-height: 46px;
  padding: 0 1.6rem;
  border: 1px solid var(--cta);
  border-radius: 8px;
  background: #fff;
  color: var(--cta);
  font-family: inherit;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
}
.reviews-mais:hover { background: #f2fbff; }
.reviews-mais[hidden] { display: none; }

.reviews-vazio {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}

/* =========================================================
   STICKY BOTTOM ATC
   ========================================================= */
.save-lp-atc-wrapper {
  display: none;
  padding: .5rem 1rem;
  transition: transform .2s;
  bottom: 0;
  position: sticky;
  transform: translate(0, 100%);
  background: white;
  z-index: 999;
  box-shadow: 0 -4px 4px rgba(0, 0, 0, .06);
}
.save-lp-atc-wrapper.is-sticky {
  transform: translate(0);
  display: flex;
  flex-direction: column;
}
.save-lp-atc-content-wrapper { flex: 1; max-width: 600px; }
@media (min-width: 600px) {
  .save-lp-atc-content-wrapper { flex: 1; width: 600px; margin: 0 auto; }
  .save-lp-atc-wrapper.is-sticky { align-items: center; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.save-lp-footer {
  padding: 1.5rem 1.5rem 2.5rem;
  background: #f2f0ed;
  text-align: center;
  font-size: .7rem;
  color: var(--muted);
  line-height: 1.5;
}
.save-lp-footer__disclaimer { margin: 0 0 .6rem; }
.save-lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  justify-content: center;
  margin: 1rem 0 .8rem;
}
.save-lp-footer__links a { color: var(--black); font-weight: 700; text-decoration: none; }
.save-lp-footer__links a:hover { text-decoration: underline; }
.save-lp-footer__copy { display: block; }

/* =========================================================
   ICONES (SVG inline, sem arquivo externo)
   ========================================================= */

/* --- Diferenciais: 60px, circulo branco + traco laranja --- */
.feat-icon { width: 60px; height: 60px; display: block; }
.feat-icon__bg { fill: #ffffff; stroke: #cfe6f5; stroke-width: 1.5; }
.feat-icon__accent { fill: var(--orange); }
.feat-icon__ghost { fill: var(--orange); opacity: .28; }
.feat-icon__line {
  fill: none;
  stroke: #1f3a4d;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-icon__hl {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: .85;
}

/* --- Vantagens do pedido: 20px, alinhado a lista --- */
.adv-icon { width: 20px; height: 20px; display: block; }
.adv-icon__fill { fill: var(--cta); opacity: .16; stroke: var(--cta); stroke-width: 1.5; stroke-linejoin: round; }
.adv-icon__line { fill: none; stroke: var(--cta); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.adv-icon__dot { fill: var(--cta); }
.adv-icon__check {
  fill: none;
  stroke: var(--cta);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Selo de garantia: 44px, serrilhado + check --- */
.seal-icon { width: 44px; height: 44px; display: block; }
.seal-icon__scallop { fill: #f7c948; stroke: #d19b1d; stroke-width: 1.4; stroke-linejoin: round; }
.seal-icon__ring { fill: none; stroke: #8a6410; stroke-width: 1.6; opacity: .55; }
.seal-icon__check {
  fill: none;
  stroke: #4a3708;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   STORIES (mecanismo portado de /resina-extreme-shop/)
   ========================================================= */
body.stories-open { overflow: hidden; }
body.stories-open .save-lp-atc-wrapper { display: none; }

.story-bubble {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  width: calc(100% - 2rem);
  margin: 0 1rem 12px;
  border: 1px solid rgba(0, 75, 111, .18);
  border-radius: 16px;
  background: #ffffff;
  color: var(--black);
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 75, 111, .1);
}
.story-bubble__ring {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 4px solid #f43f5e;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}
.story-bubble__video { width: 100%; height: 100%; object-fit: cover; }
.story-bubble__label {
  display: grid;
  gap: 3px;
  min-width: 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
}
.story-bubble__label b,
.story-bubble__label small { display: block; }
.story-bubble__label small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.story-viewer[hidden] { display: none; }
.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .9);
}
.story-viewer__backdrop { position: absolute; inset: 0; }
.story-viewer__shell {
  position: relative;
  z-index: 1;
  width: min(100vw, 430px);
  height: min(100vh, 760px);
  overflow: hidden;
  background: #000000;
}

.story-progress {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 3;
  display: grid;
  grid-auto-flow: column;
  gap: 4px;
}
.story-progress__bar {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .36);
}
.story-progress__fill { display: block; width: 0; height: 100%; background: #ffffff; }
.story-progress__bar.is-done .story-progress__fill { width: 100%; }

.story-viewer__header {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  padding: 12px;
}
.story-profile { display: flex; align-items: center; gap: 8px; }
.story-profile__avatar {
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}
.story-profile__avatar .ph { min-height: 0; border-radius: 50%; }
.story-profile b, .story-profile small { display: block; }
.story-profile b { font-size: 13px; font-weight: 900; }
.story-profile small { color: rgba(255, 255, 255, .8); font-size: 11px; font-weight: 800; }

.story-actions { display: flex; align-items: center; gap: 7px; }
.story-icon, .story-close { border: 0; color: #ffffff; font-weight: 900; cursor: pointer; }
.story-icon {
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: 12px;
  padding: 7px 10px;
}
.story-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 20px;
  line-height: 1;
}

.story-media { position: relative; width: 100%; height: 100%; }
.story-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}
.story-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 78px;
  z-index: 3;
  margin: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, .44);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  padding: 10px 12px;
}
.story-cta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  z-index: 3;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--cta);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.story-tap {
  position: absolute;
  top: 86px;
  bottom: 82px;
  z-index: 2;
  width: 35%;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.story-tap--prev { left: 0; }
.story-tap--next { right: 0; }

/* =========================================================
   LEAD MODAL (mesmo padrao dos demais produtos)
   ========================================================= */
body.modal-open { overflow: hidden; }

.lead-modal[hidden] { display: none; }
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 16px;
}
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
}
.lead-modal__dialog {
  position: relative;
  width: min(100%, 460px);
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  padding: 22px 18px 18px;
  text-align: center;
}
.lead-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.modal-kicker {
  margin: 0 38px 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.lead-modal h2 { margin-bottom: 8px; font-size: 25px; }
.modal-copy, .privacy-note { color: var(--muted); font-size: 14px; line-height: 1.4; }

.modal-offers { display: grid; gap: 12px; margin-top: 18px; }

/* Card de oferta: radio | descricao | valores, com faixa de economia embaixo. */
.modal-offer {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  column-gap: 11px;
  row-gap: 9px;
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--black);
  cursor: pointer;
  padding: 15px 14px 13px;
  text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.modal-offer:hover { border-color: var(--cta); transform: translateY(-1px); }

.modal-offer.featured {
  border-color: var(--cta);
  background: linear-gradient(180deg, #f6fcff 0%, #ffffff 62%);
  box-shadow: 0 10px 24px rgba(0, 155, 223, .16);
}

.modal-offer__badge {
  position: absolute;
  top: -9px;
  left: 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 3px 9px;
  text-transform: uppercase;
}
.modal-offer__badge--melhor { background: var(--green); }
.modal-offer__badge--vendido { background: var(--orange); }

.modal-offer__radio {
  width: 19px;
  height: 19px;
  border: 2px solid #c8d2da;
  border-radius: 50%;
  background: #fff;
}
.modal-offer.featured .modal-offer__radio { border-color: var(--cta); }

.modal-offer__info { display: grid; gap: 2px; min-width: 0; }
.modal-offer__qty { color: var(--black); font-size: 17px; font-weight: 900; line-height: 1.1; }
.modal-offer__unit { color: #4a5560; font-size: 12.5px; font-weight: 700; }

.modal-offer__valores { display: grid; justify-items: end; gap: 1px; }
.modal-offer__avulso { color: #8b96a0; font-size: 11.5px; font-weight: 700; }
.modal-offer__total {
  color: #101820;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}

.modal-offer__save {
  grid-column: 1 / -1;
  border-radius: 8px;
  background: #eefaf1;
  color: #1e7a3a;
  font-size: 11.5px;
  font-weight: 900;
  padding: 6px 9px;
  text-align: center;
}
.modal-offer__save--neutro { background: #f1f5f8; color: #52606b; }

.modal-rodape {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 360px) {
  .modal-offer { column-gap: 8px; padding: 14px 11px 12px; }
  .modal-offer__qty { font-size: 15.5px; }
  .modal-offer__total { font-size: 21px; }
}

/* Card de destaque do kit escolhido: e o ultimo ponto de confirmacao
   antes do checkout, entao carrega preco, valor unitario e a promessa de COD. */
.selected-offer {
  display: grid;
  gap: 1px;
  margin: 0 0 14px;
  border: 1.5px solid var(--cta);
  border-radius: 10px;
  background: linear-gradient(180deg, #f2fbff 0%, #e6f5fd 100%);
  padding: 11px 14px 10px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 155, 223, .12);
}

.selected-offer__kicker {
  color: #0b6f9e;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.selected-offer__label {
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.selected-offer__price {
  color: var(--cta);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.015em;
}

.selected-offer__meta {
  color: #1e7a3a;
  font-size: 11.5px;
  font-weight: 800;
}

.selected-offer__cod {
  margin-top: 5px;
  padding-top: 6px;
  border-top: 1px dashed rgba(0, 155, 223, .35);
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
}

@media (max-width: 380px) {
  .selected-offer__price { font-size: 23px; }
  .selected-offer__label { font-size: 14px; }
}

.lead-form { display: grid; gap: 11px; margin-top: 12px; }
.lead-form label {
  display: grid;
  gap: 6px;
  color: #232323;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}
.lead-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d5d8dd;
  border-radius: 5px;
  background: #ffffff;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  outline: none;
  padding: 12px;
}
.lead-form input:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(0, 155, 223, .15);
}
.privacy-note { margin: 1px 0 2px; font-size: 12px; text-align: left; }

.lead-form .cta {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  background: var(--cta);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 155, 223, .3);
}
.lead-form.is-loading .cta { opacity: .78; pointer-events: none; }

.modal-back {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 4px;
}
