

:root{
  --petrol:#000000;       /* azul petróleo principal */
  --petrolDark:#000000;   /* variação escura */
  --ice:#F2F6FA;          /* branco gelo */
  --ice2:#E7EEF6;
  --mutedOnPetrol:rgba(242,246,250,.75);

  --orange:#e54607;
  --orange2:#e54607;

  --shadow: 0 18px 70px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;background:#fff;color:#0B0F1A}
button{font:inherit}
a{text-decoration:none;color:inherit}

/* HEADER */
.hxHeader{
  position:sticky;top:0;z-index:50;
  background:var(--petrol);
  color:var(--ice);
}

.hxTop{
  height:54px;
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 12px;
}

.hxLeft{display:flex;align-items:center;gap:10px}
.hxRight{display:flex;align-items:center;gap:10px}

.hxBtn{
  width:40px;height:40px;
  display:grid;place-items:center;
  background:transparent;border:0;
  color:var(--ice);
  cursor:pointer;padding:0;
}
.hxBtn svg{width:22px;height:22px;opacity:.95}
.hxBtn:active{transform:scale(.98)}

.hxLogo{display:flex;align-items:center}
.hxLogo img{
  height:58px;width:auto;display:block;object-fit:contain;
  /* se sua logo já for branca, pode remover a linha abaixo */
  filter: brightness(0) invert(1);
}

/* Badge carrinho */
.hxCart{position:relative}
.hxBadge{
  position:absolute;top:-6px;right:-6px;
  min-width:18px;height:18px;padding:0 6px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;font-size:11px;
  display:grid;place-items:center;
  border:2px solid var(--petrol);
}

/* SEARCH (branca e limpa) */
.hxSearchRow{padding:8px 12px 12px}
.hxSearch{
  height:42px;
  background:#fff;
  border-radius:999px;
  display:flex;align-items:center;
  overflow:hidden;
}
.hxSearch input{
  width:100%;height:42px;
  border:0;outline:0;
  padding:0 14px;
  font-size:14px;color:#111;
}
.hxSearch input::placeholder{color:#6B7280}
.hxSearchBtn{
  width:46px;height:42px;
  border:0;
  background:var(--orange);
  color:#fff;
  display:grid;place-items:center;
  cursor:pointer;
}
.hxSearchBtn:hover{background:var(--orange2)}
.hxSearchBtn svg{width:20px;height:20px}

/* OVERLAY */
.hxOverlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.55);
  z-index:60;
}

/* DRAWER */
.hxDrawer{
  position:fixed;top:0;left:0;
  width:min(86vw,360px);
  height:100vh;
  background:var(--petrolDark);
  color:var(--ice);
  z-index:70;
  transform:translateX(-110%);
  transition:transform .22s ease;
  display:flex;flex-direction:column;
}
.hxDrawer.isOpen{transform:translateX(0)}

.hxDrawerHead{
  height:54px;
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.hxNav{
  padding:12px;
  display:flex;flex-direction:column;
  gap:6px;
}
.hxNav a{
  padding:10px 10px;
  border-radius:10px;
  color:rgba(242,246,250,.92);
}
.hxNav a:hover{background:rgba(255,255,255,.06)}

.hxSep{height:1px;background:rgba(255,255,255,.12);margin:10px 0}
.hxLabel{
  font-size:12px;
  color:var(--mutedOnPetrol);
  text-transform:uppercase;
  letter-spacing:.2px;
  margin-top:2px;
}

.hxSocial{display:flex;gap:10px;padding-top:6px}
.hxSocialBtn{
  width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.06);
  color:var(--ice);
}
.hxSocialBtn:hover{background:rgba(255,255,255,.10)}
.hxSocialBtn svg{width:20px;height:20px}

.hxDrawerFooter{
  margin-top:auto;
  padding:14px 12px;
  border-top:1px solid rgba(255,255,255,.12);
  color:var(--mutedOnPetrol);
}

/* MODALS (mínimo, premium) */
.hxModal{
  position:fixed;inset:0;
  display:none;place-items:center;
  z-index:80;
  background:rgba(0,0,0,.55);
  padding:18px;
}
.hxModal.isOpen{display:grid}

