:root{
  --bg:#f6f8ff;
  --panel:rgba(255,255,255,.92);
  --txt:#0b1220;
  --muted:#475569;
  --line:rgba(15,23,42,.10);
  --blue:#2563eb;
  --cyan:#38bdf8;
  --gold:rgba(212,175,55,.45);
  --shadow:0 24px 70px rgba(2,6,23,.12);
  --shadow2:0 12px 30px rgba(2,6,23,.10);
  --r:18px; --r2:26px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--txt);
  background:
    radial-gradient(900px 420px at 8% -5%, rgba(56,189,248,.22), transparent 60%),
    radial-gradient(980px 520px at 95% 0%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(700px 380px at 50% 110%, rgba(212,175,55,.10), transparent 62%),
    linear-gradient(180deg,#fff 0%,var(--bg) 45%,#fff 100%);
}
a{color:inherit;text-decoration:none}
.container{max-width:1220px;margin:0 auto;padding:16px}
.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,.75);
  border-bottom:1px solid var(--line);
}
.row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{display:flex;gap:10px;align-items:center}
.logo{
  width:38px;height:38px;border-radius:14px;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  box-shadow:var(--shadow2);
  position:relative;
}
.logo:after{
  content:"";position:absolute;inset:-1px;border-radius:14px;
  background:linear-gradient(135deg,rgba(255,255,255,.55),rgba(212,175,55,.25));
  z-index:-1;
}
.brand .name{font-weight:950;letter-spacing:.2px}
.brand .sub{font-size:12px;color:var(--muted)}
.nav{display:flex;gap:10px;flex-wrap:wrap}
.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.86);
  padding:9px 12px;border-radius:999px;
  font-size:13px;color:var(--muted);
}
.pill:hover{border-color:rgba(37,99,235,.35);color:var(--txt)}
.hero{
  margin-top:16px;
  border:1px solid var(--line);
  border-radius:var(--r2);
  background:linear-gradient(135deg,rgba(37,99,235,.10),rgba(56,189,248,.08),rgba(255,255,255,.92));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.heroGrid{display:grid;grid-template-columns:1.2fr .8fr;gap:16px;align-items:stretch;padding:18px}
@media(max-width:980px){.heroGrid{grid-template-columns:1fr}}
.slideBox{
  border-radius:22px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.90);
  box-shadow:var(--shadow2);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.slideBox:before{
  content:"";position:absolute;inset:-40px;
  background:radial-gradient(260px 180px at 20% 20%, rgba(56,189,248,.25), transparent 70%),
             radial-gradient(320px 220px at 80% 0%, rgba(37,99,235,.22), transparent 70%),
             radial-gradient(340px 240px at 60% 115%, rgba(212,175,55,.14), transparent 70%);
  filter:blur(6px);
}
.slideInner{position:relative;z-index:2}
.kicker{
  display:inline-flex;align-items:center;gap:8px;
  border:1px dashed rgba(37,99,235,.35);
  background:rgba(37,99,235,.06);
  padding:6px 10px;border-radius:999px;
  font-size:12px;color:#1e40af;font-weight:900;
}
.h1{margin:10px 0 8px;font-size:40px;line-height:1.08}
@media(max-width:520px){.h1{font-size:30px}}
.lead{margin:0;color:var(--muted);font-size:15px;line-height:1.65}
.ctaRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow2);
  font-weight:900;font-size:14px;
}
.btn.primary{border-color:rgba(37,99,235,.35);background:linear-gradient(135deg,var(--blue),var(--cyan));color:#fff}
.btn.gold{border-color:rgba(212,175,55,.35);background:linear-gradient(135deg,rgba(212,175,55,.22),rgba(255,255,255,.9))}
.btn:hover{transform:translateY(-1px)}
.small{font-size:12px;color:var(--muted);margin-top:10px}

.slideNav{
  margin-top:14px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.78);
  border-radius:16px;
  padding:10px 12px;
}
.dots{display:flex;gap:7px;align-items:center}
.dot{width:7px;height:7px;border-radius:999px;background:rgba(15,23,42,.16)}
.dot.on{background:rgba(37,99,235,.75)}
.smini{display:flex;gap:10px;align-items:center}
.arrow{
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.9);
  border-radius:12px;
  padding:8px 10px;
  font-weight:900;
  cursor:pointer;
}
.arrow:hover{border-color:rgba(37,99,235,.35)}

