/* No topo do seu arquivo CSS principal */
@import url('https://lc.ezequielsousa.com.br/css/style.css');
:root{
  --bg:#eef3ff;
  --bg2:#fff4ec;
  --card:#ffffff;
  --text:#111827;
  --muted:#667085;
  --line:#dde3f0;
  --blue:#1f4e9e;
  --blue-2:#2d66c3;
  --orange:#ff6a00;
  --orange-2:#ff9838;
  --ok:#16a34a;
  --warn:#dc2626;
  --shadow:0 18px 40px rgba(18, 38, 87, .10);
}

*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(31,78,158,.14), transparent 60%),
    radial-gradient(500px 260px at 100% 15%, rgba(255,106,0,.16), transparent 58%),
    linear-gradient(180deg, #f4f7ff 0%, #fff8f4 100%);
  min-height:100vh;
  padding-bottom:95px;
}

.app{
  width:100%;
  max-width:480px;
  margin:0 auto;
  position:relative;
}

.texture{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.16;
  background-image:
    linear-gradient(rgba(31,78,158,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,.08) 1px, transparent 1px);
  background-size:20px 20px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.26), transparent 82%);
}

.topAppBar{
  position:sticky;
  top:0;
  z-index:20;
  padding:14px 14px 10px;
  backdrop-filter:blur(16px);
  background:linear-gradient(180deg, rgba(244,247,255,.95), rgba(244,247,255,.70));
}

.topShell{
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#fff;
  border-radius:30px;
  padding:14px;
  box-shadow:0 16px 35px rgba(31,78,158,.28);
  position:relative;
  overflow:hidden;
}
.topShell::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(170px 120px at 15% 20%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(160px 110px at 90% 15%, rgba(255,255,255,.16), transparent 60%);
  pointer-events:none;
}

.topRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  position:relative;
  z-index:1;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.homeIconWrap{
  width:48px;
  height:48px;
  border-radius:18px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16);
}
.brandText{
  min-width:0;
}
.brandText .eyebrow{
  font-size:11px;
  font-weight:900;
  letter-spacing:.8px;
  opacity:.85;
  text-transform:uppercase;
}
.brandText .title{
  font-size:19px;
  font-weight:1000;
  line-height:1.05;
  margin-top:3px;
  color:#fff;
}