.hxModalCard{
  width:min(520px,100%);
  background:#fff;
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hxModalHead{
  height:54px;
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid #EEF2F6;
}
.hxBtnDark{color:#0B0F1A}

.hxForm{padding:12px;display:flex;flex-direction:column;gap:12px}
.hxField{display:flex;flex-direction:column;gap:6px;font-size:13px}
.hxField span{font-weight:800;color:#334155}
.hxField input{
  height:44px;border-radius:12px;
  border:1px solid #E6E8EC;
  padding:0 12px;outline:0;
}
.hxField input:focus{
  border-color:rgba(5,49,77,.55);
  box-shadow:0 0 0 4px rgba(5,49,77,.12);
}

.hxPrimary{
  height:46px;border:0;border-radius:12px;
  cursor:pointer;font-weight:900;
  background:var(--petrol);
  color:var(--ice);
}
.hxPrimary:hover{background:#042A43}
.hxPrimary:active{transform:scale(.99)}
.hxPrimary--petrol{background:var(--petrol)}

.hxHint{margin:0;font-size:12px;color:#64748B}
.hxMuted{color:#64748B}

/* Carrinho vazio */
.hxCartBody{padding:14px}
.hxEmpty{display:flex;flex-direction:column;gap:8px;align-items:flex-start}
.hxEmptyIcon{
  width:46px;height:46px;border-radius:14px;
  display:grid;place-items:center;
  background:#F6F7F9;color:var(--petrol);
}
.hxEmptyIcon svg{width:22px;height:22px}

.hxSearchBody{padding:14px}
.hxSearchList{display:flex;flex-direction:column;gap:10px;margin-top:10px}
.hxResult{
  padding:12px;border-radius:12px;border:1px solid #E6E8EC;
  display:flex;justify-content:space-between;align-items:center;
}
.hxResult strong{font-size:14px}
.hxResult span{font-size:12px;color:#64748B}
.heroSlider{
  width:100%;
  position:relative;
  overflow:hidden;
  background:#05314D; /* azul petróleo */
  border-top: 1px solid rgba(242,246,250,.55); /* linha branca */
}

/* 1536x1024 = 3:2 */
.heroViewport{
  width:100%;
  aspect-ratio: 3 / 2;
  position:relative;
  overflow:hidden;
}

.heroTrack{
  height:100%;
  display:flex;
  transition: transform .55s ease;
  will-change: transform;
}

.heroSlide{
  flex: 0 0 100%;
  height:100%;
  display:grid;
  place-items:center;
}

/* NÃO corta: mostra 100% da imagem */
.heroSlide img{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position:center;
  display:block;
}

/* Dots */
.heroDots{
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.heroDot{
  width:8px;height:8px;
  border:0;
  border-radius:999px;
  background: rgba(242,246,250,.45);
  cursor:pointer;
  padding:0;
}

.heroDot.isActive{
  background:#e54607;
}
/* CHECKLIST PREMIUM */
.nxProof{
  background:#fff;
  padding: 22px 16px 10px;
}

.nxProof__wrap{
  max-width: 720px;
  margin: 0 auto;
}

.nxProof__head{
  margin-bottom: 14px;
}

.nxProof__kicker{
  margin:0 0 6px;
  color:#05314D; /* azul petróleo */
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 13px;
  text-transform: uppercase;
}

.nxProof__title{
  margin:0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.2px;
  color:#0B0F1A;
}

/* lista */
.nxChecks{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 8px 0 14px;
}

/* item estilo "linha premium" (diferente do print) */
.nxCheck{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid #E6E8EC;
  border-radius: 16px;
  background: #fff;
}

/* ícone com pill minimalista */
.nxCheck__icon{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(5,49,77,.06); /* petrol bem leve */
  color: #05314D;
  position: relative;
}

.nxCheck__icon::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:999px;
  border:1px solid rgba(5,49,77,.14);
}

.nxCheck__icon svg{ width: 18px; height: 18px; }

.nxCheck__title{
  margin:0;
  font-size: 15px;
  line-height: 1.15;
  color:#0B0F1A;
}

.nxCheck__text{
  margin: 6px 0 0;
  color:#667085;
  font-size: 13.5px;
  line-height: 1.35;
}

/* micro-interação hover (desktop) */
@media (hover:hover){
  .nxCheck:hover{
    border-color: rgba(5,49,77,.22);
    box-shadow: 0 10px 30px rgba(16,24,40,.06);
    transform: translateY(-1px);
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  }
}

/* Animação de entrada (scroll reveal) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(1px);
}

.reveal.isVisible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}

/* delay progressivo pra ficar premium */
.reveal.isVisible:nth-child(1){ transition-delay: .00s; }
.reveal.isVisible:nth-child(2){ transition-delay: .06s; }
.reveal.isVisible:nth-child(3){ transition-delay: .12s; }
.reveal.isVisible:nth-child(4){ transition-delay: .18s; }
.nxCheck{
background:#F8FAFC;
border:1px solid #E6E8EC;
}
.nxCheck__icon{
background:rgba(5,49,77,.08);
color:#05314D;
}
.nxProof{
padding:18px 16px 8px;
}
/* SECTION */

.nxWhy{
padding:0px 16px;
background:#ffffff;
}

.nxWhyHead{
text-align:center;
max-width:520px;
margin:0 auto 26px auto;
}

.nxWhyHead h2{
font-size:22px;
font-weight:700;
line-height:1.2;
color:#111;
margin-bottom:8px;
}

.nxWhyHead h2 span{
color:#05314D; /* azul petróleo */
}

.nxWhyHead p{
color:#6B7280;
font-size:14px;
}


/* SLIDER */

.nxWhySlider{
overflow-x:auto;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
}

.nxWhyTrack{
display:flex;
gap:16px;
}


/* CARD */

.nxWhyCard{
min-width:80%;
background:#fff;
border-radius:16px;
border:1px solid #E5E7EB;
overflow:hidden;
scroll-snap-align:start;
}

.nxWhyMedia{
width:100%;
aspect-ratio:1/1;
overflow:hidden;
}

.nxWhyMedia img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}


/* TEXT */

.nxWhyCard h3{
font-size:16px;
font-weight:600;
padding:12px 14px 2px 14px;
color:#111;
}

.nxWhyCard p{
font-size:13px;
color:#6B7280;
padding:0 14px 16px 14px;
line-height:1.4;
}


/* desktop */

@media(min-width:768px){

.nxWhyTrack{
justify-content:center;
}

.nxWhyCard{
min-width:280px;
max-width:280px;
}

}
/* =========================================================
   ROVERA LP — BLACK + ORANGE (FULL CSS)
   - Mobile first
   - Header + Search (igual anexo)
   - Drawer menu
   - Slider (2 slides 1536x1024 = 3:2)
   - Checklist (scroll reveal)
   - Why carousel (gif cards)
   ========================================================= */

/* -------------------------
   TOKENS / THEME
-------------------------- */
:root{
  --primary:#0B0B0B;        /* preto */
  --secondary:#141414;      /* grafite */
  --ice:#F8FAFC;            /* branco gelo */
  --muted:rgba(248,250,252,.78);
  --line:rgba(255,255,255,.14);

  --accent:#e54607;         /* laranja */
  --accentHover:#e54607;

  --text:#0B0F1A;           /* texto em fundo branco */
  --gray:#667085;           /* texto secundário */

  --shadow: 0 18px 70px rgba(0,0,0,.35);
  --radius: 16px;
}

/* -------------------------
   BASE
-------------------------- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:#fff;
  color:var(--text);
}
a{color:inherit;text-decoration:none}
button{font:inherit}

/* =========================================================
   HEADER (BLACK) + SEARCH (WHITE)
========================================================= */
.hxHeader{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--primary);
  color:var(--ice);
}

.hxTop{
  height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  gap:10px;
}

.hxLeft{
  display:flex;
  align-items:center;
  gap:10px;
}
.hxRight{
  display:flex;
  align-items:center;
  gap:10px;
}

.hxBtn{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  background:transparent;
  border:0;
  color:var(--ice);
  cursor:pointer;
  padding:0;
}
.hxBtn svg{width:22px;height:22px;opacity:.95}
.hxBtn:active{transform:scale(.98)}

.hxLogo{display:flex;align-items:center}
.hxLogo img{
  height:68px;
  width:auto;
  display:block;
  object-fit:contain;
  /* se sua logo já for branca, remova a linha abaixo */
  filter: brightness(0) invert(1);
}

.hxCart{position:relative}
.hxBadge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 6px;
  border-radius:999px;
  background:var(--accent);
  color:#ffffff;
  font-size:11px;
  display:grid;
  place-items:center;
  border:2px solid var(--primary);
}

/* Search row */
.hxSearchRow{padding:8px 12px 12px}
.hxSearch{
  height:42px;
  background:#fff;
  border-radius:999px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hxSearch input{
  width:100%;
  height:42px;
  border:0;
  outline:0;
  padding:0 14px;
  font-size:14px;
  color:#111;
}
.hxSearch input::placeholder{color:#6B7280}
.hxSearchBtn{
  width:46px;
  height:42px;
  border:0;
  background:var(--accent);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.hxSearchBtn:hover{background:var(--accentHover)}
.hxSearchBtn svg{width:20px;height:20px}

/* =========================================================
   OVERLAY + DRAWER (BLACK)
========================================================= */
.hxOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:60;
}

.hxDrawer{
  position:fixed;
  top:0;
  left:0;
  width:min(86vw,360px);
  height:100vh;
  background:var(--secondary);
  color:var(--ice);
  z-index:70;
  transform:translateX(-110%);
  transition:transform .22s ease;
  display:flex;
  flex-direction:column;
}
.hxDrawer.isOpen{transform:translateX(0)}

.hxDrawerHead{
  height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.hxNav{
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.hxNav a{
  padding:10px 10px;
  border-radius:10px;
  color:rgba(248,250,252,.92);
}
.hxNav a:hover{background:rgba(255,255,255,.06)}

.hxSep{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:10px 0;
}
.hxLabel{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.2px;
  margin-top:2px;
}

.hxSocial{
  display:flex;
  gap:10px;
  padding-top:6px;
}
.hxSocialBtn{
  width:44px;
  height:44px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.06);
  color:var(--ice);
}
.hxSocialBtn:hover{background:rgba(255,255,255,.10)}
.hxSocialBtn svg{width:20px;height:20px}

.hxDrawerFooter{
  margin-top:auto;
  padding:14px 12px;
  border-top:1px solid rgba(255,255,255,.10);
  color:var(--muted);
}

/* =========================================================
   MODALS (ACCOUNT / CART / SEARCH) — clean & premium
========================================================= */
.hxModal{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  z-index:80;
  background:rgba(0,0,0,.55);
  padding:18px;
}
.hxModal.isOpen{display:grid}

.hxModalCard{
  width:min(520px,100%);
  background:#fff;
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hxModalHead{
  height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid #EEF2F6;
}
.hxBtnDark{color:#0B0F1A}

.hxForm{
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hxField{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
}
.hxField span{font-weight:800;color:#334155}
.hxField input{
  height:44px;
  border-radius:12px;
  border:1px solid #E6E8EC;
  padding:0 12px;
  outline:0;
}
.hxField input:focus{
  border-color:rgba(0,0,0,.35);
  box-shadow:0 0 0 4px rgba(0,0,0,.08);
}

.hxPrimary{
  height:46px;
  border:0;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
  background:var(--accent);
  color:#fff;
}
.hxPrimary:hover{background:var(--accentHover)}
.hxPrimary:active{transform:scale(.99)}
.hxHint{margin:0;font-size:12px;color:#64748B}
.hxMuted{color:#64748B}

/* cart empty */
.hxCartBody{padding:14px}
.hxEmpty{display:flex;flex-direction:column;gap:8px;align-items:flex-start}
.hxEmptyIcon{
  width:46px;height:46px;border-radius:14px;
  display:grid;place-items:center;
  background:#F6F7F9;color:var(--primary);
}
.hxEmptyIcon svg{width:22px;height:22px}

/* search results */
.hxSearchBody{padding:14px}
.hxSearchList{display:flex;flex-direction:column;gap:10px;margin-top:10px}
.hxResult{
  padding:12px;
  border-radius:12px;
  border:1px solid #E6E8EC;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.hxResult strong{font-size:14px}
.hxResult span{font-size:12px;color:#64748B}

/* =========================================================
   HERO SLIDER — 2 slides 1536x1024 (3:2)
========================================================= */
.heroSlider{
  width:100%;
  position:relative;
  overflow:hidden;
  background:var(--primary);
  border-top: 1px solid rgba(248,250,252,.35); /* linha branca sutil */
}

.heroViewport{
  width:100%;
  aspect-ratio: 3 / 2; /* 1536x1024 */
  position:relative;
  overflow:hidden;
  background:var(--primary);
}

.heroTrack{
  height:100%;
  display:flex;
  transition: transform .55s ease;
  will-change: transform;
}

.heroSlide{
  flex:0 0 100%;
  height:100%;
  display:grid;
  place-items:center;
}

.heroSlide img{
  width:100%;
  height:100%;
  object-fit:contain; /* nunca corta */
  object-position:center;
  display:block;
}

.heroDots{
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.heroDot{
  width:8px;height:8px;
  border:0;
  border-radius:999px;
  background: rgba(248,250,252,.45);
  cursor:pointer;
  padding:0;
}
.heroDot.isActive{background:var(--accent)}

/* =========================================================
   CHECKLIST SECTION (scroll reveal) — premium minimal
========================================================= */
.nxProof{
  background:#fff;
  padding: 18px 16px 10px;
}
.nxProof__wrap{max-width:720px;margin:0 auto}
.nxProof__head{margin-bottom:14px}
.nxProof__kicker{
  margin:0 0 6px;
  color: var(--primary);
  font-weight:900;
  letter-spacing:.2px;
  font-size:13px;
  text-transform:uppercase;
}
.nxProof__title{
  margin:0;
  font-size:20px;
  line-height:1.15;
  letter-spacing:-.2px;
  color:var(--text);
}

.nxChecks{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:8px 0 14px;
}

.nxCheck{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 14px;
  border:1px solid #E6E8EC;
  border-radius:16px;
  background:#F8FAFC;
}

.nxCheck__icon{
  width:34px;height:34px;
  flex:0 0 34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(11,11,11,.06);
  color: var(--primary);
  position:relative;
}
.nxCheck__icon::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:999px;
  border:1px solid rgba(11,11,11,.12);
}
.nxCheck__icon svg{width:18px;height:18px}

.nxCheck__title{
  margin:0;
  font-size:15px;
  line-height:1.15;
  color:var(--text);
}
.nxCheck__text{
  margin:6px 0 0;
  color:var(--gray);
  font-size:13.5px;
  line-height:1.35;
}

/* hover (desktop) */
@media (hover:hover){
  .nxCheck{
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  }
  .nxCheck:hover{
    border-color: rgba(0,0,0,.18);
    box-shadow: 0 10px 30px rgba(16,24,40,.06);
    transform: translateY(-1px);
  }
}

/* reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  filter: blur(1px);
}
.reveal.isVisible{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}
.reveal.isVisible:nth-child(1){transition-delay:.00s}
.reveal.isVisible:nth-child(2){transition-delay:.06s}
.reveal.isVisible:nth-child(3){transition-delay:.12s}
.reveal.isVisible:nth-child(4){transition-delay:.18s}

/* =========================================================
   WHY CAROUSEL (3 GIFs) — centered headline
========================================================= */
.nxWhy{
  padding: 34px 16px;
  background:#fff;
}
.nxWhyHead{
  text-align:center;
  max-width:560px;
  margin:0 auto 18px;
}
.nxWhyHead h2{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.2px;
  color:var(--text);
}
.nxWhyHead h2 span{ color: var(--accent); }
.nxWhyHead p{
  margin:0;
  color:var(--gray);
  font-size:14px;
}

.nxWhySlider{
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom: 4px;
}
.nxWhyTrack{
  display:flex;
  gap:14px;
}
.nxWhyCard{
  min-width: 82%;
  background:#fff;
  border-radius:16px;
  border:1px solid #E6E8EC;
  overflow:hidden;
  scroll-snap-align:start;
}
.nxWhyMedia{
  width:100%;
  aspect-ratio: 1 / 1;
  overflow:hidden;
  background:#0E0E0E;
}
.nxWhyMedia img,
.nxWhyMedia video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.nxWhyCard h3{
  margin:0;
  font-size:16px;
  font-weight:800;
  padding:12px 14px 2px;
  color:var(--text);
}
.nxWhyCard p{
  margin:0;
  padding:0 14px 16px;
  font-size:13px;
  color:var(--gray);
  line-height:1.4;
}

/* desktop layout */
@media (min-width:768px){
  .nxWhyTrack{justify-content:center}
  .nxWhyCard{min-width:290px;max-width:290px}
}

/* Optional: hide scrollbar clean */
.nxWhySlider::-webkit-scrollbar{height:8px}
.nxWhySlider::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.12);
  border-radius:999px;
}
.nxWhySlider::-webkit-scrollbar-track{background:transparent}
/* =========================================================
   ROVERA TICKER (barra laranja infinita)
========================================================= */
.rxTicker{
  background: var(--accent); /* laranja do site */
  color: #fff;
  width: 100%;
  overflow: hidden;
  /* se quiser colar no topo sempre:
  position: sticky; top: 0; z-index: 60;
  */
}

.rxTicker__viewport{
  width: 100%;
  overflow: hidden;
}

.rxTicker__track{
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: rxTickerMove linear infinite;
  /* velocidade padrão (JS ajusta melhor) */
  animation-duration: 26s;
}

.rxTicker__set{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 16px;
}

.rxTicker__item{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.rxTicker__logo{
  height: 24px;
  width: auto;
  display: block;
  opacity: .95;
  /* se a logo for escura e você quiser branca:
  filter: brightness(0) invert(1);
  */
}

/* pausa no hover (desktop) */
@media (hover:hover){
  .rxTicker:hover .rxTicker__track{
    animation-play-state: paused;
  }
}

/* animação base (vai de 0 até -50% porque tem 2 sets) */
@keyframes rxTickerMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .rxTicker__track{
    animation: none;
    transform: none;
  }
}
/* =========================================================
   ROVERA TICKER — versão discreta
========================================================= */

.rxTicker{
background:#e54607; /* laranja mais escuro */
color:#fff;
width:100%;
overflow:hidden;
}

.rxTicker__viewport{
overflow:hidden;
}

.rxTicker__track{
display:flex;
width:max-content;
align-items:center;
animation: rxTickerMove linear infinite;
animation-duration:30s;
}

/* altura menor */

.rxTicker__set{
display:flex;
align-items:center;
gap:12px;
padding:6px 14px; /* antes era 9px */
}

.rxTicker__item{
font-weight:600;
font-size:11px; /* menor */
letter-spacing:.4px;
text-transform:uppercase;
white-space:nowrap;
opacity:.95;
}

.rxTicker__logo{
height:12px; /* menor */
width:auto;
opacity:.85;
}

/* animação */

@keyframes rxTickerMove{
from{ transform: translateX(0); }
to{ transform: translateX(-50%); }
}

/* pausa hover */

@media (hover:hover){
.rxTicker:hover .rxTicker__track{
animation-play-state:paused;
}
}
.nxCheck__icon{
background: rgba(249,115,22,.12); /* laranja bem suave */
color: #e54607; /* check laranja */
}
.nxCheck__icon::after{
border:1px solid rgba(249,115,22,.28);
}
.nxCheck{
display:flex;
align-items:flex-start;
gap:12px;
padding:14px 14px;
border:1px solid #E5E7EB;
border-radius:16px;
background:#F3F4F6; /* branco mais escuro */
}
.nxProof__head{
text-align:center;
margin-bottom:18px;
}.nxProof__kicker{
margin:0 0 6px;
color:#e54607; /* laranja */
font-weight:800;
font-size:16px;
letter-spacing:.6px;
text-transform:uppercase;
}.nxProof__title{
margin:0;
font-size:15px;
font-weight:500;
color:#6B7280; /* cinza suave */
line-height:1.4;
max-width:420px;
margin-left:auto;
margin-right:auto;
}
.nxDivider{
width:40px;
height:3px;
background:#E54600;
margin:10px auto 18px auto;
border-radius:10px;
}
/* ===== HEAD ===== */
.nxCompare{
  padding: 1px 16px;
  background:#fff;
}
.nxCompare__head{
  text-align:center;
  max-width:560px;
  margin:0 auto 18px;
}
.nxCompare__head h2{
  margin:0 0 8px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.2px;
  color:#0B0F1A;
}
.nxCompare__head span{ color:#E54600; }
.nxCompare__head p{
  margin:0;
  color:#6B7280;
  font-size:14px;
  line-height:1.35;
}

/* ===== COMPARE ===== */
.cmp{
  position:relative;
  width:100%;
  max-width:720px;
  margin:0 auto 16px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #E5E7EB;
  background:#000;

  /* posição inicial no meio */
  --p: 50%;

  /* BEFORE no background do container */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /* altura bonita e estável */
  aspect-ratio: 16 / 10;
}

/* AFTER cobre 100% SEMPRE */
.cmp__after{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /* AQUI: recorte, sem “porta abrindo” */
  clip-path: inset(0 calc(100% - var(--p)) 0 0);
}

/* DIVISOR branco no meio */
.cmp__divider{
  position:absolute;
  top:0;
  left: var(--p);
  width:2px;
  height:100%;
  background:#fff;
  transform: translateX(-1px);
  pointer-events:none;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* HANDLE com setinhas */
.cmp__handle{
  width:42px;
  height:42px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  display:grid;
  place-items:center;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
}
.cmp__handle svg{ width:18px; height:18px; }

/* Área de arraste */
.cmp__drag{
  position:absolute;
  inset:0;
  cursor: ew-resize;
}

/* mobile ajuste */
@media (max-width: 420px){
  .cmp{ aspect-ratio: 16 / 11; }
}:root{
  --bg:#0B0B0B;
  --txt:#0B0F1A;
  --muted:#6B7280;
  --line:#E5E7EB;
  --accent:#E54600;
}

.nxVSL{
  padding: 6px 16px;
  background: #E54600;
}

.nxVSL__wrap{
  max-width: 980px;
  margin: 0 auto;
}

.nxVSL__head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 18px;
}

.nxVSL__kicker{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #000;
  font-weight: 800;
}

.nxVSL__title{
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #fff;
}

.nxVSL__sub{
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
}

/* player sem cara de card: só borda fina + sombra bem leve */
.nxVSL__player{
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

/* 16:9 */
.nxVSL__player::before{
  content:"";
  display:block;
  padding-top: 56.25%;
}

.nxVSL__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
}

/* overlay minimal */
.nxVSL__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0) 55%);
  border:0;
  cursor:pointer;
  color:#fff;
  transition: opacity .2s ease;
}

.nxVSL__overlayIcon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  position: relative;
  flex: 0 0 auto;
}

.nxVSL__overlayIcon::before{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%,-50%);
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  opacity: .95;
}

.nxVSL__overlayText{
  font-size: 12px;
  color: rgba(255,255,255,.85);
  margin-left:auto;
}

/* quando tocando, deixa overlay bem discreto */
.nxVSL__player.isPlaying .nxVSL__overlay{
  opacity: .22;
}
.nxVSL__player.isPlaying .nxVSL__overlayText{
  content:"";
}

/* botão de áudio */
.nxVSL__sound{
  position:absolute;
  top: 12px;
  right: 12px;
  border: 0;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(229,70,0,.25);
  display: none; /* só quando precisar */
}

.nxVSL__sound:hover{
  filter: brightness(.95);
}

/* trust row */
.nxVSL__trust{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap: 10px 16px;
  color: #ffffff;
  font-size: 13px;
}

.nxVSL__trustItem{
  display:flex;
  align-items:center;
  gap: 8px;
  opacity: .9;
}

.nxVSL__dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}
:root{
  --bg:#0b0b0c;
  --panel:#0f0f11;
  --line:rgba(255,255,255,.10);
  --text:#f4f4f5;
  --muted:rgba(244,244,245,.70);
  --muted2:rgba(244,244,245,.55);
  --orange:#E5460;
  --green:#20c06b;
  --radius:18px;
}

.cta{ background:var(--bg); color:var(--text); padding:28px 16px 34px; }
.cta__wrap{ max-width:1040px; margin:0 auto; }

.cta__head{ text-align:center; margin-bottom:14px; }
.cta__title{ font-size:22px; letter-spacing:-.02em; margin:0 0 6px; }
.cta__sub{ margin:0; color:var(--muted2); font-size:13px; }

.cta__media{ margin-top:16px; }
.cta__hero{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:#0a0a0b;
}
.cta__hero img{ width:100%; height:auto; display:block; }

.cta__thumbs{
  display:flex; gap:8px; overflow:auto;
  padding:10px 2px 0;
  -webkit-overflow-scrolling:touch;
}
.thumb{
  width:62px; height:48px; flex:0 0 auto;
  border-radius:12px; overflow:hidden;
  border:1px solid var(--line);
  background:transparent; padding:0; cursor:pointer;
  opacity:.8;
}
.thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.thumb.is-active{ border-color:rgba(229,70,96,.85); opacity:1; }

.cta__panel{ margin-top:18px; }

.panel__kicker{
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.14em;
  color:rgba(229,70,96,.92);
  text-align:center;
}
.panel__hint{
  text-align:center;
  margin-top:6px;
  font-size:13px;
  color:var(--muted2);
}

.progress{ margin:16px 0 14px; }
.progress__bar{
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  overflow:hidden;
}
.progress__bar span{
  display:block;
  height:100%;
  width:0%;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(229,70,96,.95), rgba(229,70,96,.55));
  transition:width .35s ease;
}
.progress__meta{
  display:flex; justify-content:space-between;
  margin-top:8px;
  font-size:12px; color:var(--muted2);
}

.step{
  border-top:1px solid var(--line);
  padding-top:14px;
}
.step__label{
  font-size:13px;
  color:rgba(244,244,245,.85);
  margin-bottom:10px;
}
.step__body{ display:grid; gap:10px; }

.optGrid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.opt{
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  padding:12px 12px;
  text-align:left;
  cursor:pointer;
  display:flex; gap:10px; align-items:center;
  min-height:54px;
}
.opt:hover{ border-color:rgba(229,70,96,.35); }
.opt.is-active{
  border-color:rgba(229,70,96,.95);
  box-shadow:0 0 0 4px rgba(229,70,96,.12);
}
.opt__title{ font-weight:650; font-size:13px; line-height:1.1; }
.opt__sub{ font-size:12px; color:var(--muted2); margin-top:4px; }

.select{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:12px 12px;
  font-size:14px;
  outline:none;
}

.textureGrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.texture{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
  cursor:pointer;
}
.texture img{ width:100%; height:72px; object-fit:cover; display:block; }
.texture .cap{ padding:8px 10px; font-size:12px; color:var(--muted); }
.texture.is-active{ border-color:rgba(229,70,96,.95); box-shadow:0 0 0 4px rgba(229,70,96,.12); }

.kitRow{ display:grid; gap:10px; }
.kit{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  padding:12px;
  display:flex; align-items:center; gap:12px;
  cursor:pointer;
}
.kit:hover{ border-color:rgba(229,70,96,.35); }
.kit.is-active{ border-color:rgba(229,70,96,.95); box-shadow:0 0 0 4px rgba(229,70,96,.12); }

.kit__img{
  width:44px; height:44px; border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  display:grid; place-items:center;
  overflow:hidden;
}
.kit__img img{ width:100%; height:100%; object-fit:cover; display:block; }

.kit__txt{ flex:1; }
.kit__name{ font-weight:700; font-size:13px; }
.kit__mini{ color:var(--muted2); font-size:12px; margin-top:4px; }
.kit__badge{
  font-size:10px; letter-spacing:.12em;
  text-transform:uppercase;
  padding:6px 8px;
  border-radius:999px;
  border:1px solid rgba(229,70,96,.35);
  color:rgba(229,70,96,.95);
  background:rgba(229,70,96,.08);
}

.summary{
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:12px;
}
.summary__line{ font-size:13px; color:rgba(244,244,245,.92); }
.summary__mini{ margin-top:6px; font-size:12px; color:var(--muted2); }

.offer{
  margin-top:14px;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.offer__compare{ font-size:12px; color:rgba(244,244,245,.45); text-decoration:line-through; }
.offer__main{ font-size:30px; font-weight:850; color:var(--green); letter-spacing:-.02em; margin-top:2px; }
.offer__instal{ font-size:12px; color:var(--muted2); margin-top:4px; }

.ctaBtn{
  width:100%;
  margin-top:12px;
  border:none;
  border-radius:18px;
  padding:14px 14px;
  background:linear-gradient(180deg, #2be37f, #15ad5e);
  color:#07150d;
  font-weight:900;
  letter-spacing:.04em;
  cursor:pointer;
  position:relative;
}
.ctaBtn::after{
  content:"";
  position:absolute; inset:-2px;
  border-radius:20px;
  background:radial-gradient(circle at 50% 20%, rgba(255,255,255,.35), transparent 55%);
  opacity:.0; transition:opacity .2s ease;
}
.ctaBtn:hover::after{ opacity:.7; }

@media (min-width: 880px){
  .cta__wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:start; }
  .cta__head{ grid-column:1/-1; }
}
:root{
  /* PALHETA ROVERA (premium) */
  --brand:#05314D;             /* azul petróleo */
  --brand2:#0A3B5A;            /* variação */
  --bg:#F6F8FB;                /* fundo geral (quase branco) */
  --panel:#FFFFFF;             /* superfície branca */
  --panel2:#F1F4F8;            /* “branco mais escuro” interno */
  --text:#0B1220;              /* texto principal (quase preto) */
  --muted:#516173;             /* texto secundário (bem legível) */
  --line:rgba(5,49,77,.16);    /* linhas/divisores */
  --shadow:0 14px 34px rgba(5,49,77,.10);

  /* laranja (ajuste aqui se seu hex for outro 6 dígitos) */
  --orange:#E5460F;

  /* verde de preço/CTA */
  --green:#16A34A;

  --radius:18px;
}

.cta{
  background:var(--bg);
  color:var(--text);
  padding:26px 16px 34px;
}

.cta__wrap{ max-width:1040px; margin:0 auto; }

.cta__head{ text-align:center; margin-bottom:12px; }
.cta__title{
  font-size:22px;
  letter-spacing:-.02em;
  margin:0 0 6px;
  color:var(--brand);
}
.cta__sub{ margin:0; color:var(--muted); font-size:13px; }

.cta__media{ margin-top:14px; }
.cta__hero{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:var(--panel);
  box-shadow:var(--shadow);
}
.cta__hero img{ width:100%; height:auto; display:block; }

.cta__thumbs{
  display:flex; gap:8px; overflow:auto;
  padding:10px 2px 0;
  -webkit-overflow-scrolling:touch;
}
.thumb{
  width:62px; height:48px; flex:0 0 auto;
  border-radius:12px; overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel);
  padding:0; cursor:pointer;
  opacity:.9;
}
.thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.thumb.is-active{
  border-color:rgba(229,70,15,.75);
  box-shadow:0 0 0 3px rgba(229,70,15,.14);
  opacity:1;
}

/* PAINEL */
.cta__panel{
  margin-top:18px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
}

.panel__kicker{
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.14em;
  color:var(--orange);
  text-align:center;
  font-weight:800;
}
.panel__hint{
  text-align:center;
  margin-top:6px;
  font-size:13px;
  color:var(--muted);
}

/* PROGRESS quase tela toda */
.progress{ margin:14px 0 14px; }
.progress__bar{
  height:12px;
  border-radius:999px;
  background:rgba(5,49,77,.08);
  border:1px solid rgba(5,49,77,.14);
  overflow:hidden;
}
.progress__bar span{
  display:block;
  height:100%;
  width:0%;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(229,70,15,.95), rgba(229,70,15,.55));
  transition:width .35s ease;
}
.progress__meta{
  display:flex; justify-content:space-between;
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
}

/* ETAPA */
.step{
  border-top:1px solid rgba(5,49,77,.12);
  padding-top:14px;
}
.step__label{
  font-size:13px;
  color:var(--brand);
  margin-bottom:10px;
  font-weight:800;
}
.step__body{ display:grid; gap:10px; }

.optGrid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }

.opt{
  border:1px solid rgba(5,49,77,.16);
  border-radius:16px;
  background:var(--panel2);
  padding:12px 12px;
  text-align:left;
  cursor:pointer;
  display:flex; gap:10px; align-items:center;
  min-height:54px;
  transition:transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.opt:hover{
  border-color:rgba(229,70,15,.35);
  transform:translateY(-1px);
}
.opt.is-active{
  border-color:rgba(229,70,15,.85);
  box-shadow:0 0 0 4px rgba(229,70,15,.14);
  background:#FFF;
}
.opt__title{ font-weight:850; font-size:13px; line-height:1.1; color:var(--text); }
.opt__sub{ font-size:12px; color:var(--muted); margin-top:4px; }

.select{
  width:100%;
  border:1px solid rgba(5,49,77,.16);
  border-radius:16px;
  background:var(--panel2);
  color:var(--text);
  padding:12px 12px;
  font-size:14px;
  outline:none;
}

/* TEXTURAS */
.textureGrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.texture{
  border:1px solid rgba(5,49,77,.16);
  border-radius:16px;
  overflow:hidden;
  background:var(--panel2);
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.texture:hover{ transform:translateY(-1px); border-color:rgba(229,70,15,.35); }
.texture img{ width:100%; height:72px; object-fit:cover; display:block; background:#e9eef5; }
.texture .cap{ padding:8px 10px; font-size:12px; color:var(--muted); font-weight:700; }
.texture.is-active{
  border-color:rgba(229,70,15,.85);
  box-shadow:0 0 0 4px rgba(229,70,15,.14);
  background:#FFF;
}

/* KITS */
.kitRow{ display:grid; gap:10px; }
.kit{
  border:1px solid rgba(5,49,77,.16);
  border-radius:18px;
  background:var(--panel2);
  padding:12px;
  display:flex; align-items:center; gap:12px;
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.kit:hover{ transform:translateY(-1px); border-color:rgba(229,70,15,.35); }
.kit.is-active{
  border-color:rgba(229,70,15,.85);
  box-shadow:0 0 0 4px rgba(229,70,15,.14);
  background:#FFF;
}

.kit__img{
  width:44px; height:44px; border-radius:12px;
  border:1px solid rgba(5,49,77,.16);
  background:#FFF;
  overflow:hidden;
  flex:0 0 auto;
}
.kit__img img{ width:100%; height:100%; object-fit:cover; display:block; }

.kit__txt{ flex:1; min-width:0; }
.kit__name{ font-weight:900; font-size:13px; color:var(--text); }
.kit__mini{ color:var(--muted); font-size:12px; margin-top:4px; }
.kit__badge{
  font-size:10px; letter-spacing:.12em;
  text-transform:uppercase;
  padding:6px 8px;
  border-radius:999px;
  border:1px solid rgba(229,70,15,.35);
  color:rgba(229,70,15,.95);
  background:rgba(229,70,15,.10);
  font-weight:900;
  white-space:nowrap;
}

/* RESUMO */
.summary{
  margin-top:12px;
  border-top:1px solid rgba(5,49,77,.12);
  padding-top:12px;
}
.summary__line{ font-size:13px; color:var(--text); font-weight:750; }
.summary__mini{ margin-top:6px; font-size:12px; color:var(--muted); }

/* OFERTA */
.offer{
  margin-top:14px;
  border-top:1px solid rgba(5,49,77,.12);
  padding-top:14px;
}
.offer__compare{ font-size:12px; color:rgba(11,18,32,.50); text-decoration:line-through; }
.offer__main{ font-size:30px; font-weight:950; color:var(--green); letter-spacing:-.02em; margin-top:2px; }
.offer__instal{ font-size:12px; color:var(--muted); margin-top:4px; }

.ctaBtn{
  width:100%;
  margin-top:12px;
  border:none;
  border-radius:18px;
  padding:14px 14px;
  background:linear-gradient(180deg, #22c55e, #16a34a);
  color:#06150c;
  font-weight:950;
  letter-spacing:.05em;
  cursor:pointer;
  position:relative;
  animation:pulseGlow 1.6s ease-in-out infinite;
}
@keyframes pulseGlow{
  0%,100%{ box-shadow:0 0 0 0 rgba(34,197,94,.0); transform:translateY(0); }
  50%{ box-shadow:0 10px 30px rgba(34,197,94,.25); transform:translateY(-1px); }
}

/* DESKTOP */
@media (min-width: 880px){
  .cta__wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:start; }
  .cta__head{ grid-column:1/-1; }
  .cta__panel{ padding:18px; }
}
:root{
  --bg:#ffffff;
  --txt:#0b0b0f;
  --muted:#6b7280;

  --line:#e9e9ee;
  --soft:#f5f6f8;         /* branco mais escuro */
  --soft2:#f1f2f5;

  --accent:#E5460;        /* seu laranja (como você digitou) */
  --accent2:#c33a00;      /* variação mais escura */
  --ok:#16a34a;           /* verde preço/CTA */
  --shadow: 0 12px 30px rgba(0,0,0,.10);
  --r16:16px;
  --r20:20px;
  --max: 560px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
.ctaSection{
  background:var(--bg);
  color:var(--txt);
  font-family:var(--font);
}
.ctaWrap{
  width:min(var(--max), 100%);
  margin:0 auto;
  padding:18px 14px 28px;
}

.ctaHead{padding:6px 2px 14px}
.ctaTitle{
  margin:0;
  text-align:center;
  font-weight:900;
  letter-spacing:.04em;
  font-size:14px;
  color:var(--accent);
}
.ctaSub{
  margin:6px 0 0;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

/* ===== GALERIA ===== */
.gWrap{margin-top:10px}
.gMain{
  border-radius:18px;
  overflow:hidden;
  background:var(--soft);
  border:1px solid var(--line);
}
.gMain img{
  width:100%;
  display:block;
  aspect-ratio:1/1;
  object-fit:cover;
}
.gThumbs{
  margin-top:10px;
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:8px;
  -webkit-overflow-scrolling:touch;
}
.gThumbs::-webkit-scrollbar{height:6px}
.gThumbs::-webkit-scrollbar-thumb{background:#d9d9df;border-radius:999px}
.gThumb{
  border:1px solid var(--line);
  background:var(--soft);
  border-radius:14px;
  padding:0;
  width:72px;
  flex:0 0 auto;
  overflow:hidden;
  cursor:pointer;
  position:relative;
}
.gThumb img{
  width:100%;
  display:block;
  aspect-ratio:1/1;
  object-fit:cover;
}
.gThumb.isActive{
  border-color:rgba(0,0,0,.15);
  box-shadow:0 0 0 2px rgba(0,0,0,.06);
}
.gThumb.isActive::after{
  content:"";
  position:absolute; inset:0;
  border-radius:14px;
  box-shadow:inset 0 0 0 2px rgba(229,70,0,.40);
}

/* ===== PAINEL ===== */
.rvPanel{
  margin-top:14px;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.rvTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.rvKicker{
  font-weight:900;
  letter-spacing:.08em;
  font-size:11px;
  color:var(--accent);
}
.rvHelp{
  margin-top:6px;
  font-size:13px;
  color:var(--muted);
}
.rvBack{
  border:1px solid var(--line);
  background:var(--soft);
  color:var(--txt);
  padding:10px 12px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  cursor:pointer;
}
.rvBack[disabled]{opacity:.45;cursor:not-allowed}
.rvBackIco{display:inline-block; transform:translateY(-1px)}

.rvProg{margin-top:12px}
.rvProgTrack{
  height:10px;
  width:100%;
  background:var(--soft2);
  border-radius:999px;
  overflow:hidden;
  border:1px solid var(--line);
}
.rvProgFill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--accent), #00ff22);
  border-radius:999px;
  transition:width .35s ease;
}
.rvProgMeta{
  margin-top:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:12px;
  color:var(--muted);
}
.rvProgHint{opacity:.85}

/* ===== STAGE (uma etapa por vez) ===== */
.rvStage{margin-top:14px}
.rvCard{
  border:1px solid var(--line);
  background:var(--soft);
  border-radius:18px;
  padding:14px;
}
.rvCardTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.rvCardTitle{
  font-weight:900;
  font-size:14px;
  margin:0;
}
.rvCardSub{
  margin:4px 0 0;
  color:var(--muted);
  font-size:12px;
}
.rvPill{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
}
.rvSelect{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  cursor:pointer;
  text-align:left;
}
.rvSelectMain{display:flex; flex-direction:column; gap:3px}
.rvSelectLabel{font-weight:800; font-size:13px}
.rvSelectValue{font-size:12px; color:var(--muted)}
.rvChevron{
  width:28px;height:28px;border-radius:10px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background:var(--soft);
  color:var(--txt);
  flex:0 0 auto;
}

/* opções tipo veículo */
.rvChips{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.rvChip{
  flex:1;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:12px;
  cursor:pointer;
  font-weight:900;
}
.rvChip small{
  display:block;
  font-weight:700;
  color:var(--muted);
  margin-top:4px;
}
.rvChip.isOn{
  border-color:rgba(35, 130, 0, 0.55);
  box-shadow:0 0 0 3px rgba(0, 255, 60, 0.734);
}

/* cores bolinhas */
.rvColors{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:10px;
}
.rvDot{
  width:34px;height:34px;border-radius:999px;
  border:2px solid rgba(0,0,0,.18);
  cursor:pointer;
  position:relative;
}
.rvDot.isOn{ box-shadow:0 0 0 3px rgba(229,70,0,.18); border-color:rgba(229,70,0,.65) }
.rvColorLabel{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
}
.rvColorLabel strong{color:var(--txt)}

/* textura cards */
.rvTextures{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:10px;
}
.rvTex{
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:10px;
  cursor:pointer;
}
.rvTex img{
  width:100%;
  display:block;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:10px;
  background:var(--soft);
  border:1px solid var(--line);
}
.rvTex span{
  display:block;
  margin-top:8px;
  font-weight:900;
  font-size:12px;
}
.rvTex.isOn{
  border-color:rgba(0, 147, 0, 0.838);
  box-shadow:0 0 0 3px rgba(0, 214, 21, 0.12);
}

/* ok box */
.rvOk{
  margin-top:14px;
  border:1px solid rgba(22,163,74,.22);
  background:rgba(22,163,74,.08);
  border-radius:16px;
  padding:12px 14px;
}
.rvOkLine1{font-weight:900}
.rvOkLine2{margin-top:4px; font-size:12px; color:var(--muted)}

/* kits */
.rvKits{margin-top:14px}
.rvBlockTitle{
  font-weight:900;
  margin:0 0 10px;
  font-size:13px;
}
.rvKitList{display:grid; gap:10px}
.rvKit{
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:12px;
  display:flex;
  gap:12px;
  align-items:center;
  cursor:pointer;
  position:relative;
}
.rvKit.isOn{
   border-color:rgba(0, 147, 0, 0.838);
  box-shadow:0 0 0 3px rgba(0, 214, 21, 0.12);
}
.rvKitImg{
  width:48px;height:48px;border-radius:12px;
  background:var(--soft);
  border:1px solid var(--line);
  object-fit:cover;
  flex:0 0 auto;
}
.rvKitTxt{flex:1}
.rvKitName{font-weight:900; font-size:13px}
.rvKitDesc{margin-top:4px; font-size:12px; color:var(--muted)}
.rvTag{
  border:1px solid rgba(28, 153, 0, 0.787);
  color:var(--accent);
  background:rgba(0, 255, 81, 0.08);
  font-weight:900;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
}

/* oferta */
.offer{
  margin-top:14px;
  border-top:1px dashed rgba(0,0,0,.12);
  padding-top:14px;
  text-align:center;
}
.offer__compare{
  color:var(--muted);
  text-decoration:line-through;
  font-weight:800;
  font-size:13px;
}
.offer__main{
  margin-top:6px;
  font-weight:1000;
  letter-spacing:-.02em;
  font-size:40px;
  color:var(--ok);
}
.offer__instal{
  margin-top:2px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.offer__mini{
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
}

/* CTA brilho/pulso */
.ctaBtn{
  margin-top:14px;
  width:100%;
  border:none;
  border-radius:16px;
  padding:16px 16px;
  font-weight:1000;
  letter-spacing:.02em;
  font-size:14px;
  color:#fff;
  background:linear-gradient(90deg, #12a150, #22c55e);
  cursor:pointer;
  position:relative;
  overflow:hidden;
  box-shadow:0 12px 24px rgba(34,197,94,.18);
  transform:translateZ(0);
  animation:ctaPulse 1.6s ease-in-out infinite;
}
@keyframes ctaPulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.02)}
}
.ctaBtn::after{
  content:"";
  position:absolute; top:-40%; left:-40%;
  width:40%; height:180%;
  background:rgba(255,255,255,.35);
  transform:skewX(-20deg) translateX(-120%);
  animation:ctaShine 2.4s ease-in-out infinite;
}
@keyframes ctaShine{
  0%{transform:skewX(-20deg) translateX(-140%)}
  45%{transform:skewX(-20deg) translateX(320%)}
  100%{transform:skewX(-20deg) translateX(320%)}
}

/* ===== SHEET ===== */
.rvSheet{
  position:fixed; inset:0;
  display:none;
  z-index:1200;
}
.rvSheet.isOn{display:block}
.rvSheetBg{
  position:absolute; inset:0;
  background:rgba(0,0,0,.42);
}
.rvSheetCard{
  position:absolute;
  left:0; right:0; bottom:0;
  background:#fff;
  border-radius:20px 20px 0 0;
  box-shadow:var(--shadow);
  padding:14px;
  max-height:78vh;
  overflow:hidden;
}
.rvSheetHead{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.rvSheetTitle{font-weight:1000}
.rvSheetSub{margin-top:2px; font-size:12px; color:var(--muted)}
.rvSheetClose{
  border:1px solid var(--line);
  background:var(--soft);
  width:38px;height:38px;border-radius:12px;
  cursor:pointer;
  font-weight:900;
}
.rvSheetSearchWrap{margin-top:10px}
#rvSheetSearch{
  width:100%;
  border:1px solid var(--line);
  background:var(--soft);
  border-radius:14px;
  padding:12px 12px;
  font-weight:800;
  color:var(--txt);
  outline:none;
}
.rvSheetList{
  margin-top:10px;
  overflow:auto;
  max-height:56vh;
  border-top:1px solid var(--line);
}
.rvItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 6px;
  border-bottom:1px solid rgba(0,0,0,.05);
  cursor:pointer;
}
.rvItemMain{display:flex; flex-direction:column}
.rvItemT{font-weight:900}
.rvItemS{margin-top:2px; font-size:12px; color:var(--muted)}
.rvItemGo{
  width:32px;height:32px;border-radius:12px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background:var(--soft);
}

/* ===== MODAL ===== */
.rvModal{position:fixed; inset:0; display:none; z-index:1300}
.rvModal.isOn{display:block}
.rvModalBg{position:absolute; inset:0; background:rgba(0,0,0,.5)}
.rvModalCard{
  position:absolute;
  left:14px; right:14px;
  top:50%; transform:translateY(-50%);
  background:#fff;
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:14px;
  max-width:560px;
  margin:0 auto;
}
.rvModalHead{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.rvModalTitle{font-weight:1000}
.rvModalSub{margin-top:2px; font-size:12px; color:var(--muted)}
.rvModalClose{
  border:1px solid var(--line);
  background:var(--soft);
  width:38px;height:38px;border-radius:12px;
  cursor:pointer;
  font-weight:900;
}
.rvModalBody{
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:12px;
  display:grid;
  gap:8px;
}
.rvRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
}
.rvRow b{font-weight:1000}
.rvRow span{color:var(--muted)}
.rvModalActions{
  margin-top:14px;
  display:flex;
  gap:10px;
}
.rvModalBtn{
  flex:1;
  border-radius:14px;
  padding:12px 12px;
  font-weight:1000;
  cursor:pointer;
  border:1px solid var(--line);
}
.rvModalBtn.ghost{background:var(--soft)}
.rvModalBtn.solid{
  border:none;
  background:linear-gradient(90deg, #12a150, #22c55e);
  color:#fff;
}
.rvModalFineprint{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
  text-align:center;
}
/* ===== TUNING: tipografia mais clean (menos negrito) ===== */

/* títulos e labels um pouco mais leves */
.rvCardTitle{ font-weight: 800; }     /* era 900 */
.rvSelectLabel{ font-weight: 800; }   /* era 800/900 */

/* valores/descrições mais suaves */
.rvSelectValue{ font-weight: 600; color: var(--muted); }  /* antes normal */

/* “pill” mais discreto */
.rvPill{ font-weight: 700; }

/* sheet (lista) — aqui é onde mais aparece o “grosso” */
.rvSheetTitle{ font-weight: 900; }    /* pode ser 800 se quiser ainda mais leve */
.rvItemT{ font-weight: 700; }         /* era 900 */
.rvItemS{ font-weight: 500; }         /* era normal */
#rvSheetSearch{ font-weight: 700; }   /* era 800 */

/* kits */
.rvKitName{ font-weight: 800; }       /* era 900 */
.rvTag{ font-weight: 800; }           /* era 900 */

/* ====== NX SHIP (Frete / Prazo) ====== */
:root{
  --rm-orange:#E5460F;
  --rm-black:#0B0B0D;
  --rm-white:#FFFFFF;
  --rm-soft:#F5F6F7;     /* branco mais escuro */
  --rm-line:#E9E9EC;     /* borda */
  --rm-muted:#6B7280;    /* texto secundário */
}

.nxShip{
  width:100%;
  background: var(--rm-white);
  padding: 12px 14px;
  margin-top: 14px; /* fica bem colada embaixo da CTA sem “cardzão” */
}

.nxShip__row{
  max-width: 980px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  gap: 12px;

  /* visual premium sem “card”: só uma faixa com bordas suaves */
  border: 1px solid var(--rm-line);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--rm-soft) 100%);
  border-radius: 14px;
  padding: 12px 12px;
}

/* Logo Correios */
.nxShip__logo{
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: saturate(1.05) contrast(1.03);
}

/* Texto */
.nxShip__txt{
  min-width: 0;
  flex: 1;
}

.nxShip__line1{
  display:flex;
  align-items:baseline;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--rm-black);
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.nxShip__free{
  color: #12a150;
  font-weight: 700;
}

.nxShip__to{
  color: var(--rm-muted);
  font-weight: 500;
}

.nxShip__city{
  font-weight: 700;
  color: var(--rm-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Linha 2 (ETA) */
.nxShip__line2{
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.25;
  color: var(--rm-muted);
  display:flex;
  align-items:center;
  gap: 8px;
}

/* “Pin” minimalista antes do ETA (detalhe premium) */
.nxShip__line2::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rm-orange);
  opacity: .85;
  flex: 0 0 auto;
}

/* Hover/Focus sutil (parece UI de app, não banner) */
.nxShip__row{
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
@media (hover:hover){
  .nxShip__row:hover{
    border-color: rgba(229,70,15,.35);
    box-shadow: 0 10px 22px rgba(11,11,13,.06);
    transform: translateY(-1px);
  }
}

/* Mobile */
@media (max-width: 480px){
  .nxShip{
    padding: 10px 12px;
  }
  .nxShip__row{
    padding: 11px 11px;
    border-radius: 12px;
  }
  .nxShip__logo{
    width: 28px;
    height: 28px;
  }
  .nxShip__line1{
    font-size: 13.5px;
  }
  .nxShip__line2{
    font-size: 12.25px;
  }
}

/* Se quiser versão “mais baixa” (opcional):
   <section class="nxShip nxShip--mini"> ... */
.nxShip--mini .nxShip__row{
  padding: 10px 10px;
}
.nxShip--mini .nxShip__logo{
  width: 26px; height: 26px;
}
/* ===== PROGRESS BAR RV ===== */

.rvProg{
  margin:14px 0 18px;
}

.rvProgTrack{
  width:100%;
  height:6px;
  background:#E9E9EC;
  border-radius:999px;
  overflow:hidden;
  position:relative;
}

/* barra que preenche */
.rvProgFill{
  height:100%;
  width:0%;
  background:linear-gradient(
    90deg,
    #11ac00,
    #11ac00
  );
  border-radius:999px;

  transition:width .35s cubic-bezier(.4,0,.2,1);
}

/* texto abaixo */
.rvProgMeta{
  margin-top:6px;
  display:flex;
  justify-content:space-between;
  align-items:center;

  font-size:12px;
  color:#6B7280;
  font-weight:600;
}

.rvProgHint{
  font-weight:500;
  opacity:.85;
}

/* mobile */
@media (max-width:420px){

  .rvProgTrack{
    height:5px;
  }

  .rvProgMeta{
    font-size:11.5px;
  }

}/* === NXSHIP (frete / prazo) — fix de quebras no mobile === */

.nxShip{
  width:100%;
  background:#fff;
  color:#111;
  padding:10px 14px;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
}

.nxShip__row{
  display:grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap:10px;
  align-items:center;
}

.nxShip__logo{
  width:26px;
  height:26px;
  object-fit:contain;
  display:block;
}

/* IMPORTANTE: min-width:0 evita o “quebrado” em grid/flex */
.nxShip__txt{
  min-width:0;
}

.nxShip__line1{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:6px;
  line-height:1.1;
  font-size:12.5px;
}

.nxShip__free{
  color:#00ac33;
  font-weight:700;
}

.nxShip__to{
  color:rgba(0,0,0,.60);
  font-weight:600;
}

.nxShip__city{
  color:#111;
  font-weight:700;
  white-space:nowrap; /* não quebra “Rio Brilhante, MS” no meio */
}

/* linha 2 SEM quebrar feio */
.nxShip__line2{
  margin-top:2px;
  font-size:12px;
  color:rgba(0,0,0,.62);
  line-height:1.2;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

/* opcional: deixa “Entrega estimada” sempre junto */
.nxShip__line2 strong{
  white-space:nowrap;
}

@media (max-width:360px){
  .nxShip{ padding:9px 12px; }
  .nxShip__line1{ font-size:12px; }
  .nxShip__line2{ font-size:11.5px; }
  .nxShip__city{ white-space:normal; } /* em telas MUITO pequenas, deixa quebrar direito */
}
:root{
  --rv-orange:#E5460F;
  --rv-black:#0B0B0D;
  --rv-text:#101114;
  --rv-muted:rgba(16,17,20,.62);
  --rv-white:#fff;
}

.rvMetrics{
  background:#fff;
  padding:22px 16px 26px;
  color:var(--rv-text);
}

.rvMetrics__wrap{
  max-width:980px;
  margin:0 auto;
}

.rvMetrics__kicker{
  margin:0;
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  color:var(--rv-orange);
  text-align:center;
}

.rvMetrics__title{
  margin:10px 0 8px;
  font-size:22px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.03em;
  text-align:center;
}

.rvMetrics__sub{
  margin:0 auto 14px;
  max-width:44ch;
  font-size:13px;
  line-height:1.45;
  color:var(--rv-muted);
  font-weight:600;
  text-align:center;
}

.rvMetrics__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}

@media (max-width:820px){
  .rvMetrics__grid{ grid-template-columns:1fr; }
}

/* CARD LARANJA PREMIUM */
.rvMetricCard{
  background:linear-gradient(180deg, rgba(229,70,15,.98), rgba(229,70,15,.92));
  border-radius:18px;
  padding:14px 14px 12px;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(229,70,15,.20);
  border:1px solid rgba(255,255,255,.18);
}

/* brilho sutil “premium”, não brega */
.rvMetricCard::before{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background:radial-gradient(closest-side, rgba(255,255,255,.22), transparent 60%);
  transform:rotate(18deg);
  opacity:.75;
  pointer-events:none;
}

.rvMetricCard__icon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}

.rvMetricCard__icon svg{
  width:22px;
  height:22px;
  color:#fff;
  opacity:.95;
}

.rvMetricCard__num{
  margin-top:10px;
  display:flex;
  align-items:baseline;
  gap:6px;
}

.rvCount{
  font-size:34px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.03em;
  text-shadow:0 1px 0 rgba(0,0,0,.12);
}

.rvMetricCard__label{
  margin-top:6px;
  font-size:13px;
  font-weight:850;
  letter-spacing:-.01em;
}

.rvMetricCard__hint{
  margin-top:4px;
  font-size:11.5px;
  font-weight:600;
  opacity:.92;
  color:rgba(255,255,255,.86);
}

/* animação leve do número depois que termina */
.rvCount.is-done{
  animation:rvCountPop .35s ease-out 1;
}
@keyframes rvCountPop{
  0%{ transform:translateY(0) scale(1); }
  55%{ transform:translateY(-1px) scale(1.02); }
  100%{ transform:translateY(0) scale(1); }
}
/* GRID RESPONSIVA (mobile = 2 + 1 central / desktop = 3 lado a lado) */
.rvMetrics__grid{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2, minmax(0,1fr));
}

/* Faz o 3º card ocupar a linha inteira e ficar central com largura “premium” */
.rvMetrics__grid .rvMetricCard:nth-child(3){
  grid-column:1 / -1;
  max-width:420px;
  justify-self:center;
}

/* Tablet/desktop: volta 3 colunas */
@media (min-width: 820px){
  .rvMetrics__grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
  .rvMetrics__grid .rvMetricCard:nth-child(3){
    grid-column:auto;
    max-width:none;
    justify-self:stretch;
  }
}.rvMetricCard{
  background:#0B0B0D;
  border-radius:18px;
  padding:16px 16px 14px;
  color:#fff;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

/* ícone */
.rvMetricCard__icon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(229,70,15,.12);
  border:1px solid rgba(229,70,15,.25);
}

.rvMetricCard__icon svg{
  width:20px;
  height:20px;
  color:#E5460F;
}

/* número grande */
.rvCount{
  font-size:34px;
  line-height:1;
  font-weight:900;
  color:#E5460F;
  letter-spacing:-.03em;
}

/* título */
.rvMetricCard__label{
  margin-top:6px;
  font-size:13px;
  font-weight:800;
  color:#fff;
}

/* descrição */
.rvMetricCard__hint{
  margin-top:3px;
  font-size:11.5px;
  color:rgba(255,255,255,.65);
  font-weight:500;
}
.rvReviews{
padding:20px 16px;
background:#fff;
}

.rvReviewsHead{
text-align:center;
margin-bottom:20px;
}

.rvRatingScore{
font-size:42px;
font-weight:800;
}

.rvStars{
color:#F5A623;
font-size:20px;
margin:4px 0;
}

.rvRatingCount{
font-size:13px;
color:#666;
margin-bottom:16px;
}


.rvBars{
max-width:280px;
margin:auto;
}

.rvBar{
display:flex;
align-items:center;
gap:8px;
font-size:12px;
margin:4px 0;
}

.rvBarTrack{
flex:1;
height:6px;
background:#eee;
border-radius:6px;
overflow:hidden;
}

.rvBarTrack div{
height:100%;
background:#E5460F;
}



.rvFeedbackGrid{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
}



.rvFeedback{
background:#fff;
border-radius:5px;
box-shadow:0 6px 18px rgba(0,0,0,.08);
overflow:hidden;
}



.rvVideo{
position:relative;
aspect-ratio:1/1;
background:#000;
}

.rvVideo video{
width:100%;
height:100%;
object-fit:cover;
}



.rvUser{
display:flex;
align-items:center;
gap:8px;
padding:8px;
font-size:12px;
font-weight:600;
}

.rvUser img{
width:22px;
height:22px;
border-radius:50%;
}



.rvStarsSmall{
padding:0 8px;
font-size:12px;
color:#F5A623;
}

.rvVerified{
color:#22c55e;
font-size:10px;
margin-left:4px;
}

.rvText{
padding:6px 8px 12px;
font-size:12px;
line-height:1.4;
color:#333;
}
.rvVideo{
position:relative;
aspect-ratio:3/4;
background:#000;
overflow:hidden;
border-radius:12px 12px 0 0;
}

.rvVideo video{
width:100%;
height:100%;
object-fit:cover;
display:block;
}
/* ===============================
   VSL - Rovera Motors
   estilo premium preto fosco
================================ */

.nxVSL{
padding:36px 18px;
background:
radial-gradient(circle at 20% 10%, rgba(255,255,255,0.06), transparent 40%),
linear-gradient(180deg,#0b0b0c,#050506);

color:#fff;
position:relative;
overflow:hidden;
}

/* leve glow */
.nxVSL::before{
content:"";
position:absolute;
top:-40%;
left:-40%;
width:120%;
height:120%;
background:radial-gradient(circle,rgba(229,70,7,.15),transparent 60%);
opacity:.5;
pointer-events:none;
}

.nxVSL__wrap{
max-width:640px;
margin:auto;
}

/* header */

.nxVSL__head{
text-align:center;
margin-bottom:20px;
}

.nxVSL__kicker{
font-size:11px;
letter-spacing:.25em;
text-transform:uppercase;
color:#E54607;
font-weight:700;
margin-bottom:6px;
}

.nxVSL__title{
font-size:26px;
line-height:1.15;
font-weight:800;
margin-bottom:10px;
}

.nxVSL__sub{
font-size:14px;
line-height:1.5;
color:rgba(255,255,255,.75);
max-width:420px;
margin:auto;
}

/* player */

.nxVSL__player{
position:relative;
border-radius:18px;
overflow:hidden;
background:#000;
box-shadow:0 20px 50px rgba(0,0,0,.6);
border:1px solid rgba(255,255,255,.08);
}

/* video */

.nxVSL__video{
width:100%;
height:auto;
display:block;
}

/* overlay play */




/* botão de áudio */

.nxVSL__sound{
position:absolute;
right:12px;
bottom:12px;

background:#E54607;
border:none;
padding:10px 14px;
border-radius:20px;
color:#fff;
font-size:12px;
font-weight:600;
cursor:pointer;

box-shadow:0 8px 20px rgba(229,70,7,.35);
}

/* trust items */

.nxVSL__trust{
display:flex;
justify-content:center;
gap:18px;
margin-top:16px;
flex-wrap:wrap;
}

.nxVSL__trustItem{
display:flex;
align-items:center;
gap:6px;
font-size:12px;
color:rgba(255,255,255,.8);
}

.nxVSL__dot{
width:8px;
height:8px;
border-radius:50%;
background:#E54607;
}
.rvFooter{

background:linear-gradient(180deg,#0B0B0C,#050506);

color:#fff;

padding:40px 20px;

text-align:center;

border-top:1px solid rgba(255,255,255,.08);

}


.rvFooter__wrap{

max-width:900px;

margin:auto;

}


/* logo */

.rvFooter__logo img{

width:140px;

margin-bottom:20px;

}


/* infos */

.rvFooter__info{

display:grid;

gap:8px;

margin-bottom:20px;

font-size:13px;

color:rgba(255,255,255,.8);

}

.rvFooter__item strong{

color:#E54607;

font-weight:600;

}


/* segurança */

.rvFooter__secure{

margin:18px 0;

font-size:13px;

color:#E54607;

font-weight:600;

}


/* pagamentos */

.rvFooter__payments{

display:flex;

justify-content:center;

gap:12px;

flex-wrap:wrap;

margin-bottom:20px;

}

.rvFooter__payments img{

height:24px;

filter:brightness(-110) invert(1);

opacity:.85;

}


/* selos */

.rvFooter__badges{

display:flex;

justify-content:center;

gap:14px;

flex-wrap:wrap;

margin-bottom:18px;

}

.rvFooter__badges img{

height:36px;

opacity:.9;

}


/* copyright */

.rvFooter__copy{

font-size:12px;

color:rgba(255,255,255,.5);

margin-top:10px;

}
/* ===== OFFER / PREÇO FINAL (fundo mais escuro e premium) ===== */

.offer{
  width:100%;
  margin-top:14px;
  padding:14px 14px 12px;

  /* fundo “mais escuro” (branco gelo) */
  background: #F3F4F6;

  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;

  /* sombra bem sutil pra não parecer card pesado */
  box-shadow:
    0 10px 24px rgba(0,0,0,.06),
    0 1px 0 rgba(255,255,255,.9) inset;

  text-align:center;
}

.offer__row{
  display:flex;
  justify-content:center;
}

.offer__prices{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
}

/* preço riscado */
.offer__compare{
  font-size:12px;
  color: rgba(0,0,0,.45);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* ===== preço principal (bem chamativo + pulse/brilho) ===== */
.offer__main{
  font-size:40px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.02em;
  color:#16A34A; /* verde venda */

  position:relative;
  display:inline-block;
  padding:2px 6px;

  /* pulse leve */
  animation: pricePulse 1.4s ease-in-out infinite;
}

/* brilho “passando” por cima (bem suave) */
.offer__main::after{
  content:"";
  position:absolute;
  inset:-10px -14px;
  pointer-events:none;
  border-radius:14px;

  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,.0) 35%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.0) 65%,
    transparent 100%
  );

  transform: translateX(-40%);
  animation: priceShine 2.2s ease-in-out infinite;
  opacity:.55;
}

/* parcelado */
.offer__instal{
  font-size:12px;
  color: rgba(0,0,0,.60);
  margin-top:-2px;
}

/* texto embaixo do botão */
.offer small,
.offer__note{
  display:block;
  margin-top:8px;
  font-size:12px;
  color: rgba(0,0,0,.55);
}

/* CTA verde com brilho */
.ctaBtn{
  width:100%;
  margin-top:12px;
  border:0;
  border-radius:14px;
  padding:14px 14px;

  background: linear-gradient(180deg,#22C55E,#16A34A);
  color:#fff;
  font-weight:800;
  letter-spacing:.02em;

  box-shadow:
    0 14px 30px rgba(34,197,94,.26);

  position:relative;
  overflow:hidden;

  animation: ctaBreath 1.6s ease-in-out infinite;
}

.ctaBtn::after{
  content:"";
  position:absolute;
  top:0; left:-40%;
  width:40%;
  height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 2.6s ease-in-out infinite;
  opacity:.9;
}

.ctaBtn:active{
  transform: translateY(1px);
  box-shadow: 0 10px 22px rgba(34,197,94,.20);
}

/* ===== ANIMAÇÕES ===== */
@keyframes pricePulse{
  0%,100%{ transform: translateY(0) scale(1); filter: saturate(1); }
  50%{ transform: translateY(-1px) scale(1.02); filter: saturate(1.08); }
}

@keyframes priceShine{
  0%{ transform: translateX(-55%); opacity:.0; }
  25%{ opacity:.55; }
  55%{ opacity:.55; }
  100%{ transform: translateX(55%); opacity:.0; }
}

@keyframes ctaBreath{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.02); }
}

@keyframes ctaShine{
  0%{ left:-45%; opacity:0; }
  20%{ opacity:.95; }
  45%{ left:115%; opacity:0; }
  100%{ left:115%; opacity:0; }
}

/* acessibilidade: reduz animação */
@media (prefers-reduced-motion: reduce){
  .offer__main, .offer__main::after, .ctaBtn, .ctaBtn::after{
    animation:none !important;
  }
}
/* ===== Popup Rovera (Cupom) ===== */
.rvPop{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
}

.rvPop.is-open{ display: block; }

.rvPop__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.rvPop__modal{
  position: relative;
  width: min(92vw, 420px);
  max-height: 86vh;
  margin: 7vh auto;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b0f;                 /* preto fosco */
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.08);
}

.rvPop__step[hidden]{ display:none !important; }

.rvPop__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #e54607;
  color: #0b0b0f;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(229,70,7,.28);
}

.rvPop__banner{
  background: #111;
}

.rvPop__banner img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.rvPop__body{
  padding: 14px 14px 12px;
}

.rvPop__copy{
  margin: 6px 0 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(255,255,255,.88);
}
.rvPop__copy strong{
  display: inline-block;
  font-size: 20px;
  letter-spacing: .2px;
  color: #fff;
}

.rvPop__form{
  display: grid;
  gap: 9px;
}

.rvPop__input{
  height: 42px;                 /* compacto */
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 0 12px;
  outline: none;
  font-size: 14px;
}
.rvPop__input::placeholder{ color: rgba(255,255,255,.55); }
.rvPop__input:focus{
  border-color: rgba(229,70,7,.55);
  box-shadow: 0 0 0 4px rgba(229,70,7,.18);
}

.rvPop__cta{
  height: 44px;                 /* compacto */
  border: 0;
  border-radius: 12px;
  background: #e54607;
  color: #0b0b0f;
  font-weight: 800;
  letter-spacing: .6px;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(229,70,7,.25);
}

.rvPop__legal{
  margin: 6px 2px 0;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,.58);
}

/* Step 2 */
.rvPop__body--thanks{
  padding: 18px 16px 14px;
  text-align: center;
}

.rvPop__brand{
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.rvPop__logo{
  height: 54px;
  width: auto;
  display: block;
}

.rvPop__title{
  margin: 6px 0 8px;
  font-size: 18px;
  letter-spacing: .2px;
}

.rvPop__text{
  margin: 0 auto 12px;
  max-width: 30ch;
  font-size: 13.5px;
  line-height: 1.35;
  color: rgba(255,255,255,.84);
}

.rvPop__hint{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .9px;
  color: rgba(255,255,255,.65);
}

.rvPop__coupon{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.rvPop__code{
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 16px;
}

.rvPop__copyBtn{
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(229,70,7,.55);
  background: rgba(229,70,7,.12);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.rvPop__copied{
  margin: 10px 0 6px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
}

.rvPop__ghost{
  height: 40px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: rgba(255,255,255,.85);
  cursor: pointer;
}

/* Mobile muito baixo: garante que cabe */
@media (max-height: 650px){
  .rvPop__modal{ margin: 4vh auto; max-height: 92vh; }
  .rvPop__banner img{ aspect-ratio: 16/10; }
}
/* Mais respiro entre CUPOM e botão */
.rvPop__coupon{
  margin-bottom: 14px;           /* separa do botão "Continuar" */
  background: rgba(255,255,255,.075);   /* um pouco mais claro que o fundo */
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

/* Deixa o código com cara de “campo” */
.rvPop__code{
  padding: 2px 0;
  color: rgba(255,255,255,.95);
}

/* Botão de copiar mais “chique” e menos colado visualmente */
.rvPop__copyBtn{
  background: rgba(229,70,7,.14);
  border-color: rgba(229,70,7,.6);
}

/* Botão continuar com um espacinho extra também (opcional) */
.rvPop__ghost{
  margin-top: 2px;
}
/* =========================
   DRAWER - Rovera (fosco)
========================= */

.hxDrawer{
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh;
  width: min(92vw, 360px);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-right: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.60);
  backdrop-filter: blur(10px);
  transform: translateX(-105%);
  transition: transform .28s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding:
    calc(14px + env(safe-area-inset-top))
    14px
    calc(14px + env(safe-area-inset-bottom))
    14px;
  color: #f5f5f7;
}

.hxDrawer.isOpen{
  transform: translateX(0);
}

.hxDrawerHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 6px 2px 12px;
}

.hxDrawerHead strong{
  font-size: 14px;
  letter-spacing: .02em;
}

.hxBtn{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.90);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.hxBtn:hover{
  border-color: rgba(229,70,7,.35);
  box-shadow: 0 0 0 4px rgba(229,70,7,.12);
}

.hxNav{
  display:flex;
  flex-direction:column;
  gap: 8px;
  padding: 8px 0;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

/* Link com ícone */
.hxLink{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 11px 10px;
  border-radius: 14px;
  text-decoration:none;
  color: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
}

.hxLink:hover{
  border-color: rgba(229,70,7,.32);
  background: rgba(229,70,7,.08);
}

.hxLink--sub{
  opacity: .95;
}

.hxIco{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  color: #E54607; /* laranja */
  background: rgba(229,70,7,.12);
  border: 1px solid rgba(229,70,7,.20);
  flex: 0 0 auto;
}

.hxIco svg{
  width: 16px;
  height: 16px;
  display:block;
}

.hxSep{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 8px 4px;
}

.hxLabel{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 6px 6px 2px;
}

/* Social */
.hxSocial{
  display:flex;
  gap: 10px;
  padding: 6px 4px 0;
}

.hxSocialBtn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.26);
  color: #E54607; /* laranja */
  text-decoration:none;
}

.hxSocialBtn:hover{
  border-color: rgba(229,70,7,.35);
  box-shadow: 0 0 0 4px rgba(229,70,7,.12);
}

.hxSocialBtn svg{
  width: 18px;
  height: 18px;
  display:block;
}

.hxDrawerFooter{
  margin-top: auto;
  padding-top: 10px;
  opacity: .65;
  font-size: 12px;
  text-align:center;
}
/* =========================
   DRAWER - preto sólido + compacto
========================= */

.hxDrawer{
  background: #0b0b0f !important;            /* preto sólido */
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.70);

  /* remove efeito vidro */
  backdrop-filter: none !important;

  /* mais compacto */
  width: min(90vw, 330px);
  padding:
    calc(10px + env(safe-area-inset-top))
    10px
    calc(10px + env(safe-area-inset-bottom))
    10px;
}

/* topo menor */
.hxDrawerHead{
  padding: 4px 2px 8px;
}

.hxBtn{
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

/* lista mais compacta */
.hxNav{
  gap: 6px;
  padding: 6px 0;
}

/* links menores */
.hxLink{
  padding: 9px 9px;
  border-radius: 12px;
}

/* ícone menor */
.hxIco{
  width: 26px;
  height: 26px;
  border-radius: 10px;
}

.hxIco svg{
  width: 15px;
  height: 15px;
}

/* separadores e labels mais compactos */
.hxSep{
  margin: 6px 4px;
}

.hxLabel{
  padding: 4px 6px 2px;
  font-size: 10.5px;
}

/* social mais compacto */
.hxSocial{
  gap: 8px;
  padding: 6px 4px 0;
}

.hxSocialBtn{
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.hxSocialBtn svg{
  width: 17px;
  height: 17px;
}

/* rodapé menor */
.hxDrawerFooter{
  padding-top: 8px;
  font-size: 11px;
}
.whats-suporte{
  width:100%;
  padding:18px 16px;
}

.whats-suporte img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}
.promo-consumidor{
  width:100%;
  padding:18px 16px;
}

.promo-consumidor img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}.promo-consumidor{
  width:100%;
  padding:20px 16px;
}

.promo-consumidor img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  box-shadow:0 20px 50px rgba(0,0,0,0.45);
}
/* ===== MODAIS (premium) ===== */
.hxModal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px 14px;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.hxModal.isOpen{
  opacity: 1;
  pointer-events: auto;
}

/* backdrop fosco */
.hxModal::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* card */
.hxModalCard{
  position: relative;
  width: min(520px, 100%);
  border-radius: 18px;
  background: rgba(18,18,20,.92);
  color: #fff;

  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 25px 70px rgba(0,0,0,.60),
    0 2px 0 rgba(255,255,255,.04) inset;

  overflow: hidden;
  transform: translateY(8px) scale(.98);
  transition: transform .18s ease;
}

.hxModal.isOpen .hxModalCard{
  transform: translateY(0) scale(1);
}

/* topo do modal */
.hxModalHead{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;

  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}

.hxModalHead strong{
  font-size: 15px;
  letter-spacing: .2px;
}

/* botão fechar mais premium */
.hxBtn.hxBtnDark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;

  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.hxBtn.hxBtnDark:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

/* ===== FORM ===== */
.hxForm{
  padding: 14px;
}

.hxField{
  display:block;
  margin-bottom: 12px;
}

.hxField span{
  display:block;
  font-size: 12px;
  opacity: .85;
  margin: 0 0 6px 2px;
}

/* input premium */
.hxField input{
  width:100%;
  height: 46px;
  border-radius: 14px;
  padding: 0 14px;

  background: rgba(255,255,255,.05);
  color: #fff;

  border: 1px solid rgba(255,255,255,.10);
  outline: none;

  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.hxField input::placeholder{
  color: rgba(255,255,255,.45);
}

.hxField input:focus{
  border-color: rgba(229,70,7,.70);
  box-shadow: 0 0 0 4px rgba(229,70,7,.18);
  background: rgba(255,255,255,.07);
}

/* botão principal */
.hxPrimary{
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;

  font-weight: 800;
  letter-spacing: .4px;

  color: #120f0f;
  background: linear-gradient(180deg, #ff6a2b, #e54607);
  box-shadow: 0 14px 30px rgba(229,70,7,.30);

  transition: transform .15s ease, filter .15s ease;
}

.hxPrimary:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.hxPrimary:active{
  transform: translateY(0);
}

/* hint */
.hxHint{
  margin-top: 10px;
  font-size: 12px;
  opacity: .70;
  line-height: 1.35;
}

/* ===== CARRINHO (mais elegante) ===== */
.hxCartBody{
  padding: 14px;
}

.hxEmpty{
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.hxEmptyIcon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  margin-bottom: 10px;

  background: rgba(229,70,7,.14);
  border: 1px solid rgba(229,70,7,.30);
  color: #ff6a2b;
}

.hxEmptyIcon svg{
  width: 26px;
  height: 26px;
}

.hxEmpty p{
  margin: 4px 0;
}

.hxMuted{
  opacity: .70;
}

/* CTA carrinho (petrol) - melhora visual */
.hxPrimary--petrol{
  margin-top: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}

/* segurança abaixo do carrinho */
.hxCartTrust{
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-size: 12px;
  opacity: .82;
}

.hxCartTrustItem{
  display:flex;
  align-items:center;
  gap: 8px;
}

.hxCartDot{
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #ff6a2b;
  box-shadow: 0 0 0 4px rgba(229,70,7,.12);
}
.specs-section{
  padding:0px 20px;
  max-width:900px;
  margin:auto;
}

.specs-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}

.specs-content{
  font-size:15px;
  line-height:1.7;
  color:#444;

  max-height:120px;
  overflow:hidden;
  position:relative;
}

.specs-content::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:60px;
  background:linear-gradient(transparent,#fff);
}

.specs-content.open{
  max-height:none;
}

.specs-content.open::after{
  display:none;
}

.specs-toggle{
  margin-top:15px;
  background:none;
  border:none;
  color:#ff5a00;
  font-weight:600;
  cursor:pointer;
  font-size:15px;
}
.empresa-verificada{
  width:100%;
  padding:20px 16px;
}

.empresa-verificada img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}
.noScroll{ overflow:hidden !important; }
.nxVSL__player{
  position: relative;
}

.nxVSL__sound{
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: auto;
  width: auto;
  height: 42px;
  padding: 0 14px;

  border: 0;
  border-radius: 999px;
  background: #E54607;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(229,70,7,.28);
}

.nxVSL__sound[hidden]{
  display: none !important;
}

.nxVSL__overlay{
  position: absolute;
  inset: 0;
  z-index: 3;
}

.nxVSL__overlay.isHidden{
  opacity: 0;
  pointer-events: none;
}

.nxVSL__video{
  display: block;
  width: 100%;
  height: auto;
  background: #000;
  border-radius: 18px;
}
.nxShip{
  width:100%;
}

.nxShip__row{
  display:flex;
  align-items:center;
  gap:12px;
}

.nxShip__logo{
  width:42px;
  min-width:42px;
  max-width:42px;
  height:42px;
  object-fit:contain;
  display:block;
  flex:0 0 42px;
}

.nxShip__txt{
  min-width:0;
  flex:1;
}.nxShip__logo{
  width:48px !important;
  height:48px !important;
  max-width:48px !important;
  max-height:48px !important;
  object-fit:contain;
  display:block;
}.nxShip__row{
  display:flex;
  align-items:center;
  gap:12px;
}

.nxShip__logo{
  width:38px !important;
  height:38px !important;
  min-width:38px !important;
  max-width:38px !important;
  max-height:38px !important;
  object-fit:contain;
  display:block;
  flex:0 0 38px;
}

.nxShip__txt{
  flex:1;
  min-width:0;
}
.satStack{
  padding: 28px 16px 6px;
  background: #fff;
  overflow: hidden;
}

.satStack__head{
  text-align: center;
  max-width: 520px;
  margin: 0 auto 18px;
}

.satStack__kicker{
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  color: #E54607;
}

.satStack__title{
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 900;
  color: #0B0B0F;
}

.satStack__sub{
  margin: 8px auto 0;
  font-size: 13px;
  line-height: 1.45;
  color: #6B7280;
}

.satStack__viewport{
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.satStack__track{
  position: relative;
  width: 100%;
  height: 420px;
}

.satCard{
  position: absolute;
  top: 0;
  left: 50%;
  width: 68%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 18px 36px rgba(0,0,0,.16);
  transition:
    transform .42s cubic-bezier(.22,.8,.2,1),
    opacity .42s cubic-bezier(.22,.8,.2,1),
    filter .42s cubic-bezier(.22,.8,.2,1);
  will-change: transform, opacity;
}

.satCard img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.satCard--center{
  z-index: 5;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  filter: blur(0);
}

.satCard--left{
  z-index: 3;
  opacity: .78;
  transform: translateX(-78%) scale(.88);
  filter: blur(.4px);
}

.satCard--right{
  z-index: 3;
  opacity: .78;
  transform: translateX(-22%) scale(.88);
  filter: blur(.4px);
}

.satCard--hiddenLeft{
  z-index: 1;
  opacity: 0;
  transform: translateX(-110%) scale(.78);
  pointer-events: none;
}

.satCard--hiddenRight{
  z-index: 1;
  opacity: 0;
  transform: translateX(10%) scale(.78);
  pointer-events: none;
}

.satCard.is-dragging{
  transition: none;
}

@media (max-width: 390px){
  .satStack__track{ height: 390px; }
  .satCard{ width: 72%; }
}.matSection{
  padding:40px 18px;
  background:#fff;
}

.matWrap{
  max-width:520px;
  margin:0 auto;
}

.matHead{
  text-align:center;
  margin-bottom:18px;
}

.matKicker{
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  color:#E54607;
  margin:0 0 6px;
}

.matTitle{
  font-size:24px;
  line-height:1.2;
  font-weight:900;
  margin:0;
  color:#0B0B0F;
}

.matVideoBox{
  border-radius:18px;
  overflow:hidden;
  margin:18px 0 20px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.matVideo{
  width:100%;
  display:block;
  aspect-ratio:3/4;
  object-fit:cover;
}

.matText{
  text-align:left;
}

.matIntro{
  font-size:14px;
  line-height:1.55;
  color:#4B5563;
  margin-bottom:14px;
}

.matSpecs{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.matSpecs li{
  font-size:13.5px;
  line-height:1.5;
  color:#374151;
  padding-left:18px;
  position:relative;
}

.matSpecs li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#E54607;
}

.matSpecs strong{
  color:#0B0B0F;
}.cmpSection{
  padding:0px 18px;
  background:#fff;
}

.cmpWrap{
  max-width:520px;
  margin:0 auto;
}

.cmpHead{
  text-align:center;
  margin-bottom:22px;
}

.cmpKicker{
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  color:#E54607;
  margin-bottom:6px;
}

.cmpTitle{
  font-size:24px;
  font-weight:900;
  line-height:1.2;
  color:#0B0B0F;
}

.cmpTable{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.cmpCol{
  border-radius:18px;
  padding:18px 14px;
  background:#f9fafb;
  text-align:center;
}

.cmpBad{
  border:1px solid #e5e7eb;
}

.cmpGood{
  border:2px solid #22c55e;
  background:#f0fdf4;
}

.cmpIcon img{
  width:60px;
  margin-bottom:10px;
}

.cmpCol h3{
  font-size:15px;
  font-weight:800;
  margin-bottom:12px;
}

.cmpCol ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
  text-align:left;
}

.cmpCol li{
  font-size:13px;
  line-height:1.45;
  padding-left:16px;
  position:relative;
}

.cmpBad li::before{
  content:"✖";
  position:absolute;
  left:0;
  color:#ef4444;
}

.cmpGood li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#22c55e;
}.promo-consumidor{
  width:100%;
  padding:20px 16px;
}

.promo-consumidor__video{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  box-shadow:0 20px 50px rgba(0,0,0,.20);
  background:#000;
  object-fit:cover;
}.nxVSL__player{
  position:relative;
  overflow:hidden;
}

.nxVSL__video{
  display:block;
  width:100%;
  height:auto;
  background:#000;
}

.nxVSL__overlay{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  padding:12px;
  border:0;
  cursor:pointer;
  color:#fff;
  background:linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,0) 55%);
  transition:opacity .2s ease;
}

.nxVSL__overlay.isHidden{
  opacity:0;
  pointer-events:none;
}

.nxVSL__overlay.isPaused,
.nxVSL__overlay.isEnded{
  opacity:1;
  pointer-events:auto;
}

.nxVSL__overlayIcon{
  width:42px;
  height:42px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.22);
  position:relative;
  flex:0 0 auto;
}

.nxVSL__overlayIcon::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-38%,-50%);
  width:0;
  height:0;
  border-left:11px solid #fff;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
}

