:root {

  /* ════════════════════════════════════════
     PRIMITIVOS — valores brutos (não usar
     diretamente no CSS, usar os semânticos)
     ════════════════════════════════════════ */

  /* Paleta Blue */
  --p-blue-100: #f2f4f8;
  --p-blue-200: #d8e2f5;
  --p-blue-300: #4764af;
  --p-blue-400: #5155bd;
  --p-blue-500: #353887;
  --p-blue-600: #2f337e;
  --p-blue-700: #16254c;

  /* Paleta Neutral */
  --p-neutral-100: #e4e8ef;
  --p-neutral-200: #4e5a66;
  --p-neutral-300: #3e4149;
  --p-neutral-400: #2e3640;
  --p-neutral-500: #1e2530;

  /* Outras */
  --p-yellow-500: #ecdd12;
  --p-white:      #ffffff;

  /* ════════════════════════════════════════
     SEMÂNTICOS — intenção de uso (espelham
     os tokens do Figma)
     ════════════════════════════════════════ */

  /* Marca */
  --brand-primary:      var(--p-blue-600);
  --brand-accent:       var(--p-yellow-500);

  /* Texto */
  --text-default:       var(--p-neutral-500);
  --text-secondary:     var(--p-neutral-400);
  --text-muted:         var(--p-neutral-200);
  --text-heading:       var(--p-neutral-300);
  --text-on-dark:       var(--p-white);

  /* Background */
  --bg-default:         var(--p-white);
  --bg-subtle:          var(--p-blue-100);
  --bg-muted:           var(--p-blue-200);

  /* Borda */
  --border-default:     var(--p-neutral-100);

  /* Interação */
  --interactive:        var(--p-blue-300);
  --interactive-hover:  var(--p-blue-500);

  /* Tipografia */
  --font-body:          'Montserrat', sans-serif;
  --font-display:       'Lora', Georgia, serif;
  --lh-body:            1.65;
  --lh-heading:         1.2;

  /* ════════════════════════════════════════
     ALIASES — retrocompatibilidade com o
     CSS existente (não usar em código novo)
     ════════════════════════════════════════ */

  --navy:    var(--p-blue-700);
  --blue:    var(--p-blue-300);
  --mid:     var(--p-blue-400);
  --deep:    var(--p-blue-500);
  --bl:      var(--p-blue-200);
  --bxl:     var(--p-blue-100);
  --line:    var(--p-neutral-100);
  --muted:   var(--p-neutral-200);
  --text:    var(--p-neutral-500);
  --sub:     var(--p-neutral-400);
  --white:   var(--p-white);
  --brand:   var(--p-blue-600);
  --accent:  var(--p-yellow-500);
  --heading: var(--p-neutral-300);

  --blue-rgb: 71,100,175;
  --navy-rgb: 17,35,80;

  /* ════════════════════════════════════════
     LAYOUT & TIPOGRAFIA
     ════════════════════════════════════════ */

  --r:       6px;
  --max:     1184px; /* 1120px conteúdo + 2×32px wrap-px */
  --sec-pad: 64px;
  --wrap-px: 32px;
  --gap:     32px; /* gap de coluna do grid 12-col */
  --gap-sm:  16px; /* ½ coluna */

  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-base: 16px;
  --fs-md:   18px;
  --fs-lg:   20px;
  --fs-xl:   24px;
  --fs-2xl:  32px;
  --fs-3xl:  40px;
  --h-card:  18px;
  --h-sec:   32px;
  --h-hero:  44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
body { font-family: var(--font-body); font-size: var(--fs-base); color: var(--text); background: var(--white); line-height: var(--lh-body); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
h1,h2,h3 { font-family: var(--font-display); line-height: var(--lh-heading); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--wrap-px); }

/* ── Header ── */
.header { background: var(--brand); position: sticky; top: 0; z-index: 300; }
.header .wrap { display: flex; flex-direction: column; }
.h-toprow { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--mid); font-size: var(--fs-xs); overflow: hidden; max-height: 50px; transition: max-height .3s ease, padding .3s ease, opacity .3s ease; opacity: 1; }
.header.scrolled .h-toprow { max-height: 0; padding: 0; opacity: 0; pointer-events: none; }
.h-toprow a { color: rgba(255,255,255,.7); transition: color .15s; display: inline-flex; align-items: center; gap: 8px; }
.h-toprow a:hover { color: var(--white); }
.h-mainrow { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.tg { display: flex; align-items: center; gap: 16px; }
.tg-social { gap: 8px; margin-left: auto; }
.tg-social a { display: inline-flex; align-items: center; gap: 8px; }
.tdiv { width: 1px; height: 11px; background: var(--mid); }
.h-logo img,
.h-logo .custom-logo { height: 40px; width: auto; }
.h-logo .custom-logo-link { display: flex; }
.h-logo-name { color: var(--white); font-weight: 700; font-size: var(--fs-md); }
.h-nav { display: flex; gap: 4px; align-items: center; margin-left: auto; }
.h-item { position: relative; }
.h-item > a { display: flex; align-items: center; gap: 8px; padding: 8px 16px; font-size: var(--fs-base); font-weight: 600; color: var(--white); letter-spacing: .1px; border-radius: var(--r); transition: background .14s, color .14s; }
.h-item > a:hover { background: rgba(255,255,255,.08); color: var(--accent); }
.h-item > a svg { width: 10px; }
.h-drop { position: absolute; top: 100%; left: 0; min-width: 210px; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 0 0 var(--r) var(--r); padding: 8px 0; padding-top: 16px; margin-top: 0; opacity: 0; pointer-events: none; transform: translateY(-4px); transition: opacity .15s, transform .15s; box-shadow: 0 12px 32px rgba(0,0,0,.1); z-index: 10; }
.h-item:hover .h-drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.h-drop a { display: block; padding: 8px 24px; font-size: var(--fs-sm); font-weight: 500; color: var(--text); transition: background .12s, color .12s; }
.h-drop a:hover { background: var(--bxl); color: var(--heading); padding-left: 24px; }
.h-burger { display: none; flex-direction: column; justify-content: center; gap: 8px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.h-burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .22s, opacity .22s; }
.h-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.h-burger.open span:nth-child(2) { opacity: 0; }
.h-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-menu { display: none; position: fixed; inset: 0; z-index: 400; background: var(--brand); flex-direction: column; opacity: 0; pointer-events: none; transition: opacity .25s ease; overflow-y: auto; }
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-header { display: flex; align-items: center; justify-content: space-between; padding: 0 var(--wrap-px); height: 80px; border-bottom: 1px solid rgba(255,255,255,.1); flex-shrink: 0; }
.mob-close { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r); cursor: pointer; color: var(--accent); font-size: 28px; line-height: 1; padding: 0; flex-shrink: 0; transition: background .15s; }
.mob-close:hover { background: rgba(255,255,255,.15); }
.mob-nav { padding: 16px 0 40px; flex: 1; }
.mob-item > a { display: flex; align-items: center; justify-content: space-between; padding: 16px var(--wrap-px); font-size: var(--fs-md); font-weight: 600; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.08); transition: color .14s; }
.mob-item > a:hover { color: var(--accent); }
.mob-item > a svg { transition: transform .2s; flex-shrink: 0; width: 16px; height: 16px; }
.mob-item.open > a svg { transform: rotate(180deg); }
.mob-sub { display: none; background: rgba(0,0,0,.18); }
.mob-item.open .mob-sub { display: block; }
.mob-sub a { display: block; padding: 16px calc(var(--wrap-px) + 16px); font-size: var(--fs-base); color: rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.05); }

