:root{
  --teal-fg:#0C5D56;
  --teal-secondary:#0D9488;
  --green-subtle:#DCFCE7;
  --green-fg:#116932;
  --text:#000;
  --text-muted:#52525B;
  --text-faded:#A1A1AA;
  --text-inverted:#FAFAFA;
  --border:#E4E4E7;
  --bg-muted:#F4F4F5;
  --bg:#FAFAFA;
  --danger:#dc2626;
  --shadow:0px 4px 15px rgba(0,0,0,.15);
}

*{box-sizing:border-box;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:21px;
}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
}
::selection{background:#5eead4;color:#fff}

.page{min-height:100vh;display:flex;flex-direction:column}
.main{flex:1}
/* .container{max-width:1100px;padding:0 0px;margin:0 16px} */
.section{padding:24px 12px 0 12px}

.banner{background:var(--teal-fg);font-size:14px;color:var(--text-inverted);text-align:center}
.bannerText{text-align:left; padding:16px;}
.footer{background:var(--teal-fg);padding:32px 16px;}
.footerTitle{font-weight:600;color:var(--text-inverted);}
.footerText{color:var(--text-inverted);opacity:.95}

.h1{font-size:30px;line-height:1.15;margin:0 0 10px}
.h2{font-size:20px;line-height:1.2;margin:0}
.lead{margin:0 0 16px;color:var(--text-muted);font-weight:300}
.teal{color:var(--teal-fg)}
.muted{color:var(--text-muted)}
.small{font-size:13px}
.em{font-weight:700}
.mt{margin-top:14px}
.center{text-align:center}

.searchRow{padding:8px 0 6px}
.search{display:flex;align-items:center;gap:10px;max-width:700px}
.inputWrap{position:relative;flex:1}
.inputIcon{
  position:absolute;
  left:12px;
  width:16px;
  height:16px;
  top:50%;
  transform:translateY(-50%);
  color:var(--text-faded);
  pointer-events:none;
}
.inputWithIcon{
  padding-left:46px;
  text-indent: 30px;
}
.input, .textarea, select.input{
  width:100%;
  height:38px;
  padding:8px 10px;
  margin:8px 0;
  border:1px solid var(--border);
  border-radius:4px;
  background:#fff;
  color:var(--text);
  outline:none;
  font-size:14px;
}

.input::placeholder,.textarea::placeholder{color:var(--text-faded)}
.textarea{min-height:110px;height:auto;resize:vertical}
.input:focus,.textarea:focus,select.input:focus{border-color:rgba(13,148,136,1);box-shadow:0 0 0 1px rgba(13,148,136,.15)}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
  margin: 12px 0;
}

.degree-cards{
  display:grid;
  gap:28px;
}

.categorySection{
  display:grid;
  gap:16px;
}

.categoryHeader{
  display:block;
  padding-bottom:12px;
  border-bottom:1px solid rgba(18, 38, 63, 0.12);
}

.categoryTitle{
  margin:0;
  font-size:clamp(1.1rem, 1.8vw, 1.5rem);
  line-height:1.1;
  color:var(--teal-fg);
}

