/* ===== Reset básico ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --fg: #0b0b0b;
  --muted: #6b7280;
  --overlay: rgba(0, 0, 0, 0.55);
  --accent: #111827;
  --gap: 12px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --ring: 1px solid #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Fonte Sora (local) ===== */
@font-face {
  font-family: "Sora";
  src: url("./fonts/Sora-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;

}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
} /* ceifa qualquer spill global */

html,
body {
  height: 100%;
  background: #fff;
  color: #111;
}
body {
  font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ===== Wrapper ===== */
.wrapper {
  --wrapper-padding: 1.5rem;
  padding: var(--wrapper-padding);
}

.text-gradient {
  background: linear-gradient(5deg, #3ab46d, #2bcc9e, #86fd1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* para navegadores que suportam */
  color: transparent; /* fallback */
}

/* 
                               //////////////////////////////
                                   FAIXA
                               ////////////////////////////// */

/* Faixa no topo (full width) */

/* compensa a topbar para qualquer salto de âncora */


#preview { scroll-margin-top: calc(var(--topbar-h, 0px) + 8px); }


.topbar {
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.2;
}

.topbar span {
  color: rgba(255, 255, 255, 0.803);
}

/* Se quiser a faixa fixa no topo ao rolar, descomente:
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
}
*/

/* 
                               //////////////////////////////
                                   HERO
                               ////////////////////////////// */

/* ===== Tipografia mínima ===== */
.logo {
  max-width: 48px;
  margin: auto;
  margin-top: 2rem;
}

.h1 {
  margin-top: 2rem;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.h1 span {
  font-size: 3rem;
}

.hero p {
  margin-bottom: 2rem;
}

/* ===== Botão CTA básico ===== */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 700;
}
.btn--primary {
  background: #111;
  color: #fff;
  width: 100%;
  margin-top: 16px;
  margin-top: 2rem;
}

/* ===== Hero ===== */
/* ===== Hero ===== */
.hero {
  display: grid;
  /* gap: 2rem; */
  text-align: center;
}

/* 
                               //////////////////////////////
                                   Carrossel contínuo
                               ////////////////////////////// */

.carousel {
  --slides: 1.7; /* 1, 1.5, 2, 3... */
  --gap: 2rem;

  width: 100vw;
  margin-left: calc(-1 * (50vw - 50%));
  overflow: hidden;
}

.carousel__track {
  display: flex;
  /* sem gap aqui para não criar espaço na emenda entre conjuntos */
  touch-action: pan-y;
  will-change: transform;
}

.set {
  display: flex;
  gap: var(--gap); /* gap só dentro do conjunto */
}

/* cada slide ocupa fração de 100vw e mantém 1:1 */
.slide {
  flex: 0 0 calc((100vw - (var(--slides) - 1) * var(--gap)) / var(--slides));
  aspect-ratio: 1 / 1;
}

.spacer {
  flex: 0 0 var(--gap); /* largura do gap */
  pointer-events: none; /* não interfere no drag */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
}

.carousel__track.is-dragging {
  cursor: grabbing;
}

/* 
                               //////////////////////////////
                                   funciona em iphone..
                               ////////////////////////////// */

/* ===== Compat Section ===== */
.compat {
  background-color: rgb(244, 244, 244);
  padding: 5rem 2rem;
  margin: 5rem 0 5rem;
  border-radius: 2rem;
}
.compat__title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  /* margin-top: 5rem; */
}

/* Lista de cards enumerados */
.cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

/* Card */
.card {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.card__badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
}

.card__text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #111;
}
.muted {
  color: #6b7280;
}

/* 
                               //////////////////////////////
                                   GALERIAS
                               ////////////////////////////// */

/* ===== PV: tokens de apoio (usam os seus se existirem) ===== */
:root {
  --pv-gap: var(--gap, 12px);
  --pv-ring: var(--ring, 1px solid #e5e7eb);
  --pv-radius-lg: var(--radius-lg, 16px);
  --pv-radius-md: var(--radius-md, 12px);
  --pv-overlay: var(--overlay, rgba(0, 0, 0, 0.55));
  --pv-shadow-sm: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.06));
  --pv-shadow-md: var(--shadow-md, 0 6px 20px rgba(0, 0, 0, 0.08));
  --pv-fg: var(--fg, #0b0b0b);
  --pv-muted: var(--muted, #6b7280);
  --pv-surface: #fff;
}

.preview h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ===== PV: bloco ===== */
.pv {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  margin-top: 3rem;
}
.pv__header {
  margin-bottom: 10px;
}
.pv__title {
  font-size: 1.25rem;
  font-weight: 200;
  text-align: center;
  margin-bottom: 1rem;
  color: #000000;
  padding: 0.5rem;
  border-radius: 12px;
}

/* ===== PV: CARROSSEL ===== */
.pv-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--pv-radius-lg);
  background: var(--pv-surface);
  border: var(--pv-ring);
  box-shadow: var(--pv-shadow-md);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: grab;
}
.pv-carousel.is-dragging {
  cursor: grabbing;
}