.nxVSL__overlayText{
  margin-left:auto;
  font-size:12px;
  color:rgba(255,255,255,.92);
  font-weight:700;
}

.nxVSL__overlay.isEnded .nxVSL__overlayText{
  content:"";
}

.nxVSL__sound{
  position:absolute;
  right:12px;
  bottom:12px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 14px;
  border:0;
  border-radius:999px;
  background:#E54607;
  color:#fff;
  font-size:14px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 10px 24px rgba(229,70,7,.28);
}

.nxVSL__sound[hidden]{
  display:none !important;
}
/* =========================
   CTA ROVERA FIX
========================= */

.ctaFix{
  background:#fff;
  padding:18px 12px 28px;
}

.ctaFix__wrap{
  width:100%;
  max-width:440px;
  margin:0 auto;
}

.ctaFix__head{
  text-align:center;
  margin-bottom:12px;
}

.ctaFix__kicker{
  margin:0 0 6px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
  color:#E54607;
  text-transform:uppercase;
}

.ctaFix__title{
  margin:0;
  font-size:18px;
  line-height:1.12;
  letter-spacing:-.02em;
  color:#111827;
  font-weight:900;
}

.ctaFix__sub{
  margin:8px auto 0;
  max-width:30ch;
  font-size:12px;
  line-height:1.4;
  color:#6B7280;
}

