

: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), #ff7a2b);
  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(229,70,0,.55);
  box-shadow:0 0 0 3px rgba(229,70,0,.12);
}

/* 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(229,70,0,.55);
  box-shadow:0 0 0 3px rgba(229,70,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(229,70,0,.55);
  box-shadow:0 0 0 3px rgba(229,70,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(229,70,0,.35);
  color:var(--accent);
  background:rgba(229,70,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,
    #E5460F,
    #ff6a33
  );
  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;
}