/* ── Slider (Swiper) ── */
.slider { position: relative; width: 100%; height: 480px; overflow: hidden; background: var(--navy); }
.slider .swiper-wrapper { height: 100%; }
.slide { height: 100%; position: relative; display: flex; align-items: center; overflow: hidden; }
.slide-full-img::before { display: none; }
.slide-full-img::after  { display: none; }
.slide-full-img picture { position: absolute; inset: 0; display: flex; width: 100%; height: 100%; }
.slide-full-img picture .slide-bg { position: static; flex: 1; }
.slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.2) 100%); z-index: 1; }
.slide::after { content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); z-index: 1; }
.slide-content { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 var(--wrap-px); width: 100%; }
.slide-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: var(--white); font-size: var(--fs-base); font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase; padding: 8px 16px; border-radius: 100px; margin-bottom: 16px; }
.slide-eyebrow::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }
.slide-content h2 { font-size: var(--h-hero); color: var(--white); max-width: 580px; margin-bottom: 16px; }
.slide-content p { font-family: 'Montserrat', sans-serif; font-size: var(--fs-base); color: rgba(255,255,255,.85); max-width: 480px; line-height: 1.65; margin-bottom: 32px; }
.slide-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--navy); padding: 8px 24px; border-radius: var(--r); font-weight: 700; font-size: var(--fs-base); transition: background .15s, gap .15s; }
.slide-btn:hover { background: var(--accent); gap: 14px; }
.slide-btn svg { width: 13px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 40px; height: 40px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; color: rgba(255,255,255,.8); }
.slider-arrow:hover { background: rgba(255,255,255,.2); }
.slider-arrow svg { width: 16px; }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots { position: absolute !important; bottom: 24px !important; left: 50% !important; transform: translateX(-50%) !important; z-index: 10; display: flex !important; gap: 8px; width: auto !important; text-align: unset !important; }
.slider-dots .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(255,255,255,.3); border-radius: 10px; cursor: pointer; transition: background .2s, width .2s; opacity: 1; flex-shrink: 0; margin: 0 !important; }
.slider-dots .swiper-pagination-bullet-active { background: var(--white); width: 24px; border-radius: 10px; }
.slider-progress { position: absolute; bottom: 0; left: 0; height: 3px; width: 0; background: var(--blue); z-index: 10; transition: width .1s linear; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ── Info strip ── */
.info-strip { background: var(--bxl); border-top: 3px solid var(--accent); border-bottom: 1px solid var(--bl); }
.info-strip .wrap { display: flex; }
.is-item { flex: 1; display: flex; align-items: center; gap: 16px; padding: 16px 24px; border-right: 1px solid var(--bl); }
.is-item:last-child { border-right: none; }
.is-item .ico { width: 40px; height: 40px; flex-shrink: 0; background: var(--bl); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--blue); }
.is-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--heading); }
.is-item span { font-size: 13px; color: var(--sub); }

/* ── Seções ── */
.sec { padding: var(--sec-pad) 0; }
.sec-white { background: var(--white); }
.sec-gray  { background: var(--bxl); }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.tag { display: inline-block; background: var(--bl); color: var(--blue); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 16px; border-radius: 100px; margin-bottom: 8px; }
.st { font-size: var(--h-sec); color: var(--heading); }
.more { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-base); font-weight: 600; color: var(--blue); white-space: nowrap; padding-bottom: 4px; transition: gap .15s; }
.more:hover { gap: 16px; }
.more--mobile { display: none; }

/* ── Curso ── */
.curso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center; }
.curso-text { align-self: start; }
@media (max-width: 1024px) { .curso-text .tag { margin-top: 24px; } }
.curso-text p { font-size: var(--fs-base); color: var(--sub); margin-bottom: 16px; line-height: 1.75; }
.curso-content { font-size: var(--fs-base); color: var(--sub); line-height: 1.75; margin-bottom: 8px; }
.curso-content p { margin-bottom: 16px; }
.curso-content p:last-child { margin-bottom: 0; }
.curso-more { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-base); font-weight: 600; color: var(--blue); margin-top: 24px; transition: gap .15s; }
.curso-more:hover { gap: 16px; }
h2.st.hdiv { margin-bottom: 24px; }
h2.st.hdiv::after { content: ''; display: block; width: 32px; height: 2px; background: var(--brand); border-radius: 1px; margin-top: 16px; }
.curso-col-r { position: relative; align-self: start; }
.curso-img { background: linear-gradient(150deg, var(--navy) 0%, var(--deep) 100%); border-radius: 10px; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; font-size: 96px; color: var(--bl); opacity: 1; box-shadow: 0 16px 48px rgba(22,37,76,.14); overflow: hidden; }
.curso-img img { width: 100%; height: 100%; object-fit: cover; }
.curso-img i { opacity: .35; }
.curso-badge { position: absolute; bottom: -16px; left: -16px; background: var(--blue); color: var(--white); border-radius: 10px; padding: 16px 24px; box-shadow: 0 8px 24px rgba(var(--blue-rgb),.3); }
.curso-badge strong { display: block; font-family: 'Lora', serif; font-size: 32px; font-weight: 700; line-height: 1; }
.curso-badge span { font-size: var(--fs-sm); opacity: .85; margin-bottom: 4px; display: block; }
@media (max-width: 1024px) {
  .curso-grid { grid-template-columns: 1fr; }
  .curso-col-r { order: -1; max-width: 100%; }
  .curso-badge { bottom: -16px; left: -8px; }
}
@media (max-width: 768px) {
  .curso-col-r { max-width: 100%; }
  .curso-badge { left: 0; bottom: -16px; }
}

@media (max-width: 1024px) { .estagios-home .vagas-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .estagios-home .vagas-row { grid-template-columns: 1fr; } }
@media (max-width: 1024px) { .estagio-archive .vagas-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .estagio-archive .vagas-row { grid-template-columns: 1fr; } }

