:root{
  --yellow-400:#fff35c;
  --yellow-500:#ffe600;
  --yellow-600:#e6ce00;
  --gold-700:#7a5c00;
  --ink-900:#1a1615;
  --ink-800:#272120;
  --ink-700:#382f2e;
  --gray-100:#f5f5f4;
  --gray-200:#e6e3e1;
  --gray-500:#6b6461;
  --white:#ffffff;
  --whatsapp:#25d366;
  --whatsapp-dark:#1ea952;
  --red:#e11d3c;
  --radius:16px;
  --shadow:0 20px 45px -20px rgba(15,27,38,.35);
  --font:'Poppins', system-ui, -apple-system, sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font);
  color:var(--ink-900);
  background:var(--white);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.container--narrow{max-width:820px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--font);
  font-weight:700;
  font-size:16px;
  padding:16px 28px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space:nowrap;
}
.btn--primary{
  background:linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
  color:var(--ink-900);
  box-shadow:0 12px 30px -10px rgba(230,206,0,.6);
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 16px 34px -8px rgba(230,206,0,.7);}
.btn--whatsapp{
  background:var(--whatsapp);
  color:#fff;
  box-shadow:0 12px 30px -10px rgba(37,211,102,.6);
}
.btn--whatsapp:hover{background:var(--whatsapp-dark);transform:translateY(-2px);}
.btn--ghost{
  background:transparent;
  border:2px solid var(--yellow-500);
  color:var(--yellow-500);
}
.btn--ghost:hover{background:var(--yellow-500);color:var(--ink-900);}
.btn--large{padding:19px 36px;font-size:18px;}
.btn--small{padding:10px 20px;font-size:14px;}
.btn--full{width:100%;}
.icon-whatsapp{width:22px;height:22px;flex:none;}

/* ---------- Header ---------- */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--ink-900);
  box-shadow:0 2px 16px rgba(0,0,0,.35);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:6px 24px;
}
.header__logo{
  height:100px;
  width:auto;
  border-radius:16px;
}
.header__nav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:auto;
  margin-right:8px;
}
.header__nav-link{
  color:#fff;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  opacity:.88;
  transition:opacity .15s ease, color .15s ease;
}
.header__nav-link:hover{
  opacity:1;
  color:var(--yellow-500);
}
.header__nav-link--highlight{
  opacity:1;
  color:var(--yellow-500);
  border:1.5px solid var(--yellow-500);
  border-radius:999px;
  padding:6px 14px;
}
.header__nav-link--highlight:hover{
  background:var(--yellow-500);
  color:var(--ink-900);
}

/* ---------- Promo bar (revenda/lojistas) ---------- */
.promo-bar{
  background:linear-gradient(90deg, var(--yellow-400), var(--yellow-600));
}
.promo-bar__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  padding:9px 24px;
}
.promo-bar__text{
  color:var(--ink-900);
  font-size:14px;
  font-weight:600;
  text-align:center;
}
.promo-bar__text strong{font-weight:800;}
.promo-bar__link{
  flex:none;
  background:var(--ink-900);
  color:var(--yellow-500);
  font-weight:700;
  font-size:13.5px;
  padding:6px 14px;
  border-radius:999px;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .15s ease;
}
.promo-bar__link:hover{transform:scale(1.05);}