.pv-track {
  display: flex;
  transition: transform 0.28s ease;
  will-change: transform;
}

.pv-slide {
  flex: 0 0 100%;
}
.pv-box {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}
.pv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PV: THUMBS ===== */
.pv-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 6px 6px;
}
.pv-thumbs::-webkit-scrollbar {
  height: 6px;
}
.pv-thumbs::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 999px;
}
.pv-thumb {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  border: var(--pv-ring);
  cursor: pointer;
  opacity: 0.55;
  transition: 0.15s;
  padding: 0;
  background: #fff;
}
.pv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pv-thumb.is-active {
  opacity: 1;
  outline: 2px solid #111827;
  outline-offset: 2px;
}

/* ===== PV: MODAL ===== */
.pv-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}
.pv-modal[aria-hidden="false"] {
  display: grid;
  place-items: center;
}
.pv-backdrop {
  position: absolute;
  inset: 0;
  background: var(--pv-overlay);
  backdrop-filter: blur(2px);
  z-index: 99;
}
.pv-panel {
  position: relative;
  width: min(94vw, 980px);
  max-height: 90vh;
  background: #fff;
  border: var(--pv-ring);
  border-radius: var(--pv-radius-lg);
  padding: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--pv-shadow-md);
  z-index: 999;
}
.pv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px 10px;
}
.pv-head__title {
  font-size: 16px;
  font-weight: 600;
}
.pv-close {
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* Grade do modal */
.pv-grid {
  overflow: auto;
  padding: 2px;
}
.pv-grid__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pv-grid__item {
  position: relative;
  border-radius: var(--pv-radius-md);
  overflow: hidden;
  background: #fff;
  border: var(--pv-ring);
  cursor: pointer;
  box-shadow: var(--pv-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pv-grid__item:hover {
  transform: translateY(-1px);
  box-shadow: var(--pv-shadow-md);
}
.pv-grid__box {
  aspect-ratio: 1/1;
  position: relative;
  background: #f8fafc;
}
.pv-grid__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsivo leve */
@media (max-width: 520px) {
  .pv-grid__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 
                               //////////////////////////////
                                 OFERTAS
                               ////////////////////////////// */

/* ===== Offer ===== */
.plans {
  /* margin-top: 8rem; */
  display: grid;
  gap: 2rem; /* empilhado no mobile */
}

.plans__title {
  text-align: center;
  font-size: 1.875rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

/* Card base (tudo centralizado) */
.plan {
  /* position: relative; */
  border-radius: 2rem;
  padding: 2rem 2rem;
  display: grid;
  gap: 12px;
  text-align: center;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.plan__head {
  display: grid;
  gap: 4px;
  margin-bottom: 2rem;
}
.plan__title {
  font-weight: 800;
  font-size: 1.875rem;
}
.plan__kicker {
  font-size: 1.225rem;
  color: #6b7280;
}

/* Ribbon meio dentro/meio fora (topo central) */
.plan__ribbon {
  /* position: absolute; */
  /* left: 50%; */
  /* top: 0; */
  /* transform: translate(-50%, -50%); */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: auto;
  background: #111827;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  /* z-index: 2; */
  margin-top: -3rem;
  height: 2rem;
}

/* Checklist sem quadradinho, centrado */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 8px;
  text-align: left;
}
.checklist li {
  /* display: inline-flex;
  align-items: center; */
  gap: 8px;
  font-size: 0.975rem;
  line-height: 1.35;
  text-align: left;
}

.bonus {
  font-size: 0.575rem;
}


/* Preço empilhado (old em cima do new) */
.price {
  margin-top: 2rem;
  display: grid;
  gap: 4px;
  align-items: center;
  justify-items: center;
}
.price__old {
  color: #6b7280;
  font-weight: 700;
}
.price__new {
  font-weight: 900;
  font-size: 2.225rem;
}

/* Imagem */
.plan__media {
  margin: 0;
  overflow: hidden;
  margin-top: 2rem;
  color: white;
}
.plan__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== Estilos específicos ===== */

/* Premium: fundo preto, texto claro, sem borda clara */
.plan--premium {
  background: #0b0b0b;
  color: #fff;
  border-color: #0b0b0b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.plan--premium .plan__kicker,
.plan--premium .price__old {
  color: #cbd5e1;
} /* cinza claro */
.plan--premium .price__new {
  color: #fff;
}
.plan--premium .plan__media {
  border-color: #1f2937;
} /* borda mais escura */

/* Botão invertido p/ fundo escuro */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  margin-top: 2rem;
  font-size: 1.225rem;
}
.btn--inverted {
  background: linear-gradient(45deg, #3ab46d, #2bcc9e, #86fd1d);
  color: #0c2316;
  width: 100%;
  animation: pulse 1.5s infinite;
  transform-origin: center;
  text-decoration: none;
}






@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 51, 0.6); /* cor inicial (rosa do gradiente) */
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(0, 255, 34, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(9, 255, 0, 0);
  }
}
.btn--inverted:active {
  transform: translateY(1px);
}

/* Básico (claro) com botão contornado */
.btn--ghost {
  background: transparent;
  color: #111827;
  border: 2px solid #111827;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  width: 100%;
  text-decoration: none;
}
.btn--ghost:active {
  transform: translateY(1px);
}

/* 
                               //////////////////////////////
                                 GARANTIA
                               ////////////////////////////// */

/* ===== Garantia ===== */
.guarantee .h2 {
  text-align: center;
}

.guarantee__card {
  margin-top: 4rem;
  display: grid;
  gap: 10px;
  text-align: center;
}

.guarantee__img {
  display: block;
  width: min(220px, 60%);
  height: auto;
  margin: 0 auto 8px; /* centraliza e dá respiro */
  object-fit: contain; /* não distorce sua arte */
}

.guarantee__title {
  font-weight: 800;
  font-size: 1.15rem;
}
.guarantee__text {
  color: #111;
  font-size: 0.98rem;
  line-height: 1.45;
}

/* bullets opcionais se usar a lista */
.guarantee__list {
  list-style: none;
  padding: 0;
  margin-top: 4px;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: #111;
}
.guarantee__list li {
  font-size: 0.95rem;
}

/* 
                               //////////////////////////////
                                 GARANTIA
                               ////////////////////////////// */

.faq .h2 {
  margin-top: 4rem;
  text-align: center;
  margin-bottom: 12px;
  border-top: 1px solid #ececec;
  padding-top: 4rem;
}

.faq-accordion {
  display: grid;
  gap: 8px;
}

/* Item base */
.faq-item {
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  overflow: clip; /* evita vazamentos em animação */
  scroll-margin-top: 80px; /* ajuda quando for linkado por âncora */
}

/* Cabeçalho */
.faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 800;
  cursor: pointer;
}
.faq-summary::-webkit-details-marker {
  display: none;
}

/* Ícone (+ / –) */
.faq-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.faq-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg); /* ↓ (chevron para baixo) */
  transition: transform 0.22s ease;
}

/* Quando o item abre, gira para cima */
.faq-item[open] .faq-icon::before {
  transform: rotate(-135deg); /* ↑ (chevron para cima) */
}

/* Conteúdo com animação suave (height auto trick) */
/* Conteúdo do acordeon (animado por JS) */
.faq-content {
  overflow: hidden;
  height: 0; /* fechado por padrão */
}

/* acessibilidade: reduz movimento quando o usuário prefere */
@media (prefers-reduced-motion: reduce) {
  .faq-content {
    transition: none !important;
    height: auto !important;
  }
}

.faq-item[open] .faq-content {
  grid-template-rows: 1fr;
}

.faq-content__inner {
  overflow: hidden;
  padding: 0 16px 14px;
  color: #111;
  line-height: 1.45;
  font-size: 0.96rem;
}

/* Estado aberto: sombra um pouco mais forte */
.faq-item[open] {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}



/* ===== Footer ===== */
.site-footer{
    margin-top: 4rem;
  background: #fff;
  padding: 14px 16px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom)); /* iOS safe-area */
}

