: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;}
@media (min-with:600px){
.footer{background:var(--teal-fg)}
}
.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,.6);box-shadow:0 0 0 3px rgba(13,148,136,.15)}

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


.degree-cards{
  .degree-cards{margin:20px 8px}
}

.card{
  border:1px solid var(--border);
  background:#fff;
  border-radius:4px;
}
.cardBody>h2{-webkit-line-clamp: 2; line-clamp: 2; min-height:calc(2.8em)}
.cardBody{padding:8px}
.cardBody .h2{margin-top:8px;margin-bottom:16px}
.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}
.btnAddForm{padding: 0 4px}
.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;
}

.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:52px 0 18px;
  overflow:hidden;
  background: linear-gradient(120deg, rgba(13,148,136,.25), rgba(12,93,86,.55));
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background-image: var(--hero-img);
  background-size:cover;
  background-position:center;
  filter: grayscale(100%) saturate(60%) brightness(.85) contrast(.4);
  opacity:1;
}
.heroOverlay{
  position:absolute;inset:0;
  background: rgba(13,148,136,.55);
  mix-blend-mode: overlay;
}
.heroInner{position:relative;z-index:1; padding:0 16px;}
.heroTitle{color:#ecfeff;margin:8px 0 0}
.backLink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#cffafe;
  text-decoration:none;
  font-weight:800;
  font-size:12px;
}

.toolbar{border-top:1px solid var(--border);border-bottom:1px solid var(--border);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 var(--border);
  background:var(--bg-muted);
  color:var(--text-muted);
  cursor:pointer;
  font-weight:500;

}
.pillIcon{display:block;color:currentColor}
.pillActive{background:var(--teal-fg);border-color:var(--teal-fg);color:#fff;box-shadow:var(--shadow)}
.promoBadge{display:inline-block;background:var(--green-subtle);padding:8px 14px;border-radius:999px;margin:20px 0 40px}
.promoText{font-weight:700; font-size:20px;color:var(--green-fg)}
.stack{display:flex;flex-direction:column;gap:10px}
  
.groupList{
  margin:8px 0;
}

.groupItem{
  border:1px solid var(--border);
  background:#fff;
  border-radius:4px;
  padding:8px 14px;
  margin:8px 0;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  position:relative;
}

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

.groupLeft{display:flex;align-items:left;gap:12px;min-width:0;width:100%;align-items:center;}
.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;
}
.groupName{font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.groupRight{display:flex;align-items:center;gap:10px;width:100%;}
.groupRight>.btn{
  width:100%;
}
.tag{border-radius:999px;padding:4px 8px;font-weight:600;font-size:12px;border:1px solid var(--border)}
.tagWarn{background:#fef9c3;border-color:#fde68a}
.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:absolute;
  top:16px;
  right:8px;
}
.iconBtn: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;}
.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: 95%;
  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}
.bigIcon{font-size:38px;opacity:.8}
.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: 760px){
  .grid{grid-template-columns: 1fr 1fr}
  .degree-cards{margin:20px 8px}
  .row.mt{justify-content:start;}
  .bannerText{text-align:center;}
}

@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;  margin: 48px 36px;}
  #degree-cards{margin:70px 8px}
  .groupItem{padding:8px 16px;flex-direction:row;}
  .row.mt{justify-content:start;}
  .groupLeft, .groupRight{width:unset}
  .groupRight{display:flex; flex-direction:row}
  .iconBtn{position:static; padding:0 8px 0 8px}
}

@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;}
  .heroInner{margin-left:140px;}
  .groupList{margin:8px 70px}
  .toolbarInner{flex-direction:row;align-items:center;justify-content:space-between; padding: 24px 156px}
}

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