/* ── Pesquisa e Publicações ── */
.pesq-sec { background: linear-gradient(150deg, var(--navy) 0%, var(--deep) 100%); }
.pesq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap); align-items: start; }
.pesq-text { align-self: start; }
.pesq-sub { font-size: var(--fs-base); color: rgba(255,255,255,.65); margin-top: 16px; margin-bottom: 24px; line-height: 1.65; }
.tag-d { background: rgba(var(--blue-rgb),.25); color: #8ab0e0; }
h2.st-w { color: var(--white); }
h2.st-w.hdiv::after { background: rgba(255,255,255,.4); }
.pstats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.ps { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: background .15s, border-color .15s; }
.ps-link { cursor: pointer; }
.ps:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.ps-ico { font-size: 20px; color: var(--accent); width: 40px; height: 40px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ps-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ps-title { font-family: 'Montserrat', sans-serif; font-size: var(--fs-md); font-weight: 700; color: var(--white); }
.ps-arrow { color: rgba(255,255,255,.5); font-size: 16px; flex-shrink: 0; }
.ps-l { font-size: var(--fs-sm); color: rgba(255,255,255,.65); line-height: 1.55; margin: 0; }
@media (max-width: 1024px) { .pesq-layout { grid-template-columns: 1fr; gap: var(--gap); } }
@media (max-width: 768px)  { .pstats { grid-template-columns: 1fr; } }

/* ── Pós-Graduação ── */
.posgrad-layout { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap); align-items: start; }
.pos-intro { align-self: start; }
.pos-intro p { font-size: var(--fs-base); color: var(--sub); margin: 16px 0 24px; line-height: 1.65; }
.pos-intro-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: var(--white); padding: 8px 24px; border-radius: var(--r); font-size: var(--fs-base); font-weight: 600; transition: background .15s; }
.pos-intro-btn:hover { background: var(--navy); }
.pos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.pcard { background: var(--bxl); border: 1px solid var(--bl); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; min-height: 180px; transition: border-color .18s, box-shadow .18s; }
.pcard:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(var(--blue-rgb),.1); }
.pcard h3 { font-family: 'Montserrat', sans-serif; font-size: var(--fs-md); font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.pcard p { font-size: var(--fs-sm); color: var(--sub); line-height: 1.6; flex: 1; }
.pcard-btn { font-size: var(--fs-sm); font-weight: 600; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; margin-top: 24px; display: block; width: fit-content; }
.pcard-btn:hover { color: var(--heading); }
@media (max-width: 1024px) {
  .posgrad-layout { grid-template-columns: 1fr; gap: var(--gap); }
  .pos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) { .pos-grid { grid-template-columns: 1fr; } }

/* ── Bolsas ── */
.bolsas-grid { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap); align-items: start; }
.bolsa-intro { align-self: start; }
.bolsa-sub { font-size: var(--fs-base); color: var(--sub); line-height: 1.65; margin-top: 16px; }
.bolsa-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); align-content: start; }
.bolsa-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: border-color .18s; }
.bolsa-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(var(--blue-rgb),.08); }
.bolsa-card-nome { font-family: 'Montserrat', sans-serif; font-size: var(--fs-md); font-weight: 700; color: var(--heading); }
.bolsa-card-desc { font-size: var(--fs-sm); color: var(--sub); line-height: 1.6; flex: 1; }
.bolsa-card-link { display: flex; width: fit-content; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--blue); margin-top: 8px; transition: gap .15s; }
.bolsa-card-link:hover { gap: 16px; }
@media (max-width: 1024px) { .bolsas-grid { grid-template-columns: 1fr; gap: var(--gap); } .bolsa-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .bolsa-cards { grid-template-columns: 1fr; } }

/* ── Notícias — Home ── */
.news-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.nc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .18s; display: flex; flex-direction: column; }
.nc:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(var(--blue-rgb),.1); }
.nc-thumb { aspect-ratio: 16 / 9; background: linear-gradient(145deg, var(--navy) 0%, var(--deep) 100%); display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--bl); overflow: hidden; }
.nc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.nc:hover .nc-thumb img { transform: scale(1.04); }
.nc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.nc-body h4 { font-size: var(--fs-lg); font-weight: 700; color: var(--heading); margin-bottom: 8px; line-height: 1.38; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nc-body h4 a { color: inherit; transition: color .15s; }
.nc-body h4 a:hover { color: var(--blue); }
.nc-body p { font-size: var(--fs-base); color: var(--muted); flex: 1; margin-bottom: 32px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; margin-top: auto; border-top: 1px solid var(--line); }
.vcard-btn { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--blue); background: var(--bxl); border: 1px solid var(--bl); padding: 8px 16px; border-radius: var(--r); transition: background .15s, color .15s; }
.vcard-btn:hover { background: var(--blue); color: var(--white); }
.vcard-btn--sec { background: transparent; border-color: transparent; }
.vcard-btn--sec:hover { background: var(--bxl); border-color: var(--bl); }
.nc-date { font-size: var(--fs-xs); color: var(--muted); display: flex; align-items: center; gap: 8px; }