.footer__copy{
  text-align: center;
  font-size: .9rem;
  color: #6b7280;  /* “muted” */
}

/* @media (min-width: 1025px) {
    body {
      display: none !important;
    }
  } */











  /* ===== Marquee duplo contínuo (seção bonus) ===== */
.marquee{
  background: #fff;
  line-height: 0;
  overflow: hidden;
}

/* cada faixa */
.marquee__row{
  height: auto;   /* altura definida pela imagem mais alta */
  margin: 0;      /* sem espaço extra entre as faixas */
}

/* trilha que se move */
.marquee__track{
  display: flex;
  align-items: flex-start;  /* não estica na altura */
  gap: 2px;     /* espaço entre imagens */
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 50s); /* JS ajusta com precisão */
}

/* direção por data-attr */
.marquee__row[data-dir="left"]  .marquee__track{ animation-name: marquee-left;  }
.marquee__row[data-dir="right"] .marquee__track{ animation-name: marquee-right; }

/* 2 imagens por tela: cada img = ~50vw (- gap) */
.marquee__track img{
  flex: 0 0 calc(50vw - var(--gap, 2px));
  width: calc(50vw - var(--gap, 2px));
  height: auto;        /* mantém proporção natural */
  display: block;
  object-fit: unset;   /* não recorta */
  object-position: center;
}