/* GALERIA */
.ctaFix__gallery{
  margin-top:12px;
}

.ctaFix__main{
  width:100%;
  border:1px solid #E5E7EB;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.ctaFix__main img{
  width:100%;
  height:auto;
  max-height:340px;
  aspect-ratio:1 / 1;
  object-fit:contain;
  object-position:center;
  display:block;
  background:#fff;
}

.ctaFix__thumbs{
  margin-top:10px;
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding-bottom:4px;
  scrollbar-width:none;
}

.ctaFix__thumbs::-webkit-scrollbar{
  display:none;
}

.ctaFix__thumb{
  width:74px;
  min-width:74px;
  height:74px;
  border:1px solid #E5E7EB;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  padding:0;
  flex:0 0 auto;
  position:relative;
}

.ctaFix__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ctaFix__thumb.is-active{
  border-color:#E54607;
  box-shadow:0 0 0 2px rgba(229,70,7,.10);
}

/* BOX PREÇO BASE */
.ctaFix__summary{
  margin-top:12px;
  padding:14px;
  border:1px solid #E5E7EB;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%, #F9FAFB 100%);
}

.ctaFix__summaryTag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:#EAF7EE;
  border:1px solid #D4EEDC;
  color:#15803D;
  font-size:10px;
  font-weight:900;
  letter-spacing:.03em;
}

.ctaFix__summaryLabel{
  margin-top:10px;
  font-size:12px;
  color:#4B5563;
  font-weight:700;
}

.ctaFix__summaryPrice{
  margin-top:2px;
  font-size:24px;
  line-height:1;
  color:#16A34A;
  font-weight:900;
}

.ctaFix__summaryInstallments{
  margin-top:6px;
  font-size:12px;
  color:#4B5563;
  font-weight:700;
}

.ctaFix__summaryList{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:7px;
}

.ctaFix__summaryList li{
  font-size:12.5px;
  color:#111827;
  font-weight:700;
}

.ctaFix__summaryWarn{
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  background:#FFF7ED;
  border:1px solid #FED7AA;
  color:#9A3412;
  font-size:11.5px;
  line-height:1.35;
}

/* PAINEL */
.rvx{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid #E5E7EB;
}

.rvx__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}

.rvx__kicker{
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
  color:#E54607;
  text-transform:uppercase;
}

.rvx__help{
  margin-top:5px;
  font-size:12px;
  line-height:1.35;
  color:#6B7280;
  max-width:28ch;
}

.rvx__back{
  height:38px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
  color:#9CA3AF;
  font-size:12px;
  font-weight:800;
}

.rvx__back[disabled]{
  opacity:.65;
}

.rvx__progress{
  margin-top:12px;
}

.rvx__progressBar{
  height:6px;
  border-radius:999px;
  overflow:hidden;
  background:#E5E7EB;
}

.rvx__progressFill{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#16A34A,#22C55E);
  transition:width .28s ease;
}

.rvx__progressMeta{
  margin-top:6px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:11px;
  color:#6B7280;
  font-weight:700;
}

.rvx__stage{
  margin-top:12px;
}

.rvxCard{
  border:1px solid #E5E7EB;
  border-radius:18px;
  background:#FAFAFA;
  padding:12px;
}

.rvxCard__top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  margin-bottom:12px;
}