.topActions{
  display:flex;
  align-items:center;
  gap:10px;
}
.iconBtn{
  width:46px;
  height:46px;
  border:none;
  border-radius:17px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  padding:0;
  position:relative;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16);
}
.badgeDot{
  position:absolute;
  top:9px;
  right:9px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--orange);
  border:2px solid #fff;
}
.avatarTop{
  width:46px;
  height:46px;
  border-radius:17px;
  background:linear-gradient(135deg, #fff, #ffe4cf);
  color:#111827;
  font-weight:1000;
  font-size:14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.main{
  padding:10px 14px 0;
}

.heroCard{
  background:linear-gradient(180deg, #fff, #fffaf7);
  border:1px solid rgba(255,255,255,.9);
  border-radius:30px;
  padding:18px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroCard::before{
  content:"";
  position:absolute;
  inset:auto -30px -30px auto;
  width:160px;
  height:160px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,106,0,.12), transparent 65%);
}
.heroTop{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.heroAvatar{
  width:64px;
  height:64px;
  border-radius:24px;
  background:linear-gradient(135deg, var(--orange), var(--orange-2));
  color:#fff;
  font-size:22px;
  font-weight:1000;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  box-shadow:0 14px 28px rgba(255,106,0,.22);
}
.heroInfo{
  min-width:0;
}
.heroHello{
  font-size:12px;
  font-weight:900;
  color:var(--orange);
  letter-spacing:.7px;
  text-transform:uppercase;
}
.heroName{
  margin-top:4px;
  font-size:28px;
  line-height:1;
  font-weight:1000;
  color:#101828;
}
.heroMeta{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.heroMeta span{
  font-size:13px;
  font-weight:800;
  color:var(--muted);
  word-break:break-word;
}
.heroPill{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#eef5ff;
  color:var(--blue);
  border:1px solid rgba(31,78,158,.12);
  border-radius:999px;
  padding:10px 14px;
  font-size:12px;
  font-weight:1000;
}

.statsGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:14px;
}
.statCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:14px;
  box-shadow:0 8px 20px rgba(17,24,39,.04);
}
.statLabel{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--muted);
  font-weight:900;
}
.statValue{
  margin-top:8px;
  font-size:22px;
  font-weight:1000;
  line-height:1;
  color:#111827;
}
.statHint{
  margin-top:6px;
  font-size:12px;
  font-weight:800;
  color:var(--muted);
}

.pushWrap{
  margin-top:14px;
}
.pushBtn{
  width:100%;
  border:none;
  border-radius:18px;
  padding:14px 16px;
  font-size:14px;
  font-weight:1000;
  color:#fff;
  cursor:pointer;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  box-shadow:0 16px 28px rgba(31,78,158,.24);
}
.pushBtn:disabled{
  opacity:.75;
  cursor:not-allowed;
}
.pushHint{
  margin-top:8px;
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  text-align:center;
}

.section{
  margin-top:16px;
}
.sectionCard{
  background:linear-gradient(180deg, #fff, #ffffff);
  border:1px solid rgba(255,255,255,.95);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.sectionHead{
  padding:18px 18px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.sectionTitle{
  font-size:22px;
  font-weight:1000;
  line-height:1.05;
  color:#121826;
}
.sectionSub{
  margin-top:6px;
  font-size:13px;
  font-weight:800;
  color:var(--muted);
}
.sectionIcon{
  width:48px;
  height:48px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--orange), var(--orange-2));
  color:#fff;
  box-shadow:0 14px 28px rgba(255,106,0,.22);
  flex:0 0 auto;
}

.courseBlock{
  margin:0 14px 14px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 8px 16px rgba(0,0,0,.03);
}
.courseHead{
  padding:16px;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(255,106,0,.12), transparent 60%),
    linear-gradient(180deg, #f8fbff, #ffffff);
  border-bottom:1px solid var(--line);
}
.courseTitle{
  font-size:18px;
  font-weight:1000;
  color:#111827;
}
.courseMini{
  margin-top:7px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--blue);
  border:1px solid rgba(31,78,158,.10);
  font-size:12px;
  font-weight:900;
}

.disciplinasList{
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.discCard{
  border:1px solid var(--line);
  border-radius:22px;
  padding:14px;
  background:linear-gradient(180deg, #fff, #fffdfc);
}
.discTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.discName{
  font-size:17px;
  font-weight:1000;
  color:#111827;
  line-height:1.1;
}
.discCarga{
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:900;
  color:var(--muted);
}
.status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:1000;
  white-space:nowrap;
  flex:0 0 auto;
}
.status.ok{
  background:#ecfdf3;
  color:#15803d;
}
.status.warn{
  background:#fef2f2;
  color:#dc2626;
}
.status.neutral{
  background:#f3f4f6;
  color:#4b5563;
}

.metricGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}
.metric{
  border-radius:18px;
  padding:12px 10px;
  background:#fafcff;
  border:1px solid #edf1f7;
}
.metricLabel{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.7px;
  color:var(--muted);
  font-weight:900;
}
.metricValue{
  margin-top:7px;
  font-size:18px;
  font-weight:1000;
  line-height:1;
  color:#111827;
}

.barArea{
  margin-top:14px;
}
.barLine{
  height:12px;
  border-radius:999px;
  background:#edf2fa;
  overflow:hidden;
}
.barFill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, var(--blue), var(--orange));
}
.barMeta{
  margin-top:8px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
  font-weight:900;
  color:var(--muted);
}

.empty{
  margin:0 14px 14px;
  padding:18px;
  border:1px dashed var(--line);
  border-radius:20px;
  color:var(--muted);
  font-weight:900;
  background:#fff;
}

.bottomNav{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:max(14px, env(safe-area-inset-bottom));
  width:calc(100% - 24px);
  max-width:452px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.85);
  border-radius:28px;
  box-shadow:0 18px 40px rgba(14, 27, 66, .16);
  padding:10px 10px 12px;
  z-index:30;
}
.bottomNavRow{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.navItem{
  border:none;
  background:transparent;
  border-radius:20px;
  padding:10px 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  color:var(--muted);
  font-size:11px;
  font-weight:1000;
  text-decoration:none;
}
.navItem.active{
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#fff;
  box-shadow:0 12px 24px rgba(31,78,158,.24);
}
.navItem.future{
  color:#98a2b3;
}

.forcePassOverlay{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(15,23,42,.58);
  backdrop-filter:blur(10px);
}
.forcePassOverlay.show{display:flex}

.forcePassCard{
  width:100%;
  max-width:420px;
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff,#fff8f2);
  box-shadow:0 35px 80px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.95);
}