#revenda{scroll-margin-top:110px;}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  padding:64px 0 40px;
  background:radial-gradient(1200px 500px at 80% -10%, rgba(255,230,0,.14), transparent 60%), var(--ink-900);
  color:#fff;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 300px at 10% 100%, rgba(255,230,0,.16), transparent 60%);
  pointer-events:none;
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}
.badge{
  display:inline-block;
  background:rgba(255,230,0,.14);
  border:1px solid rgba(255,230,0,.4);
  color:var(--yellow-500);
  font-weight:600;
  font-size:13px;
  padding:8px 16px;
  border-radius:999px;
  margin-bottom:20px;
}
.hero h1{
  font-size:clamp(32px,4.4vw,52px);
  font-weight:800;
  line-height:1.12;
  margin-bottom:18px;
  letter-spacing:-0.5px;
}
.text-gradient{
  background:linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__subtitle{
  font-size:17px;
  color:#d6d1cd;
  max-width:520px;
  margin-bottom:22px;
}
.hero__bullets{margin-bottom:30px;}
.hero__bullets li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  color:#ece8e4;
  margin-bottom:8px;
  font-weight:500;
}
.check-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  min-width:20px;
  border-radius:6px;
  background:linear-gradient(135deg,#3ecf6e,#1fae4d);
  box-shadow:0 2px 5px rgba(31,174,77,.35);
}
.check-ico::after{
  content:'';
  width:8px;
  height:4px;
  margin-bottom:2px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(-45deg);
}
.hero__cta{display:flex;flex-direction:column;align-items:flex-start;gap:10px;}
.hero__cta-note{font-size:13px;color:#a89f99;}

.hero__image{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.hero__image::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:60%;
  height:26px;
  background:radial-gradient(ellipse, rgba(0,0,0,.45), transparent 70%);
  border-radius:50%;
  z-index:0;
}
.hero__video-frame{
  position:relative;
  z-index:2;
  width:100%;
  max-width:300px;
  margin:0 auto;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,.5));
}
.hero__video{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:9 / 16;
  border-radius:22px;
  background:#0c0c0c;
  object-fit:cover;
  box-shadow:0 0 0 6px rgba(255,255,255,.08), 0 0 0 7px rgba(255,255,255,.14);
}
.hero__video-mute{
  position:absolute;
  right:14px;
  bottom:14px;
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:rgba(12,12,12,.55);
  backdrop-filter:blur(4px);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .15s ease, transform .15s ease;
}
.hero__video-mute:hover{background:rgba(12,12,12,.75);transform:scale(1.05);}
.hero__video-mute svg{width:18px;height:18px;}
.hero__video-mute .mute-slash{opacity:1;}
.hero__video-mute .sound-wave{opacity:0;}
.hero__video-mute[aria-pressed="true"] .mute-slash{opacity:0;}
.hero__video-mute[aria-pressed="true"] .sound-wave{opacity:1;}

/* ---------- Trust bar ---------- */
.trust{
  background:var(--gray-100);
  border-bottom:1px solid var(--gray-200);
  padding:24px 0;
}
.trust__inner{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  text-align:center;
}
.trust__item strong{
  display:block;
  font-size:22px;
  font-weight:800;
  color:var(--ink-900);
}
.trust__item span{
  font-size:13px;
  color:var(--gray-500);
}

/* ---------- Sections ---------- */
.section{padding:88px 0;}
.section--dark{
  background:var(--ink-900);
  color:#fff;
}
.section--cta{
  background:linear-gradient(160deg, var(--ink-900), var(--ink-800));
  color:#fff;
}
.section__head{
  text-align:center;
  max-width:680px;
  margin:0 auto 52px;
}
.section__head--light h2{color:#fff;}
.section__head--light p{color:#d6d1cd;}
.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--gold-700);
  margin-bottom:12px;
}
.section__head--light .eyebrow{color:var(--yellow-500);}
.section__head h2{
  font-size:clamp(26px,3.2vw,38px);
  font-weight:800;
  margin-bottom:14px;
  letter-spacing:-0.5px;
}
.section__head p{
  color:var(--gray-500);
  font-size:16px;
}

