:root{
  --bg:#0B1220;
  --bg2:#0E1A2F;
  --card:#0f1b31;
  --surface:#0b1220;
  --text:#e8eefc;
  --muted:rgba(232,238,252,.72);
  --line:rgba(232,238,252,.10);

  --white:#ffffff;
  --ink:#0b1220;
  --ink2:#0f172a;
  --g0:#f7f9fc;
  --g1:#eef3fb;
  --g2:#e6edf8;
  --acc:#2b6cff;   /* azul */
  --acc2:#5aa7ff;  /* azul claro */
  --shadow: 0 18px 40px rgba(2, 8, 23, .14);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink2);
  background: linear-gradient(180deg, var(--g0), var(--g1));
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--bg), var(--bg2));
  color: var(--text);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}
.topbar__left{
  display:flex; align-items:center; gap:10px;
  color: rgba(232,238,252,.86);
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--acc2), var(--acc));
  box-shadow: 0 0 0 4px rgba(90,167,255,.16);
}
.topbar__right{ display:flex; align-items:center; gap:10px; }
.topbar__link{ color: rgba(232,238,252,.92); }
.topbar__link:hover{ color: #fff; }
.sep{ opacity:.55; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,249,252,.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{
  width: 170px;
  max-height: 40px;
  object-fit: contain;
}

.nav{
  display:flex; align-items:center; gap:18px;
  font-weight: 600;
  color: rgba(15,23,42,.78);
}
.nav a{
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(43,108,255,.08);
  color: rgba(15,23,42,.92);
}

.header__actions{ display:flex; align-items:center; gap:10px; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{ transform: scale(.98); }

.btn--primary{
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: white;
  box-shadow: 0 12px 28px rgba(43,108,255,.28);
}
.btn--primary:hover{ filter: brightness(1.02); }

.btn--ghost{
  background: rgba(15,23,42,.04);
  border-color: rgba(15,23,42,.10);
  color: rgba(15,23,42,.86);
}
.btn--ghost:hover{
  background: rgba(43,108,255,.08);
  border-color: rgba(43,108,255,.18);
}

/* Burger */
.burger{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.7);
  align-items:center;
  justify-content:center;
  gap: 5px;
  flex-direction:column;
}
.burger span{
  width: 18px;
  height: 2px;
  background: rgba(15,23,42,.72);
  border-radius: 999px;
}

/* Mobile menu */
.mobile{
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(247,249,252,.85);
  backdrop-filter: blur(12px);
}
.mobile__inner{
  display:grid;
  gap: 10px;
  padding: 14px 0 18px;
}
.mobile__link{
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: rgba(15,23,42,.86);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.7);
}
.mobile__cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 6px; }

/* Hero */
.hero{
  padding: 56px 0 28px;
  position: relative;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
}
.pill__badge{
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(43,108,255,.10);
  color: rgba(15,23,42,.92);
  border: 1px solid rgba(43,108,255,.22);
}
.pill__text{ font-size: 13px; color: rgba(15,23,42,.72); font-weight:600; }

.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.96);
}
.lead{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15,23,42,.72);
  max-width: 56ch;
}
.hero__cta{
  display:flex; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 22px;
}
.stat{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.7);
  padding: 12px 12px;
}
.stat__kpi{ font-weight: 800; color: rgba(15,23,42,.92); }
.stat__label{ font-size: 13px; color: rgba(15,23,42,.65); margin-top: 3px; }

/* Hero panel */
.hero__panel .panel{
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11,18,32,.95), rgba(14,26,47,.92));
  color: var(--text);
  box-shadow: var(--shadow);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.panel__header{
  display:flex; gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.panel__body{ padding: 16px; display:grid; gap: 12px; }
.panel__card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  padding: 14px;
}
.panel__title{ font-weight: 800; }
.panel__desc{ margin-top: 6px; color: rgba(232,238,252,.78); line-height: 1.5; font-size: 14px; }