.forcePassTop{
  padding:22px 18px;
  background:
    radial-gradient(160px 90px at 85% 20%, rgba(255,255,255,.22), transparent 60%),
    linear-gradient(135deg,var(--orange),var(--orange-2));
  color:#fff;
}
.forcePassTop h3{
  margin:0;
  font-size:26px;
  font-weight:1000;
  line-height:1;
}
.forcePassTop p{
  margin:10px 0 0 0;
  font-size:13px;
  font-weight:800;
  line-height:1.45;
  opacity:.98;
}

.forcePassBody{
  padding:18px;
}
.forcePassLabel{
  display:block;
  margin:12px 0 7px;
  font-size:12px;
  font-weight:1000;
  color:#111827;
}

.passInputWrap{
  position:relative;
}
.forcePassInput{
  width:100%;
  border:1px solid #d9dde6;
  border-radius:18px;
  padding:14px 48px 14px 14px;
  font-size:15px;
  font-weight:800;
  color:#111827;
  background:#fff;
  outline:none;
}
.forcePassInput:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(31,78,158,.10);
}
.eyeBtn{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border:none;
  border-radius:12px;
  background:#f3f6fb;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.passStrength{
  margin-top:14px;
  padding:12px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid #e8edf5;
}
.passStrengthBar{
  height:10px;
  border-radius:999px;
  background:#e5e7eb;
  overflow:hidden;
}
.passStrengthFill{
  height:100%;
  width:0%;
  border-radius:999px;
  transition:width .22s ease, background .22s ease;
}
.passStrengthText{
  margin-top:8px;
  font-size:12px;
  font-weight:1000;
  color:#475467;
}
.passRules{
  margin-top:10px;
  display:grid;
  gap:6px;
}
.passRule{
  font-size:12px;
  font-weight:900;
  color:#98a2b3;
}
.passRule.ok{
  color:#16a34a;
}

.forcePassBtn{
  width:100%;
  border:none;
  margin-top:16px;
  border-radius:18px;
  padding:14px;
  font-size:15px;
  font-weight:1000;
  color:#fff;
  cursor:pointer;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  box-shadow:0 16px 28px rgba(31,78,158,.24);
}

.errorBanner,
.successBanner{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:calc(100% - 28px);
  max-width:452px;
  border-radius:18px;
  padding:14px 16px;
  font-weight:900;
  z-index:99990;
  display:none;
  box-shadow:0 16px 32px rgba(0,0,0,.10);
}
.errorBanner{
  background:#fff1f2;
  color:#be123c;
  border:1px solid rgba(225,29,72,.16);
}
.successBanner{
  background:#ecfdf3;
  color:#15803d;
  border:1px solid rgba(22,163,74,.16);
}
.errorBanner.show,
.successBanner.show{display:block}

.loadingScreen{
  position:fixed;
  inset:0;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99980;
}
.loadingCard{
  background:#fff;
  border-radius:22px;
  padding:18px 20px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:1000;
}
.loader{
  width:18px;
  height:18px;
  border-radius:50%;
  border:3px solid rgba(31,78,158,.18);
  border-top-color:var(--blue);
  animation:spin .7s linear infinite;
}
@keyframes spin{
  to{transform:rotate(360deg)}
}
.hidden{display:none !important}

svg{display:block}

/* ===== DESKTOP PRIME ===== */
.layoutShell{
  width:100%;
}
.desktopSidebar{
  display:none;
}