/* ── Vagas de Estágio — Home ── */
.vaga-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.vcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: border-color .18s; }
.vcard:hover { border-color: var(--blue); }
.vcard-top { display: flex; align-items: center; gap: 8px; }
.vcard-top .ico { width: 40px; height: 40px; flex-shrink: 0; background: var(--bxl); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 18px; }
.vcard h4 { font-family: 'Montserrat', sans-serif; font-size: var(--fs-base); font-weight: 700; color: var(--heading); margin: 0; line-height: 1.35; }
.vcard h4 a { color: inherit; }
.vcard-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.vmeta { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); color: var(--sub); }
.vmeta i { color: var(--blue); }
.vcard p { font-size: var(--fs-base); color: var(--muted); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.vcard-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.vcard-date { font-size: var(--fs-xs); color: var(--muted); font-style: italic; display: flex; align-items: center; gap: 8px; }
@media (max-width: 768px) {
  .vaga-grid { grid-template-columns: 1fr; }
}

/* ── Notícias — Single ── */
.noticia-single { padding: 56px 0 80px; }
.ns-inner { max-width: 736px; margin: 0 auto; } /* 8/12 colunas do grid (8×64 + 7×32) */
.ns-back { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--blue); margin-bottom: 24px; }
.ns-back:hover { text-decoration: underline; }
.ns-titulo { font-size: var(--fs-3xl); color: var(--heading); margin-bottom: 16px; line-height: 1.15; }
.ns-linha-fina { font-size: var(--fs-base); color: var(--sub); font-weight: 400; margin-bottom: 24px; line-height: 1.6; }
.ns-meta { display: flex; align-items: center; gap: 24px; font-size: var(--fs-sm); color: var(--muted); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.ns-meta-item { display: flex; align-items: center; gap: 8px; }
.ns-thumb-wrap { margin-bottom: 40px; }
.ns-thumb { border-radius: 8px; overflow: hidden; aspect-ratio: 16 / 9; margin-bottom: 8px; }
.ns-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ns-thumb-wrap figcaption { font-size: var(--fs-xs); font-style: italic; color: var(--muted); margin-top: 4px; text-align: center; }
.ns-content { font-size: var(--fs-base); line-height: 1.85; color: var(--text); margin-bottom: 48px; }
.ns-content h2, .ns-content h3 { font-family: 'Lora', Georgia, serif; color: var(--heading); margin: 32px 0 16px; }
.ns-content p { margin-bottom: 24px; }
.ns-content a { color: var(--blue); text-decoration: underline; }
.ns-content ul, .ns-content ol { padding-left: 24px; margin-bottom: 24px; }
.ns-content li { margin-bottom: 8px; line-height: 1.7; }
.ns-content ul li::marker { color: var(--blue); }
.ns-content ol li::marker { color: var(--blue); font-weight: 600; }
.ns-content blockquote.instagram-media { all: revert; }
.ns-content blockquote { border-left: 3px solid var(--blue); padding: 16px 24px; margin: 32px 0 16px; color: var(--sub); font-style: italic; background: var(--bxl); border-radius: 0 var(--r) var(--r) 0; font-size: var(--fs-base); line-height: 1.6; }
.ns-content blockquote p { margin-bottom: 0; }
.ns-content figure { margin: 32px 0; }
.ns-content img { max-width: 100% !important; width: 100%; height: auto !important; border-radius: var(--r); display: block; margin-top: 32px; }
.ns-content .wp-caption,
.ns-content .wp-block-image,
.ns-content figure { max-width: 100% !important; width: auto !important; overflow: hidden; }
.ns-content .alignfull,
.ns-content .alignwide { max-width: 100% !important; width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }
.ns-content figcaption, .ns-content .wp-caption-text { font-size: var(--fs-xs); font-style: italic; color: var(--muted); margin-top: -16px; margin-bottom: 32px; text-align: center; }
.ns-content iframe { display: block; width: 100%; max-width: 100%; }
.ns-content iframe[src*="youtube"], .ns-content iframe[src*="youtu.be"] { width: 100%; aspect-ratio: 16 / 9; height: auto; border-radius: var(--r); }
.ns-content blockquote.instagram-media { all: revert; margin: 16px auto !important; }
.ns-content .wp-block-embed__wrapper { width: 100%; border-radius: var(--r); overflow: hidden; }
.ns-content .wp-block-embed-youtube .wp-block-embed__wrapper { aspect-ratio: 16 / 9; }
.ns-content .wp-block-embed-youtube .wp-block-embed__wrapper iframe { aspect-ratio: unset; height: 100%; border-radius: 0; }
.ns-content .wp-block-embed-spotify .wp-block-embed__wrapper { aspect-ratio: unset; }
.ns-share-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding-top: 24px; border-top: 1px solid var(--line); margin-bottom: 0; }
.ns-share-label { font-size: var(--fs-sm); font-weight: 600; color: var(--muted); }
.ns-share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--r); font-size: var(--fs-sm); font-weight: 600; transition: opacity .15s; }
.ns-share-btn i { font-size: 18px; }
.ns-share-btn:hover { opacity: .85; }
.ns-share-whatsapp { background: #25d366; color: var(--white); }
.ns-share-x { background: #000; color: var(--white); }
.ns-share-email { background: var(--navy); color: var(--white); }
.ns-share-copy { background: var(--bxl); color: var(--text); border: 1px solid var(--line); cursor: pointer; }
.ns-gallery { margin-bottom: 48px; }
.ns-gallery-main { border-radius: 8px; overflow: hidden; aspect-ratio: 16 / 9; background: var(--navy); margin-bottom: 16px; }
.ns-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.ns-gallery-main img.switching { opacity: 0; }
.ns-gallery-track-wrap { display: flex; align-items: center; gap: 8px; }
.ns-gallery-track { flex: 1; overflow: hidden; }
.ns-gallery-thumbs { display: flex; gap: 8px; transition: transform .3s ease; }
.gal-thumb { flex: 0 0 calc((100% - 32px) / 5); border: 2px solid transparent; border-radius: var(--r); overflow: hidden; cursor: pointer; background: none; padding: 0; transition: border-color .15s; aspect-ratio: 16 / 9; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-thumb.active { border-color: var(--blue); }
.gal-arrow { flex-shrink: 0; width: 32px; height: 32px; border-radius: var(--r); border: 1px solid var(--line); background: var(--white); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background .15s, color .15s; }
.gal-arrow:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
/* ── Galeria — Lightbox ── */
.ns-gallery-main { position: relative; cursor: zoom-in; }
.gal-expand { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; background: rgba(0,0,0,.5); border: none; border-radius: var(--r); color: var(--white); font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity .2s; z-index: 2; }
.ns-gallery-main:hover .gal-expand { opacity: 1; }
.gal-lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; gap: 16px; padding: 24px; }
.gal-lightbox.open { display: flex; }
.gal-lb-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; flex: 1; max-height: 90vh; }
.gal-lb-video-wrap { width: 90vw; max-width: 960px; aspect-ratio: 16 / 9; }
.gal-lb-video-wrap iframe { width: 100%; height: 100%; border-radius: var(--r); }
.gal-lb-img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--r); box-shadow: 0 24px 64px rgba(0,0,0,.6); display: block; }
.gal-lb-counter { position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%); font-size: var(--fs-xs); color: rgba(255,255,255,.5); white-space: nowrap; }
.gal-lb-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); color: var(--white); font-size: 28px; line-height: 1; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; z-index: 2; }
.gal-lb-close:hover { background: rgba(255,255,255,.2); }
.gal-lb-arrow { flex-shrink: 0; width: 40px; height: 40px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); color: var(--white); font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; }
.gal-lb-arrow:hover { background: rgba(255,255,255,.2); }
.ns-mais { background: var(--bxl); padding: 56px 0; }
.ns-mais .news-row { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .ns-mais .news-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .ns-mais .news-row { grid-template-columns: 1fr; } }
/* ── Estágio — Lightbox ── */
.est-img-link { display: block; cursor: zoom-in; }
.est-lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.88); align-items: center; justify-content: center; padding: 24px; }
.est-lightbox.open { display: flex; }
.est-lightbox-img { max-width: 100%; max-height: 90vh; border-radius: var(--r); object-fit: contain; box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.est-lightbox-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 40px; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .15s; }
.est-lightbox-close:hover { opacity: 1; }

/* ── Estágio — Single ── */
.est-pub-date { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.est-divider { border: none; border-bottom: 1px solid var(--line); margin: 0 0 32px; }
.est-cta-btn { align-self: flex-start; }
.estagio-single { padding: 56px 0 80px; }
.est-inner { max-width: 736px; margin: 0 auto; } /* 8/12 colunas do grid (8×64 + 7×32) */
.est-back { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--blue); margin-bottom: 24px; }
.est-back:hover { text-decoration: underline; }
.est-titulo { font-size: var(--fs-3xl); color: var(--heading); margin-bottom: 24px; line-height: 1.15; }
.est-meta { display: flex; flex-direction: column; gap: 8px; font-size: var(--fs-sm); color: var(--muted); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.est-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.est-meta-item strong { color: var(--text); font-weight: 600; }
.est-empresa { display: flex; align-items: flex-start; gap: 16px; background: var(--bxl); border-radius: 10px; padding: 24px; margin-bottom: 40px; }
.est-empresa-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--bl); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--blue); }
.est-empresa-info h3 { font-family: 'Montserrat', sans-serif; font-size: var(--fs-base); font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.est-empresa-info p { font-size: var(--fs-sm); color: var(--sub); line-height: 1.6; margin: 0; }
.est-content { font-size: var(--fs-base); line-height: 1.85; color: var(--text); margin-bottom: 32px; }
.est-content h2 { font-family: 'Lora', Georgia, serif; font-size: var(--fs-xl); color: var(--heading); margin-bottom: 16px; }
.est-content p { margin-bottom: 16px; }
.est-content ul, .est-content ol { padding-left: 24px; margin-bottom: 16px; }
.est-content li { margin-bottom: 8px; line-height: 1.7; }
.est-content ul li::marker { color: var(--blue); }
.est-content ol li::marker { color: var(--blue); font-weight: 600; }
.est-section { margin-bottom: 40px; }
.est-section-title { font-family: 'Lora', Georgia, serif; font-size: var(--fs-xl); color: var(--heading); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--bl); }
.est-section ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.est-section ul li { display: flex; align-items: flex-start; gap: 8px; font-size: var(--fs-base); color: var(--text); line-height: 1.6; }
.est-section ul li::before { content: ''; display: inline-block; flex-shrink: 0; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; margin-top: 8px; }
.est-cta { background: linear-gradient(150deg, var(--navy) 0%, var(--deep) 100%); border-radius: 10px; padding: 48px; margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.est-cta-header { display: flex; align-items: center; gap: 16px; }
.est-cta-header i { font-size: 28px; color: var(--accent); }
.est-cta-header h2 { font-family: 'Lora', Georgia, serif; font-size: var(--fs-xl); color: var(--white); margin: 0; line-height: 1.2; }
.est-cta p { font-size: var(--fs-base); color: rgba(255,255,255,.75); line-height: 1.65; margin: 0; }
.est-cta p strong { color: var(--white); }
.est-cta .vcard-btn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--white); align-self: flex-start; }
.est-cta .vcard-btn:hover { background: var(--blue); border-color: var(--blue); }
.mais-vagas { background: var(--bxl); padding: 56px 0; }
.vagas-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.vaga-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: border-color .18s; }
.vaga-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(var(--blue-rgb),.1); }
.vaga-card-icon { height: 80px; background: linear-gradient(145deg, var(--navy) 0%, var(--deep) 100%); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--bl); }
.vaga-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.vaga-card-body h4 { font-family: 'Montserrat', sans-serif; font-size: var(--fs-base); font-weight: 700; color: var(--heading); margin-bottom: 4px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vaga-card-body h4 a { color: inherit; }
.vaga-card-empresa { font-size: var(--fs-sm); color: var(--sub); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vaga-card-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: var(--fs-xs); color: var(--muted); margin-bottom: 16px; flex: 1; }
.vaga-card-meta span { display: flex; align-items: center; gap: 4px; }
.vaga-card-meta--col { flex-direction: column; gap: 8px; }
.vaga-card-meta--col span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vaga-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; margin-top: auto; border-top: 1px solid var(--line); }
.vaga-card-btn { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--blue); background: var(--bxl); border: 1px solid var(--bl); padding: 8px 16px; border-radius: var(--r); transition: background .15s, color .15s; }
.vaga-card-btn:hover { background: var(--blue); color: var(--white); }
@media (max-width: 1024px) {
  .vagas-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .est-titulo { font-size: var(--fs-xl); }
  .est-cta { padding: 32px 24px; }
  .est-cta-header h2 { font-size: var(--fs-xl); }
  .vagas-row { grid-template-columns: 1fr; }
  .mais-vagas .vagas-row { grid-template-columns: 1fr; }
}