/* animações (loop contínuo) */
@keyframes marquee-left{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right{
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}














/* ===== Upsell Modal — versão FINAL ===== */
.upsell[aria-hidden="true"] { display: none; }
.upsell[aria-hidden="false"] { display: block; }

.upsell{
  position: fixed; inset: 0; z-index: 99999;
}
.upsell__backdrop{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
}

/* CARD fullscreen (mobile-first) */
.upsell__dialog{
  position: fixed; inset: 0;
  width: 100vw;
  height: 100dvh;              /* viewport dinâmica */
  max-height: 100dvh;
  padding: calc(env(safe-area-inset-top) + 16px) 16px
           calc(env(safe-area-inset-bottom) + 16px);
  display: grid;
  grid-template-rows: auto 1fr auto; /* título / conteúdo / ações */
  gap: 12px;
  overflow: hidden;             /* rola só o conteúdo interno */
  overscroll-behavior: contain;

  /* tema escuro (como o Premium) */
  background: #0b0b0b; color: #fff;
  border: 0; border-radius: 0; box-shadow: none;
  transform: none;

  animation: upsell-fade .32s cubic-bezier(.16,1,.3,1);
}
@keyframes upsell-fade{
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cabeçalho e textos */
.upsell__head{ text-align: center; padding-inline: 2rem; margin: auto; } /* espaço pro X */
.upsell__title{ font-weight: 800; font-size: 1.05rem; color:#fff; }
.upsell__desc{ color:#cbd5e1; font-size:.96rem; }

/* Conteúdo rola DENTRO do modal */
.upsell__list{
  list-style: none; margin: 0; padding: 0 2px 0 0;
  display: grid; gap: 8px; justify-items: start;
  overflow: auto; min-height: 0;
}
.upsell__list li{
  position: relative; padding-left: 24px; line-height: 1.35; color:#fff;
}
.upsell__list li::before{
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; display: grid; place-items: center;
  border-radius: 6px; border: 2px solid #fff;
  font-size: .8rem; font-weight: 800; color: #fff;
}

/* Ações */
.upsell__actions{ display: grid; gap: 8px; }
.upsell__btn{ width: 100%; }
.upsell__dialog .btn--primary{ background:#fff; color:#0b0b0b; }
.upsell__dialog .btn--ghost{ background:transparent; color:#fff; border:2px solid #fff; }

/* Botão “X” fixo no topo direito (fora do fluxo, sem cobrir título) */
.upsell__close{
  position: fixed;
  top: calc(env(safe-area-inset-top) + 10px);
  right: 10px;
  width: 32px; height: 32px;
  padding: 0; border: 0; background: transparent;
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
  z-index: 100000; /* acima do card */
}

/* trava o scroll do fundo quando abrir */
html.upsell-open, body.upsell-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce){
  .upsell__dialog{ animation: none; }
}

/* Modal rola inteiro (não só a lista) */
.upsell__dialog{
  overflow: auto !important;
  -webkit-overflow-scrolling: touch; /* scroll suave no iOS */
}

/* A lista não precisa ter scroll próprio */
.upsell__list{
  overflow: visible !important;
  min-height: auto !important;
  padding-right: 0 !important;
}


/* ===== FIX: hero em “simulação mobile” no desktop ===== */
/* força o wrapper estreito (se você usa essa simulação) */
@media (min-width: 1025px){
  .wrapper{
    width: 425px;
    max-width: 425px;
    margin-inline: auto;
  }

  /* HERO: calcular por % do container (e não 100vw) */
  #hero .carousel{
    --slides: 2;           /* mude p/ 1.8, 2.2 etc p/ ajustar o tamanho visual */
    --gap: 12px;

    width: 100% !important;
    margin-left: 0 !important;      /* elimina o hack do vw */
    overflow: hidden;
  }
  #hero .carousel__track{ gap: 0 !important; will-change: transform; }
  #hero .set{ display: flex !important; gap: var(--gap) !important; }
  #hero .spacer{ flex: 0 0 var(--gap); pointer-events: none; }

  /* cada slide = fração do CONTAINER */
  #hero .slide{
    flex: 0 0 calc((100% - (var(--slides) - 1) * var(--gap)) / var(--slides)) !important;
    aspect-ratio: 1 / 1;
  }
  #hero .slide img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    border-radius: .5rem;
  }
}

/* segurança: sem scroll horizontal */
html, body { overflow-x: hidden; }