.side{
  display:grid;gap:12px;
  grid-template-rows:auto auto 1fr;
}
.card{
  border:1px solid var(--line);
  background:var(--panel);
  border-radius:var(--r);
  box-shadow:var(--shadow2);
  padding:14px;
}
.card h3{margin:0 0 8px;font-size:15px}
.muted{color:var(--muted);font-size:13px}
.hr{height:1px;background:rgba(15,23,42,.08);margin:12px 0}

.widgets{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
@media(max-width:980px){.widgets{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.widgets{grid-template-columns:1fr}}
.w{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.92);
  border-radius:16px;
  padding:12px;
  display:flex;gap:10px;align-items:flex-start;
}
.ico{
  width:34px;height:34px;border-radius:14px;
  background:linear-gradient(135deg,rgba(37,99,235,.18),rgba(56,189,248,.14));
  border:1px solid rgba(37,99,235,.22);
  display:grid;place-items:center;
  font-weight:950;color:#1e40af;
}
.w b{display:block}
.w .note{font-size:12px;color:var(--muted);margin-top:3px}

.brandStrip{display:flex;gap:10px;overflow:auto;padding:6px 2px;scroll-snap-type:x mandatory}
.brandItem{
  flex:0 0 auto;scroll-snap-align:start;
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.92);
  font-weight:950;font-size:13px;
  box-shadow:0 8px 18px rgba(2,6,23,.06);
}
.brandItem:hover{border-color:rgba(37,99,235,.30)}
.badge{
  font-size:11px;padding:6px 10px;border-radius:999px;
  border:1px solid rgba(212,175,55,.25);
  background:rgba(212,175,55,.10);
  color:#6b4e00;font-weight:900;
}

.section{margin-top:18px}
.section h2{margin:0 0 10px;font-size:18px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media(max-width:980px){.grid3{grid-template-columns:1fr}}

.blockTitle{display:flex;align-items:center;justify-content:space-between;gap:10px}
.actions{display:flex;gap:8px;flex-wrap:wrap}
.chip{
  font-size:12px;padding:7px 10px;border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.92);
  color:var(--muted);
}
.chip:hover{border-color:rgba(37,99,235,.30);color:var(--txt)}
.list{margin:10px 0 0;padding:0;list-style:none}
.list li{padding:8px 0;border-top:1px solid rgba(15,23,42,.08);color:var(--muted)}
.list li:first-child{border-top:0}

.mascotWrap{
  border-radius:22px;
  border:1px solid rgba(15,23,42,.10);
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.82));
  box-shadow:var(--shadow2);
  padding:14px;
  position:relative;
  overflow:hidden;
}
.mascotWrap:before{
  content:"";position:absolute;inset:-20px;
  background:radial-gradient(240px 200px at 25% 20%, rgba(56,189,248,.26), transparent 70%),
             radial-gradient(260px 220px at 80% 0%, rgba(37,99,235,.22), transparent 70%),
             radial-gradient(260px 220px at 55% 115%, rgba(212,175,55,.14), transparent 70%);
  filter:blur(8px);
}
.mascotInner{position:relative;z-index:2}
.footer{margin:18px 0 26px;color:var(--muted);font-size:12px}
.whatsapp{
  position:fixed;right:18px;bottom:18px;z-index:60;
  border-radius:999px;padding:12px 14px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#fff;font-weight:950;
  box-shadow:0 18px 50px rgba(22,163,74,.28);
  border:1px solid rgba(255,255,255,.35)
}
.whatsapp:hover{transform:translateY(-1px)}

/* --- Mascot PRO image sizing (added) --- */
.mascotImg{
  width:100%;
  max-height:240px;
  height:auto;
  display:block;
  object-fit:contain;
  border-radius:18px;
}
@media(max-width:520px){
  .mascotImg{max-height:200px;}
}