.rvxCard__title{
  margin:0;
  font-size:15px;
  color:#111827;
  font-weight:900;
}

.rvxCard__sub{
  margin:4px 0 0;
  font-size:12px;
  color:#6B7280;
  line-height:1.3;
}

.rvxCard__pill{
  min-width:54px;
  height:38px;
  padding:0 10px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid #E5E7EB;
  color:#6B7280;
  font-size:12px;
  font-weight:900;
}

/* tipo */
.rvx__chips{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.rvxChip{
  border:1px solid #E5E7EB;
  border-radius:16px;
  background:#fff;
  padding:14px 10px;
  text-align:center;
}

.rvxChip__title{
  font-size:13px;
  font-weight:900;
  color:#111827;
}

.rvxChip__sub{
  margin-top:5px;
  font-size:11px;
  color:#6B7280;
  font-weight:700;
}

.rvxChip.is-on{
  border-color:#86D19D;
  box-shadow:0 0 0 2px rgba(34,197,94,.10);
}

/* select */
.rvxSelect{
  width:100%;
  border:1px solid #E5E7EB;
  border-radius:14px;
  background:#fff;
  padding:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  text-align:left;
}

.rvxSelect__label{
  font-size:12px;
  color:#6B7280;
  font-weight:700;
}

.rvxSelect__value{
  margin-top:3px;
  font-size:13px;
  color:#111827;
  font-weight:900;
}

.rvxSelect__chevron{
  width:30px;
  height:30px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
  color:#111827;
}

/* cores */
.rvx__colors{
  display:flex;
  gap:12px;
  align-items:center;
}

.rvxColor{
  width:34px;
  height:34px;
  border-radius:999px;
  border:2px solid rgba(0,0,0,.14);
}

.rvxColor.is-on{
  box-shadow:0 0 0 3px rgba(34,197,94,.14);
  border-color:#22C55E;
}

.rvx__colorText{
  margin-top:10px;
  font-size:12px;
  color:#6B7280;
}

.rvx__colorText strong{
  color:#111827;
}

/* texturas */
.rvx__textures{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.rvxTex{
  border:1px solid #E5E7EB;
  border-radius:16px;
  background:#fff;
  padding:8px;
}

.rvxTex img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  display:block;
  border-radius:10px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
}

.rvxTex span{
  display:block;
  margin-top:7px;
  text-align:center;
  font-size:12px;
  font-weight:900;
  color:#111827;
}

.rvxTex.is-on{
  border-color:#86D19D;
  box-shadow:0 0 0 2px rgba(34,197,94,.10);
}

/* ok */
.rvx__ok{
  margin-top:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid #CDE8D4;
  background:#F2FBF4;
}

.rvx__okTitle{
  font-size:14px;
  font-weight:900;
  color:#111827;
}

.rvx__okText{
  margin-top:4px;
  font-size:12px;
  line-height:1.35;
  color:#6B7280;
}

/* kits */
.rvx__kits{
  margin-top:14px;
}

.rvx__blockTitle{
  font-size:13px;
  font-weight:900;
  color:#111827;
  margin-bottom:10px;
}

.rvx__kitList{
  display:grid;
  gap:12px;
}

.rvxKit{
  position:relative;
  border:1px solid #E5E7EB;
  border-radius:20px;
  background:#fff;
  padding:16px 12px 12px;
}

.rvxKit.is-on{
  border-color:#86D19D;
  box-shadow:0 0 0 2px rgba(34,197,94,.10);
}

.rvxKit__tag{
  position:absolute;
  top:-10px;
  right:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:26px;
  padding:0 12px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.03em;
  white-space:nowrap;
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}

.rvxKit__tag--price{
  background:#F0FDF4;
  color:#15803D;
  border:1px solid #BBF7D0;
}

.rvxKit__tag--best{
  background:linear-gradient(180deg,#22C55E,#16A34A);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

.rvxKit__row{
  display:grid;
  grid-template-columns:56px 1fr auto;
  gap:10px;
  align-items:start;
}

.rvxKit__img{
  width:56px;
  height:56px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
}

.rvxKit__main{
  min-width:0;
}

.rvxKit__name{
  font-size:13px;
  line-height:1.2;
  color:#111827;
  font-weight:900;
}

.rvxKit__desc{
  margin-top:4px;
  font-size:11.5px;
  line-height:1.3;
  color:#6B7280;
  font-weight:700;
}

.rvxKit__right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
  text-align:right;
}

.rvxKit__save{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  background:#EAF7EE;
  border:1px solid #D3EDDB;
  color:#15803D;
  font-size:10.5px;
  font-weight:900;
  white-space:nowrap;
}

.rvxKit__compare{
  margin-top:8px;
  font-size:11px;
  color:#9CA3AF;
  font-weight:800;
  text-decoration:line-through;
}

.rvxKit__sale{
  margin-top:2px;
  font-size:18px;
  line-height:1;
  color:#16A34A;
  font-weight:900;
}

/* oferta */
.rvx__offer{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid #E5E7EB;
  text-align:center;
}

.rvx__offerCompare{
  font-size:12px;
  color:#9CA3AF;
  font-weight:800;
  text-decoration:line-through;
}

.rvx__offerPrice{
  margin-top:4px;
  font-size:34px;
  line-height:1;
  color:#16A34A;
  font-weight:900;
}

.rvx__offerInstallments{
  margin-top:5px;
  font-size:12px;
  color:#4B5563;
  font-weight:700;
}

.rvx__cta{
  width:100%;
  height:50px;
  margin-top:12px;
  border:none;
  border-radius:14px;
  background:linear-gradient(180deg,#22C55E,#16A34A);
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
}

.rvx__offerMini{
  margin-top:8px;
  font-size:11.5px;
  color:#6B7280;
}

/* sheet */
.rvxSheet{
  position:fixed;
  inset:0;
  display:none;
  z-index:1200;
}

.rvxSheet.is-on{
  display:block;
}

.rvxSheet__bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.46);
}

.rvxSheet__card{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:#fff;
  border-radius:20px 20px 0 0;
  padding:14px;
  max-height:78vh;
  overflow:hidden;
}

.rvxSheet__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}

.rvxSheet__title{
  font-size:15px;
  font-weight:900;
  color:#111827;
}

.rvxSheet__sub{
  margin-top:3px;
  font-size:12px;
  color:#6B7280;
}

.rvxSheet__close{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
}

.rvxSheet__searchWrap{
  margin-top:10px;
}

#rvxSheetSearch{
  width:100%;
  height:44px;
  border-radius:14px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
  padding:0 12px;
  font-size:14px;
  color:#111827;
}

.rvxSheet__list{
  margin-top:10px;
  max-height:56vh;
  overflow:auto;
  border-top:1px solid #E5E7EB;
}

.rvxSheet__item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:12px 4px;
  border-bottom:1px solid #F1F5F9;
}

.rvxSheet__itemTitle{
  font-size:13px;
  color:#111827;
  font-weight:900;
}

.rvxSheet__itemSub{
  margin-top:3px;
  font-size:11.5px;
  color:#6B7280;
}

/* modal */
.rvxModal{
  position:fixed;
  inset:0;
  display:none;
  z-index:1300;
}

.rvxModal.is-on{
  display:block;
}

.rvxModal__bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.50);
}

.rvxModal__card{
  position:absolute;
  left:14px;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  max-width:520px;
  margin:0 auto;
  background:#fff;
  border-radius:20px;
  padding:14px;
}

.rvxModal__head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}

.rvxModal__title{
  font-size:15px;
  font-weight:900;
  color:#111827;
}

.rvxModal__sub{
  margin-top:3px;
  font-size:12px;
  color:#6B7280;
}

.rvxModal__close{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
}

.rvxModal__body{
  margin-top:12px;
  border-top:1px solid #E5E7EB;
  padding-top:12px;
  display:grid;
  gap:8px;
}

.rvxModal__row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:13px;
}

.rvxModal__row b{
  color:#111827;
  font-weight:900;
}

.rvxModal__row span{
  color:#6B7280;
  text-align:right;
}

.rvxModal__actions{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.rvxModal__btn{
  flex:1;
  height:44px;
  border-radius:14px;
  font-size:13px;
  font-weight:900;
}

.rvxModal__btn--ghost{
  border:1px solid #E5E7EB;
  background:#F9FAFB;
  color:#111827;
}

.rvxModal__btn--solid{
  border:none;
  background:linear-gradient(180deg,#22C55E,#16A34A);
  color:#fff;
}

.rvxModal__fineprint{
  margin-top:10px;
  text-align:center;
  font-size:11.5px;
  color:#6B7280;
}

/* mobile menor */
@media (max-width:380px){
  .ctaFix{
    padding-left:10px;
    padding-right:10px;
  }

  .ctaFix__main img{
    max-height:300px;
  }

  .rvxKit__row{
    grid-template-columns:52px 1fr;
  }

  .rvxKit__right{
    grid-column:2;
    align-items:flex-start;
    text-align:left;
    margin-top:6px;
  }

  .rvx__offerPrice{
    font-size:30px;
  }

  .ctaFix__summaryPrice{
    font-size:22px;
  }
}/* =========================
   CTA PRO ROVERA
========================= */

.ctaPro{
  background:#fff;
  padding:18px 12px 30px;
}

.ctaPro__wrap{
  width:100%;
  max-width:440px;
  margin:0 auto;
}

.ctaPro__head{
  text-align:center;
  margin-bottom:12px;
}

.ctaPro__kicker{
  margin:0 0 6px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.18em;
  color:#E54607;
  text-transform:uppercase;
}

.ctaPro__title{
  margin:0;
  font-size:18px;
  line-height:1.12;
  color:#111827;
  font-weight:900;
  letter-spacing:-.02em;
}

.ctaPro__sub{
  margin:8px auto 0;
  max-width:32ch;
  font-size:12px;
  line-height:1.4;
  color:#6B7280;
}

/* galeria */
.ctaPro__gallery{
  margin-top:12px;
}

.ctaPro__main{
  border:1px solid #E5E7EB;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.ctaPro__main img{
  width:100%;
  height:auto;
  aspect-ratio:1 / 1;
  max-height:340px;
  object-fit:contain;
  display:block;
  background:#fff;
}

.ctaPro__thumbs{
  margin-top:10px;
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding-bottom:3px;
  scrollbar-width:none;
}

.ctaPro__thumbs::-webkit-scrollbar{
  display:none;
}

.ctaPro__thumb{
  width:74px;
  min-width:74px;
  height:74px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #E5E7EB;
  background:#fff;
  padding:0;
  flex:0 0 auto;
}

.ctaPro__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ctaPro__thumb.is-active{
  border-color:#E54607;
  box-shadow:0 0 0 2px rgba(229,70,7,.10);
}

/* resumo */
.ctaPro__summary{
  margin-top:12px;
  padding:14px;
  border:1px solid #E5E7EB;
  border-radius:18px;
  background:linear-gradient(180deg,#fff 0%, #FAFAFA 100%);
}

.ctaPro__pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:#EAF7EE;
  border:1px solid #D7EEDC;
  color:#15803D;
  font-size:10px;
  font-weight:900;
  letter-spacing:.04em;
}

.ctaPro__summaryMini{
  margin-top:12px;
  font-size:12px;
  color:#4B5563;
  font-weight:700;
}

.ctaPro__summaryPrice{
  margin-top:2px;
  font-size:26px;
  line-height:1;
  font-weight:900;
  color:#16A34A;
}

.ctaPro__summaryInstallments{
  margin-top:6px;
  font-size:12px;
  color:#4B5563;
  font-weight:700;
}

.ctaPro__warning{
  margin-top:14px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid 	#AA0000;
  background:	#AA0000;
  color:	#AA0000;
  font-size:12px;
  line-height:1.45;
}

.ctaPro__warning strong{
  color:	#AA0000;
  font-weight:900;
}

/* painel */
.rvp{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #E5E7EB;
}

.rvp__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}

.rvp__kicker{
  font-size:10px;
  color:#20C05B;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.rvp__help{
  margin-top:5px;
  font-size:12px;
  line-height:1.35;
  color:#6B7280;
  max-width:28ch;
}

.rvp__back{
  height:38px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
  color:#9CA3AF;
  font-size:12px;
  font-weight:800;
}

.rvp__progress{
  margin-top:12px;
}

.rvp__progressBar{
  height:6px;
  border-radius:999px;
  overflow:hidden;
  background:#E5E7EB;
}

.rvp__progressFill{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#16A34A,#22C55E);
  transition:width .28s ease;
}

.rvp__progressMeta{
  margin-top:6px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:11px;
  color:#6B7280;
  font-weight:700;
}

.rvp__stage{
  margin-top:12px;
}

.rvpCard{
  border:1px solid #E5E7EB;
  border-radius:18px;
  background:#FAFAFA;
  padding:12px;
}

.rvpCard__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:12px;
}

.rvpCard__title{
  margin:0;
  font-size:15px;
  font-weight:900;
  color:#111827;
}

.rvpCard__sub{
  margin:4px 0 0;
  font-size:12px;
  line-height:1.3;
  color:#6B7280;
}

.rvpCard__pill{
  min-width:54px;
  height:38px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid #E5E7EB;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6B7280;
  font-size:12px;
  font-weight:900;
}

/* chips */
.rvp__chips{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.rvpChip{
  border:1px solid #E5E7EB;
  border-radius:16px;
  background:#fff;
  padding:14px 10px;
  text-align:center;
}

.rvpChip__title{
  font-size:13px;
  color:#111827;
  font-weight:900;
}

.rvpChip__sub{
  margin-top:5px;
  font-size:11px;
  color:#6B7280;
  font-weight:700;
}

.rvpChip.is-on{
  border-color:#86D19D;
  box-shadow:0 0 0 2px rgba(34,197,94,.10);
  background:#F9FFFB;
}

/* select */
.rvpSelect{
  width:100%;
  border:1px solid #E5E7EB;
  border-radius:14px;
  background:#fff;
  padding:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  text-align:left;
}

.rvpSelect__label{
  font-size:12px;
  color:#6B7280;
  font-weight:700;
}

.rvpSelect__value{
  margin-top:3px;
  font-size:13px;
  color:#111827;
  font-weight:900;
}

.rvpSelect__chevron{
  width:30px;
  height:30px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
  color:#111827;
}

/* cores */
.rvp__colors{
  display:flex;
  gap:12px;
  align-items:center;
}

.rvpColor{
  width:34px;
  height:34px;
  border-radius:999px;
  border:2px solid rgba(0,0,0,.14);
}

.rvpColor.is-on{
  box-shadow:0 0 0 3px rgba(34,197,94,.14);
  border-color:#22C55E;
}

.rvp__colorText{
  margin-top:10px;
  font-size:12px;
  color:#6B7280;
}

.rvp__colorText strong{
  color:#111827;
}

/* texturas */
.rvp__textures{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.rvpTex{
  border:1px solid #E5E7EB;
  border-radius:16px;
  background:#fff;
  padding:8px;
}

.rvpTex img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  display:block;
  border-radius:10px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
}

.rvpTex span{
  display:block;
  margin-top:7px;
  text-align:center;
  font-size:12px;
  color:#111827;
  font-weight:900;
}

.rvpTex.is-on{
  border-color:#86D19D;
  box-shadow:0 0 0 2px rgba(34,197,94,.10);
}

/* ok */
.rvp__ok{
  margin-top:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid #CDE8D4;
  background:#F3FBF5;
}

.rvp__okTitle{
  font-size:14px;
  font-weight:900;
  color:#111827;
}

.rvp__okText{
  margin-top:4px;
  font-size:12px;
  line-height:1.4;
  color:#6B7280;
}

/* kits */
.rvp__kits{
  margin-top:14px;
}

.rvp__kitsTitle{
  font-size:15px;
  font-weight:900;
  color:#111827;
}

.rvp__kitsSub{
  margin-top:4px;
  font-size:11.5px;
  color:#6B7280;
}

.rvp__kitList{
  margin-top:12px;
  display:grid;
  gap:14px;
}

.rvpKit{
  position:relative;
  border:1px solid #E5E7EB;
  border-radius:22px;
  background:#fff;
  padding:18px 12px 14px;
  transition:.22s ease;
}

.rvpKit.is-on{
  border-color:#86D19D;
  box-shadow:
    0 0 0 2px rgba(34,197,94,.12),
    0 18px 30px rgba(22,163,74,.06);
  background:linear-gradient(180deg,#FFFFFF 0%, #FBFFFC 100%);
}

.rvpKit__tag{
  position:absolute;
  top:-11px;
  right:14px;
  z-index:2;
  height:28px;
  padding:0 13px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:900;
  letter-spacing:.03em;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.rvpKit__tag--price{
  background:#F0FDF4;
  color:#15803D;
  border:1px solid #BBF7D0;
}

.rvpKit__tag--best{
  background:linear-gradient(180deg,#22C55E,#16A34A);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
}

.rvpKit__row{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:12px;
  align-items:start;
}

.rvpKit__img{
  width:58px;
  height:58px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
}

.rvpKit__main{
  min-width:0;
}

.rvpKit__name{
  font-size:13px;
  line-height:1.2;
  color:#111827;
  font-weight:900;
}

.rvpKit__desc{
  margin-top:4px;
  font-size:11.5px;
  line-height:1.3;
  color:#6B7280;
  font-weight:700;
}

.rvpKit__compare{
  margin-top:10px;
  font-size:11px;
  color:#9CA3AF;
  text-decoration:line-through;
  font-weight:800;
}

.rvpKit__sale{
  margin-top:3px;
  font-size:18px;
  line-height:1;
  color:#16A34A;
  font-weight:900;
}

.rvpKit__save{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:#EAF7EE;
  border:1px solid #D3EDDB;
  color:#15803D;
  font-size:11px;
  font-weight:900;
}

/* oferta */
.rvp__offer{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #E5E7EB;
  text-align:center;
  position:relative;
}

.rvp__discountBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:28px;
  padding:0 12px;
  border-radius:999px;
  background:#DCFCE7;
  border:1px solid #BBF7D0;
  color:#15803D;
  font-size:11px;
  font-weight:900;
}

.rvp__offerCompare{
  margin-top:10px;
  font-size:12px;
  color:#9CA3AF;
  font-weight:800;
  text-decoration:line-through;
}

.rvp__offerPrice{
  margin-top:4px;
  font-size:38px;
  line-height:1;
  font-weight:900;
  color:#16A34A;
  letter-spacing:-.03em;
}

.rvp__offerInstallments{
  margin-top:5px;
  font-size:13px;
  color:#4B5563;
  font-weight:700;
}

.rvp__cta{
  width:100%;
  margin-top:14px;
  padding:14px 14px 12px;
  border:none;
  border-radius:16px;
  background:linear-gradient(180deg,#22C55E 0%, #16A34A 100%);
  color:#fff;
  box-shadow:0 16px 28px rgba(22,163,74,.22);
}

.rvp__ctaMain{
  display:block;
  font-size:14px;
  font-weight:900;
  letter-spacing:.02em;
}

.rvp__ctaSub{
  display:block;
  margin-top:4px;
  font-size:11px;
  font-weight:700;
  opacity:.94;
}

.rvp__offerMini{
  margin-top:9px;
  font-size:11.5px;
  color:#6B7280;
}

/* sheet */
.rvpSheet{
  position:fixed;
  inset:0;
  display:none;
  z-index:1200;
}

.rvpSheet.is-on{
  display:block;
}

.rvpSheet__bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.46);
  backdrop-filter:blur(4px);
}

.rvpSheet__card{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:#fff;
  border-radius:20px 20px 0 0;
  padding:14px;
  max-height:78vh;
  overflow:hidden;
  box-shadow:0 -18px 40px rgba(0,0,0,.10);
}

.rvpSheet__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}

.rvpSheet__title{
  font-size:15px;
  font-weight:900;
  color:#111827;
}

.rvpSheet__sub{
  margin-top:3px;
  font-size:12px;
  color:#6B7280;
}

.rvpSheet__close{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
}

.rvpSheet__searchWrap{
  margin-top:10px;
}

#rvpSheetSearch{
  width:100%;
  height:44px;
  border-radius:14px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
  padding:0 12px;
  font-size:14px;
  color:#111827;
}

.rvpSheet__list{
  margin-top:10px;
  max-height:56vh;
  overflow:auto;
  border-top:1px solid #E5E7EB;
}

.rvpSheet__item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:12px 4px;
  border-bottom:1px solid #F1F5F9;
}

.rvpSheet__itemTitle{
  font-size:13px;
  color:#111827;
  font-weight:900;
}

.rvpSheet__itemSub{
  margin-top:3px;
  font-size:11.5px;
  color:#6B7280;
}

/* modal */
.rvpModal{
  position:fixed;
  inset:0;
  display:none;
  z-index:1300;
}

.rvpModal.is-on{
  display:block;
}

.rvpModal__bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.50);
  backdrop-filter:blur(4px);
}

.rvpModal__card{
  position:absolute;
  left:14px;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  max-width:520px;
  margin:0 auto;
  background:#fff;
  border-radius:22px;
  padding:14px;
  box-shadow:0 22px 50px rgba(0,0,0,.14);
}

.rvpModal__head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}

.rvpModal__title{
  font-size:15px;
  font-weight:900;
  color:#111827;
}

.rvpModal__sub{
  margin-top:3px;
  font-size:12px;
  color:#6B7280;
}

.rvpModal__close{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid #E5E7EB;
  background:#F9FAFB;
}

.rvpModal__body{
  margin-top:12px;
  border-top:1px solid #E5E7EB;
  padding-top:12px;
  display:grid;
  gap:8px;
}

.rvpModal__row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:13px;
}

.rvpModal__row b{
  color:#111827;
  font-weight:900;
}

.rvpModal__row span{
  color:#6B7280;
  text-align:right;
}

.rvpModal__actions{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.rvpModal__btn{
  flex:1;
  height:44px;
  border-radius:14px;
  font-size:13px;
  font-weight:900;
}

.rvpModal__btn--ghost{
  border:1px solid #E5E7EB;
  background:#F9FAFB;
  color:#111827;
}

.rvpModal__btn--solid{
  border:none;
  background:linear-gradient(180deg,#22C55E,#16A34A);
  color:#fff;
}

.rvpModal__fineprint{
  margin-top:10px;
  text-align:center;
  font-size:11.5px;
  color:#6B7280;
}

@media (max-width:380px){
  .ctaPro__main img{
    max-height:300px;
  }

  .rvp__offerPrice{
    font-size:32px;
  }

  .ctaPro__summaryPrice{
    font-size:24px;
  }
}/* =========================
   OFERTA FINAL - AJUSTES
========================= */

.rvp__offer{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #E5E7EB;
  text-align:center;
  position:relative;
}

/* linha do comparativo + badge lado a lado */
.rvp__offerTop{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:6px;
  flex-wrap:wrap;
}

/* BADGE DESCONTO - vermelho */
.rvp__discountBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:30px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(180deg,#FEE2E2 0%, #FECACA 100%);
  border:1px solid #FCA5A5;
  color:#B91C1C;
  font-size:12px;
  font-weight:900;
  letter-spacing:.01em;
  box-shadow:0 8px 18px rgba(185,28,28,.10);
  white-space:nowrap;
}

/* preço riscado */
.rvp__offerCompare{
  font-size:13px;
  color:#9CA3AF;
  font-weight:800;
  text-decoration:line-through;
  margin:0;
}

/* PREÇO PRINCIPAL COM MAIS IMPACTO */
.rvp__offerPrice{
  margin-top:2px;
  font-size:42px;
  line-height:1;
  font-weight:900;
  color:#16A34A;
  letter-spacing:-.04em;
  position:relative;
  display:inline-block;
  animation:rvpPricePulse 1.6s ease-in-out infinite;
  text-shadow:
    0 1px 0 rgba(255,255,255,.7),
    0 10px 18px rgba(22,163,74,.10);
}

/* brilho passando no preço */
.rvp__offerPrice::after{
  content:"";
  position:absolute;
  top:-8%;
  left:-35%;
  width:28%;
  height:116%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.55),
    transparent
  );
  transform:skewX(-18deg);
  animation:rvpPriceShine 2.6s ease-in-out infinite;
  pointer-events:none;
  opacity:.0;
}