.card{
  border:1px solid var(--border);
  background:#fff;
  border-radius:4px;
}
.cardInteractive{
  cursor:pointer;
}
.cardInteractive:focus-visible{
  outline:none;
  border-color:var(--teal-secondary);
  box-shadow:0 0 0 3px rgba(13,148,136,.18);
}
.cardInteractive:hover{
  border-color:rgba(13,148,136,.55);
}
.cardInteractive:hover .btnPrimary{
  background:#16967a;
  border-color:#16967a;
}
.cardBody>h2{
  display:block;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
  min-height:2.4em;
}
.cardTitle{
  margin:8px 0 16px;
  font-size:20px;
  line-height:1.2;
  font-weight:600;
  display:block;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
  min-height:2.4em;
}
.cardBody{padding:8px}
.statRow{display:flex;align-items:center;gap:8px;padding:8px 0 10px}
.statText{font-size:14px}
.icon{display:inline-flex}
.iconWhatsapp{color:#22C55E}
.iconTelegram{color:#3B82F6}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:40px;
  padding:0 14px;
  border-radius:4px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  text-decoration:none;
  cursor:pointer;
  font-weight:600;
}
.btnPrimary{background:var(--teal-fg);border-color:var(--teal-fg);color:#fff}
.btnPrimary:hover{background:#13886f;border-color:#13886f}
.btnAddForm{padding: 0 20px}
.btnDanger{background:var(--danger);border-color:var(--danger);color:#fff}
.btnGhost{background:#fff}
.btnWithIcon{padding:0 16px}
.btnSmall{height:30px;padding:0 10px;border-radius:10px;font-weight:600;}
a.btnPrimary{font-size:14px; padding-top:1px;}
.btnFull{width:100%;margin-top:32px;border-radius:4px;padding:0 0}
.h1Light{
  font-weight:600;
  margin-top:10px;
  margin-bottom:20px;
}

/* ── Category Filter Bar ─────────────────────────────────── */
.catFilterSection{
  padding:28px 0 0;
}


.catPillRow{
  display:flex;
  flex-direction:row;
  gap:10px;
  overflow-x:auto;
  padding:4px 0 18px;
  scrollbar-width:none;
  -ms-overflow-style:none;
  -webkit-overflow-scrolling:touch;
}
.catPillRow::-webkit-scrollbar{display:none}

.catPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 18px 7px 7px;
  border-radius:999px;
  border:none;
  background:#F5F3EF;
  color:#1a1a1a;
  cursor:pointer;
  white-space:nowrap;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.01em;
  transition:background .2s ease,color .2s ease,box-shadow .2s ease;
  box-shadow:0 1px 3px rgba(0,0,0,.07);
  flex-shrink:0;
  line-height:1;
  outline:none;
}
.catPill:hover{background:#EDE9E1;box-shadow:0 2px 8px rgba(0,0,0,.1)}

.catPillIconWrap{
  width:36px;
  height:36px;
  border-radius:999px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 2px 6px rgba(0,0,0,.13);
  color:#1a1a1a;
  transition:background .2s ease,color .2s ease,box-shadow .2s ease;
}

.catPillActive{
  background:#111;
  color:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,.22);
}
.catPillActive:hover{background:#222;box-shadow:0 4px 14px rgba(0,0,0,.28)}
.catPillActive .catPillIconWrap{
  background:#fff;
  color:#111;
  box-shadow:none;
}


/* ─────────────────────────────────────────────────────────── */

.emptyState{
  height:162px;
  border-radius:16px;
  background:var(--bg-muted);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
}

.hero{
  position:relative;
  padding:0;
  overflow:hidden;
  background:#014b44;
}
.hero::before{
  display:none;
}
.heroOverlay{
  display:none;
}
.heroBackBar{
  width:100%;
  background:#0c5d56;
  padding:12px 16px;
}
.degreeTitleWrap{
  display:block;
  width:100%;
  background:#0c5d56;
  border-radius:0;
  padding:14px 16px;
  margin-top:0;
}
.heroTitle{color:#ecfeff;margin:0;font-size:36px;line-height:1.15}
.backLink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#FFFFFF;
  text-decoration:none;
  font-weight:400;
  font-size:16px;
}
.backLink svg{
  color:#fff;
  background:#366a65;
  padding:2px;
  border-radius:6px;
  box-sizing:content-box;
  margin-right:8px;
}

.toolbar{border-top:1px solid var(--border);border-bottom:0;background:#fff}
.toolbarInner{display:flex;flex-direction:column;gap:14px;padding:24px 16px}

.pillRow{display:flex;flex-wrap:wrap;gap:10px;flex-direction:column}
.pill{
  text-decoration:none;
  justify-content: center;
  display: flex;
  align-items:center;
  gap:10px;
  height:36px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid #C3CBC7;
  background:#fff;
  color:var(--text-muted);
  cursor:pointer;
  font-weight:500;

}
.pill:hover{border-color:#9ca3af}
.pillIcon{display:block;color:currentColor}
.telegramPillIcon .telegramPillOuter{fill:#3D4E47}
.telegramPillIcon .telegramPillInner{fill:#fff}
.pillActive .telegramPillIcon .telegramPillOuter{fill:#fff}
.pillActive .telegramPillIcon .telegramPillInner{fill:var(--teal-fg)}
.whatsappPillIcon .whatsappPillOuter{fill:#3D4E47}
.whatsappPillIcon .whatsappPillInner{fill:#3D4E47}
.pillActive .whatsappPillIcon .whatsappPillOuter{fill:#fff}
.pillActive .whatsappPillIcon .whatsappPillInner{fill: white;}
.pillActive{background:var(--teal-fg);border-color:var(--teal-fg);color:#fff;box-shadow:var(--shadow)}
.pillActive:hover{border-color:var(--teal-fg)}
.pillCount{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:22px;
  padding:0 7px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:#f3f4f6;
  border:0;
  color:#8D9C94;
}
.pillActive .pillCount{background:#fff;color:var(--teal-fg)}
.promoBadge{display:inline-block;background:#d5efe7;padding:8px 14px;border-radius:999px;margin:20px 0 24px}
.stack + .promoBadge{margin-top:30px}
.promoText{font-weight:700; font-size:20px;color:var(--green-fg)}
.stack{display:flex;flex-direction:column;gap:10px}
  
.groupListSection{
  background:#f5f5f5;
  padding:0 16px 24px;
}
.groupList{
  margin:0;
  padding:14px 0 0;
}

.groupItem{
  border:1px solid var(--border);
  background:#fff;
  border-radius:10px;
  padding:8px 14px;
  margin:8px 0;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  position:relative;
  box-shadow:0px 1px 3px 1px #E4E4E7, 0px 1px 2px 0px #ECF0EDE5;
  transition:none;
  cursor:pointer;
}
.groupItem:hover{
  border-color:rgba(13,148,136,.55);
  transform:none;
}
.groupItem:hover .btn.btnPrimary{background:#13886f;border-color:#13886f}

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

.groupLeft{display:flex;align-items:left;gap:12px;min-width:0;width:100%;align-items:center;padding-right:36px;}
.groupPlatform{
  width:28px;height:28px;border-radius:10px;
  background:var(--bg-muted);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-muted);
  font-weight:800;
  flex:0 0 auto;
}
.groupPlatformWhatsapp{background:#e8faf4}
.groupPlatformTelegram{background:#e6f4fd}
.groupText{position:relative;min-width:0;flex:1 1 auto;}
.groupTextPrivate{padding-right:58px;}
.groupName{
  font-weight:700;
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
}
.groupRight{display:flex;align-items:center;gap:10px;width:100%;}
.groupRight>.btn{
  width:100%;
}
.tag{border-radius:999px;padding:2px 6px;font-weight:500;font-size:11px;line-height:1.1;border:1px solid var(--border)}
.tagWarn{background:#fef9c3;border-color:#fde68a}
.groupText .tagWarn{
  position:absolute;
  top:50%;
  right:0;
  transform:translateY(-50%);
}
[x-cloak]{display:none !important;}
.iconBtn{
  width:38px;height:38px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
  color:var(--text-faded);
  position:static;
  flex:0 0 auto;
}
.iconBtn:hover{background:rgba(220,38,38,.12);color:var(--danger)}
.iconBtn.reportBtn{
  width:38px;
  height:38px;
  flex:0 0 auto;
  border-color:#d1d5db;
  border-radius:10px;
  background:#fff;
  padding:0;
}
.iconBtn.reportBtn:hover{
  border-color:#9ca3af;
  background:rgba(220,38,38,.12);
  color:var(--danger);
}
.iconBtn.moreBtn:hover{
  background:rgba(15,23,42,.06);
  color:var(--text);
}
.reportDirect{display:none !important}
.reportMenu{
  display:inline-flex !important;
  position:absolute;
  top:10px;
  right:8px;
  z-index:2;
}
.reportDropdown{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:190px;
  padding:6px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 12px 25px rgba(0,0,0,.12);
  z-index:30;
}
.reportMenuItem{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
}
.reportMenuItem:hover{background:rgba(220,38,38,.12);color:var(--danger)}

.sep{border:0;border-top:1px solid var(--border)}
.row{display:flex;gap:10px;align-items:center; justify-content:center;}
.rowCenter{justify-content:center !important;}
.between{justify-content:space-between}
.inline{display:inline}
.tableWrap{overflow:auto;border:1px solid var(--border);border-radius:12px;background:#fff}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-top:1px solid var(--border);text-align:left;vertical-align:top}
.table thead th{background:var(--bg-muted);border-top:none}

.modalBackdrop{
  position:fixed;inset:0;
  background:rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:50;
}

.modal{
  width: min(720px, 96vw);
  background:#fff;
  border-radius:16px;
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
  overflow:hidden;
  padding:16px 25px;
  width: 100%;
  max-width: 90vw;
}
.modalHeader{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.modalTitle{font-weight:600; font-size:20px;}
.reportTitle{font-size:30px; font-weight:600}
.modalBody{padding:16px 0}
.reportHeader{margin-top:4px}
.bigIcon{font-size:38px;opacity:.8}
.modalJoin{
  max-width:390px;
  min-height:260px;
  max-height:85vh;
  padding:16px;
  overflow:auto;
  display:flex;
  flex-direction:column;
}
.modalJoin .modalBody{
  padding:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  flex:1;
  width:100%;
}
.modalJoin .bigIcon{display:flex;justify-content:center;margin:0 0 14px}
.joinIconMain{color:#a1a1aa}
.joinContact{font-size:18px}
.btnContent{display:inline-flex;align-items:center;gap:10px;line-height:1}
.btnContent svg{display:block}

@media (max-width: 480px){
  .modalBackdrop{padding:18px 9px;}
  .modal{max-width:95vw;}
}

.alertInfo{
  background:#ffedd5;
  color:#92310a;
  padding:16px;
  border-radius:4px;
  font-size:12px;
  line-height:20px;
  margin-bottom:14px;
  border-radius: 4px;
  padding: 12px;
  display: flow-root; 
}

.alertIcon{
  float: left;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  margin-top: 4px; 
}

.alertIcon{
  display:inline-flex;
  margin-right:8px;
}

.alertText{
  display:inline;
}

.private-switch-container{
  display: flex;
  align-items: center;
  font-size:14px;
  font-weight:400;
  gap: 10px;
  height:24px;
  padding: 36px 0;
}

.disclaimer{
  font-size:14px;
  color:#52525B;
}

.disclaimer-small{
    font-size:12px;
    color:#52525B;
    margin-bottom:16px;
}

.separator{
  width:100%;
  height:1px;
  background:var(--border);
  margin:16px 0;
}

.label.mt{
  font-size:14px;
  font-weight:500;
}

.switch{position:relative;display:inline-flex;align-items:center}
.switch input{display:none}
.switch span{
  width:48px;height:28px;border-radius:999px;
  background:var(--bg-muted);
  border:1px solid var(--border);
  display:inline-block;
  position:relative;
  cursor:pointer;
}
.switch span::after{
  content:"";
  width:22px;height:22px;border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  position:absolute;left:3px;top:50%;
  transform:translateY(-50%);
  transition: transform .15s ease;
}
.switch input:checked + span{background:var(--teal-fg);border-color:var(--teal-fg)}
.switch input:checked + span::after{transform:translate(20px,-50%)}

.error{color:var(--danger);font-size:13px;margin-top:6px}

@media(min-width:480px){
.cardBody{padding:32px}
.btnPrimary.btnFull{padding:0px 14px}
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:36px;
  margin: 48px 36px;
}
}

@media(min-width:512px){
.pillRow{flex-direction:row;justify-content: center;}
.btnNoStretch{width:fit-content;max-width:100%;}
.toolbarInner{align-items:center;}
}

@media (min-width: 760px){
  .grid{grid-template-columns: 1fr 1fr}
  .degree-cards{margin:20px 8px}
  .row.mt{justify-content:start;}
  .bannerText{text-align:center;}
}



@media (min-width: 760px){
  .grid{grid-template-columns: 1fr 1fr;  margin: 48px 36px;}
  #degree-cards{margin:70px 8px}
  .groupItem{padding:10px 14px;flex-direction:row;}
  .row.mt{justify-content:start;}
  .groupLeft, .groupRight{width:unset}
  .groupLeft{padding-right:0}
  .groupText{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:10px;
    padding-right:0;
  }
  .groupText .tagWarn{
    position:static;
    transform:none;
  }
  .groupRight{display:flex; flex-direction:row}
  .groupRight>.btn{width:170px}
  .iconBtn{padding:0 8px 0 8px}
  .iconBtn.reportBtn{padding:0; width:38px; height:38px}
  .reportDirect{display:inline-flex !important}
  .reportMenu{display:none !important}
  .reportHeader{margin-top:1em}
}

@media (min-width: 980px){
  .section{padding:24px 140px 0 140px}
}

@media (min-width: 1024px){
  .grid{  margin:48px 36px 0 36px;}
  .footer{padding:32px 140px}
  .modal{width: 700px;}
  .heroBackBar{padding:12px 156px}
  .degreeTitleWrap{padding:16px 156px}
  .groupList{margin:0 70px}
  .toolbarInner{flex-direction:row;align-items:center;justify-content:space-between; padding: 24px 140px}
  .groupListSection{padding:0 100px 24px;}
}

@media (min-width: 1540px){
  .grid{grid-template-columns: 1fr 1fr 1fr}
  .grid{margin:48px 70px}
}