/* ── Paginação ── */
.arc-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.arc-page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 8px; border-radius: var(--r); font-size: var(--fs-sm); font-weight: 600; color: var(--text); background: var(--bxl); border: 1px solid var(--line); transition: background .15s, color .15s, border-color .15s; text-decoration: none; }
.arc-page-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.arc-page-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); pointer-events: none; }
.arc-page-btn.disabled { color: var(--muted); pointer-events: none; background: none; border-color: transparent; }
.arc-page-arrow { min-width: 40px; padding: 0; background: none; border-color: transparent; }
.arc-page-arrow:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.arc-page-ellipsis { background: none; border-color: transparent; color: var(--muted); pointer-events: none; min-width: 24px; }

/* ── Page Header ── */
.page-header { background: var(--bxl); border-bottom: 1px solid var(--bl); padding: 48px 0; }
.page-header--noticias { background: var(--bxl); }
.page-header-bread { display: flex; align-items: center; gap: 8px; font-size: var(--fs-xs); color: var(--muted); margin-bottom: 16px; }
.page-header-bread a { color: var(--blue); font-weight: 600; transition: color .15s; }
.page-header-bread a:hover { color: var(--navy); }
.page-header-bread i { font-size: 10px; color: var(--muted); }
.page-header-bread span { color: var(--text); font-weight: 500; }
.page-header-title { font-family: 'Lora', Georgia, serif; font-size: var(--fs-2xl); color: var(--heading); line-height: 1.2; margin: 0; }
.page-header-sub { font-size: var(--fs-base); color: var(--sub); margin-top: 16px; line-height: 1.6; }
@media (max-width: 768px) {
  .page-header { padding: 24px 0; }
  .page-header-title { font-size: var(--fs-xl); }
  .page-header-sub { font-size: var(--fs-sm); }
}

/* ── Notícias — Archive ── */
.sec { padding: var(--sec-pad) 0; }
.na-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.na-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .18s, box-shadow .18s; }
.na-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(var(--blue-rgb),.1); }
.na-thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.na-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.na-card:hover .na-thumb img { transform: scale(1.04); }
.na-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.na-body time { font-size: var(--fs-xs); color: var(--muted); }
.na-body h2 { font-size: var(--fs-md); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.na-body h2 a { color: var(--heading); transition: color .15s; }
.na-body h2 a:hover { color: var(--blue); }
.na-linha-fina { font-size: var(--fs-sm); color: var(--sub); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.na-thumb i { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--bl); background: linear-gradient(145deg, var(--navy) 0%, var(--deep) 100%); }
.na-linha-fina { margin-bottom: 16px; }
.na-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }

/* ── Botão Voltar ── */
.btn-back { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--blue); transition: gap .15s; }
.noticia-single .btn-back, .estagio-single .btn-back { margin-bottom: 24px; }
.page-header .btn-back { margin-top: 24px; }
.btn-back:hover { gap: 12px; }