.rvp__offerInstallments{
  margin-top:8px;
  font-size:13px;
  color:#4B5563;
  font-weight:800;
}

/* CTA com pulse + brilho */
.rvp__cta{
  width:100%;
  margin-top:15px;
  padding:15px 14px 13px;
  border:none;
  border-radius:18px;
  background:linear-gradient(180deg,#22C55E 0%, #16A34A 100%);
  color:#fff;
  box-shadow:
    0 16px 28px rgba(22,163,74,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
  position:relative;
  overflow:hidden;
  animation:rvpCtaPulse 1.7s ease-in-out infinite;
}

/* brilho espelhado passando */
.rvp__cta::after{
  content:"";
  position:absolute;
  top:0;
  left:-38%;
  width:24%;
  height:100%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.42),
    transparent
  );
  transform:skewX(-22deg);
  animation:rvpCtaShine 2.4s ease-in-out infinite;
}

.rvp__ctaMain{
  display:block;
  font-size:14px;
  font-weight:900;
  letter-spacing:.02em;
  position:relative;
  z-index:1;
}

.rvp__ctaSub{
  display:block;
  margin-top:4px;
  font-size:11px;
  font-weight:700;
  opacity:.96;
  position:relative;
  z-index:1;
}

.rvp__offerMini{
  margin-top:10px;
  font-size:11.5px;
  color:#6B7280;
}

/* animações */
@keyframes rvpPricePulse{
  0%,100%{
    transform:scale(1);
    filter:saturate(1);
  }
  50%{
    transform:scale(1.035);
    filter:saturate(1.08);
  }
}

@keyframes rvpPriceShine{
  0%{
    left:-35%;
    opacity:0;
  }
  18%{
    opacity:.85;
  }
  38%{
    left:115%;
    opacity:0;
  }
  100%{
    left:115%;
    opacity:0;
  }
}

@keyframes rvpCtaPulse{
  0%,100%{
    transform:scale(1);
    box-shadow:
      0 16px 28px rgba(22,163,74,.22),
      inset 0 1px 0 rgba(255,255,255,.18);
  }
  50%{
    transform:scale(1.018);
    box-shadow:
      0 20px 34px rgba(22,163,74,.28),
      inset 0 1px 0 rgba(255,255,255,.20);
  }
}

@keyframes rvpCtaShine{
  0%{
    left:-38%;
    opacity:0;
  }
  15%{
    opacity:.95;
  }
  40%{
    left:120%;
    opacity:0;
  }
  100%{
    left:120%;
    opacity:0;
  }
}.rvBrandGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:10px;
}

.rvBrandCard{
  border:1px solid #E5E7EB;
  background:#fff;
  border-radius:16px;
  min-height:92px;
  padding:12px 8px 10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transition:.18s ease;
}

.rvBrandCard:active{
  transform:scale(.98);
}

.rvBrandCard:hover{
  border-color:#16a34a33;
  box-shadow:0 8px 18px rgba(22,163,74,.08);
}

.rvBrandCard__icon{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.rvBrandCard__icon img{
  width:34px;
  height:34px;
  object-fit:contain;
  display:block;
}

.rvBrandCard__name{
  font-size:12px;
  line-height:1.2;
  font-weight:700;
  color:#111827;
  text-align:center;
}

.rvBrandSearchBtn{
  width:100%;
  margin-top:12px;
  border:1px solid #E5E7EB;
  border-radius:16px;
  background:#F9FAFB;
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
}

.rvBrandSearchBtn__left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
}

.rvBrandSearchBtn__label{
  font-size:13px;
  font-weight:800;
  color:#111827;
}

.rvBrandSearchBtn__sub{
  font-size:12px;
  color:#6B7280;
}

.rvBrandSearchBtn__ico{
  width:34px;
  height:34px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid #E5E7EB;
  font-size:16px;
  color:#111827;
}

@media (max-width:380px){
  .rvBrandGrid{
    grid-template-columns:repeat(2,1fr);
  }
}.rvBrandGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:10px;
}.rvBrandCard{
  border:1px solid #E5E7EB;
  background:#fff;
  border-radius:14px;
  min-height:80px;
  padding:10px 6px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  transition:.15s;
}.rvBrandCard__name{
  font-size:11px;
  font-weight:700;
  color:#111827;
}.rvBrandCard:active{
 transform:scale(.95);
 border-color:#16a34a;
}/* GRID MARCAS */
.rvBrandGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}

.rvBrandCard{
  border:1.5px solid #E7EAF0;
  background:#fff;
  border-radius:18px;
  min-height:104px;
  padding:12px 8px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;

  cursor:pointer;
  position:relative;
  overflow:hidden;

  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.rvBrandCard::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(34,197,94,.06), rgba(34,197,94,0));
  opacity:0;
  transition:opacity .18s ease;
}

.rvBrandCard:hover{
  transform:translateY(-1px);
  border-color:#CFE8D8;
  box-shadow:0 8px 20px rgba(16,24,40,.06);
}

.rvBrandCard:active{
  transform:scale(.97);
}

.rvBrandCard__icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}

.rvBrandCard__icon img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
}

.rvBrandCard__name{
  font-size:13px;
  line-height:1.15;
  font-weight:800;
  text-align:center;
  color:#101828;
}

/* ESTADO SELECIONADO */
.rvBrandCard.is-selected{
  border-color:#56B870;
  background:#F5FBF7;
  box-shadow:
    0 0 0 3px rgba(34,197,94,.14),
    0 10px 24px rgba(34,197,94,.10);
  transform:translateY(-1px) scale(1.02);
}

.rvBrandCard.is-selected::before{
  opacity:1;
}

.rvBrandCard.is-selected .rvBrandCard__name{
  color:#157347;
}

/* check no canto */
.rvBrandCard.is-selected::after{
  content:"✓";
  position:absolute;
  top:8px;
  right:8px;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#22C55E;
  color:#fff;
  font-size:12px;
  font-weight:900;
  display:grid;
  place-items:center;
  box-shadow:0 6px 16px rgba(34,197,94,.28);
  animation:brandPop .22s ease;
}

/* animação de entrada da seleção */
@keyframes brandPop{
  0%{
    transform:scale(.6);
    opacity:0;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}

/* pulso bem leve após selecionar */
.rvBrandCard.is-selected{
  animation:brandPulse .45s ease;
}

@keyframes brandPulse{
  0%{ transform:scale(.96); }
  45%{ transform:scale(1.035); }
  100%{ transform:scale(1.02); }
}

/* mobile pequeno */
@media (max-width:380px){
  .rvBrandGrid{
    gap:8px;
  }

  .rvBrandCard{
    min-height:96px;
    padding:10px 6px;
    border-radius:16px;
  }

  .rvBrandCard__icon{
    width:36px;
    height:36px;
  }

  .rvBrandCard__name{
    font-size:12px;
  }
}/* container */

.rvp__chips{
display:flex;
gap:12px;
margin-top:14px;
}


/* card */

.rvpChip{
flex:1;
padding:18px 16px;
border-radius:16px;
border:2px solid #e6e6e6;
background:#ffffff;
text-align:center;
cursor:pointer;

transition:all .25s ease;
}


/* hover */

.rvpChip:hover{
border-color:#2e7d32;
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(0,0,0,0.08);
}


/* selecionado */

.rvpChip.is-on{
border-color:#2e7d32;
background:#f2faf4;
box-shadow:0 8px 20px rgba(46,125,50,0.15);
transform:scale(1.03);
}


/* título */

.rvpChip__title{
font-size:17px;
font-weight:700;
color:#222;
margin-bottom:4px;
}


/* subtitulo */

.rvpChip__sub{
font-size:13px;
color:#6b6b6b;
}


/* animação quando seleciona */

.rvpChip.is-on .rvpChip__title{
color:#2e7d32;
}
.rvpChip{
position:relative;
border-radius:18px;
border:2px solid #e5e7eb;
background:white;
padding:18px;
overflow:hidden;
}

.rvpChip svg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
}/* base */

.rvpChip{
position:relative;
flex:1;
padding:18px 14px;
border-radius:18px;
border:2px solid #e5e7eb;
background:#fff;
text-align:center;
transition:all .25s ease;
}

/* animação alternada */

.rvpChip:nth-child(1){
animation:pulseA 4s infinite;
}

.rvpChip:nth-child(2){
animation:pulseB 4s infinite;
}

/* pulse carro */

@keyframes pulseA{

0%{
transform:scale(1);
box-shadow:none;
}

10%{
transform:scale(1.05);
box-shadow:0 10px 28px rgba(34,197,94,0.25);
}

20%{
transform:scale(1);
box-shadow:none;
}

/* pausa */

100%{
transform:scale(1);
}

}

/* pulse picape */

@keyframes pulseB{

0%{
transform:scale(1);
box-shadow:none;
}

/* espera carro */

25%{
transform:scale(1);
}

35%{
transform:scale(1.05);
box-shadow:0 10px 28px rgba(34,197,94,0.25);
}

45%{
transform:scale(1);
box-shadow:none;
}

/* pausa */

100%{
transform:scale(1);
}

}

/* quando seleciona */

.rvpChip.is-on{
animation:none;
border-color:#22c55e;
background:#f5fff8;
box-shadow:
0 12px 30px rgba(34,197,94,0.25),
0 0 0 3px rgba(34,197,94,0.15);
}.rvpChip::after{
content:"";
position:absolute;
top:0;
left:-80%;
width:60%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.7),
transparent
);
transform:skewX(-20deg);
animation:shineMove 6s infinite;
}

@keyframes shineMove{
0%{left:-80%}
100%{left:150%}
}.rvpInlineError{
  display:none;
  margin-bottom:12px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(220,38,38,.08);
  border:1px solid rgba(220,38,38,.18);
  color:#b91c1c;
  font-size:13px;
  font-weight:700;
  line-height:1.35;
}

.rvpInlineError.is-show{
  display:block;
  animation:rvpErrorIn .22s ease;
}