.panel__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.mini{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  padding: 12px;
}
.mini__t{ font-weight: 800; }
.mini__d{ margin-top: 5px; color: rgba(232,238,252,.72); font-size: 13px; line-height: 1.4; }

.panel__foot{
  display:flex; gap: 8px; flex-wrap:wrap;
}
.chip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

/* Sections */
.section{
  padding: 48px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.65));
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.section__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.section__head h2{
  margin:0;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.94);
}
.muted{ color: rgba(15,23,42,.64); margin: 0; }

/* Grids & Cards */
.grid{ display:grid; gap: 12px; }
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

.card{
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(2,8,23,.06);
}
.card h3{ margin: 0 0 8px; color: rgba(15,23,42,.92); }
.card p{ margin: 0 0 10px; color: rgba(15,23,42,.68); line-height: 1.55; }
.card--soft{
  background: rgba(255,255,255,.72);
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,.68);
  line-height: 1.65;
}
.icon{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(43,108,255,.10);
  border: 1px solid rgba(43,108,255,.20);
  margin-bottom: 10px;
  font-size: 18px;
}
.link{
  display:inline-flex;
  font-weight: 800;
  color: rgba(43,108,255,.95);
  margin-top: 6px;
}
.link:hover{ text-decoration: underline; }

.callout{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  background: linear-gradient(135deg, rgba(43,108,255,.10), rgba(90,167,255,.08));
  border: 1px solid rgba(43,108,255,.16);
  border-radius: 22px;
  padding: 16px;
}

/* Form */
.form .form__row{ display:grid; gap: 6px; margin-bottom: 12px; }
label{ font-weight: 800; font-size: 13px; color: rgba(15,23,42,.82); }
input, textarea{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  padding: 12px 12px;
  font: inherit;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(43,108,255,.45);
  box-shadow: 0 0 0 4px rgba(43,108,255,.12);
}
.hint{ font-size: 12px; color: rgba(15,23,42,.55); margin-top: 10px; }

/* Info */
.info{ display:grid; gap: 10px; margin-top: 10px; }
.info__k{ font-size: 12px; font-weight: 800; color: rgba(15,23,42,.68); }
.info__v{ color: rgba(15,23,42,.82); font-weight: 700; }
.divider{ height: 1px; background: rgba(15,23,42,.10); margin: 14px 0; }
.ctaRow{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 12px; }

/* Footer */
.footer{
  padding: 30px 0 18px;
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.55);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}
.footer__brand img{ width: 160px; max-height: 36px; object-fit: contain; }
.footer__cols{
  display:flex;
  gap: 40px;
}
.footer__h{
  font-weight: 900;
  margin-bottom: 10px;
  color: rgba(15,23,42,.84);
}
.footer a{ display:block; padding: 4px 0; color: rgba(15,23,42,.72); font-weight: 650; }
.footer a:hover{ color: rgba(43,108,255,.95); }
.footer__bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.08);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  color: rgba(15,23,42,.62);
  font-size: 13px;
}
.backtop{ font-weight: 900; }

/* Floating WhatsApp */
.wapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(22,163,74,.28);
}
.wapp span{ font-size: 14px; }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__panel{ order: 2; }
  .hero__content{ order: 1; }
  .grid--4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer__inner{ flex-direction:column; }
}
@media (max-width: 720px){
  .nav{ display:none; }
  .burger{ display:flex; }
  .topbar__inner{ flex-direction:column; align-items:flex-start; }
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr; }
  .section__head{ flex-direction:column; align-items:flex-start; }
  .hero__stats{ grid-template-columns: 1fr; }
  .callout{ flex-direction:column; align-items:flex-start; }
}
.brands{
  padding: 14px 0 30px;
}
.brands__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.brands__label{
  font-weight: 900;
  color: rgba(15,23,42,.72);
  font-size: 13px;
}
.brands__row{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.brandchip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.10);
  font-weight: 800;
  color: rgba(15,23,42,.72);
}
/* Product media (image) */
.productMedia{
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.8);
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.productMedia img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.card--product{
  display:flex;
  flex-direction:column;
}