/* ── Corpo Docente ── */
.prof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
@media (max-width: 1024px) { .prof-grid { grid-template-columns: 1fr; } }
.prof-card { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; align-items: stretch; transition: border-color .15s, box-shadow .15s; }
.prof-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(var(--blue-rgb),.1); }
.prof-foto { width: 160px; flex-shrink: 0; overflow: hidden; background: linear-gradient(145deg, var(--navy) 0%, var(--deep) 100%); display: flex; align-items: center; justify-content: center; font-size: 32px; color: rgba(255,255,255,.35); }
.prof-foto img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.prof-body { padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.prof-titulacao { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .7px; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.prof-nome { font-size: var(--fs-base); font-weight: 700; color: var(--heading); line-height: 1.35; margin-bottom: 12px; }
.prof-lattes { font-size: var(--fs-sm); color: var(--muted); text-decoration: underline; text-underline-offset: 3px; transition: color .12s; }
.prof-lattes:hover { color: var(--blue); }
.prof-body .vcard-btn { align-self: flex-start; margin-top: 32px; }

/* ── Matriz Curricular — Acordeão ── */
.mc-totais { display: flex; gap: 8px; margin-bottom: 32px; }
.mc-accordion { display: flex; flex-direction: column; gap: 16px; }
.mc-acc-item { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.mc-acc-trigger { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; transition: background .12s; user-select: none; }
.mc-acc-trigger:hover { background: var(--blue); }
.mc-acc-trigger:hover .mc-acc-label { color: var(--white); }
.mc-acc-trigger:hover .mc-acc-sep { color: rgba(255,255,255,.5); }
.mc-acc-trigger:hover .mc-acc-count { color: rgba(255,255,255,.7); }
.mc-acc-trigger:hover .mc-acc-arrow { color: var(--white); }
.mc-acc-item.open .mc-acc-trigger { background: var(--blue); }
.mc-acc-info { flex: 1; min-width: 0; display: flex; align-items: center; }
.mc-acc-label { font-size: var(--fs-md); font-weight: 700; color: var(--heading); }
.mc-acc-item.open .mc-acc-label { color: var(--white); }
.mc-acc-sep { color: var(--muted); font-size: 24px; line-height: 1; margin: 0 8px; }
.mc-acc-item.open .mc-acc-sep { color: rgba(255,255,255,.5); }
.mc-acc-count { font-size: var(--fs-sm); font-weight: 400; color: var(--muted); }
.mc-acc-item.open .mc-acc-count { color: rgba(255,255,255,.7); }
.mc-acc-arrow { font-size: 18px; color: var(--muted); flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--r); background: var(--bxl); transition: transform .2s, color .2s, background .12s; }
.mc-acc-item.open .mc-acc-arrow { transform: rotate(180deg); color: var(--white); background: rgba(255,255,255,.2); }
.mc-acc-trigger:hover .mc-acc-arrow { background: rgba(255,255,255,.2); }
.mc-acc-body { overflow: hidden; height: 0; transition: height .3s ease; margin-top: 0; }
.mc-acc-item.open .mc-acc-body { margin-top: 8px; }
.mc-acc-inner { padding: 0 20px 16px; }
.mc-acc-inner.mc-disc-list { padding: 0; margin: 0; }
.mc-disc-list { display: flex; flex-direction: column; overflow: hidden; }
.mc-disc-item { display: flex; align-items: center; gap: 16px; padding: 14px 24px; border-bottom: 1px solid var(--line); transition: background .12s; }
.mc-disc-item:last-child { border-bottom: none; }
.mc-disc-item:hover { background: var(--bxl); }
.mc-disc-n { font-size: var(--fs-sm); font-weight: 700; color: var(--muted); min-width: 28px; flex-shrink: 0; }
.mc-disc-icon { font-size: 16px; color: var(--blue); flex-shrink: 0; opacity: .6; }
.mc-disc-name { font-size: var(--fs-base); font-weight: 600; color: var(--heading); flex: 1; }

/* ── Footer ── */
.footer { background: var(--brand); padding: 48px 0 0; --f1: rgba(255,255,255,.90); --f2: rgba(255,255,255,.55); --f3: rgba(255,255,255,.30); }
.f-logo { display: flex; justify-content: center; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 48px; }
.fcols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.fc h5 { font-family: 'Montserrat', sans-serif; color: var(--f1); font-size: var(--fs-sm); font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fc ul a { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-sm); color: var(--f2); transition: color .14s; }
.fc ul a:hover { color: var(--accent); }
.fc ul a i, .fc ul span i { font-size: 15px; flex-shrink: 0; }
.fbot { padding: 16px 0; font-size: var(--fs-sm); color: var(--f3); text-align: center; }
.fbot a:hover { color: var(--accent); }
@media (max-width: 1024px) { .fcols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .fcols { grid-template-columns: 1fr; gap: 0; }
  .fc { text-align: center; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .fc:last-child { border-bottom: none; }
  .fc ul { align-items: center; }
}

/* ── Scroll animations ── */
.sec,
.info-strip { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.sec.anim-in,
.info-strip.anim-in { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1120px) {
  .slider { height: auto; aspect-ratio: 1120 / 460; }
}
@media (max-width: 1024px) {
  .slider { height: auto; aspect-ratio: 1120 / 460; }
  .h-nav { display: none; }
  .h-burger { display: flex; }
  .mob-menu { display: flex; }
  .info-strip .wrap { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
  .is-item { flex: unset; border-right: none; border-bottom: 1px solid var(--bl); padding: 16px; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .is-item:nth-child(odd) { border-right: 1px solid var(--bl); }
  .is-item:nth-last-child(-n+2) { border-bottom: none; }
  .na-grid { grid-template-columns: repeat(2, 1fr); }
  .vagas-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .slider { height: auto; aspect-ratio: 768 / 940; }
  .na-grid { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 1fr; }
  .ns-titulo { font-size: var(--fs-xl); }
  .head-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .more--desktop { display: none; }
  .more--mobile { display: inline-block; margin-top: 32px; }
}

/* ── Acesso Rápido ─────────────────────────────────── */
.acesso-sec { background: var(--bxl); }
.head-center { text-align: center; }
.head-center .tag { display: flex; width: fit-content; margin: 0 auto; }
.head-center .hdiv::after { margin: 16px auto 0; }
.head-center h2.st { margin-top: 16px; }
.ss { font-size: var(--fs-base); color: var(--sub); max-width: 520px; margin: 8px auto 0; line-height: 1.65; }
.lk-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.lk { background: var(--white); border: 1px solid var(--bl); border-radius: 50px; padding: 8px 24px 8px 8px; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; text-decoration: none; transition: border-color .18s, box-shadow .18s, background .18s; }
.lk:hover { border-color: var(--blue); background: var(--bxl); box-shadow: 0 4px 14px rgba(var(--blue-rgb),.12); }
.lk span { width: 32px; height: 32px; background: var(--bxl); border-radius: 50px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue); flex-shrink: 0; transition: background .18s; }
.lk:hover span { background: var(--bl); }
.lk p { font-family: 'Montserrat', sans-serif; font-size: var(--fs-base); font-weight: 600; color: var(--text); white-space: nowrap; }

/* ── Página do Curso ─────────────────────────────────────── */

.sec-sm { padding: 40px 0; }

/* Título de seção — mesmo porte do h2 do single de notícias */
.pc-titulo { font-family: 'Lora', Georgia, serif; font-size: var(--fs-xl); font-weight: 700; color: var(--heading); line-height: 1.2; margin-bottom: 32px; }
.pc-titulo::after { content: ''; display: block; width: 32px; height: 2px; background: var(--brand); border-radius: 1px; margin-top: 12px; }

/* Info sidebar (4 itens) */
.info-sidebar { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.info-item { padding: 20px 24px; border-right: 1px solid var(--line); background: var(--bxl); }
.info-item:last-child { border-right: none; }
.info-item-label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .7px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.info-item-label i { color: var(--blue); }
.info-item-value { font-size: var(--fs-base); font-weight: 700; color: var(--blue); }
.info-item-sub { font-size: var(--fs-sm); color: var(--muted); margin-top: 2px; }

/* Apresentação */
.apresent-text { margin-top: 64px; }
.pc-bloco { margin-top: 64px; }
.apresent-text p { font-size: var(--fs-base); color: var(--text); line-height: 1.8; }
.apresent-text p + p { margin-top: 14px; }

/* Coordenação */
.coord-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
@media (max-width: 1024px) { .coord-grid { grid-template-columns: 1fr; } }
.coord-card { display: flex; align-items: flex-start; gap: 24px; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; background: var(--bxl); transition: border-color .15s, box-shadow .15s; }
.coord-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(var(--blue-rgb),.1); }
.coord-photo { width: 160px; height: 160px; overflow: hidden; flex-shrink: 0; background: var(--bl); display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--blue); border-radius: var(--r); }
.coord-photo img { width: 160px; height: 160px; object-fit: cover; object-position: top; display: block; }
.coord-body { flex: 1; }
.coord-role { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .7px; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.coord-name { font-family: 'Lora', serif; font-size: var(--fs-lg); color: var(--heading); line-height: 1.2; margin-bottom: 6px; }
.coord-titulacao { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; }
.coord-contatos { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.coord-contato { font-size: var(--fs-sm); color: var(--blue); display: flex; align-items: center; gap: 6px; transition: color .15s; }
.coord-contato:hover { color: var(--navy); }

/* Acesso: Matriz Curricular / Corpo Docente */
.conteudo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.acesso-card { display: flex; align-items: center; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); transition: border-color .15s, box-shadow .15s, background .15s; }
.acesso-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(var(--blue-rgb),.1); background: var(--bxl); }
.acesso-card-icon { width: 48px; height: 48px; border-radius: var(--r); background: var(--bl); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--blue); flex-shrink: 0; }
.acesso-card-body { flex: 1; }
.acesso-card-title { font-size: var(--fs-base); font-weight: 700; color: var(--heading); }
.acesso-card-desc { font-size: var(--fs-sm); color: var(--muted); margin-top: 3px; }
.acesso-card-arrow { font-size: 18px; color: var(--muted); flex-shrink: 0; transition: color .15s, transform .15s; }
.acesso-card:hover .acesso-card-arrow { color: var(--blue); transform: translateX(3px); }

/* Estrutura Acadêmica */
.estrutura-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.str-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color .15s, box-shadow .15s; }
.str-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(var(--blue-rgb),.1); }
.str-icon { width: 44px; height: 44px; background: var(--bl); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--blue); }
.str-title { font-size: var(--fs-base); font-weight: 700; color: var(--heading); }
.str-desc { font-size: var(--fs-sm); color: var(--sub); line-height: 1.65; }