@media (min-width: 1024px){
  body{
    padding-bottom:0;
    min-height:100vh;
    background:
      radial-gradient(900px 420px at 0% 0%, rgba(31,78,158,.14), transparent 60%),
      radial-gradient(700px 360px at 100% 10%, rgba(255,106,0,.14), transparent 55%),
      linear-gradient(180deg, #f4f7ff 0%, #fff8f4 100%);
  }

  .texture{
    opacity:.10;
  }

  .layoutShell{
    max-width:1440px;
    margin:0 auto;
    min-height:100vh;
    display:grid;
    grid-template-columns:290px minmax(0, 1fr);
    gap:22px;
    padding:22px;
  }

  .desktopSidebar{
    display:flex;
    flex-direction:column;
    position:sticky;
    top:22px;
    height:calc(100vh - 44px);
    border-radius:34px;
    padding:22px;
    background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
    border:1px solid rgba(255,255,255,.9);
    box-shadow:0 18px 40px rgba(18,38,87,.10);
    backdrop-filter:blur(18px);
  }

  .deskBrand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:24px;
  }

  .deskLogoIcon{
    width:58px;
    height:58px;
    border-radius:20px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg, var(--orange), var(--blue));
    color:#fff;
    font-weight:1000;
    font-size:20px;
    box-shadow:0 14px 28px rgba(31,78,158,.18);
  }

  .deskBrandMini{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.8px;
    color:var(--muted);
    font-weight:900;
  }

  .deskBrandTitle{
    margin-top:4px;
    font-size:24px;
    line-height:1;
    color:#111827;
    font-weight:1000;
  }

  .deskNav{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .deskNavItem{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border-radius:18px;
    text-decoration:none;
    color:#344054;
    font-weight:900;
    transition:.18s ease;
    border:1px solid transparent;
  }

  .deskNavItem:hover{
    background:rgba(255,255,255,.72);
    border-color:rgba(31,78,158,.08);
    transform:translateY(-1px);
  }

  .deskNavItem.active{
    color:#fff;
    background:linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow:0 12px 24px rgba(31,78,158,.22);
  }

  .deskNavIcon{
    width:26px;
    text-align:center;
    font-size:18px;
    line-height:1;
  }

  .deskCardInfo{
    margin-top:auto;
    border-radius:24px;
    padding:18px;
    background:
      radial-gradient(160px 80px at 100% 0%, rgba(255,106,0,.12), transparent 60%),
      linear-gradient(180deg, #ffffff, #f8fbff);
    border:1px solid var(--line);
    box-shadow:0 8px 18px rgba(0,0,0,.04);
  }

  .deskCardLabel{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.8px;
    color:var(--muted);
    font-weight:900;
  }

  .deskCardTitle{
    margin-top:6px;
    font-size:20px;
    font-weight:1000;
    color:#111827;
  }

  .deskCardText{
    margin-top:8px;
    font-size:13px;
    line-height:1.5;
    color:var(--muted);
    font-weight:700;
  }

  .app{
    max-width:none;
    width:100%;
    padding-right:6px;
  }

  .topAppBar{
    padding:0 0 14px;
    background:transparent;
    backdrop-filter:none;
  }

  .topShell{
    border-radius:34px;
    padding:18px 20px;
    box-shadow:0 18px 34px rgba(31,78,158,.20);
  }

  .brandText .title{
    font-size:24px;
  }

  .brandText .eyebrow{
    font-size:12px;
  }

  .main{
    padding:0;
  }

  .heroCard{
    border-radius:34px;
    padding:22px;
  }

  .heroTop{
    align-items:center;
  }

  .heroAvatar{
    width:76px;
    height:76px;
    border-radius:28px;
    font-size:28px;
  }

  .heroName{
    font-size:34px;
  }

  .heroMeta span{
    font-size:14px;
  }

  .statsGrid{
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-top:18px;
  }

  .statCard{
    border-radius:24px;
    padding:18px;
  }

  .statValue{
    font-size:28px;
  }

  .section{
    margin-top:18px;
  }

  .sectionCard{
    border-radius:32px;
  }

  .sectionHead{
    padding:22px 22px 14px;
  }

  .sectionTitle{
    font-size:28px;
  }

  .sectionSub{
    font-size:14px;
  }

  .courseBlock{
    margin:0 18px 18px;
    border-radius:28px;
  }

  .courseHead{
    padding:18px 20px;
  }

  .courseTitle{
    font-size:22px;
  }

  .disciplinasList{
    padding:16px;
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
  }

  .discCard{
    border-radius:24px;
    padding:18px;
  }

  .discName{
    font-size:19px;
  }

  .metricGrid{
    gap:12px;
  }

  .metric{
    border-radius:20px;
    padding:14px 12px;
  }

  .metricValue{
    font-size:20px;
  }

  .pushWrap{
    max-width:360px;
    margin-top:18px;
  }

  .pushBtn{
    border-radius:20px;
    padding:15px 18px;
    font-size:15px;
  }

  .bottomNav{
    display:none;
  }

  .forcePassCard{
    max-width:480px;
  }
}