html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* ajusta por causa do header fixo (se for fixo) */
}


:root{
  --bg: #ffffff;
  --text: #0B0F14;
  --muted: #5B6472;
  --line: rgba(15,23,42,.10);
  --red: #E11D48; /* vermelho Velaro */
}

*{ box-sizing: border-box; margin:0; padding:0; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HEADER básico, clean */
.hdr{
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hdr__inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.hdr__left{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

/* Botão menu minimalista (vermelho) */
.hdr__menuBtn{
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  display:grid;
  place-items:center;
  cursor:pointer;
  padding: 0;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.hdr__menuBtn:hover{
  border-color: rgba(225,29,72,.40);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transform: translateY(-1px);
}

.hdr__menuBtn span{
  display:block;
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  margin: 2px 0;
}

/* Logo */
.hdr__logoLink{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.hdr__logo{
  height: 45px;      /* ajuste aqui conforme sua logo */
  width: auto;
  display:block;
}

/* Direita: compra segura (pequeno) */
.hdr__right{
  display:flex;
  align-items:center;
}

.hdr__secure{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Linha divisória discreta */
.hdr__divider{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(225,29,72,.0), rgba(15,23,42,.10), rgba(225,29,72,.0));
}

/* Mobile */
@media (max-width: 520px){
  .hdr__secure{
    font-size: 10px;
    letter-spacing: .10em;
  }
  .hdr__logo{ height: 95px; }
}
.hdr__menuBtn{
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 3px;                 /* controla o espaçamento */
  cursor:pointer;
  padding: 0;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.hdr__menuBtn span{
  display:block;
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  margin: 0;               /* remove espaçamento antigo */
}
.hdr__inner{
  padding: 12px 16px; /* antes 14px */
}
/* ================= DRAWER MENU ================= */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.drawer.is-open{
  pointer-events: auto;
  opacity: 1;
}

.drawer__backdrop{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0,0,0,.35);
  cursor: pointer;
}

.drawer__panel{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: #fff;
  border-right: 1px solid var(--line);
  transform: translateX(-102%);
  transition: transform .22s ease;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

.drawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 8px 6px 12px;
  border-bottom: 1px solid var(--line);
}

.drawer__title{
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.drawer__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.drawer__link{
  display:block;
  padding: 14px 10px;
  margin-top: 10px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(15,23,42,.08);
}

.drawer__link:hover{
  border-color: rgba(225,29,72,.35);
}

.drawer__footer{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.drawer__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
/* ================= HERO CLEAN ================= */
.hero{
  background: #fff;
  padding: 26px 0 10px;
}

.hero__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.hero__title{
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero__media{
  margin: 0 auto 10px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f8fb;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  max-width: 860px;
}

.hero__img{
  width: 100%;
  height: auto;
  display: block;
}

.hero__sub{
  margin: 8px auto 14px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.hero__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

/* botões (se você já tiver no CSS, pode ignorar este bloco) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.btn--primary{
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(225,29,72,.18);
}

.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(225,29,72,.24);
}

.btn--ghost{
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost:hover{
  border-color: rgba(225,29,72,.35);
  transform: translateY(-1px);
}

/* responsivo */
@media (max-width: 720px){
  .hero__title{ font-size: 34px; }
  .hero__media{ border-radius: 18px; }
}

@media (max-width: 520px){
  .hero__title{ font-size: 30px; }
  .btn{ width: 100%; }
}
.hero__title span.line1{
  display: block;
  font-size: 22px;      /* menor que a linha principal */
  font-weight: 700;
  white-space: nowrap; /* força uma linha */
}
.hero__title{
  font-weight: 700;
}
.hero__title .hero__accent{
  font-weight: 800;
}
/* ================= BENEFÍCIOS (CARROSSEL) ================= */
.benefits{
  background: #fff;
  padding: 22px 0 10px;
}

.benefits__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.benefits__title{
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
  text-align: center;
}

.benefits__sub{
  margin: 0 0 12px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* track com scroll-snap (mobile first) */
.benefits__carousel{
  position: relative;
}

.benefits__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 12px;

  overflow-x: auto;
  padding: 6px 2px 10px;

  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.benefits__track::-webkit-scrollbar{ display:none; } /* Chrome/Safari */

.benefitCard{
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  overflow: hidden;
}

.benefitCard__media{
  background: #f7f8fb;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.benefitCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.benefitCard__h{
  font-size: 15px;
  margin: 12px 12px 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.benefitCard__p{
  margin: 0 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* dots */
.benefits__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.dot.is-active{
  background: var(--red);
  border-color: rgba(225,29,72,.35);
  transform: scale(1.15);
}

/* desktop: vira 3 cards lado a lado */
@media (min-width: 920px){
  .benefits__track{
    grid-auto-columns: 1fr;
    overflow: visible;
  }
  .benefits__dots{ display:none; }
}
/* ================= MATERIAL & QUALIDADE ================= */
.material{
  background: #fff;
  padding: 26px 0 12px;
}

.material__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.material__title{
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.material__media{
  margin: 0 auto 12px;
  max-width: 860px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f8fb;
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}

.material__media img{
  width: 100%;
  height: auto;
  display: block;
}

.material__text{
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* ajustes mobile */
@media (max-width: 520px){
  .material{
    padding-top: 22px;
  }
  .material__title{
    font-size: 18px;
  }
}
/* ================= BARRA DE CONFIANÇA ================= */
.trustbar{
  background: #fff;
  padding: 18px 0 10px;
}

.trustbar__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.trustbar__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 92%;
  gap: 10px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 10px;
}
.trustbar__track::-webkit-scrollbar{ display:none; }

.trustPill{
  scroll-snap-align: start;
  display:flex;
  align-items:center;
  gap: 12px;

  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(225,29,72,.20);
  border: 1px solid rgba(255,255,255,.18);
}

.trustPill__icon{
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) invert(1); /* deixa branco (se seu ícone for escuro) */
  opacity: .95;
}

.trustPill__h{
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.trustPill__p{
  margin-top: 2px;
  font-size: 12px;
  opacity: .92;
  line-height: 1.1;
}

/* dots */
.trustbar__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 6px;
}

.trustbar .dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.trustbar .dot.is-active{
  background: var(--red);
  border-color: rgba(225,29,72,.35);
  transform: scale(1.18);
}

/* Desktop: 4 lado a lado */
@media (min-width: 920px){
  .trustbar__track{
    grid-auto-columns: 1fr;
    overflow: visible;
  }
  .trustbar__dots{ display:none; }
  .trustPill{ justify-content:flex-start; }
}
/* ================= CHECKLIST ================= */
.checks{
  background: #fff;
  padding: 22px 0 6px;
}

.checks__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.checks__title{
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
}

.checks__sub{
  text-align: center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.checks__list{
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.checkItem{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);

  /* estado fixo */
  opacity: 1;
  transform: none;
}


.checkItem.is-show{
  opacity: 1;
  transform: translateY(0);
}

.checkIcon{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  background: rgba(225,29,72,.12);
  border: 1px solid rgba(225,29,72,.25);
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}

.checkTxt strong{
  display: block;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.checkTxt span{
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

/* desktop: duas colunas (mais premium) */
@media (min-width: 920px){
  .checks__list{
    grid-template-columns: 1fr 1fr;
  }
}

/* mobile fino */
@media (max-width: 520px){
  .checks__title{ font-size: 18px; }
}
/* ================= ESPECIFICAÇÕES + AVISO DO MODELO ================= */
.specs{
  background: #fff;
  padding: 20px 0 8px;
}

.specs__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.specs__title{
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 10px;
}

.specs__list{
  list-style: none;
  padding: 0;
  margin: 0 auto 14px;
  max-width: 820px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.specs__list li{
  padding: 14px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.specs__list strong{
  color: var(--text);
}

.specs__note{
  max-width: 820px;
  margin: 0 auto 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;

  border: 1px solid rgba(225,29,72,.22);
  background: rgba(225,29,72,.06);
  border-radius: 16px;
  padding: 12px 12px;
}

.specs__noteIcon{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  background: rgba(225,29,72,.12);
  border: 1px solid rgba(225,29,72,.25);
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}

.specs__noteTxt{
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

.specs__accent{
  color: var(--red);
  font-weight: 800;
}

.specs__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* mobile */
@media (max-width: 520px){
  .specs__title{ font-size: 17px; }
  .specs__actions .btn{ width: 100%; }
}
/* Evita o navegador “ancorar” e ajustar a rolagem */
body { overflow-anchor: none; }
/* evita “puxão” do navegador nessa seção */
.trustbar { overflow-anchor: none; }
/* ================= CTA PRODUTO ================= */
.cta{
  background:#fff;
  padding:26px 0 16px;
}

.cta__wrap{
  max-width:420px;
  margin:0 auto;
  padding:0 16px;
}

.cta__title{
  text-align:center;
  font-size:22px;
  letter-spacing:-.02em;
  margin-bottom:14px;
}

/* Galeria */
.cta__gallery{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f7f8fb;
}
.cta__gallery img{
  width:100%;
  display:block;
}

/* Preço */
.cta__price{
  text-align:center;
  margin:14px 0;
}
.cta__priceMain{
  font-size:26px;
  font-weight:900;
}
.cta__priceSub{
  font-size:13px;
  color:var(--muted);
}

/* Seletores */
.cta__selectors{
  display:grid;
  gap:10px;
}
.cta__selectors label{
  display:grid;
  gap:4px;
}
.cta__selectors span{
  font-size:12px;
  font-weight:700;
  color:var(--muted);
}
.cta__selectors select{
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  padding:0 12px;
  font-weight:600;
}
.cta__hint{
  font-size:12px;
  color:var(--muted);
}

/* Cores */
.cta__colors{
  margin-top:16px;
}
.cta__colorsLabel{
  font-size:13px;
  margin-bottom:8px;
}
.cta__colorsGrid{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.color{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-size:13px;
  cursor:pointer;
}
.color.is-active{
  border-color:var(--red);
  color:var(--red);
  font-weight:800;
}

/* Botão */
.cta__buy{
  width:100%;
  margin-top:16px;
  height:52px;
  border-radius:14px;
  border:0;
  background:var(--red);
  color:#fff;
  font-weight:900;
  letter-spacing:.04em;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(225,29,72,.25);
}
/* ================= MODAL ================= */
.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal.is-open{ display: block; }

.modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.modal__box{
  position: relative;
  max-width: 420px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.modal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.modal__title{
  font-size: 18px;
  margin-bottom: 6px;
}

.modal__subtitle{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.modal__summary{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.modal__actions{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.btnPrimary{
  height: 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}

.btnGhost{
  height: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.modal__secure{
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: var(--muted);
}
.modal__color{
  display: flex;
  align-items: center;
  gap: 8px;
}

.colorDot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: inline-block;
}
.modal__summary{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.modal__row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.modal__label{
  color: var(--muted);
  font-weight: 600;
}

.modal__value{
  font-weight: 800;
  color: var(--text);
  text-align: right;
}

.modal__colorValue{
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.colorDot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #111;
}
/* CTA refinamentos */
.cta__subtitle{
  text-align:center;
  font-size:14px;
  color:#555;
  margin-bottom:14px;
}

.cta__trust{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:14px 0;
  font-size:13px;
  color:#333;
}

.cta__trustItem{
  display:flex;
  align-items:center;
  gap:6px;
}

.cta__trustItem img{
  height:16px;
}

.cta__colorsHint{
  display:block;
  font-size:12px;
  color:#666;
  margin-top:2px;
}

.color{
  border:1.5px solid #ddd;
}

.color.is-active{
  border:2px solid var(--red);
  font-weight:700;
}

.cta__buy{
  position:relative;
}

.cta__buySub{
  display:block;
  font-size:12px;
  font-weight:400;
  opacity:.85;
}

.cta__social{
  margin-top:10px;
  font-size:13px;
  text-align:center;
  color:#444;
}
.cta__trust{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:14px 0;
  font-size:13px;
  color:#333;
}

.cta__trustItem{
  display:flex;
  align-items:center;
  gap:6px;
}

.cta__trustItem:first-child{
  justify-content:center; /* 👈 centraliza o Mercado Livre */
}
.cta__price{
  text-align:center;
  margin:14px 0;
}

.cta__priceCompare{
  font-size:13px;
  color:#888;
  margin-bottom:2px;
}

.cta__priceCompare span{
  text-decoration:line-through;
}

.cta__priceMain{
  font-size:28px;
  font-weight:900;
  color:#111;
}

.cta__priceSub{
  font-size:13px;
  color:#555;
}
.cta__productName{
  font-size:15px;
  font-weight:800;
  text-align:center;
  margin:10px 0 6px;
  color:#111;
}

.cta__productName span{
  display:block;
  font-size:13px;
  font-weight:500;
  color:#555;
}
.cta__priceMain{
  color: var(--red);
}
.counter{
  text-align:center;
  padding:40px 16px;
}

.counter__number{
  font-size:42px;
  font-weight:900;
  line-height:1;
  color:#111;
}

.counter__plus{
  color:var(--red);
  font-weight:900;
  margin-left:2px;
}

.counter__text{
  margin-top:8px;
  font-size:14px;
  color:#555;
}
.reviews{
  padding:48px 0;
  background:#fafafa;
}

.reviews__title{
  text-align:center;
  font-size:22px;
  font-weight:900;
  margin-bottom:20px;
}

.reviews__carousel{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:0 16px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.reviews__carousel::-webkit-scrollbar{
  display:none;
}

.review{
  flex:0 0 280px;
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  scroll-snap-align:start;
}

.review__header{
  display:flex;
  align-items:center;
  gap:10px;
}

.review__header img{
  width:42px;
  height:42px;
  border-radius:50%;
  object-fit:cover;
}

.verified{
  font-size:12px;
  color:var(--red);
}

.review__stars{
  margin:6px 0;
  color:#f5a623;
  font-size:14px;
  font-weight:700;
}

.review__stars span{
  color:#111;
  margin-left:4px;
}

.review__text{
  font-size:13px;
  color:#444;
  margin-bottom:10px;
}

.review__photo{
  width:100%;
  aspect-ratio:1/1;
  border-radius:12px;
  object-fit:cover;
}
.faq{
  padding:48px 16px;
  background:#fff;
}

.faq__wrap{
  max-width:720px;
  margin:0 auto;
}

.faq__title{
  text-align:center;
  font-size:22px;
  font-weight:900;
  margin-bottom:24px;
}

.faq__item{
  border-bottom:1px solid #eee;
}

.faq__question{
  width:100%;
  padding:14px 0;
  background:none;
  border:none;
  text-align:left;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  position:relative;
}

.faq__question::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  color:var(--red);
}

.faq__item.is-open .faq__question::after{
  content:"–";
}

.faq__answer{
  max-height:0;
  overflow:hidden;
  font-size:14px;
  color:#555;
  line-height:1.5;
  transition:max-height .3s ease;
}

.faq__item.is-open .faq__answer{
  max-height:200px;
  padding-bottom:14px;
}
.footer{
  background:#f6f6f6;
  border-top:1px solid #e9e9e9;
  padding:34px 16px;
}

.footer__wrap{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}

.footer__brand{
  font-weight:900;
  letter-spacing:.08em;
  font-size:16px;
  color:#111;
}

.footer__rights{
  margin-top:6px;
  font-size:13px;
  color:#666;
}

.footer__line{
  width:56px;
  height:3px;
  background:var(--red);
  margin:16px auto 14px;
  border-radius:999px;
  opacity:.95;
}

.footer__info p{
  margin:6px 0;
  font-size:13px;
  color:#333;
}

.footer__info strong{
  font-weight:800;
  color:#111;
}

.footer__info a{
  color:#333;
  text-decoration:none;
  border-bottom:1px dashed rgba(0,0,0,.25);
}

.footer__info a:hover{
  color:var(--red);
  border-bottom-color:rgba(193,18,31,.55);
}

.footer__bottom{
  margin-top:16px;
  font-size:12px;
  color:#777;
}
.hdr__logo{
  display: block;
  height: 76px;        /* controla o tamanho real */
  width: auto;
  line-height: 1;
  transform: translateY(4px); /* 🔥 DESCE DE VERDADE */
}
.pg{
  margin: 10px auto 0;
  width: 100%;
  max-width: 420px;
}

.pg__main{
  width: 100%;
  border: 1px solid #e9e9ee;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  display: block;
}

.pg__main img{
  width: 100%;
  height: auto;
  display: block;
}

.pg__thumbs{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pg__thumbs::-webkit-scrollbar{ display:none; }

.pg__thumb{
  flex: 0 0 auto;
  width: 62px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #e9e9ee;
  background: #fff;
  padding: 0;
  overflow: hidden;
  opacity: .85;
}

.pg__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.pg__thumb.is-active{
  border-color: #E11D48;
  opacity: 1;
}
.stock{
  margin: 14px 0 18px;
  padding: 12px 14px;
  background: #f7f7f8;
  border-radius: 10px;
}

.stock__text{
  font-size: 13px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.stock__text strong{
  color: #E11D48; /* verde suave */
  font-weight: 700;
}

.stock__bar{
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.stock__fill{
  display: block;
  height: 100%;
  width: 45%; /* vai ser controlado pelo JS */
  background: #E11D48;
  border-radius: 999px;
  transition: width .6s ease;
}
/* MATERIAL – controla proporção do GIF */
.material__media{
  width: 100%;
  max-width: 420px;          /* ajuste se quiser maior/menor */
  margin: 0 auto;
  aspect-ratio: 3 / 4;       /* 🔥 PROPORÇÃO 3:4 */
  border-radius: 16px;
  overflow: hidden;
  background: #f6f6f6;       /* fundo neutro enquanto carrega */
}

/* GIF / imagem dentro */
.material__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;         /* corta excesso sem distorcer */
  display: block;
}
.benefitCard__media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.cta__mainWrap{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(17,24,39,.10);
}

#pgMainImg{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.cta__thumbs{
  margin-top:10px;
  display:flex;
  gap:10px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:6px;
  scroll-snap-type:x mandatory;
}

.pg__thumb{
  flex:0 0 auto;
  width:62px;
  height:62px;
  border-radius:12px;
  border:1px solid rgba(17,24,39,.14);
  background:#fff;
  overflow:hidden;
  padding:0;
  cursor:pointer;
  scroll-snap-align:start;
}
.pg__thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.pg__thumb.is-active{border-color:#E11D48; box-shadow:0 0 0 3px rgba(225,29,72,.14);}
.cta__colors{ margin-top: 14px; }
.cta__colorsLabel{
  display:flex; align-items:baseline; justify-content:space-between;
  font-size:14px; color:#111; margin-bottom:10px;
}

.cta__colorsGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}

.color{
  appearance:none;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  padding:10px 10px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition: transform .08s ease, border-color .15s ease, box-shadow .15s ease;
}

.color:active{ transform: scale(.98); }

.color.is-active{
  border-color:#E11D48;
  box-shadow: 0 0 0 3px rgba(225,29,72,.12);
}

/* se quiser 2 por linha em telas MUITO pequenas */
@media (max-width: 360px){
  .cta__colorsGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
/* ===== Galeria CTA (imagem grande + thumbs) ===== */
.ctaGallery { width: 100%; }

.ctaGallery__main{
  width: 100%;
  aspect-ratio: 4 / 3;      /* ajuste se quiser 3/4 etc */
  object-fit: contain;       /* não corta */
  display: block;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.10);
}

.ctaGallery__thumbs{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.ctaThumb{
  flex: 0 0 auto;
  width: 64px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,.12);
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.ctaThumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.ctaThumb.is-active{
  border-color: #E11D48;
  box-shadow: 0 0 0 3px rgba(225,29,72,.14);
}
.cta__gallery,
.cta__main,
.cta__mainImg,
#ctaMainImg {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px; /* mantém visual premium */
  background: #f8f8f8;
}
/* CTA PRINCIPAL */
.cta__buy {
  background: #16A34A;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 8px 20px rgba(22,163,74,.35);
  transition: all .25s ease;
  animation: pulseCTA 2.2s infinite;
}

/* Hover */
.cta__buy:hover {
  background: #15803D;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(22,163,74,.45);
}

/* Clique */
.cta__buy:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(22,163,74,.35);
}

/* Pulse leve (premium, não agressivo) */
@keyframes pulseCTA {
  0% {
    box-shadow: 0 0 0 0 rgba(22,163,74,.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(22,163,74,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22,163,74,0);
  }
}
/* BOTÃO DO MODAL */
.btnPrimary,
#goToPayment {
  background: #16A34A;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: all .2s ease;
  box-shadow: 0 6px 16px rgba(22,163,74,.35);
}

.btnPrimary:hover,
#goToPayment:hover {
  background: #15803D;
  box-shadow: 0 8px 20px rgba(22,163,74,.45);
}

.btnPrimary:active,
#goToPayment:active {
  transform: scale(.98);
}
/* PREÇO PRINCIPAL */
.cta__priceMain {
  color: #16A34A; /* verde checkout */
  font-weight: 800;
}