/* ===== HERO_PRO_CSS (alignment + typography + slider + brands) ===== */
:root{
  --pageBg1:#f6f9ff;
  --pageBg2:#ffffff;
  --ink:#0b1220;
  --muted:rgba(11,18,32,.68);
  --stroke:rgba(11,18,32,.10);
  --card:rgba(255,255,255,.86);
  --brand:#2563eb;
  --brand2:#38bdf8;
  --radius:22px;
}

body{
  background: radial-gradient(1200px 520px at 55% 0%, rgba(56,189,248,.18), transparent 55%),
              radial-gradient(900px 420px at 10% 20%, rgba(37,99,235,.14), transparent 60%),
              linear-gradient(180deg,var(--pageBg1),var(--pageBg2));
  color:var(--ink);
}

.januWrap{max-width:1180px;margin:0 auto;padding:18px 16px;}
.januHeroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
@media(max-width:980px){
  .januHeroGrid{grid-template-columns:1fr;gap:14px;}
}

.cardPro{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow: 0 18px 45px rgba(11,18,32,.08);
}

.heroLeft{padding:18px;}
.heroKicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(37,99,235,.18);
  background:rgba(37,99,235,.06);
  color:#1e40af;
  font-weight:800;
  font-size:12px;
}
.heroTitle{
  margin:10px 0 8px;
  font-weight:950;
  letter-spacing:-.02em;
  line-height:1.05;
  font-size:clamp(30px, 3.3vw, 44px);
}
.heroTitle .hl{color:var(--brand);}
.heroSub{
  margin:0 0 12px;
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
  max-width:52ch;
}
.heroCtas{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.btnPro{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:14px;
  border:1px solid var(--stroke);
  background:#fff;
  color:var(--ink);
  font-weight:900;
  text-decoration:none;
}
.btnPro.primary{
  background:linear-gradient(135deg,var(--brand), var(--brand2));
  color:#fff;border-color:transparent;
}
.btnPro:hover{transform:translateY(-1px)}
.heroMeta{
  margin-top:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px dashed rgba(37,99,235,.22);
  background:rgba(37,99,235,.05);
  color:rgba(11,18,32,.72);
  font-size:12px;
}

/* Right panel: mascot + slider */
.heroRight{padding:14px;display:grid;gap:12px}
.mascotCard{padding:12px}
.mascotRow{display:flex;align-items:center;justify-content:space-between;gap:10px}
.mascotTitle{font-weight:950}
.mascotNote{color:var(--muted);font-size:12px;margin-top:2px}
.mascotImg{
  width:100%;
  max-height:240px;
  height:auto;
  display:block;
  object-fit:contain;
  border-radius:18px;
  background:radial-gradient(500px 240px at 50% 0%, rgba(56,189,248,.18), rgba(37,99,235,.08));
  border:1px solid rgba(11,18,32,.08);
}
@media(max-width:520px){.mascotImg{max-height:200px;}}

/* Slider */
#januHero{padding:12px}
.heroStage{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(11,18,32,.08);
  background:linear-gradient(135deg, rgba(37,99,235,.08), rgba(56,189,248,.10));
  min-height:220px;
}
.heroSlide{
  position:absolute;inset:0;
  opacity:0;
  transform:scale(1.01);
  transition:opacity .45s ease, transform .45s ease;
}
.heroSlide.isActive{opacity:1;transform:scale(1);}
.heroSlide img{width:100%;height:100%;object-fit:cover;display:block}
.heroEmpty{padding:18px;color:var(--muted);font-weight:800}

.heroControls{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:10px;gap:10px;
}
.heroNavBtn{
  border:1px solid var(--stroke);
  background:#fff;border-radius:14px;
  padding:9px 12px;font-weight:900;cursor:pointer;
}
.heroDots{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;flex:1}
.heroDot{
  width:10px;height:10px;border-radius:999px;border:0;
  background:rgba(11,18,32,.18);cursor:pointer;
}
.heroDot.isActive{background:linear-gradient(135deg,var(--brand), var(--brand2));}

/* Brands */
#januBrands{padding:12px}
.brandHead{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.brandTitle{font-weight:950}
.brandBtns{display:flex;gap:8px}
.brandBtn{
  border:1px solid var(--stroke);background:#fff;border-radius:12px;
  padding:8px 10px;font-weight:900;cursor:pointer;
}
.brandTrack{
  display:flex;gap:10px;overflow:auto;scrollbar-width:thin;
  padding-bottom:6px;
}
.brandItem{
  flex:0 0 auto;
  width:92px;height:52px;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.08);
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  padding:8px;
}
.brandItem img{max-width:100%;max-height:100%;object-fit:contain;display:block}
.brandEmpty{padding:10px;color:var(--muted);font-weight:800}

/* Small overall alignment helpers (prevents weird left shift) */
main{display:block}

/* ===== CARDS_PRO_CSS (icons + hover + mobile polish) ===== */
.cardsProHead{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-top:18px;margin-bottom:12px}
.cardsProTitle{font-weight:950;letter-spacing:-.01em;font-size:22px}
.cardsProSub{color:rgba(11,18,32,.62);font-weight:650;font-size:13px;margin-top:4px}
.cardsProActions{display:flex;gap:10px;flex-wrap:wrap}
.cardsProGrid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;align-items:stretch}
@media(max-width:980px){.cardsProGrid3{grid-template-columns:1fr;}}
.cardsProBox{padding:12px}
.boxHead{display:flex;gap:10px;align-items:center;margin-bottom:10px}
.boxIcon{width:38px;height:38px;border-radius:14px;display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(37,99,235,.16), rgba(56,189,248,.18));
  border:1px solid rgba(11,18,32,.08);
  font-weight:950;color:#1e40af}