/* ---------- Products ---------- */
.products{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.product-card{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  transition:transform .2s ease;
}
.product-card:hover{transform:translateY(-4px);}
.product-card__image{
  position:relative;
  background:radial-gradient(ellipse at 50% 85%, rgba(255,230,0,.14), transparent 60%), linear-gradient(180deg,#f2f0ee,#e2ddd8);
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-card__image::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:70%;
  height:22px;
  background:radial-gradient(ellipse, rgba(15,27,38,.25), transparent 70%);
  border-radius:50%;
  z-index:0;
}
.product-card__image img{
  position:relative;
  z-index:1;
  max-height:320px;
  max-width:100%;
  width:auto;
  margin:0 auto;
  filter:drop-shadow(0 14px 18px rgba(15,27,38,.25));
}
.tag{
  position:absolute;
  top:16px;
  left:16px;
  background:var(--red);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:6px 12px;
  border-radius:999px;
}
.product-card__body{
  padding:28px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.product-card__body h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:8px;
}
.product-card__body h3 span{color:var(--gold-700);}
.product-card__desc{
  color:var(--gray-500);
  font-size:14.5px;
  margin-bottom:18px;
}
.feature-list{margin-bottom:20px;}
.feature-list li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14.5px;
  padding:6px 0;
  border-bottom:1px dashed var(--gray-200);
}
.feature-list li span.check-ico{flex-shrink:0;}
.product-card__colors{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--gray-500);
  margin-bottom:20px;
}
.dot{
  width:22px;height:22px;border-radius:50%;
  display:inline-block;
  border:2px solid var(--gray-200);
  cursor:pointer;
  padding:0;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.dot:hover{transform:scale(1.12);}
.dot.is-active{
  border-color:var(--ink-900);
  box-shadow:0 0 0 3px rgba(255,230,0,.55);
}
.dot:focus-visible{outline:2px solid var(--yellow-600);outline-offset:2px;}
.product-card__image{transition:opacity .18s ease;}
.product-card__image.is-swapping{opacity:.4;}
.product-card__price{
  margin-top:auto;
  margin-bottom:18px;
  padding-top:14px;
  border-top:1px solid var(--gray-200);
}
.price__old{
  display:block;
  font-size:13px;
  color:var(--gray-500);
  font-weight:600;
}
.price__value{
  font-size:32px;
  font-weight:800;
  color:var(--ink-900);
}
.price__value small{font-size:16px;font-weight:600;}
.price__install{
  display:block;
  font-size:13px;
  color:var(--gold-700);
  font-weight:600;
}

/* ---------- Benefits ---------- */
.benefits{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:24px;
}
.benefit{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:28px 22px;
  text-align:center;
}
.benefit__icon{font-size:32px;margin-bottom:14px;}
.benefit h4{font-size:17px;font-weight:700;margin-bottom:8px;}
.benefit p{font-size:14px;color:#b8b2ad;}

/* ---------- Revenda / Lojistas ---------- */
.wholesale__box{
  position:relative;
  overflow:hidden;
  background:radial-gradient(900px 300px at 15% 0%, rgba(255,230,0,.12), transparent 60%), var(--ink-900);
  border-radius:var(--radius);
  padding:52px 40px;
  text-align:center;
  color:#fff;
}
.wholesale__box h2{color:#fff;margin-bottom:14px;}
.wholesale__box > p{
  max-width:560px;
  margin:0 auto 24px;
  color:#d6d1cd;
  font-size:16px;
}
.wholesale__list{
  display:inline-flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 28px;
  margin-bottom:30px;
}
.wholesale__list li{
  margin-bottom:0;
  padding:0;
  border-bottom:none;
  color:#ece8e4;
}

/* ---------- Galeria ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:200px;
  grid-auto-flow:dense;
  gap:14px;
}
.gallery-item{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  padding:0;
  border:none;
  border-radius:14px;
  overflow:hidden;
  cursor:zoom-in;
  background:var(--gray-100);
}
.gallery-item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-item::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,.28), transparent 45%);
  opacity:0;
  transition:opacity .25s ease;
}
.gallery-item:hover img{transform:scale(1.06);}
.gallery-item:hover::after{opacity:1;}
.gallery-item:nth-child(1){grid-column:span 2;grid-row:span 2;}
.gallery-item:nth-child(6){grid-column:span 2;grid-row:span 2;}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(10,10,10,.92);
  padding:24px;
}
.lightbox[hidden]{display:none;}
.lightbox__img{
  max-width:min(90vw, 900px);
  max-height:86vh;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.lightbox__close{
  position:absolute;
  top:18px;
  right:22px;
  background:none;
  border:none;
  color:#fff;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  padding:6px;
}
.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.1);
  border:none;
  color:#fff;
  width:46px;
  height:46px;
  border-radius:50%;
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .15s ease;
}
.lightbox__nav:hover{background:rgba(255,255,255,.22);}
.lightbox__nav--prev{left:18px;}
.lightbox__nav--next{right:18px;}

/* ---------- Testimonials ---------- */
.testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial{
  background:var(--gray-100);
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:28px;
}
.testimonial__stars{color:var(--yellow-600);letter-spacing:2px;margin-bottom:12px;font-size:15px;}
.testimonial p{font-size:14.5px;color:var(--ink-800);margin-bottom:16px;font-style:italic;}
.testimonial strong{display:block;font-size:14px;}
.testimonial span{font-size:13px;color:var(--gray-500);}

/* ---------- CTA / Lead form ---------- */
.cta-box{
  max-width:560px;
  margin:0 auto;
  background:#fff;
  border-radius:20px;
  padding:36px;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.5);
  color:var(--ink-900);
}
.lead-form__honeypot{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
  opacity:0;
}
.lead-form__field{margin-bottom:18px;}
.lead-form__field label{
  display:block;
  font-size:13.5px;
  font-weight:600;
  margin-bottom:6px;
  color:var(--ink-800);
}
.field-optional{
  font-weight:400;
  color:var(--gray-500);
  font-size:12.5px;
}
.lead-form__field input,
.lead-form__field select{
  width:100%;
  padding:13px 16px;
  border:1.5px solid var(--gray-200);
  border-radius:10px;
  font-family:var(--font);
  font-size:15px;
  background:var(--gray-100);
  transition:border .15s ease;
}
.lead-form__field input:focus,
.lead-form__field select:focus{
  outline:none;
  border-color:var(--yellow-600);
  background:#fff;
}
.lead-form__field input.invalid{border-color:var(--red);}
.error-msg{
  display:block;
  color:var(--red);
  font-size:12.5px;
  margin-top:4px;
  min-height:14px;
}
.lead-form__privacy{
  text-align:center;
  font-size:12.5px;
  color:var(--gray-500);
  margin-top:14px;
}

.success-box{text-align:center;}
.success-box__icon{font-size:48px;margin-bottom:14px;}
.success-box h3{font-size:22px;font-weight:800;margin-bottom:10px;}
.success-box p{color:var(--gray-500);font-size:14.5px;margin-bottom:24px;}

/* ---------- FAQ ---------- */
.faq__item{
  background:var(--gray-100);
  border:1px solid var(--gray-200);
  border-radius:12px;
  padding:18px 22px;
  margin-bottom:12px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:700;
  font-size:15.5px;
  list-style:none;
  position:relative;
  padding-right:24px;
}
.faq__item summary::-webkit-details-marker{display:none;}
.faq__item summary::after{
  content:'+';
  position:absolute;
  right:0;
  top:0;
  font-size:20px;
  color:var(--gold-700);
  transition:transform .2s ease;
}
.faq__item[open] summary::after{transform:rotate(45deg);}
.faq__item p{
  margin-top:12px;
  font-size:14.5px;
  color:var(--gray-500);
}

/* ---------- Footer ---------- */
.footer{
  background:var(--ink-900);
  color:#b8b2ad;
  padding:48px 0 32px;
  text-align:center;
}
.footer__logo-box{
  display:inline-block;
  border-radius:16px;
  box-shadow:0 0 0 1px rgba(255,230,0,.25);
  margin-bottom:20px;
  overflow:hidden;
}
.footer__logo{height:96px;width:auto;display:block;}
.footer p{font-size:14px;margin-bottom:6px;}
.footer__copy{font-size:12.5px;color:#6b6461;margin-top:16px;}

/* ---------- Popup: seleção de estado ---------- */
.state-modal{
  position:fixed;
  inset:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.state-modal[hidden]{display:none;}
.state-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,27,38,.7);
  backdrop-filter:blur(2px);
}
.state-modal__box{
  position:relative;
  z-index:1;
  background:#fff;
  border-radius:20px;
  padding:36px 32px;
  max-width:460px;
  width:100%;
  text-align:center;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.5);
  animation:modalPop .25s ease;
}
@keyframes modalPop{
  from{opacity:0;transform:translateY(12px) scale(.97);}
  to{opacity:1;transform:translateY(0) scale(1);}
}
.state-modal__badge{
  display:inline-block;
  background:rgba(230,206,0,.14);
  color:var(--gold-700);
  font-weight:600;
  font-size:12.5px;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}
.state-modal__box h3{font-size:22px;font-weight:800;margin-bottom:10px;}
.state-modal__box p{color:var(--gray-500);font-size:14.5px;margin-bottom:22px;}
.state-modal__options{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:16px;
}
.state-modal__btn{
  width:100%;
  padding:13px 18px;
  border-radius:12px;
  border:1.5px solid var(--gray-200);
  background:var(--gray-100);
  font-family:var(--font);
  font-weight:700;
  font-size:14.5px;
  line-height:1.35;
  color:var(--ink-900);
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease, transform .15s ease;
}
.state-modal__btn:hover{
  border-color:var(--yellow-600);
  background:#fff;
  transform:translateY(-2px);
}

/* ---------- Floating CTA ---------- */
.floating-cta{
  position:fixed;
  bottom:24px;
  right:24px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--whatsapp);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,.7);
  z-index:60;
  animation:pulse 2.4s infinite;
}
.floating-cta .icon-whatsapp{width:30px;height:30px;}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);}
  70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ---------- Responsive ---------- */