@keyframes rvpErrorIn{
  from{
    opacity:0;
    transform:translateY(-4px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.specs-content {
  max-height: 220px;
  overflow: hidden;
  position: relative;
  transition: max-height .35s ease;
}

.specs-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
  transition: opacity .25s ease;
}

.specs-content.is-open {
  max-height: 1200px;
}

.specs-content.is-open::after {
  opacity: 0;
}
.specs-toggle {
  transition: all .25s ease;
}

.specs-toggle.is-open {
  opacity: .85;
}.ctaPro__warning{
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #FFF5F5 0%, #FFF0F0 100%);
  border: 1.5px solid rgba(185, 28, 28, .18);
  color: #7F1D1D;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.ctaPro__warning strong{
  color: #991B1B;
  font-weight: 900;
}.rvpCard__pill{
  
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #15803D;
  background: linear-gradient(180deg, #F3FFF7 0%, #E7F8EC 100%);
  border: 1.5px solid rgba(34,197,94,.22);
  box-shadow:
    0 8px 20px rgba(34,197,94,.10),
    inset 0 1px 0 rgba(255,255,255,.8);
}
.ctaPro__summaryPrice{
  font-size: clamp(22px, 9vw, 68px);
  line-height: .95;
  font-weight: 750;
  letter-spacing: -.03em;
  color: #16A34A;
  text-shadow: 0 4px 16px rgba(34,197,94,.12);
  margin-top: 4px;
}.rvp__kicker{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: #22C55E;
}.vslJumpBar{
  padding:14px 16px 20px;
  background:#fff;
}

.vslJumpBar__btn{
  width:100%;
  border:0;
  border-radius:14px;

  padding:14px 18px;

  background:linear-gradient(180deg,#ff6a00 0%,#e54507 100%);
  color:#fff;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:2px;

  box-shadow:
    0 10px 24px rgba(229,69,7,.18),
    inset 0 1px 0 rgba(255,255,255,.35);

  transition:transform .15s ease, box-shadow .2s ease;

  animation:ctaPulse 3s ease-in-out infinite;
}

.vslJumpBar__btn:active{
  transform:scale(.98);
}

.vslJumpBar__main{
  font-size:18px;
  font-weight:900;
  letter-spacing:.02em;
}

.vslJumpBar__sub{
  font-size:12px;
  font-weight:600;
  opacity:.92;
}@keyframes ctaPulse{

  0%,100%{
    transform:scale(1);
    box-shadow:
      0 10px 24px rgba(229,69,7,.18),
      inset 0 1px 0 rgba(255,255,255,.35);
  }

  50%{
    transform:scale(1.02);
    box-shadow:
      0 16px 34px rgba(229,69,7,.26),
      inset 0 1px 0 rgba(255,255,255,.35);
  }

}.ctaPro__warning{
  margin-top: 20px;
  padding: 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #C1121F 0%, #991B1B 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 14px 30px rgba(153,27,27,.22),
    inset 0 1px 0 rgba(255,255,255,.10);
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.ctaPro__warning strong{
  color: #FFFFFF;
  font-weight: 950;
}

.ctaPro__warning::before{
  content: "⚠";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  vertical-align: middle;
}.ctaPro__warning{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;

  background: linear-gradient(180deg,#B10F1A 0%,#7F1D1D 100%);
  border: 1px solid rgba(255,255,255,.08);

  color:#fff;
  font-size:13px;
  line-height:1.4;
  font-weight:600;

  box-shadow:
  0 10px 22px rgba(127,29,29,.18),
  inset 0 1px 0 rgba(255,255,255,.08);
}

.ctaPro__warning strong{
  font-weight:900;
}

.ctaPro__warning::before{
  content:"⚠";
  margin-right:8px;
  font-size:14px;
}

.rvp__progressBar{
  width:100%;
  height:6px;
  border-radius:999px;
  background:#E5E7EB;
  overflow:hidden;
}

.rvp__progressFill{
  height:100%;
  width:0%;
  border-radius:999px;

  background:linear-gradient(
  90deg,
  #22C55E,
  #16A34A
  );

  box-shadow:
  0 0 8px rgba(34,197,94,.45),
  0 0 14px rgba(34,197,94,.25);

  transition:width .35s ease;
}.rvpVehicle{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:12px;
}

.vehicleCard{
  width:100%;
  padding:16px 14px;
  border:none;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  box-shadow:
    0 8px 20px rgba(15,23,42,.08),
    inset 0 0 0 1px #E5E7EB;
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    background .16s ease;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.vehicleCard:active{
  transform:scale(.985);
}

.vehicleCard::after{
  content:"";
  position:absolute;
  top:-30%;
  left:-35%;
  width:48%;
  height:180%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.45),transparent);
  transform:rotate(18deg);
  opacity:0;
  pointer-events:none;
}

.vehicleIconWrap{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 10px;
  background:linear-gradient(180deg,#F8FAFC 0%,#EEF2F7 100%);
  border:1px solid #E5E7EB;
  box-shadow:0 8px 20px rgba(15,23,42,.06);
  transition:
    background .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
}

.vehicleIcon{
  width:28px;
  height:28px;
  color:#111827;
  transition:color .16s ease;
}

.vehicleText{
  text-align:center;
}

.vehicleTitle{
  font-size:18px;
  line-height:1;
  font-weight:900;
  letter-spacing:.08em;
  color:#111827;
  text-transform:uppercase;
}

.vehicleSub{
  margin-top:6px;
  font-size:13px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.03em;
  color:#374151;
  text-transform:uppercase;
}

.vehicleDesc{
  margin-top:4px;
  font-size:12px;
  line-height:1.3;
  font-weight:600;
  color:#6B7280;
}

.vehicleCard:hover{
  transform:translateY(-1px);
  box-shadow:
    0 14px 28px rgba(15,23,42,.10),
    inset 0 0 0 1px #DDE3EA;
}

.vehicleCard.is-on{
  background:linear-gradient(180deg,#F0FDF4 0%,#DCFCE7 100%);
  box-shadow:
    0 18px 34px rgba(34,197,94,.18),
    inset 0 0 0 1.5px rgba(34,197,94,.55);
}

.vehicleCard.is-on .vehicleIconWrap{
  background:linear-gradient(180deg,#22C55E 0%,#16A34A 100%);
  border-color:#16A34A;
  box-shadow:0 14px 28px rgba(34,197,94,.24);
}

.vehicleCard.is-on .vehicleIcon{
  color:#ffffff;
}

.vehicleCard.is-on .vehicleTitle{
  color:#166534;
}

.vehicleCard.is-on .vehicleSub{
  color:#15803D;
}

.vehicleCard.is-on .vehicleDesc{
  color:#166534;
  opacity:.88;
}

.vehicleCard.is-on::after{
  opacity:1;
  animation:vehicleShine 1.1s linear forwards;
}

@keyframes vehicleShine{
  0%{
    transform:translateX(-140%) rotate(18deg);
  }
  100%{
    transform:translateX(340%) rotate(18deg);
  }
}

@media (max-width:640px){
  .rvpVehicle{
    gap:10px;
    margin-top:10px;
  }

  .vehicleCard{
    padding:14px 12px;
    border-radius:16px;
  }

  .vehicleIconWrap{
    width:50px;
    height:50px;
    border-radius:14px;
    margin-bottom:8px;
  }

  .vehicleIcon{
    width:25px;
    height:25px;
  }

  .vehicleTitle{
    font-size:16px;
  }

  .vehicleSub{
    font-size:12px;
  }

  .vehicleDesc{
    font-size:11px;
  }
}.rvpVehicleList{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:14px;
}

.vehicleRow{
  width:100%;
  border:none;
  border-radius:24px;
  padding:16px 18px;
  display:flex;
  align-items:center;
  gap:16px;
  text-align:left;
  background:linear-gradient(180deg,#ffffff 0%,#fbfbfc 100%);
  box-shadow:
    0 10px 28px rgba(15,23,42,.06),
    inset 0 0 0 1.5px #E5E7EB;
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    background .16s ease,
    border-color .16s ease;
  position:relative;
  overflow:hidden;
}

.vehicleRow:active{
  transform:scale(.988);
}

.vehicleRow:hover{
  transform:translateY(-1px);
  box-shadow:
    0 16px 34px rgba(15,23,42,.08),
    inset 0 0 0 1.5px #D9DEE5;
}

.vehicleRow__iconBox{
  width:64px;
  min-width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#F5F7FA 0%,#ECEFF4 100%);
  box-shadow:
    inset 0 0 0 1px #E5E7EB,
    0 8px 18px rgba(15,23,42,.05);
}

.vehicleRow__icon{
  width:30px;
  height:30px;
  color:#111827;
}

.vehicleRow__content{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
}

.vehicleRow__title{
  font-size:22px;
  line-height:1.05;
  font-weight:900;
  color:#111827;
  letter-spacing:-.02em;
  text-transform:capitalize;
}

.vehicleRow__sub{
  margin-top:4px;
  font-size:17px;
  line-height:1.2;
  font-weight:800;
  color:#374151;
}

.vehicleRow__desc{
  margin-top:4px;
  font-size:13px;
  line-height:1.35;
  font-weight:600;
  color:#6B7280;
}

.vehicleRow__arrow{
  width:28px;
  min-width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#9CA3AF;
}

.vehicleRow__arrow svg{
  width:22px;
  height:22px;
}

.vehicleRow.is-on{
  background:linear-gradient(180deg,#F0FDF4 0%,#E9FBEF 100%);
  box-shadow:
    0 18px 34px rgba(34,197,94,.14),
    inset 0 0 0 2px rgba(34,197,94,.22);
}

.vehicleRow.is-on .vehicleRow__iconBox{
  background:linear-gradient(180deg,#22C55E 0%,#16A34A 100%);
  box-shadow:
    0 14px 26px rgba(34,197,94,.24),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.vehicleRow.is-on .vehicleRow__icon{
  color:#fff;
}

.vehicleRow.is-on .vehicleRow__title{
  color:#166534;
}

.vehicleRow.is-on .vehicleRow__sub{
  color:#15803D;
}

.vehicleRow.is-on .vehicleRow__desc{
  color:#166534;
  opacity:.82;
}

.vehicleRow.is-on .vehicleRow__arrow{
  color:#16A34A;
}

@media (max-width:640px){
  .rvpVehicleList{
    gap:12px;
    margin-top:12px;
  }

  .vehicleRow{
    padding:14px 14px;
    border-radius:20px;
    gap:12px;
  }

  .vehicleRow__iconBox{
    width:54px;
    min-width:54px;
    height:54px;
    border-radius:16px;
  }

  .vehicleRow__icon{
    width:25px;
    height:25px;
  }

  .vehicleRow__title{
    font-size:18px;
  }

  .vehicleRow__sub{
    font-size:14px;
    line-height:1.2;
  }

  .vehicleRow__desc{
    font-size:11px;
  }

  .vehicleRow__arrow{
    width:22px;
    min-width:22px;
    height:22px;
  }

  .vehicleRow__arrow svg{
    width:18px;
    height:18px;
  }
}.ctaPro__rating{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin: 16px 0 14px;
}

.ctaPro__stars{
  display:flex;
  align-items:center;
  gap:2px;
  line-height:0;
}

.ctaPro__stars svg{
  width:18px;
  height:18px;
  fill:#FACC15; /* estrelas pretas */
  display:block;
}

.ctaPro__ratingScore{
  font-size:15px;
  font-weight:800;
  color:#111111; /* (4,8) preto */
  line-height:1;
}

.ctaPro__ratingCount{
  font-size:15px;
  font-weight:700;
  color:#22C55E; /* avaliações verde */
  line-height:1;
}

@media (max-width:640px){
  .ctaPro__rating{
    gap:7px;
    margin: 0 0 12px;
  }

  .ctaPro__stars svg{
    width:17px;
    height:17px;
  }

  .ctaPro__ratingScore,
  .ctaPro__ratingCount{
    font-size:14px;
  }
}
.vehicleRow{
  position: relative;
  overflow: hidden;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.vehicleRow::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 42%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0.00) 20%,
    rgba(255,255,255,0.12) 45%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.00) 78%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.vehicleRow.is-pulsing{
  border-color: rgba(34,197,94,.34) !important;
  transform: translateY(-2px) scale(1.008);
  box-shadow:
    0 0 0 1px rgba(34,197,94,.10),
    0 10px 26px rgba(34,197,94,.14),
    0 0 22px rgba(34,197,94,.10);
  animation: vehiclePulseGlow 1.25s ease;
}

.vehicleRow.is-pulsing::after{
  opacity: 1;
  animation: vehicleSweep 1.25s ease;
}

@keyframes vehiclePulseGlow{
  0%{
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 0 rgba(34,197,94,0),
      0 0 0 rgba(34,197,94,0);
  }
  25%{
    transform: translateY(-2px) scale(1.01);
    box-shadow:
      0 0 0 5px rgba(34,197,94,.08),
      0 12px 28px rgba(34,197,94,.16),
      0 0 24px rgba(34,197,94,.12);
  }
  65%{
    transform: translateY(-1px) scale(1.006);
    box-shadow:
      0 0 0 8px rgba(34,197,94,.04),
      0 8px 20px rgba(34,197,94,.12),
      0 0 18px rgba(34,197,94,.08);
  }
  100%{
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 0 rgba(34,197,94,0),
      0 0 0 rgba(34,197,94,0);
  }
}

@keyframes vehicleSweep{
  0%{
    left: -130%;
  }
  100%{
    left: 140%;
  }
}:root{
  --rv-green:#4FAF5A;
  --rv-green-dark:#2F7A3A;
  --rv-green-soft:#EAF7EC;
  --rv-red:#B71C1C;
  --rv-text:#111827;
  --rv-text-2:#6B7280;
  --rv-border:#E5E7EB;
  --rv-white:#FFFFFF;
  --rv-bg:#F8F8F7;
}

.rvConfigWrap{
  padding: 18px 14px 28px;
  background: #fff;
}

.rvConfig{
  max-width: 760px;
  margin: 0 auto;
}

.rvConfig__top{
  text-align:center;
  margin-bottom:18px;
}

.rvConfig__kicker{
  margin:0 0 6px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  color:var(--rv-green);
}

.rvConfig__title{
  margin:0;
  font-size:28px;
  line-height:1.08;
  font-weight:900;
  color:var(--rv-text);
}

.rvConfig__sub{
  margin:8px auto 0;
  max-width:34ch;
  font-size:15px;
  line-height:1.45;
  color:var(--rv-text-2);
}

.rvBlock{
  margin-top:16px;
  padding:18px;
  border:1px solid var(--rv-border);
  border-radius:24px;
  background:#fff;
}

.rvBlock__head{
  margin-bottom:14px;
}

.rvBlock__title{
  font-size:18px;
  font-weight:900;
  color:var(--rv-text);
}

.rvBlock__sub{
  margin-top:4px;
  font-size:14px;
  line-height:1.4;
  color:var(--rv-text-2);
}

.rvTypeSwitch{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.rvTypeBtn{
  min-height:56px;
  border-radius:14px;
  border:1.5px solid #D8DDE3;
  background:#F5F7F8;
  color:#111827;
  font-size:16px;
  font-weight:900;
  letter-spacing:.03em;
  transition:.2s ease;
}

.rvTypeBtn.is-on{
  background:linear-gradient(180deg,#57B963 0%, #469F51 100%);
  color:#fff;
  border-color:#469F51;
  box-shadow:0 10px 24px rgba(79,175,90,.24);
}

.rvKitGrid{
  display:grid;
  gap:12px;
}

.rvKitCard{
  position:relative;
  display:grid;
  grid-template-columns:76px 1fr;
  gap:14px;
  align-items:center;
  padding:14px;
  border:1.5px solid #E5E7EB;
  border-radius:18px;
  background:#fff;
  transition:.2s ease;
  cursor:pointer;
}

.rvKitCard.is-on{
  border-color:var(--rv-green);
  box-shadow:0 0 0 2px rgba(79,175,90,.10), 0 10px 22px rgba(79,175,90,.10);
}

.rvKitCard__img{
  width:76px;
  height:76px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid #ECECEC;
  background:#F3F4F6;
}

.rvKitCard__tag{
  position:absolute;
  top:10px;
  right:10px;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:900;
  color:#fff;
  background:#2D68D8;
}

.rvKitCard__name{
  font-size:15px;
  line-height:1.2;
  font-weight:900;
  color:#111827;
  padding-right:90px;
}

.rvKitCard__sub{
  margin-top:4px;
  font-size:13px;
  color:#6B7280;
}

.rvKitCard__compare{
  margin-top:8px;
  font-size:13px;
  color:#9CA3AF;
  text-decoration:line-through;
  font-weight:700;
}

.rvKitCard__sale{
  margin-top:2px;
  font-size:17px;
  color:var(--rv-green);
  font-weight:900;
}

.rvPriceBox{
  margin-top:16px;
  padding:20px 16px;
  border-radius:24px;
  border:1px solid var(--rv-border);
  background:#FBFBFB;
  text-align:center;
}

.rvPriceBox__compare{
  font-size:16px;
  color:#9CA3AF;
  font-weight:800;
  text-decoration:line-through;
}

.rvPriceBox__sale{
  margin-top:4px;
  font-size:52px;
  line-height:.95;
  font-weight:900;
  color:var(--rv-green);
  letter-spacing:-1.5px;
}

.rvPriceBox__installments{
  margin-top:8px;
  font-size:16px;
  font-weight:700;
  color:#374151;
}

.rvPriceBox__save{
  margin-top:12px;
  display:inline-flex;
  min-height:38px;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:999px;
  background:var(--rv-green-soft);
  color:var(--rv-green-dark);
  font-size:14px;
  font-weight:900;
  border:1px solid #D6EEDB;
}

.rvField{
  margin-top:14px;
}

.rvLabel{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#4B5563;
}

.rvSelectBtn{
  width:100%;
  min-height:58px;
  padding:0 16px;
  border-radius:16px;
  border:1.5px solid #DADDE3;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:15px;
  font-weight:800;
  color:#111827;
}

.rvSelectBtn.is-disabled,
.rvSelectBtn:disabled{
  background:#F3F4F6;
  color:#A1A1AA;
}

.rvSelectBtn__arrow{
  font-size:24px;
  line-height:1;
  color:#9CA3AF;
}

.rvColorGrid{
  display:flex;
  gap:14px;
  align-items:center;
}

.rvColor{
  width:46px;
  height:46px;
  border-radius:999px;
  border:3px solid transparent;
  background:var(--cor);
  box-shadow:inset 0 0 0 2px rgba(0,0,0,.05);
}

.rvColor.is-on{
  border-color:var(--rv-green);
  box-shadow:0 0 0 4px rgba(79,175,90,.16);
}

.rvTextureGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.rvTexture{
  border:1.5px solid #E5E7EB;
  border-radius:16px;
  background:#fff;
  padding:8px;
}

.rvTexture img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:10px;
  display:block;
}

.rvTexture span{
  display:block;
  margin-top:8px;
  text-align:center;
  font-size:13px;
  font-weight:800;
  color:#111827;
}

.rvTexture.is-on{
  border-color:var(--rv-green);
  box-shadow:0 0 0 2px rgba(79,175,90,.10);
}

.rvFinal{
  margin-top:16px;
}

.rvConfirmBtn{
  width:100%;
  min-height:68px;
  border:0;
  border-radius:18px;
  background:linear-gradient(180deg,#57B963 0%, #469F51 100%);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  box-shadow:0 14px 28px rgba(79,175,90,.22);
}

.rvConfirmBtn__main{
  font-size:16px;
  font-weight:900;
  letter-spacing:.02em;
}

.rvConfirmBtn__sub{
  font-size:12px;
  font-weight:700;
  opacity:.95;
}

.rvFinal__mini{
  margin-top:10px;
  text-align:center;
  font-size:13px;
  color:#6B7280;
}

.rvInlineError{
  display:none;
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  background:#FDECEC;
  border:1px solid #F5C9C9;
  color:#9A1F1F;
  font-size:13px;
  font-weight:700;
}

.rvInlineError.is-show{
  display:block;
}

/* SHEET */
.rvSheet,
.rvModal{
  display:none;
}

.rvSheet.is-on,
.rvModal.is-on{
  display:block;
}

.rvSheet{
  position:fixed;
  inset:0;
  z-index:60;
}

.rvSheet__bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.38);
}

.rvSheet__card{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  max-height:78vh;
  overflow:auto;
  background:#fff;
  border-radius:24px 24px 0 0;
  padding:18px 14px 16px;
}

.rvSheet__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.rvSheet__title{
  font-size:18px;
  font-weight:900;
  color:#111827;
}

.rvSheet__sub{
  margin-top:2px;
  color:#6B7280;
  font-size:13px;
}

.rvSheet__close{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid #E5E7EB;
  background:#fff;
  font-size:22px;
}

.rvSheet__searchWrap{
  margin-top:14px;
}

#rvSheetSearch{
  width:100%;
  height:56px;
  border-radius:16px;
  border:1.5px solid #DADDE3;
  padding:0 14px;
  font-size:15px;
}

.rvSheet__list{
  margin-top:14px;
}

.rvSheet__item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  border-top:1px solid #ECECEC;
}

.rvSheet__itemTitle{
  font-size:16px;
  font-weight:800;
  color:#111827;
}

.rvSheet__itemSub{
  margin-top:4px;
  font-size:13px;
  color:#6B7280;
}

/* MODAL */
.rvModal{
  position:fixed;
  inset:0;
  z-index:70;
}

.rvModal__bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.44);
  backdrop-filter:blur(4px);
}

.rvModal__card{
  position:absolute;
  left:14px;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border-radius:24px;
  padding:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.25);
}

.rvModal__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.rvModal__title{
  font-size:18px;
  font-weight:900;
  color:#111827;
}

.rvModal__sub{
  margin-top:2px;
  font-size:13px;
  color:#6B7280;
}

.rvModal__close{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid #E5E7EB;
  background:#fff;
  font-size:22px;
}

.rvModal__body{
  margin-top:16px;
}

.rvModal__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:8px 0;
  border-bottom:1px solid #F0F0F0;
}

.rvModal__row b{
  color:#111827;
}

.rvModal__row span{
  text-align:right;
  color:#374151;
}

.rvModal__actions{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.rvModal__btn{
  min-height:52px;
  border-radius:16px;
  font-size:15px;
  font-weight:900;
}

.rvModal__btn--ghost{
  border:1.5px solid #D9DDE3;
  background:#fff;
  color:#111827;
}

.rvModal__btn--solid{
  border:0;
  background:linear-gradient(180deg,#57B963 0%, #469F51 100%);
  color:#fff;
}

.rvModal__fineprint{
  margin-top:12px;
  text-align:center;
  color:#6B7280;
  font-size:12px;
}

@media (max-width: 640px){
  .rvConfig__title{
    font-size:24px;
  }

  .rvPriceBox__sale{
    font-size:46px;
  }

  .rvTextureGrid{
    gap:8px;
  }
}/* =========================
   SHEET / LISTA BONITA
========================= */

.rvpSheet {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease;
}

.rvpSheet.is-on {
  opacity: 1;
  pointer-events: auto;
}

.rvpSheet__bg {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(4px);
}

.rvpSheet__card {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 82vh;
  background: #fff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -20px 60px rgba(15, 23, 42, 0.18);
  padding: 22px 18px 18px;
  overflow: hidden;
  transform: translateY(28px);
  transition: transform .25s ease;
}

.rvpSheet.is-on .rvpSheet__card {
  transform: translateY(0);
}

.rvpSheet__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.rvpSheet__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
}

.rvpSheet__sub {
  margin-top: 6px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.35;
}

.rvpSheet__close {
  width: 58px;
  height: 58px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #111827;
  flex: 0 0 auto;
}

.rvpSheet__searchWrap {
  margin-bottom: 16px;
}

#rvpSheetSearch {
  width: 100%;
  height: 64px;
  border-radius: 20px;
  border: 1.5px solid #e5e7eb;
  background: #f8fafc;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

#rvpSheetSearch:focus {
  border-color: #55b96a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(85, 185, 106, 0.12);
}

#rvpSheetSearch::placeholder {
  color: #9ca3af;
  font-weight: 600;
}

.rvpSheet__list {
  overflow: auto;
  max-height: calc(82vh - 170px);
  padding-right: 4px;
}

.rvpSheet__list::-webkit-scrollbar {
  width: 8px;
}

.rvpSheet__list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}

.rvpSheet__item {
  min-height: 68px;
  border: 1px solid #eceff3;
  border-radius: 18px;
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
  cursor: pointer;
}

.rvpSheet__item:hover,
.rvpSheet__item:active {
  border-color: rgba(85, 185, 106, 0.45);
  background: #fcfffc;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(85, 185, 106, 0.10);
}

.rvpSheet__itemTitle {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.rvpSheet__itemSub {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
  color: #6b7280;
}

.rvpSheet__item > div:last-child {
  font-size: 22px;
  color: #9ca3af;
  font-weight: 700;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .rvpSheet__card {
    padding: 18px 14px 14px;
    border-radius: 24px 24px 0 0;
  }

  .rvpSheet__title {
    font-size: 17px;
  }

  .rvpSheet__close {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  #rvpSheetSearch {
    height: 58px;
    border-radius: 18px;
    font-size: 15px;
  }

  .rvpSheet__item {
    min-height: 62px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .rvpSheet__itemTitle {
    font-size: 15px;
  }

  .rvpSheet__itemSub {
    font-size: 12px;
  }
}/* =========================================================
   PAINEL RV CONFIG — ESTILO PREMIUM
========================================================= */

.rvConfigWrap{
  padding: 18px 14px 28px;
  background: #fff;
}

.rvConfig{
  max-width: 760px;
  margin: 0 auto;
}

.rvConfig__top{
  text-align: center;
  margin-bottom: 18px;
}

.rvConfig__kicker{
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #55b96a;
}

.rvConfig__title{
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  color: #111827;
}

.rvConfig__sub{
  margin: 8px auto 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.45;
  color: #6b7280;
}

.rvBlock{
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #eceff3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.rvBlock__head{
  margin-bottom: 14px;
}

.rvBlock__title{
  font-size: 22px;
  line-height: 1.1;
  font-weight: 850;
  color: #111827;
}

.rvBlock__sub{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
  color: #6b7280;
}

/* tipo */
.rvTypeSwitch{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rvTypeBtn{
  height: 52px;
  border-radius: 16px;
  border: 1.5px solid #dfe4ea;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: all .18s ease;
}

.rvTypeBtn.is-on{
  background: #111827;
  color: #fff;
  border-color: #111827;
  box-shadow: 0 12px 26px rgba(17,24,39,.16);
}

/* kits */
.rvKitGrid{
  display: grid;
  gap: 12px;
}

.rvKitCard{
  position: relative;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  background: #fff;
  padding: 14px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  transition: all .18s ease;
  cursor: pointer;
}

.rvKitCard.is-on{
  border-color: #55b96a;
  background: #fbfffc;
  box-shadow: 0 0 0 4px rgba(85,185,106,.10);
}

.rvKitCard__img{
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #edf0f3;
  background: #fff;
}

.rvKitCard__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .03em;
}

.rvKitCard__tag--price{
  background: #e8f7ec;
  color: #2f7d43;
}

.rvKitCard__tag--best{
  background: #111827;
  color: #fff;
}

.rvKitCard__name{
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
  color: #111827;
}

.rvKitCard__desc{
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280;
}

.rvKitCard__prices{
  margin-top: 8px;
}

.rvKitCard__compare{
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

.rvKitCard__sale{
  margin-top: 2px;
  font-size: 24px;
  font-weight: 900;
  color: #1f9d49;
  line-height: 1;
}

.rvKitCard__save{
  margin-top: 5px;
  font-size: 13px;
  font-weight: 800;
  color: #2f7d43;
}

/* preço */
.rvPriceBox{
  margin-top: 18px;
  padding: 22px 18px;
  border-radius: 26px;
  border: 1px solid #eceff3;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  text-align: center;
}

.rvPriceBox__compare{
  font-size: 22px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 800;
}

.rvPriceBox__sale{
  margin-top: 6px;
  font-size: 24px;
  font-weight: 900;
  color: #1f9d49;
  line-height: 1;
}

#rvPriceMain{
  font-size: 76px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.rvPriceBox__installments{
  margin-top: 10px;
  font-size: 19px;
  color: #374151;
  font-weight: 700;
}

.rvPriceBox__save{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef9f1;
  color: #2f7d43;
  font-size: 15px;
  font-weight: 800;
}

/* fields */
.rvField{
  margin-top: 14px;
}

.rvLabel{
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: #374151;
}

.rvSelectBtn{
  width: 100%;
  min-height: 62px;
  border-radius: 20px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  transition: all .18s ease;
}

.rvSelectBtn__arrow{
  font-size: 26px;
  line-height: 1;
  color: #9ca3af;
}

.rvSelectBtn.is-disabled{
  color: #b0b7c3;
  background: #f6f7f9;
}

/* =========================
   CORES MAIS BONITAS
========================= */

.rvColorGrid{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rvColor{
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 2px solid #dfe4ea;
  background: #fff;
  padding: 5px;
  cursor: pointer;
  transition: all .18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.rvColor::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--cor);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.08);
}

.rvColor::after{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}

.rvColor:hover{
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 10px 22px rgba(15,23,42,.10);
}

.rvColor.is-on{
  border-color: #55b96a;
  box-shadow:
    0 0 0 5px rgba(85,185,106,.16),
    0 12px 24px rgba(85,185,106,.14);
}

/* =========================
   TEXTURAS
========================= */

.rvTextureGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rvTexture{
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
  text-align: center;
  transition: all .18s ease;
}

.rvTexture img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 8px;
  background: #f7f7f7;
}

.rvTexture span{
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

.rvTexture.is-on{
  border-color: #55b96a;
  background: #fbfffc;
  box-shadow: 0 0 0 4px rgba(85,185,106,.12);
}

/* CTA final */
.rvFinal{
  margin-top: 18px;
}

.rvConfirmBtn{
  width: 100%;
  min-height: 68px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #61c46d 0%, #4aa959 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(74,169,89,.24);
}

.rvConfirmBtn__main{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
}

.rvConfirmBtn__sub{
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  opacity: .95;
}

.rvFinal__mini{
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

.rvInlineError{
  margin-top: 10px;
  display: none;
  text-align: center;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.rvInlineError.is-show{
  display: block;
}

/* =========================
   SHEET BONITA
========================= */

.rvSheet{
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.rvSheet.is-on{
  opacity: 1;
  pointer-events: auto;
}

.rvSheet__bg{
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.42);
  backdrop-filter: blur(4px);
}

.rvSheet__card{
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 82vh;
  background: #fff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -20px 60px rgba(15,23,42,.18);
  padding: 20px 16px 16px;
  transform: translateY(24px);
  transition: transform .25s ease;
  overflow: hidden;
}

.rvSheet.is-on .rvSheet__card{
  transform: translateY(0);
}

.rvSheet__head{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.rvSheet__title{
  font-size: 18px;
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
}

.rvSheet__sub{
  margin-top: 5px;
  font-size: 14px;
  color: #6b7280;
}

.rvSheet__close{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 22px;
  color: #111827;
  flex: 0 0 auto;
}

.rvSheet__searchWrap{
  margin-bottom: 14px;
}

#rvSheetSearch{
  width: 100%;
  height: 60px;
  border-radius: 18px;
  border: 1.5px solid #e5e7eb;
  background: #f8fafc;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  outline: none;
}

#rvSheetSearch:focus{
  border-color: #55b96a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(85,185,106,.12);
}

.rvSheet__list{
  max-height: calc(82vh - 160px);
  overflow: auto;
  padding-right: 4px;
}

.rvSheet__list::-webkit-scrollbar{
  width: 8px;
}

.rvSheet__list::-webkit-scrollbar-thumb{
  background: #d1d5db;
  border-radius: 999px;
}

.rvSheet__item{
  min-height: 64px;
  border: 1px solid #eceff3;
  border-radius: 16px;
  background: #fff;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .16s ease;
}

.rvSheet__item:hover,
.rvSheet__item:active{
  border-color: rgba(85,185,106,.45);
  background: #fcfffc;
  box-shadow: 0 10px 22px rgba(85,185,106,.09);
  transform: translateY(-1px);
}

.rvSheet__itemTitle{
  font-size: 15px;
  font-weight: 850;
  color: #111827;
  line-height: 1.2;
}

.rvSheet__itemSub{
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.35;
}

/* =========================
   MODAL
========================= */

.rvModal{
  position: fixed;
  inset: 0;
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.rvModal.is-on{
  opacity: 1;
  pointer-events: auto;
}

.rvModal__bg{
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.45);
  backdrop-filter: blur(4px);
}

.rvModal__card{
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 28px);
  max-width: 520px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 24px 70px rgba(15,23,42,.20);
}

.rvModal__head{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.rvModal__title{
  font-size: 18px;
  font-weight: 900;
  color: #111827;
}

.rvModal__sub{
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280;
}

.rvModal__close{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 20px;
}

.rvModal__body{
  display: grid;
  gap: 10px;
}

.rvModal__row{
  min-height: 46px;
  border: 1px solid #eceff3;
  border-radius: 14px;
  background: #fafbfc;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}

.rvModal__row b{
  color: #374151;
}

.rvModal__row span{
  text-align: right;
  font-weight: 800;
  color: #111827;
}

.rvModal__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.rvModal__btn{
  min-height: 52px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
}

.rvModal__btn--ghost{
  background: #fff;
  border: 1.5px solid #e5e7eb;
  color: #111827;
}

.rvModal__btn--solid{
  background: #111827;
  border: 0;
  color: #fff;
}

.rvModal__fineprint{
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

/* responsivo */
@media (max-width: 640px){
  .rvConfigWrap{
    padding: 16px 12px 24px;
  }

  .rvConfig__title{
    font-size: 24px;
  }

  .rvBlock{
    padding: 16px;
    border-radius: 22px;
  }

  .rvBlock__title{
    font-size: 18px;
  }

  #rvPriceMain{
    font-size: 60px;
  }

  .rvPriceBox__compare{
    font-size: 18px;
  }

  .rvPriceBox__installments{
    font-size: 16px;
  }

  .rvTextureGrid{
    gap: 10px;
  }

  .rvTexture{
    padding: 8px;
    border-radius: 18px;
  }

  .rvTexture span{
    font-size: 13px;
  }

  .rvColor{
    width: 56px;
    height: 56px;
  }

  .rvSheet__card{
    padding: 18px 14px 14px;
  }

  .rvModal__card{
    padding: 18px;
    border-radius: 22px;
  }
}.rvColorGrid--cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  
}

.rvColorCard{
  min-height: 72px;
  border-radius: 18px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  transition: all .18s ease;
}

.rvColorCard.is-on{
  border-color: #55b96a;
  background: #f8fff9;
  box-shadow: 0 0 0 4px rgba(85,185,106,.12);
}

.rvColorCard__dot{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--cor);
  border: 2px solid rgba(0,0,0,.06);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.08);
}

.rvColorCard__txt{
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}/* =========================================================
   AJUSTES FINAIS MOBILE / LISTA / KITS / CORES
========================================================= */

/* ---------------------------------
   1) LISTA DA SHEET = LISTA NORMAL
--------------------------------- */
.rvSheet__list{
  max-height: calc(82vh - 160px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 2px;
}

.rvSheet__item{
  width: 100%;
  min-height: 58px;
  margin-bottom: 10px;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  background: #fff;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(15,23,42,.03);
}

.rvSheet__itemTitle{
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
}

.rvSheet__itemSub{
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
  color: #6b7280;
}

.rvSheet__item > div:last-child{
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 700;
  color: #9ca3af;
}

/* tira qualquer largura estranha herdada */
.rvSheet__item,
.rvSheet__item *{
  max-width: 100%;
}

/* ---------------------------------
   2) CORES MAIS SEGURAS NO MOBILE
--------------------------------- */
.rvColorGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 2px;
}

.rvColor{
  width: 100%;
  min-width: 0;
  height: 74px;
  border-radius: 18px;
  border: 1.5px solid #dfe4ea;
  background: #fff;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.rvColor::before{
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--cor);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.10);
  flex: 0 0 30px;
}

.rvColor::after{
  content: attr(aria-label);
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  white-space: nowrap;
}

.rvColor.is-on{
  border-color: #65bb71;
  background: #f6fcf7;
  box-shadow: 0 0 0 3px rgba(101,187,113,.12);
}

/* ---------------------------------
   3) TEXTURAS MAIS ESTÁVEIS
--------------------------------- */
.rvTextureGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rvTexture{
  min-width: 0;
  padding: 8px;
  border-radius: 18px;
  box-sizing: border-box;
}

.rvTexture img{
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.rvTexture span{
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

/* ---------------------------------
   4) KIT CARD ARRUMADO
--------------------------------- */
.rvKitGrid{
  display: grid;
  gap: 14px;
}

.rvKitCard{
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 14px 14px;
  border: 1.5px solid #e6e9ee;
  border-radius: 22px;
  background: #fff;
  overflow: visible;
  box-sizing: border-box;
}

.rvKitCard.is-on{
  border-color: #67bf72;
  background: #fcfffc;
  box-shadow: 0 0 0 3px rgba(103,191,114,.12);
}

.rvKitCard__img{
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #eef1f4;
  background: #fff;
}

.rvKitCard__body{
  min-width: 0;
}

.rvKitCard__name{
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
  color: #111827;
  word-break: normal;
  overflow-wrap: break-word;
  padding-right: 4px;
}

.rvKitCard__desc{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: #6b7280;
}

.rvKitCard__prices{
  margin-top: 8px;
}

.rvKitCard__compare{
  font-size: 13px;
  line-height: 1;
  color: #9ca3af;
  text-decoration: line-through;
}

.rvKitCard__sale{
  margin-top: 4px;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  color: #20a548;
}

.rvKitCard__save{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  color: #3f8d52;
}

/* TAG SOBREPOSTA NA BORDA */
.rvKitCard__tag{
  position: absolute;
  top: -11px;
  right: 14px;
  z-index: 2;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(15,23,42,.10);
}

.rvKitCard__tag--price,
.rvKitCard__tag--best{
  background: #65bb71;
  color: #fff;
}

/* ---------------------------------
   5) PREÇO PRINCIPAL
--------------------------------- */
#rvPriceMain{
  font-size: 68px;
  line-height: .92;
  letter-spacing: -0.04em;
}

/* ---------------------------------
   6) MOBILE FINO
--------------------------------- */
@media (max-width: 640px){

  .rvBlock{
    padding: 16px 14px;
  }

  .rvSelectBtn{
    min-height: 58px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 15px;
  }

  .rvColorGrid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .rvColor{
    height: 68px;
    padding: 8px 6px;
    border-radius: 16px;
  }

  .rvColor::before{
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .rvColor::after{
    font-size: 12px;
  }

  .rvTextureGrid{
    gap: 8px;
  }

  .rvTexture{
    border-radius: 16px;
    padding: 7px;
  }

  .rvTexture img{
    height: 74px;
    border-radius: 12px;
  }

  .rvTexture span{
    font-size: 12px;
  }

  .rvKitCard{
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 12px 12px;
    border-radius: 20px;
  }

  .rvKitCard__img{
    width: 76px;
    height: 76px;
    border-radius: 14px;
  }

  .rvKitCard__name{
    font-size: 15px;
    line-height: 1.08;
  }

  .rvKitCard__desc{
    font-size: 12px;
  }

  .rvKitCard__sale{
    font-size: 19px;
  }

  .rvKitCard__compare{
    font-size: 12px;
  }

  .rvKitCard__tag{
    top: -10px;
    right: 12px;
    min-height: 26px;
    padding: 0 12px;
    font-size: 10px;
  }

  #rvPriceMain{
    font-size: 56px;
  }
}/* =========================
   CORES - AJUSTE FINAL
========================= */
.rvColorGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 6px;
}

.rvColor{
  width: 100%;
  min-width: 0;
  height: 84px;
  border-radius: 20px;
  border: 1.5px solid #dfe4ea;
  background: #fff;
  padding: 10px 8px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;
  position: relative;
}

.rvColor::before{
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--cor);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.10);
  flex: 0 0 34px;
}