.boxTitle{font-weight:950}
.boxHint{font-size:12px;color:rgba(11,18,32,.55);margin-top:2px}

.cardsGrid{display:grid;gap:10px}
.miniCard{
  border-radius:18px;
  border:1px solid rgba(11,18,32,.09);
  background:rgba(255,255,255,.92);
  padding:12px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.miniCard:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 35px rgba(11,18,32,.10);
  border-color:rgba(37,99,235,.18);
}
.miniTop{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.miniTitle{font-weight:950;line-height:1.2}
.miniSmall{font-weight:800;color:rgba(11,18,32,.55);font-size:12px}
.miniSub{margin-top:6px;color:rgba(11,18,32,.62);font-weight:650;font-size:13px;line-height:1.45}

.pillPro{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(37,99,235,.18);
  background:rgba(37,99,235,.06);
  color:#1e40af;
  font-weight:900;font-size:12px;
  white-space:nowrap;
}

.miniCta{
  display:inline-flex;align-items:center;justify-content:center;
  margin-top:10px;
  padding:9px 12px;
  border-radius:14px;
  font-weight:950;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  border:1px solid rgba(11,18,32,.08);
}
.miniCta:hover{filter:brightness(0.98)}

.miniList{margin:10px 0 0;padding-left:16px;color:rgba(11,18,32,.65);font-weight:650;font-size:13px}
.miniList li{margin:4px 0}
.miniQuote{margin-top:10px;color:rgba(11,18,32,.78);font-weight:750;line-height:1.5}
.miniFoot{margin-top:8px;color:rgba(11,18,32,.55);font-weight:800;font-size:12px}
.miniLoading{padding:10px;color:rgba(11,18,32,.55);font-weight:900}

/* ===== PRO_TYPO_SPACING_FIX ===== */
html{font-size:16px}
body{zoom:1}
main{max-width:1180px;margin:0 auto;padding:18px 14px}
.heroProWrap{padding:18px 0}
.heroPro{border-radius:28px}
.heroTitle{font-size:46px}
.heroSub{font-size:16px;max-width:56ch}
@media(max-width:900px){
  .heroTitle{font-size:34px}
  .heroSub{font-size:15px}
}
.heroContent{align-items:flex-end}
.heroText{max-width:720px}

/* brand strip */
.brandStripPro{
  margin:14px auto 6px;
  border:1px solid rgba(11,18,32,.08);
  background:rgba(255,255,255,.70);
  border-radius:18px;
  padding:12px 12px;
  max-width:1180px;
  box-shadow:0 18px 40px rgba(11,18,32,.06);
}
.brandStripHead{display:flex;justify-content:space-between;align-items:center;gap:10px}
.brandStripHead h3{margin:0;font-size:14px;font-weight:1000;color:rgba(11,18,32,.78)}
.brandRow{display:flex;gap:10px;overflow:auto;padding:10px 4px;scrollbar-width:thin}
.brandLogo{
  flex:0 0 auto;
  height:44px; min-width:110px;
  display:grid;place-items:center;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.08);
  background:#fff;
  padding:6px 12px;
}
.brandLogo img{height:26px;width:auto;display:block;opacity:.95}
.brandLogo:hover{transform:translateY(-1px);box-shadow:0 10px 20px rgba(11,18,32,.08)}