@media (max-width:960px){
  .header__logo{height:84px;}
  .hero__inner{grid-template-columns:1fr;text-align:center;}
  .hero__cta{align-items:center;}
  .hero__subtitle{margin-left:auto;margin-right:auto;}
  .hero__bullets{display:inline-block;text-align:left;}
  .products{grid-template-columns:1fr;}
  .benefits{grid-template-columns:repeat(2,1fr);}
  .testimonials{grid-template-columns:1fr;}
  .trust__inner{grid-template-columns:repeat(2,1fr);}
  .trust__item:last-child{grid-column:1 / -1;}
  .gallery-grid{grid-template-columns:repeat(3,1fr);grid-auto-rows:160px;}
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6){grid-column:span 2;grid-row:span 2;}
}
@media (max-width:520px){
  .section{padding:60px 0;}
  .cta-box{padding:26px;}
  .benefits{grid-template-columns:1fr;}
  .header__logo{height:72px;}
  .hero__video-frame{max-width:240px;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:150px;gap:10px;}
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6){grid-column:span 2;grid-row:span 1;}
  .lightbox__nav{width:38px;height:38px;font-size:15px;}
  .lightbox__close{font-size:28px;top:10px;right:14px;}
  .wholesale__box{padding:38px 22px;}
  .wholesale__list{display:block;text-align:left;max-width:260px;margin:0 auto 30px;}
  .wholesale__list li{margin-bottom:10px;}
  .promo-bar__text-full{display:none;}
  .header__nav-link--highlight{padding:5px 11px;font-size:13.5px;}
  .header__inner{gap:8px;padding:6px 14px;}
  .header__nav{gap:10px;margin-right:4px;}
  .header__nav-link{font-size:13.5px;}
  .btn--small{padding:8px 14px;font-size:13px;}
}
@media (max-width:400px){
  .btn{font-size:14px;padding:14px 16px;gap:8px;}
  .icon-whatsapp{width:19px;height:19px;}
  .cta-box{padding:20px;}
  .promo-bar__inner{gap:10px;padding:8px 16px;}
  .promo-bar__text{font-size:12.5px;}
  .promo-bar__link{font-size:12px;padding:5px 10px;}
}