.rvColor::after{
  content: attr(aria-label);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: #111827;
  white-space: nowrap;
}

.rvColor.is-on{
  border-color: #67bf72;
  background: #f7fcf7;
  box-shadow: 0 0 0 3px rgba(103,191,114,.12);
}

@media (max-width: 640px){
  .rvColor{
    height: 80px;
    gap: 8px;
    padding: 8px 6px;
  }

  .rvColor::before{
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .rvColor::after{
    font-size: 11px;
  }
}/* =========================
   SHEET MAIS ALTA E LIMPA
========================= */
.rvSheet{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.rvSheet.is-on{
  pointer-events: auto;
}

.rvSheet__bg{
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: .22s ease;
}

.rvSheet.is-on .rvSheet__bg{
  opacity: 1;
}

.rvSheet__card{
  position: relative;
  width: 100%;
  max-width: 760px;
  height: 86vh;
  max-height: 86vh;
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 22px 18px 18px;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.rvSheet.is-on .rvSheet__card{
  transform: translateY(0);
}

.rvSheet__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.rvSheet__title{
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  color: #111827;
}

.rvSheet__sub{
  margin-top: 4px;
  font-size: 14px;
  color: #6b7280;
}

.rvSheet__close{
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 28px;
  color: #111827;
  flex: 0 0 auto;
}

.rvSheet__searchWrap{
  margin-bottom: 14px;
}

#rvSheetSearch{
  width: 100%;
  height: 64px;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  box-sizing: border-box;
}

.rvSheet__list{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  padding-bottom: 18px;
}.rvSheet__item{
  width: 100%;
  min-height: 60px;
  margin-bottom: 10px;
  border: 1px solid #e8ebf0;
  border-radius: 18px;
  background: #fff;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(15,23,42,.03);
}

.rvSheet__itemTitle{
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.rvSheet__itemSub{
  margin-top: 3px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
}

.rvSheet__item > div:last-child{
  font-size: 22px;
  font-weight: 700;
  color: #9ca3af;
  flex: 0 0 auto;
}/* =========================
   KIT CARD - REFINO FINAL
========================= */
.rvKitGrid{
  display: grid;
  gap: 16px;
}

.rvKitCard{
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 14px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
  box-sizing: border-box;
  overflow: visible;
}

.rvKitCard.is-on{
  border-color: #69bf73;
  box-shadow: 0 0 0 3px rgba(105,191,115,.10);
  background: #fcfffc;
}

.rvKitCard__img{
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #eef1f4;
  background: #fff;
}

.rvKitCard__body{
  min-width: 0;
  padding-top: 6px;
}

.rvKitCard__name{
  font-size: 16px;
  line-height: 1.12;
  font-weight: 900;
  color: #111827;
  margin: 0 0 6px;
  padding-right: 8px;
  word-break: normal;
  overflow-wrap: break-word;
}

.rvKitCard__desc{
  font-size: 12px;
  line-height: 1.35;
  color: #6b7280;
  margin-bottom: 6px;
}

.rvKitCard__compare{
  font-size: 12px;
  line-height: 1;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.rvKitCard__sale{
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
  color: #24a64d;
}

.rvKitCard__save{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  color: #478857;
}

/* BADGE SOBREPOSTA NA BORDA */
.rvKitCard__tag{
  position: absolute;
  top: -12px;
  right: 16px;
  z-index: 2;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  background: #67bf72;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(15,23,42,.12);
}

.rvKitCard__tag--price,
.rvKitCard__tag--best{
  background: #67bf72;
  color: #fff;
}

@media (max-width: 640px){
  .rvKitCard{
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 12px 12px;
    border-radius: 22px;
  }

  .rvKitCard__img{
    width: 84px;
    height: 84px;
    border-radius: 16px;
  }

  .rvKitCard__name{
    font-size: 15px;
    line-height: 1.08;
    padding-right: 4px;
  }

  .rvKitCard__desc{
    font-size: 11.5px;
    margin-bottom: 5px;
  }

  .rvKitCard__compare{
    font-size: 11px;
  }

  .rvKitCard__sale{
    font-size: 19px;
  }

  .rvKitCard__save{
    font-size: 11px;
  }

  .rvKitCard__tag{
    top: -11px;
    right: 12px;
    min-height: 28px;
    padding: 0 12px;
    font-size: 10px;
  }
}body.rv-sheet-open{
  overflow: hidden;
}.rvMiniRating{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}

.rvMiniRating__stars{
  font-size: 26px;
  line-height: 1;
  letter-spacing: 2px;
  color: #F4C318;
}

.rvMiniRating__score{
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  color: #111827;
}

.rvMiniRating__count{
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  color: #41B95D;
}

@media (max-width: 640px){
  .rvMiniRating{
    gap: 8px;
    margin: 8px 0 12px;
  }

  .rvMiniRating__stars{
    font-size: 22px;
    letter-spacing: 1px;
  }

  .rvMiniRating__score{
    font-size: 17px;
  }

  .rvMiniRating__count{
    font-size: 16px;
  }
}/* ===== KITS MOBILE AJUSTE FINAL ===== */
.rvKitCard{
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 22px 16px 16px;
  border-radius: 26px;
  border: 1.5px solid #DDE5DB;
  background: #fff;
  box-sizing: border-box;
  overflow: visible;
}

.rvKitCard.is-on{
  border-color: #7BC17F;
  box-shadow: 0 10px 24px rgba(90, 160, 96, 0.10);
}

.rvKitCard__media{
  width: 108px;
  min-width: 108px;
  height: 108px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #E8ECEF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rvKitCard__media img{
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
}

.rvKitCard__content{
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding-top: 6px;
}

.rvKitCard__title{
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0F172A;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: 100%;
}

.rvKitCard__desc{
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  color: #6B7280;
}

.rvKitCard__compare{
  margin: 0;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #9CA3AF;
  text-decoration: line-through;
}

.rvKitCard__sale{
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  color: #45AE57;
  letter-spacing: -0.03em;
}

.rvKitCard__save{
  display: none;
}

/* TAG SOBREPOSTA CERTA */
.rvKitCard__tag{
  position: absolute;
  top: -14px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6BC46E 0%, #56B95F 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(86,185,95,.22);
  border: 3px solid #fff;
  white-space: nowrap;
}

/* garante que o grid não esmague o texto */
.rvKitGrid{
  display: grid;
  gap: 16px;
}

/* MOBILE */
@media (max-width: 640px){
  .rvKitCard{
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 14px 14px;
    border-radius: 24px;
  }

  .rvKitCard__media{
    width: 94px;
    min-width: 94px;
    height: 94px;
    border-radius: 18px;
  }

  .rvKitCard__content{
    gap: 3px;
    padding-top: 4px;
  }

  .rvKitCard__title{
    font-size: 17px;
    line-height: 1.12;
  }

  .rvKitCard__desc{
    font-size: 13px;
    line-height: 1.28;
  }

  .rvKitCard__compare{
    font-size: 13px;
  }

  .rvKitCard__sale{
    font-size: 18px;
  }

  .rvKitCard__tag{
    top: -12px;
    right: 12px;
    min-height: 32px;
    padding: 0 14px;
    font-size: 12px;
  }
}

/* ===== RV KIT CARD FINAL ===== */
.rvKitGrid{
  display:grid;
  gap:16px;
}

.rvKitCard{
  position:relative;
  display:grid;
  grid-template-columns:100px minmax(0, 1fr);
  gap:14px;
  align-items:center;
  width:100%;
  padding:20px 16px 16px;
  border-radius:24px;
  border:1.5px solid #DDE5DB;
  background:#fff;
  box-sizing:border-box;
  overflow:hidden;
  cursor:pointer;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.rvKitCard.is-on{
  border-color:#7BC17F;
  box-shadow:0 10px 24px rgba(90, 160, 96, 0.10);
}

.rvKitCard:focus-visible{
  outline:none;
  border-color:#56B95F;
  box-shadow:0 0 0 3px rgba(86,185,95,.18);
}

.rvKitCard__tag{
  position:absolute;
  top:10px;
  right:12px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:calc(100% - 136px);
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(180deg, #6BC46E 0%, #56B95F 100%);
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.02em;
  line-height:1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  box-shadow:0 8px 18px rgba(86,185,95,.20);
}

.rvKitCard__media{
  width:100px;
  min-width:100px;
  height:100px;
  border-radius:20px;
  border:1px solid #E8ECEF;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.rvKitCard__media img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.rvKitCard__content{
  min-width:0;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:4px;
}

.rvKitCard__title{
  margin:0;
  width:100%;
  font-size:18px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:-.02em;
  color:#0F172A;
  white-space:normal;
  word-break:normal;
  overflow-wrap:anywhere;
}

.rvKitCard__desc{
  margin:0;
  width:100%;
  font-size:14px;
  line-height:1.35;
  font-weight:500;
  color:#6B7280;
  white-space:normal;
  word-break:normal;
  overflow-wrap:anywhere;
}

.rvKitCard__compare{
  margin:2px 0 0;
  width:100%;
  font-size:14px;
  line-height:1.2;
  font-weight:700;
  color:#9CA3AF;
  text-decoration:line-through;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.rvKitCard__sale{
  margin:0;
  width:100%;
  font-size:22px;
  line-height:1.1;
  font-weight:900;
  color:#45AE57;
  letter-spacing:-.03em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

@media (max-width: 640px){
  .rvKitGrid{
    gap:14px;
  }

  .rvKitCard{
    grid-template-columns:100px minmax(0, 1fr);
    gap:12px;
    padding:18px 14px 14px;
    border-radius:22px;
  }

  .rvKitCard__tag{
    top:8px;
    right:10px;
    max-width:calc(100% - 128px);
    min-height:28px;
    padding:0 10px;
    font-size:10px;
  }

  .rvKitCard__media{
    width:100px;
    min-width:100px;
    height:100px;
    border-radius:18px;
  }

  .rvKitCard__content{
    gap:3px;
  }

  .rvKitCard__title{
    font-size:16px;
    line-height:1.12;
  }

  .rvKitCard__desc{
    font-size:13px;
    line-height:1.3;
  }

  .rvKitCard__compare{
    font-size:13px;
  }

  .rvKitCard__sale{
    font-size:18px;
  }
}
/* ===== RV CONFIG PREMIUM MOTION ===== */
@keyframes pulse-soft{
  0%, 100%{
    transform:translateY(0) scale(1);
    box-shadow:0 14px 30px rgba(69,174,87,.22);
    opacity:1;
  }
  50%{
    transform:translateY(-1px) scale(1.015);
    box-shadow:0 18px 36px rgba(69,174,87,.30);
    opacity:1;
  }
}

@keyframes shine-pass{
  0%{
    transform:translate3d(-140%, 0, 0) skewX(-18deg);
    opacity:0;
  }
  12%{
    opacity:.0;
  }
  30%{
    opacity:.38;
  }
  55%{
    opacity:.12;
  }
  100%{
    transform:translate3d(240%, 0, 0) skewX(-18deg);
    opacity:0;
  }
}

/* Tipo selecionado */
.rvTypeBtn{
  transition:
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    color .28s ease,
    transform .28s ease;
}

.rvTypeBtn.is-on{
  background:linear-gradient(135deg, #0f172a 0%, #ea580c 100%);
  border-color:rgba(234,88,12,.65);
  color:#fff;
  box-shadow:
    0 12px 24px rgba(15,23,42,.22),
    0 8px 18px rgba(234,88,12,.18);
}

/* Botão confirmar */
.rvConfirmBtn{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  will-change:transform, box-shadow;
  animation:pulse-soft 3.6s ease-in-out infinite;
}

.rvConfirmBtn::after{
  content:"";
  position:absolute;
  inset:-20%;
  width:42%;
  background:linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.10) 35%,
    rgba(255,255,255,.42) 50%,
    rgba(255,255,255,.10) 65%,
    rgba(255,255,255,0) 100%
  );
  pointer-events:none;
  transform:translate3d(-160%, 0, 0) skewX(-18deg);
  animation:shine-pass 3.8s ease-in-out infinite;
  z-index:0;
}

.rvConfirmBtn > *{
  position:relative;
  z-index:1;
}

/* Preço principal */
#rvPriceMain{
  position:relative;
  display:inline-block;
  color:inherit;
  -webkit-background-clip:text;
  background-clip:text;
}

#rvPriceMain::after{
  content:"";
  position:absolute;
  inset:-8% -14%;
  background:linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.08) 30%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.08) 70%,
    rgba(255,255,255,0) 100%
  );
  mix-blend-mode:screen;
  pointer-events:none;
  transform:translate3d(-170%, 0, 0) skewX(-16deg);
  animation:shine-pass 4.2s ease-in-out infinite;
}

/* Botão prosseguir do modal */
.rvModal__btn--solid{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:linear-gradient(135deg, #45AE57 0%, #2f9a43 100%);
  border-color:#2f9a43;
  color:#fff;
  box-shadow:0 12px 24px rgba(69,174,87,.20);
  animation:pulse-soft 4.8s ease-in-out infinite;
}

.rvModal__btn--solid::after{
  content:"";
  position:absolute;
  inset:-24%;
  width:40%;
  background:linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.08) 38%,
    rgba(255,255,255,.30) 50%,
    rgba(255,255,255,.08) 62%,
    rgba(255,255,255,0) 100%
  );
  pointer-events:none;
  transform:translate3d(-165%, 0, 0) skewX(-18deg);
  animation:shine-pass 5.2s ease-in-out infinite;
  z-index:0;
}

.rvModal__btn--solid > *{
  position:relative;
  z-index:1;
}

.rvModal__btn--solid:hover,
.rvModal__btn--solid:focus-visible{
  background:linear-gradient(135deg, #4aba5e 0%, #2f9a43 100%);
  border-color:#27863a;
  box-shadow:0 16px 30px rgba(69,174,87,.26);
}

.rvConfirmBtn:hover,
.rvConfirmBtn:focus-visible{
  box-shadow:0 18px 34px rgba(69,174,87,.30);
}

@media (prefers-reduced-motion: reduce){
  .rvConfirmBtn,
  .rvModal__btn--solid{
    animation:none;
  }

  .rvConfirmBtn::after,
  .rvModal__btn--solid::after,
  #rvPriceMain::after{
    animation:none;
    opacity:0;
  }
}

@media (max-width: 640px){
  .rvConfirmBtn,
  .rvModal__btn--solid{
    transform:none;
  }

  .rvTypeBtn.is-on{
    box-shadow:
      0 8px 18px rgba(15,23,42,.18),
      0 6px 14px rgba(234,88,12,.14);
  }
}
/* =========================
   SOCIAL PROOF - ROVERA
========================= */
.rvSocialProof{
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 9998;
  width: min(360px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 12px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,249,251,.97));
  border: 1px solid rgba(16,24,40,.08);
  box-shadow:
    0 18px 50px rgba(0,0,0,.16),
    0 4px 14px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.98);
  transition:
    opacity .32s ease,
    transform .32s ease,
    visibility .32s ease;
  pointer-events: none;
}

.rvSocialProof.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.rvSocialProof__icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #4FA65A 0%, #3F8F4A 100%);
  box-shadow:
    0 10px 22px rgba(79,166,90,.28),
    inset 0 1px 0 rgba(255,255,255,.25);
  flex-shrink: 0;
}

.rvSocialProof__icon svg{
  width: 22px;
  height: 22px;
}

.rvSocialProof__content{
  min-width: 0;
}

.rvSocialProof__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.rvSocialProof__top strong{
  color: #101828;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rvSocialProof__time{
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: #4FA65A;
  background: rgba(79,166,90,.10);
  border: 1px solid rgba(79,166,90,.16);
  padding: 4px 8px;
  border-radius: 999px;
}

.rvSocialProof__line{
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.3;
}

.rvSocialProof__line b{
  color: #101828;
  font-weight: 700;
}

.rvSocialProof__product{
  margin: 4px 0 0;
  color: #1D2939;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rvSocialProof__close{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #98A2B3;
  cursor: pointer;
  border-radius: 10px;
  transition: background .18s ease, color .18s ease;
}

.rvSocialProof__close:hover{
  background: rgba(16,24,40,.05);
  color: #101828;
}

.rvSocialProof__close svg{
  width: 18px;
  height: 18px;
}

/* Mobile */
@media (max-width: 768px){
  .rvSocialProof{
    left: 12px;
    right: 12px;
    bottom: 92px; /* sobe para não bater na navegação do celular */
    width: auto;
    border-radius: 18px;
    padding: 13px 12px 13px 11px;
    grid-template-columns: 42px 1fr 24px;
    gap: 10px;
  }

  .rvSocialProof__icon{
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .rvSocialProof__top strong{
    font-size: 13px;
  }

  .rvSocialProof__line,
  .rvSocialProof__product{
    font-size: 12px;
  }

  .rvSocialProof__time{
    font-size: 10px;
    padding: 3px 7px;
  }
}/* =========================================
   1) SOCIAL PROOF MOBILE SEM CORTAR
========================================= */
.rvSocialProof{
  max-width: min(380px, calc(100vw - 24px));
  box-sizing: border-box;
  overflow: hidden;
}

.rvSocialProof__content{
  min-width: 0;
  overflow: hidden;
}

.rvSocialProof__top,
.rvSocialProof__line,
.rvSocialProof__product{
  min-width: 0;
}

.rvSocialProof__product{
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 768px){
  .rvSocialProof{
    left: 12px !important;
    right: 12px !important;
    bottom: 84px !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;

    grid-template-columns: 42px minmax(0,1fr) 22px !important;
    gap: 10px !important;
    padding: 12px 10px 12px 10px !important;
    border-radius: 16px !important;
  }

  .rvSocialProof__icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .rvSocialProof__top{
    gap: 6px;
    margin-bottom: 2px;
  }

  .rvSocialProof__top strong{
    font-size: 13px;
    line-height: 1.1;
  }

  .rvSocialProof__time{
    font-size: 10px;
    padding: 3px 6px;
  }

  .rvSocialProof__line{
    font-size: 12px;
    line-height: 1.25;
  }

  .rvSocialProof__product{
    font-size: 11px;
    line-height: 1.28;
    margin-top: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .rvSocialProof__close{
    width: 22px;
    height: 22px;
  }

  .rvSocialProof__close svg{
    width: 14px;
    height: 14px;
  }
}

/* =========================================
   2) TAG DOS KITS NA POSIÇÃO CERTA
========================================= */

.rvKitCard,
.rvpKit,
.rvKit{
  position: relative;
  overflow: visible !important;
  padding-top: 26px !important; /* cria espaço para a tag */
}

.rvKitCard__tag,
.rvpKit__tag{
  position: absolute !important;
  top: 0 !important;
  right: 16px !important;
  transform: translateY(-50%) !important;

  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 0 16px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  white-space: nowrap;

  background: #6DBB6A !important;
  color: #fff !important;
  border: 3px solid #fff !important;
  box-shadow: 0 10px 22px rgba(109,187,106,.22) !important;
}

.rvKitCard__tag--best,
.rvKitCard__tag--price,
.rvpKit__tag--best,
.rvpKit__tag--price{
  background: #6DBB6A !important;
  color: #fff !important;
}

/* reserva espaço melhor pro conteúdo do card */
.rvKitCard__content,
.rvpKit__main{
  padding-top: 2px !important;
}

/* evita texto encostar na tag */
@media (max-width: 768px){
  .rvKitCard,
  .rvpKit,
  .rvKit{
    padding-top: 30px !important;
  }

  .rvKitCard__tag,
  .rvpKit__tag{
    right: 12px !important;
    min-height: 32px;
    padding: 0 14px !important;
    font-size: 11px !important;
  }
}