/* ===== PRO_CARDS_FINAL ===== */
.proSection{max-width:1180px;margin:22px auto;padding:0 14px}
.proHead{
  display:flex;justify-content:space-between;align-items:flex-end;gap:14px;
  margin-bottom:12px
}
.proHead h2{margin:0;font-size:18px;letter-spacing:-.01em;color:rgba(11,18,32,.86)}
.proHead p{margin:6px 0 0;font-size:13px;color:rgba(11,18,32,.58)}
.proHeadActions{display:flex;gap:8px;flex-wrap:wrap}
.btnSoft{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 12px;border-radius:12px;
  border:1px solid rgba(11,18,32,.10);
  background:rgba(255,255,255,.75);
  color:rgba(11,18,32,.78);
  font-weight:900;font-size:12px;
  text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btnSoft:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(11,18,32,.08)}

.proGrid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}
@media(max-width:980px){.proGrid{grid-template-columns:repeat(6,1fr)}}
@media(max-width:560px){
  .proHead{align-items:flex-start;flex-direction:column}
  .proGrid{grid-template-columns:repeat(2,1fr)}
}

.proCard{
  grid-column:span 4;
  border-radius:18px;
  border:1px solid rgba(11,18,32,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.70));
  box-shadow:0 18px 40px rgba(11,18,32,.06);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
  position:relative;
}
@media(max-width:980px){.proCard{grid-column:span 3}}
@media(max-width:560px){.proCard{grid-column:span 2}}

.proCard:hover{transform:translateY(-2px);box-shadow:0 26px 60px rgba(11,18,32,.10)}
.proCardInner{padding:14px}
.proTop{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.proBadge{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border-radius:999px;
  background:rgba(43,108,255,.10);
  border:1px solid rgba(43,108,255,.18);
  color:rgba(20,70,200,.95);
  font-weight:1000;font-size:12px;
}
.proIcon{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  border:1px solid rgba(11,18,32,.08);
  background:#fff;
}
.proIcon svg{width:20px;height:20px;opacity:.88}

.proTitle{margin:10px 0 0;font-weight:1100;font-size:16px;color:rgba(11,18,32,.90);letter-spacing:-.01em}
.proSub{margin:6px 0 0;font-size:13px;color:rgba(11,18,32,.62);line-height:1.45}

.proList{margin:10px 0 0;padding:0;list-style:none;display:grid;gap:8px}
.proList li{display:flex;gap:8px;align-items:flex-start;font-size:13px;color:rgba(11,18,32,.70)}
.proList li span{margin-top:1px}

.proActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.btnPrimary{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:14px;
  background:rgba(43,108,255,.96);
  color:#fff;text-decoration:none;font-weight:1000;font-size:13px;
  box-shadow:0 14px 34px rgba(43,108,255,.20);
}
.btnPrimary:hover{filter:brightness(.98)}
.btnGhost{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(11,18,32,.12);
  background:rgba(255,255,255,.70);
  color:rgba(11,18,32,.80);text-decoration:none;font-weight:1000;font-size:13px;
}
.proFoot{
  padding:12px 14px;
  border-top:1px solid rgba(11,18,32,.08);
  display:flex;justify-content:space-between;align-items:center;gap:10px;
  color:rgba(11,18,32,.58);
  font-size:12px;font-weight:800;
}
.starRow{display:flex;gap:4px;align-items:center}
.starRow svg{width:14px;height:14px;opacity:.9}