/* Diferenciais */
.dif-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.dif-item { background: var(--bxl); border: 1px solid var(--bl); border-radius: var(--r); padding: 24px; display: flex; gap: 14px; align-items: flex-start; transition: border-color .15s, box-shadow .15s, background .15s; }
.dif-item:hover { border-color: var(--blue); background: var(--white); box-shadow: 0 4px 16px rgba(var(--blue-rgb),.08); }
.dif-icon { font-size: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.dif-title { font-size: var(--fs-base); font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.dif-desc { font-size: var(--fs-sm); color: var(--sub); line-height: 1.6; }

/* Visita / Contato */
.visita-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
.visita-info { display: flex; flex-direction: column; gap: 16px; }
.visita-dado { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); }
.visita-dado i { font-size: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.visita-dado-label { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 3px; }
.visita-dado-value { font-size: var(--fs-sm); color: var(--text); line-height: 1.5; }
.visita-dado-value a { color: var(--blue); }
.visita-dado-value a:hover { text-decoration: underline; }
.visita-map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.visita-map iframe { display: block; width: 100%; height: 400px; border: none; }

/* Responsivo — página do curso */
@media (max-width: 1024px) {
  .info-sidebar { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: none; }
  .info-item:nth-child(1),
  .info-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .estrutura-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .info-sidebar { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--line); }
  .info-item:last-child { border-bottom: none; }
  .prof-grid { grid-template-columns: 1fr; }
  .prof-foto { width: 128px; }
  .coord-grid { grid-template-columns: 1fr; }
  .coord-card { flex-direction: column; }
  .coord-photo { width: 100%; height: auto; }
  .coord-photo img { width: 100%; height: auto; object-fit: unset; }
  .conteudo-grid { grid-template-columns: 1fr; }
  .estrutura-grid { grid-template-columns: 1fr; }
  .dif-list { grid-template-columns: 1fr; }
  .dif-item { flex-direction: column; }
  .dif-icon { margin-top: 0; }
  .visita-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE BUILDER
══════════════════════════════════════════════════════════════ */

/* Fundos extras */
.sec-navy { background: var(--navy); }
.sec-azul  { background: var(--blue); }
.pb-sec.sec-navy { background: linear-gradient(150deg, var(--navy) 0%, var(--deep) 100%); }

/* Padding superior */
.pb-pt-none { padding-top: 0; }
.pb-pt-xs   { padding-top: 16px; }
.pb-pt-sm   { padding-top: 32px; }
.pb-pt-md   { padding-top: 64px; }
.pb-pt-lg   { padding-top: 96px; }
/* Padding inferior */
.pb-pb-none { padding-bottom: 0; }
.pb-pb-xs   { padding-bottom: 16px; }
.pb-pb-sm   { padding-bottom: 32px; }
.pb-pb-md   { padding-bottom: 64px; }
.pb-pb-lg   { padding-bottom: 96px; }

/* Título da seção (acima de cards/acordeão) */
.pb-sec-titulo { margin-bottom: 40px; }

/* ── Bloco Título ── */
.pb-titulo { margin: 0; line-height: 1.2; color: var(--heading); }
.pb-titulo--center { text-align: center; }
.pb-titulo--light, .pb-subtitulo.pb-titulo--light { color: var(--white); }
.pb-titulo--divisor::after { content: ''; display: block; width: 32px; height: 2px; background: var(--brand); border-radius: 1px; margin-top: 8px; }
.pb-titulo--divisor.pb-titulo--center::after { margin-left: auto; margin-right: auto; }
.pb-subtitulo { margin: 16px 0 0; font-size: var(--fs-base); color: var(--muted); line-height: 1.5; }
.pb-titulo--divisor + .pb-subtitulo { margin-top: 8px; }
.pb-subtitulo.pb-titulo--center { text-align: center; }

/* ── Bloco Texto ── */
.pb-texto { line-height: 1.75; }
.pb-texto--col12 { width: 100%; }
.pb-texto--col6  { width: calc(6 / 12 * 100%); }
.pb-texto--col4  { width: calc(4 / 12 * 100%); }
.pb-texto--col3  { width: calc(3 / 12 * 100%); }
.pb-texto--centro { text-align: center; margin-left: auto; margin-right: auto; }
.pb-texto--direita { text-align: right; margin-left: auto; }
.pb-texto--light, .pb-texto--light p, .pb-texto--light li { color: rgba(255,255,255,.85); }
.pb-texto--light a { color: var(--accent); }
.pb-texto h2, .pb-texto h3 { margin: 32px 0 16px; }
.pb-texto p + p { margin-top: 16px; }
.pb-texto ul, .pb-texto ol { padding-left: 24px; margin-bottom: 24px; }
.pb-texto li { margin-bottom: 8px; line-height: 1.7; }
.pb-texto ul li::marker { color: var(--blue); }
.pb-texto ol li::marker { color: var(--blue); font-weight: 600; }
@media (max-width: 768px) {
  .pb-texto--col6, .pb-texto--col4, .pb-texto--col3 { width: 100%; }
}

/* ── Bloco Vídeo ── */
.pb-video-grid { display: grid; gap: var(--gap); }
.pb-video-grid--12 { grid-template-columns: 1fr; }
.pb-video-grid--6  { grid-template-columns: repeat(2, 1fr); }
.pb-video-grid--4  { grid-template-columns: repeat(3, 1fr); }
.pb-video-grid--3  { grid-template-columns: repeat(4, 1fr); }
.pb-video--esquerda { justify-items: start; }
.pb-video--centro   { justify-items: center; }
.pb-video--direita  { justify-items: end; }
.pb-video-item { margin: 0; width: 100%; }
.pb-video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden; background: #000; }.pb-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pb-video-facade { position: absolute; inset: 0; background-size: cover; background-position: center; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.pb-video-play { position: relative; width: 72px; height: 72px; background: rgba(255,255,255,.88); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--navy); cursor: pointer; transition: transform .2s, background .2s; pointer-events: none; box-shadow: 0 8px 32px rgba(0,0,0,.25); backdrop-filter: blur(4px); }
.pb-video-facade:hover .pb-video-play { transform: scale(1.08); background: rgba(255,255,255,1); }
@media (max-width: 768px) {
  .pb-video-grid--6,
  .pb-video-grid--4,
  .pb-video-grid--3 { grid-template-columns: 1fr; }
}

/* ── Bloco Carrossel ── */
.pb-car-wrap { position: relative; padding: 0 52px; }
.pb-car { overflow: hidden; }
.pb-car-fig { margin: 0; cursor: zoom-in; }
.pb-car-fig img { width: 100%; height: auto; display: block; border-radius: var(--r); }
.pb-car-leg { font-size: var(--fs-xs); font-style: italic; color: var(--muted); text-align: center; margin-top: 4px; }
.pb-car-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 40px; height: 40px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; color: var(--navy); transition: background .15s, border-color .15s; }
.pb-car-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pb-car-arrow.swiper-button-disabled { opacity: .35; pointer-events: none; }
.pb-car-prev { left: 0; }
.pb-car-next { right: 0; }
.pb-car-dots { display: flex !important; justify-content: center; gap: 6px; margin-top: 16px; }
.pb-car-dots .swiper-pagination-bullet { width: 8px; height: 8px; background: var(--line); border-radius: 10px; cursor: pointer; transition: background .2s, width .2s; opacity: 1; flex-shrink: 0; margin: 0 !important; }
.pb-car-dots .swiper-pagination-bullet-active { background: var(--white); width: 20px; }
.pb-car-wrap--sem-setas { padding: 0; }
@media (max-width: 768px) { .pb-car-wrap { padding: 0 44px; } .pb-car-wrap--sem-setas { padding: 0; } }

/* ── Bloco Documentos ── */
.pb-docs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.pb-docs-item { display: flex; align-items: center; gap: 16px; padding: 16px 24px; border: 1px solid var(--line); border-radius: var(--r); }
.pb-docs-icon { font-size: 24px; color: var(--blue); flex-shrink: 0; display: flex; }
.pb-docs-nome { flex: 1; font-weight: 600; color: var(--heading); font-size: var(--fs-base); }
.pb-docs-item:hover .pb-docs-nome { text-decoration: underline; }
.pb-docs-badge { font-size: var(--fs-xs); color: var(--muted); background: var(--bxl); border: 1px solid var(--bl); border-radius: 4px; padding: 2px 8px; flex-shrink: 0; }
@media (max-width: 768px) { .pb-docs-item { flex-wrap: wrap; gap: 8px; } .pb-docs-nome { width: 100%; } }
.sec-gray .pb-docs-item { border-color: var(--bl); }
.sec-navy .pb-docs-item { border-color: rgba(255,255,255,.12); }
.sec-navy .pb-docs-nome { color: var(--white); }
.sec-navy .pb-docs-icon { color: var(--accent); }
.sec-navy .pb-docs-badge { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.6); }

/* ── Bloco Imagem ── */
.pb-imagem { margin: 0; cursor: zoom-in; }
.pb-imagem img { width: 100%; height: auto; border-radius: var(--r); display: block; }
.pb-imagem-grid { display: grid; gap: 32px; }
.pb-imagem-grid--12 { grid-template-columns: 1fr; }
.pb-imagem-grid--6  { grid-template-columns: repeat(2, 1fr); }
.pb-imagem-grid--4  { grid-template-columns: repeat(3, 1fr); }
.pb-imagem-grid--3  { grid-template-columns: repeat(4, 1fr); }
.pb-imagem--centro  { justify-items: center; }
.pb-imagem--direita { justify-items: end; }
.pb-legenda { font-size: var(--fs-xs); font-style: italic; color: var(--muted); text-align: center; margin-top: 4px; }
@media (max-width: 768px) {
  .pb-imagem-grid--6, .pb-imagem-grid--4, .pb-imagem-grid--3 { grid-template-columns: 1fr; }
}

/* ── Bloco Botão ── */
.pb-botao { display: flex; }
.pb-botao--center { justify-content: center; }
.sec-navy .pb-botao .vcard-btn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--white); }
.sec-navy .pb-botao .vcard-btn:hover { background: var(--white); color: var(--navy); }
.sec-navy .pb-botao .btn-back { color: var(--white); }
.sec-navy .pb-botao .btn-back:hover { color: var(--accent); }
.sec-navy .pb-botao .curso-more { color: var(--white); }
.sec-navy .pb-botao .curso-more:hover { color: var(--accent); }
.pb-btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: var(--fs-sm); border-radius: 6px; padding: 14px 24px; text-decoration: none; transition: opacity .15s, transform .15s; }
.pb-btn:hover { opacity: .85; transform: translateY(-1px); }
.pb-btn--primario { background: var(--accent); color: var(--navy); }
.pb-btn--secundario { background: transparent; border: none; padding: 0; border-radius: 0; font-size: var(--fs-base); color: var(--blue); transition: gap .15s; }
.pb-btn--secundario:hover { opacity: 1; transform: none; gap: 16px; }
.sec-navy .pb-btn--secundario,
.sec-azul .pb-btn--secundario { color: var(--white); }

/* ── Bloco Cards ── */
.pb-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--gap); }
.pb-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: box-shadow .2s, border-color .2s; text-decoration: none; color: inherit; }
.pb-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: var(--blue); }
.pb-card--dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: var(--white); }
.pb-card--dark:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); box-shadow: none; }
.pb-card-icon { font-size: 24px; width: 48px; height: 48px; background: rgba(var(--navy-rgb),.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.pb-card--dark .pb-card-icon { background: rgba(255,255,255,.08); }
.pb-card-icon--blue   { color: var(--blue); }
.pb-card-icon--accent { color: var(--accent); }
.pb-card-icon--white  { color: var(--white); }
.pb-card-icon--text   { color: inherit; }
.pb-card-titulo { font-family: 'Montserrat', sans-serif; font-size: var(--fs-md); font-weight: 700; margin: 0; }
.pb-card-texto { font-size: var(--fs-sm); color: var(--muted); line-height: 1.55; margin: 0; }
.pb-card--dark .pb-card-texto { color: rgba(255,255,255,.65); }
.pb-card-arrow { margin-top: auto; color: var(--blue); font-size: 18px; }
.pb-card--dark .pb-card-arrow { color: var(--accent); }

/* ── Bloco Texto + Foto ── */
/* ── Bloco Texto 2 Colunas ── */
.pb-t2c { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .pb-t2c { grid-template-columns: 1fr; gap: 32px; } }

.pb-tf { display: grid; gap: 32px; align-items: start; }
.pb-tf--foto_texto .pb-tf-foto { order: -1; }
.pb-tf-foto img { width: 100%; height: auto; border-radius: var(--r); display: block; }
.pb-tf-texto { line-height: 1.75; }
.pb-tf-titulo { color: var(--heading); margin: 0 0 16px !important; }
.pb-tf-titulo--divisor::after { content: ''; display: block; width: 32px; height: 2px; background: var(--brand); border-radius: 1px; margin-top: 8px; }
.pb-texto--light .pb-tf-titulo { color: var(--white); }
.pb-texto--light .pb-tf-titulo--divisor::after { background: var(--accent); }
.pb-tf-texto h2, .pb-tf-texto h3 { margin: 32px 0 16px; }
.pb-tf-texto p + p { margin-top: 16px; }
.pb-tf-texto ul, .pb-tf-texto ol { padding-left: 24px; margin-bottom: 24px; }
.pb-tf-texto li { margin-bottom: 8px; line-height: 1.7; }
.pb-tf-texto ul li::marker { color: var(--blue); }
.pb-tf-texto ol li::marker { color: var(--blue); font-weight: 600; }
@media (max-width: 768px) {
  .pb-tf { grid-template-columns: 1fr !important; }
  .pb-tf--foto_texto .pb-tf-foto { order: 0; }
}

/* ── Bloco Acordeão ── */
.pb-acc-resposta { padding: 24px; line-height: 1.65; }
.pb-acc-resposta p { margin: 0 0 8px; }
.pb-acc-resposta p:last-child { margin-bottom: 0; }
.pb-acc-resposta ul, .pb-acc-resposta ol { padding-left: 24px; margin-bottom: 24px; }
.pb-acc-resposta li { margin-bottom: 8px; line-height: 1.7; }
.pb-acc-resposta ul li::marker { color: var(--blue); }
.pb-acc-resposta ol li::marker { color: var(--blue); font-weight: 600; }
.mc-acc-label--light { color: var(--white); }
.pb-acc-resposta--dark { color: rgba(255,255,255,.8); }

@media (max-width: 768px) {
  .pb-pt-lg { padding-top: 64px; }
  .pb-pb-lg { padding-bottom: 64px; }
  .pb-cards-grid { grid-template-columns: 1fr; }
}
