/* ============================================================
   Bizinnt v3 · IA completa (mapa mental)
   "Your Next Level Executive Education"
   Paleta Bizinnt 2026
   ============================================================ */

:root {
    --obsidian:     #0D0D0D;
    --charcoal:     #1A1A1A;
    --graphite:     #2E2E2E;
    --smoke:        #6B6B6B;
    --silver:       #AAAAAA;
    --mist:         #E8E6E1;
    --ivory:        #F5F3EE;
    --white:        #FAFAF8;
    --gold-deep:    #8A6A28;
    --gold:         #B48C3C;
    --gold-light:   #D4AA5A;
    --gold-mist:    #F0E8D5;

    --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --font-sans:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --container:    1280px;
    --container-narrow: 920px;
    --r-sm: 4px;
    --r:    8px;
    --r-lg: 14px;
    --r-xl: 22px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--obsidian);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }

/* Tipografia base */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.eyebrow--ondark { color: var(--gold-light); }
.eyebrow--muted { color: var(--smoke); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 1.08;
    color: var(--obsidian);
}
h1 { font-size: clamp(46px, 6.2vw, 82px); }
h2 { font-size: clamp(34px, 4vw, 54px); }
h3 { font-size: 26px; font-weight: 400; line-height: 1.2; }
h4 { font-size: 19px; font-weight: 500; line-height: 1.3; font-family: var(--font-sans); letter-spacing: -0.005em; }

.dark-bg, .dark-bg h1, .dark-bg h2, .dark-bg h3 { color: var(--white); }
.dark-bg p, .dark-bg .lead { color: var(--silver); }

/* ============================================================
   Top bar · espaço do aluno + para empresas
   ============================================================ */
.topbar {
    background: var(--obsidian);
    color: var(--silver);
    font-size: 13px;
    font-weight: 500;
    padding: 11px 0;
    border-bottom: 1px solid var(--graphite);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__left { display: flex; gap: 18px; align-items: center; }
.topbar__left .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); display: inline-block; margin-right: 6px; vertical-align: middle; }
.topbar__right { display: flex; gap: 22px; align-items: center; }
.topbar__right a { color: var(--silver); transition: color 180ms; display: inline-flex; align-items: center; gap: 6px; }
.topbar__right a:hover { color: var(--gold-light); }
.topbar__right a.is-strong { color: var(--white); font-weight: 600; }
.topbar__right a.is-strong:hover { color: var(--gold-light); }

/* ============================================================
   Header (menu)
   ============================================================ */
/* Os wrappers <div data-partial="*"> são placeholders criados via JS — eles
   precisam virar "transparentes" no layout (display: contents) pra que o
   position: sticky do .header funcione em relação ao <body>, não ao wrapper
   (que tem só a altura do próprio header e cortaria o sticky). */
[data-partial="topbar"],
[data-partial="header"] { display: contents; }

.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245, 243, 238, 0.94);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--mist);
    transition: box-shadow 200ms;
}
/* Sombra sutil quando rolamos abaixo do topo — feedback visual de "fixo" */
.header.is-scrolled { box-shadow: 0 4px 18px rgba(13, 13, 13, 0.06); }
/* Shrink on scroll: ao rolar, o header encolhe pra liberar área de leitura
   (padrão UX premium tipo Apple/Stripe). Logos grandes (xxl/ultra/custom)
   ficam limitadas a ~64px quando scrolled — voltam ao tamanho original quando
   volta ao topo. Transição suave 240ms. */
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; padding: 14px 0; gap: 40px; }
.header .brand-logo { transition: height 240ms var(--ease), max-width 240ms var(--ease); }
.header.is-scrolled .brand-logo--xxl,
.header.is-scrolled .brand-logo--ultra,
.header.is-scrolled .brand-logo--custom { height: 64px; max-width: 320px; }
.header.is-scrolled .brand-logo--xl   { height: 64px; max-width: 280px; }
.header.is-scrolled .header__inner    { min-height: 76px; padding: 10px 0; }
.brand {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.022em;
    color: var(--obsidian);
    flex-shrink: 0;
}
.brand__i { color: var(--gold); }

/* Variante com imagem (logo PNG) · usada no header */
.brand--logo { display: inline-flex; align-items: center; line-height: 0; padding: 0; flex-shrink: 0; }
.brand-logo {
    height: 72px;  /* default = l — sobrescrito pelas variantes abaixo */
    width: auto;
    max-width: 380px;
    object-fit: contain;
    display: block;
}
/* 6 tamanhos editáveis pelo admin (marca.logo_altura) — mantém proporção.
   --custom usa --logo-h via style inline. */
.brand-logo--s      { height: 40px;  max-width: 220px; }
.brand-logo--m      { height: 56px;  max-width: 300px; }
.brand-logo--l      { height: 72px;  max-width: 380px; }
.brand-logo--xl     { height: 96px;  max-width: 460px; }
.brand-logo--xxl    { height: 140px; max-width: 560px; }
.brand-logo--ultra  { height: 200px; max-width: 720px; }
.brand-logo--custom { height: var(--logo-h, 80px); max-width: calc(var(--logo-h, 80px) * 4); }
@media (max-width: 720px) {
    .brand-logo,
    .brand-logo--l      { height: 48px; max-width: 240px; }
    .brand-logo--s      { height: 30px; max-width: 160px; }
    .brand-logo--m      { height: 40px; max-width: 200px; }
    .brand-logo--xl     { height: 64px; max-width: 280px; }
    .brand-logo--xxl    { height: 90px; max-width: 320px; }
    .brand-logo--ultra  { height: 110px; max-width: 380px; }
    .brand-logo--custom { height: calc(var(--logo-h, 80px) * 0.7); max-width: calc(var(--logo-h, 80px) * 2.6); }
}

.nav { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center; }
.nav__list { display: flex; gap: 34px; align-items: center; }
.nav__link {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--obsidian);
    transition: color 180ms;
    position: relative;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.005em;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease);
}
.nav__link:hover::after, .nav__item:hover > .nav__link::after { transform: scaleX(1); }
.nav__link svg { width: 10px; height: 10px; opacity: 0.6; }

/* Badge "Em breve" · sinaliza páginas em desenvolvimento */
.nav__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    background: var(--gold-mist);
    border: 1px solid rgba(180, 140, 60, 0.25);
    padding: 2px 7px 2px 6px;
    border-radius: 999px;
    line-height: 1;
    margin-left: 2px;
    transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}
.nav__badge::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(180, 140, 60, 0.55);
    animation: nav-badge-pulse 2.2s ease-out infinite;
}
.nav__item:hover .nav__badge {
    background: var(--white);
    color: var(--gold-deep);
    border-color: var(--gold);
}
@keyframes nav-badge-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(180, 140, 60, 0.55); }
    70%  { box-shadow: 0 0 0 6px rgba(180, 140, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(180, 140, 60, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .nav__badge::before { animation: none; }
}

/* Dropdown */
.nav__item { position: relative; }
.nav__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r);
    padding: 12px;
    box-shadow: 0 16px 40px -12px rgba(13,13,13,0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms, visibility 200ms, transform 200ms;
    display: grid;
    gap: 4px;
}
.nav__item:hover .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a {
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--obsidian);
    transition: background 160ms, color 160ms;
    display: block;
}
.nav__menu a:hover { background: var(--gold-mist); color: var(--gold-deep); }

.header__cta { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

/* Botões */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    transition: all 200ms var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--white); }
.btn--primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--obsidian); border-color: var(--obsidian); }
.btn--ghost:hover { background: var(--obsidian); color: var(--white); }
.btn--ghost-ondark { color: var(--white); border-color: var(--silver); }
.btn--ghost-ondark:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn--white { background: var(--white); color: var(--obsidian); }
.btn--white:hover { background: var(--gold-light); }
.btn--sm { padding: 10px 16px; font-size: 11px; }
.btn--lg { padding: 16px 28px; font-size: 13px; }
.btn .arrow { transition: transform 200ms var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
    background: var(--obsidian);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero__track {
    display: flex;
    transition: transform 600ms var(--ease);
    width: 100%;
}
.hero__slide {
    flex: 0 0 100%;
    padding: 88px 0 96px;
    position: relative;
}
.hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__slide--mba::before {
    background:
        radial-gradient(ellipse at 88% 0%, rgba(212, 170, 90, 0.16), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(46, 46, 46, 0.55), transparent 55%);
}
.hero__slide--cursos::before {
    background:
        radial-gradient(ellipse at 10% 0%, rgba(212, 170, 90, 0.12), transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(138, 106, 40, 0.30), transparent 50%);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.hero__title { color: var(--white); margin: 18px 0 24px; max-width: 16ch; }
.hero__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.hero__lead { font-size: 18px; color: var(--silver); line-height: 1.55; max-width: 50ch; margin-bottom: 28px; }
.hero__diffs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
/* Selos institucionais (Harvard / MIT / MEC) · estilo medalhão */
.hero__diff {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(180, 140, 60, 0.06);
    border: 1px solid rgba(212, 170, 90, 0.28);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-radius: 6px;
    line-height: 1.25;
    transition: border-color 200ms, background 200ms;
}
.hero__diff:hover { border-color: rgba(212, 170, 90, 0.55); background: rgba(180, 140, 60, 0.10); }

/* Variante com imagem (logo_url preenchido): sem ::before, sem texto,
   sem fundo nem borda — o logo aparece "solto" no hero, bem maior
   (visualmente quase o dobro de altura de um selo de texto). */
.hero__diff--img {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}
.hero__diff--img:hover { background: transparent; border-color: transparent; }
/* IMPORTANTE: vence as regras .hero__diffs .hero__diff:nth-of-type(N)::before
   que setam letras decorativas (★ M H +). Quando o selo é imagem,
   nenhum prefixo decorativo deve aparecer. */
.hero__diff--img::before { display: none !important; content: none !important; }
.hero__diff--img img {
    object-fit: contain;
    display: block;
    filter: none;
    width: auto;
    height: auto;
}
/* Tamanhos selecionaveis pelo admin (5 niveis). Dupla classe para
   garantir especificidade vs regras base do .hero__diff. */
.hero__diff--img.hero__diff--img-s   img { max-height: 40px;  max-width: 140px; }
.hero__diff--img.hero__diff--img-m   img { max-height: 56px;  max-width: 180px; }
.hero__diff--img.hero__diff--img-l   img { max-height: 72px;  max-width: 220px; }
.hero__diff--img.hero__diff--img-xl  img { max-height: 96px;  max-width: 280px; }
.hero__diff--img.hero__diff--img-xxl img { max-height: 130px; max-width: 340px; }
@media (max-width: 720px) {
    .hero__diff--img.hero__diff--img-s   img { max-height: 30px;  max-width: 110px; }
    .hero__diff--img.hero__diff--img-m   img { max-height: 42px;  max-width: 140px; }
    .hero__diff--img.hero__diff--img-l   img { max-height: 56px;  max-width: 170px; }
    .hero__diff--img.hero__diff--img-xl  img { max-height: 72px;  max-width: 210px; }
    .hero__diff--img.hero__diff--img-xxl img { max-height: 100px; max-width: 260px; }
}

/* Pseudo-elemento decorativo dos selos REMOVIDO (era um círculo dourado com letra
   estilizada ★ M H + que ficava à esquerda do texto). Cliente preferiu visual
   mais limpo sem o ícone. Mantemos a regra vazia para que ninguém reintroduza
   por engano via :nth-of-type. */
.hero__diff::before { content: none; display: none; }

/* Versão clara para uso em fundo light (page-hero usa fundo dark, então fica OK) */
.section--canvas .hero__diff,
.section--mist .hero__diff {
    background: rgba(180, 140, 60, 0.08);
    border-color: rgba(180, 140, 60, 0.30);
    color: var(--gold-deep);
}

/* ============================================================
   Stats strip · faixa de números (após hero)
   ============================================================ */
.stats-strip {
    background: var(--ivory);
    border-bottom: 1px solid var(--mist);
    padding: 56px 0;
}
.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}
.stats-strip__item {
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.stats-strip__item + .stats-strip__item::before {
    content: "";
    position: absolute;
    left: 0; top: 12px; bottom: 12px;
    width: 1px;
    background: var(--mist);
}
.stats-strip__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 4.4vw, 60px);
    font-weight: 300;
    color: var(--gold-deep);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.stats-strip__num em {
    font-style: italic;
    color: var(--gold);
}
.stats-strip__lbl {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.4;
    font-weight: 500;
    display: block;
    max-width: 22ch;
    margin: 0 auto;
}

/* ============================================================
   Testimonials (depoimentos com foto + nome + cargo)
   ============================================================ */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: border-color 220ms, transform 220ms;
    position: relative;
}
.testimonial-card:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 12px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold-mist);
    line-height: 1;
    font-weight: 400;
    z-index: 0;
}
.testimonial-card > * { position: relative; }
.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.4;
    color: var(--obsidian);
    font-weight: 400;
    letter-spacing: -0.005em;
    flex-grow: 1;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--mist);
    padding-top: 18px;
}
.testimonial-card__info { display: flex; flex-direction: column; }
.testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--obsidian);
    letter-spacing: -0.005em;
}
.testimonial-card__role {
    font-size: 12px;
    color: var(--smoke);
    margin-top: 2px;
    line-height: 1.4;
}

/* ============================================================
   WhatsApp float
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -8px rgba(13, 13, 13, 0.25), 0 4px 10px -4px rgba(180, 140, 60, 0.40);
    transition: transform 220ms var(--ease), background 220ms;
    text-decoration: none;
}
.wa-float:hover { background: var(--gold-deep); transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }
.wa-float__tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--obsidian);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms;
}
.wa-float__tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent var(--obsidian);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

@media (max-width: 760px) {
    .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .wa-float svg { width: 24px; height: 24px; }
    .wa-float__tooltip { display: none; }
    .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .stats-strip__item + .stats-strip__item::before { display: none; }
    .stats-strip__item:nth-child(odd) { border-right: 1px solid var(--mist); }
    .testimonials-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .stats-strip__grid { grid-template-columns: 1fr; }
    .stats-strip__item:nth-child(odd) { border-right: none; }
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual side (MBA collage / Cursos card) */
.hero__visual {
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, transparent 0%, transparent 55%, rgba(180, 140, 60, 0.18) 100%);
    pointer-events: none;
}
.hero__visual-tag {
    align-self: flex-start;
    background: var(--gold-mist);
    color: var(--gold-deep);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 1;
}
.hero__visual-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    z-index: 1;
}
.hero__visual-title em { font-style: italic; color: var(--gold-light); }
.hero__visual-meta {
    display: grid;
    gap: 12px;
    z-index: 1;
}
.hero__visual-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid var(--graphite);
    padding-top: 12px;
    font-size: 13px;
}
.hero__visual-meta-item .k { color: var(--silver); letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; font-weight: 600; }
.hero__visual-meta-item .v { color: var(--white); font-weight: 600; }

/* Carousel controls */
.hero__controls {
    position: absolute;
    bottom: 28px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
    z-index: 5;
}
.hero__dot {
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: background 220ms;
    padding: 0;
}
.hero__dot.is-active { background: var(--gold-light); }
.hero__dot:hover { background: var(--silver); }
.hero__dot.is-active:hover { background: var(--gold-light); }

.hero__arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 18px; z-index: 5; pointer-events: none; }
.hero__arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(13,13,13,0.65);
    border: 1px solid var(--graphite);
    color: var(--white);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: background 200ms, border-color 200ms;
    pointer-events: auto;
    backdrop-filter: blur(6px);
}
.hero__arrow:hover { background: var(--gold-deep); border-color: var(--gold); }

/* ============================================================
   Manifesto stripe · "Você já chegou longe"
   ============================================================ */
.next-level {
    background: var(--ivory);
    padding: 96px 0;
    border-bottom: 1px solid var(--mist);
    position: relative;
}
.next-level__inner { text-align: center; max-width: 880px; margin: 0 auto; }
.next-level__title {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    margin: 18px 0 24px;
    letter-spacing: -0.02em;
    font-weight: 300;
}
.next-level__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.next-level__sub {
    font-size: 19px;
    color: var(--smoke);
    line-height: 1.55;
    max-width: 56ch;
    margin: 0 auto 36px;
}
.next-level__sub strong { color: var(--obsidian); font-weight: 600; }
.next-level__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Pra quem é · Trilhas
   ============================================================ */
.section { padding: 96px 0; }
.section--canvas { background: var(--white); }
.section--mist { background: var(--mist); }
.section--obsidian { background: var(--obsidian); color: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }

.section__head {
    margin-bottom: 56px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    flex-wrap: wrap;
}
.section__head--center { text-align: center; flex-direction: column; align-items: center; }
.section__head h2 { margin-top: 12px; max-width: 22ch; }
.section__head p { font-size: 17px; color: var(--smoke); margin-top: 16px; max-width: 52ch; line-height: 1.55; }
.section--obsidian .section__head p, .section--charcoal .section__head p { color: var(--silver); }
.section__cta { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; gap: 8px; align-items: center; }
.section__cta:hover { color: var(--gold); }
.section--obsidian .section__cta, .section--charcoal .section__cta { color: var(--gold-light); }

.trails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.trail {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 200ms, transform 200ms;
}
.trail:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.trail__num { font-family: var(--font-display); font-size: 26px; font-weight: 300; color: var(--gold); }
.trail__title { font-size: 18px; font-weight: 600; color: var(--obsidian); letter-spacing: -0.005em; }
.trail__desc { font-size: 14px; color: var(--smoke); line-height: 1.55; flex-grow: 1; }
.trail__cta { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; gap: 6px; align-items: center; margin-top: 8px; }

/* ============================================================
   MBAs (cards verticais StartSe-style)
   ============================================================ */
.mbas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.mba-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 220ms var(--ease), border-color 220ms;
    display: flex;
    flex-direction: column;
}
.mba-card:hover { transform: translateY(-4px); border-color: var(--gold-light); box-shadow: 0 20px 40px -20px rgba(13,13,13,0.16); }
.mba-card__cover {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal) 60%, var(--gold-deep) 130%);
    position: relative;
    overflow: hidden;
}
.mba-card__cover-num {
    position: absolute;
    bottom: 14px; left: 22px;
    font-family: var(--font-display);
    font-size: 90px;
    color: var(--gold-light);
    font-weight: 300;
    line-height: 1;
    opacity: 0.55;
}
.mba-card__cover-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255,255,255,0.10);
    color: var(--gold-light);
    backdrop-filter: blur(8px);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
}
.mba-card__body { padding: 26px 24px; flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
.mba-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.mba-card__title { font-size: 22px; line-height: 1.2; flex-grow: 1; }
.mba-card__title em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.mba-card__cta { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; gap: 8px; align-items: center; padding-top: 12px; border-top: 1px solid var(--mist); }
.mba-card:hover .mba-card__cta { color: var(--gold); }

/* ============================================================
   Quem ensina · corpo docente
   ============================================================ */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.faculty {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 220ms, transform 220ms;
    display: flex;
    flex-direction: column;
}
.faculty:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.faculty__photo {
    aspect-ratio: 1 / 1.05;
    background: linear-gradient(180deg, var(--gold-mist) 0%, var(--ivory) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.faculty__photo .monogram {
    font-family: var(--font-display);
    font-size: 88px;
    color: var(--gold-deep);
    font-weight: 300;
    letter-spacing: 0.02em;
    z-index: 1;
}
.faculty__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.5), transparent 55%);
    pointer-events: none;
}
.faculty__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}
.faculty__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--obsidian);
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.faculty__role {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.45;
    margin-top: 2px;
}
.faculty__role strong { color: var(--obsidian); font-weight: 600; }
.faculty__chip {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--mist);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

/* Avatar (quotes) */
.avatar {
    background: var(--gold-mist);
    border: 1px solid var(--gold);
    color: var(--gold-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 400;
    border-radius: 50%;
    flex-shrink: 0;
}
.avatar--sm { width: 48px; height: 48px; font-size: 18px; }

/* ============================================================
   Prova social · empresas
   ============================================================ */
.proof {
    padding: 64px 0;
    background: var(--ivory);
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
}
.proof__label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 32px;
}
.proof__strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    align-items: center;
}
.proof__logo {
    text-align: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--smoke);
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 12px 0;
    transition: color 200ms;
    user-select: none;
}
.proof__logo:hover { color: var(--gold-deep); }
.proof__logo--sans {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ============================================================
   Manifesto block
   ============================================================ */
.manifesto-block {
    text-align: left;
    max-width: 760px;
    margin: 0 auto;
}
.manifesto-block__quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    font-weight: 300;
    letter-spacing: -0.012em;
    color: var(--white);
    margin-bottom: 32px;
}
.manifesto-block__quote em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.manifesto-block__quote strong { font-weight: 500; color: var(--white); }
.manifesto-block__signature {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--graphite);
    padding-top: 24px;
    color: var(--silver);
    font-size: 13px;
}
.manifesto-block__signature strong { color: var(--white); font-weight: 600; }

/* ============================================================
   Ecossistema · "Mais do que educação"
   ============================================================ */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.eco-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 220ms, transform 220ms;
    position: relative;
    overflow: hidden;
}
.eco-card:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.eco-card::before { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px; background: var(--gold); }
.eco-card__icon {
    width: 44px; height: 44px;
    background: var(--gold-mist);
    color: var(--gold-deep);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
}
.eco-card__title { font-size: 26px; }
.eco-card__desc { font-size: 15px; color: var(--smoke); line-height: 1.6; flex-grow: 1; }
.eco-card__list { display: grid; gap: 8px; padding-top: 12px; border-top: 1px solid var(--mist); margin-top: 8px; }
.eco-card__list li { font-size: 13px; color: var(--obsidian); display: flex; gap: 10px; align-items: center; }
.eco-card__list li::before { content: "→"; color: var(--gold-deep); font-weight: 600; }

/* ============================================================
   CTA Final
   ============================================================ */
.cta-final {
    text-align: center;
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(180, 140, 60, 0.18), transparent 55%),
        var(--obsidian);
    color: var(--white);
}
.cta-final h2 { color: var(--white); margin: 16px 0 22px; max-width: 24ch; margin-left: auto; margin-right: auto; }
.cta-final h2 em { color: var(--gold-light); font-style: italic; font-weight: 300; }
.cta-final p { color: var(--silver); font-size: 18px; max-width: 56ch; margin: 0 auto 32px; line-height: 1.55; }
.cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer (estrutura completa do mapa)
   ============================================================ */
.footer {
    background: var(--obsidian);
    color: var(--silver);
    padding: 80px 0 36px;
    border-top: 1px solid var(--graphite);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--graphite);
    margin-bottom: 28px;
}
.footer .brand { color: var(--white); margin-bottom: 18px; }
/* Logo do footer = mesma marca.logo_url do header.
   Footer tem fundo escuro (obsidian); a imagem pode levar fundo branco/transparent
   suave pra não sumir. Tamanhos espelham o header (.brand-logo--*).
   Quando a imagem é escura demais pro fundo escuro, o admin pode aplicar
   filter: brightness(0) invert(1) via marca.logo_inverter_no_footer. */
.brand--footer-img { display: inline-flex; line-height: 0; margin-bottom: 18px; }
.footer__brand-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 380px;
}
.footer__brand-logo--inverter { filter: brightness(0) invert(1); }
.footer__brand-logo--s      { height: 40px;  max-width: 220px; }
.footer__brand-logo--m      { height: 56px;  max-width: 300px; }
.footer__brand-logo--l      { height: 72px;  max-width: 380px; }
.footer__brand-logo--xl     { height: 96px;  max-width: 460px; }
.footer__brand-logo--xxl    { height: 140px; max-width: 560px; }
.footer__brand-logo--ultra  { height: 200px; max-width: 720px; }
.footer__brand-logo--custom { height: var(--logo-h, 80px); max-width: calc(var(--logo-h, 80px) * 4); }
@media (max-width: 720px) {
    .footer__brand-logo,
    .footer__brand-logo--l      { height: 48px; max-width: 240px; }
    .footer__brand-logo--s      { height: 30px; max-width: 160px; }
    .footer__brand-logo--m      { height: 40px; max-width: 200px; }
    .footer__brand-logo--xl     { height: 64px; max-width: 280px; }
    .footer__brand-logo--xxl    { height: 90px; max-width: 320px; }
    .footer__brand-logo--ultra  { height: 110px; max-width: 380px; }
    .footer__brand-logo--custom { height: calc(var(--logo-h, 80px) * 0.7); max-width: calc(var(--logo-h, 80px) * 2.6); }
}
.footer__about { font-size: 14px; line-height: 1.6; max-width: 38ch; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    width: 36px; height: 36px;
    border: 1px solid var(--graphite);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 200ms, color 200ms;
    font-size: 13px;
    font-weight: 600;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--silver); transition: color 180ms; }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--silver);
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom a:hover { color: var(--gold-light); }

/* ============================================================
   Inner pages · Page Hero
   ============================================================ */
.page-hero {
    background: var(--obsidian);
    color: var(--white);
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 88% 0%, rgba(212, 170, 90, 0.14), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(46, 46, 46, 0.55), transparent 55%);
    pointer-events: none;
}
.page-hero__inner { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.page-hero__title { color: var(--white); margin: 16px 0 22px; max-width: 18ch; font-size: clamp(40px, 5vw, 64px); }
.page-hero__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.page-hero__lead { font-size: 17px; color: var(--silver); line-height: 1.55; max-width: 50ch; margin-bottom: 28px; }
.page-hero__diffs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero__card {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: var(--r-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}
.page-hero__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, transparent 0%, transparent 55%, rgba(180, 140, 60, 0.16) 100%);
    pointer-events: none;
}
.page-hero__card > * { position: relative; z-index: 1; }
.page-hero__card-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--graphite);
    padding-top: 14px;
    font-size: 13px;
}
.page-hero__card-row:first-of-type { border-top: none; padding-top: 0; }
.page-hero__card-row .k { color: var(--silver); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.page-hero__card-row .v { color: var(--white); font-weight: 600; }
.page-hero__card-cta { margin-top: 8px; }

/* Breadcrumbs */
.breadcrumbs {
    background: var(--ivory);
    padding: 14px 0;
    border-bottom: 1px solid var(--mist);
    font-size: 13px;
    color: var(--smoke);
}
.breadcrumbs a { color: var(--smoke); transition: color 180ms; }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs .sep { margin: 0 10px; color: var(--silver); }
.breadcrumbs .current { color: var(--obsidian); font-weight: 500; }

/* ============================================================
   O que vai aprender (soft + hard skills)
   ============================================================ */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.skills-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.skills-card::before { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px; background: var(--gold); }
.skills-card__label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
.skills-card__title { font-size: 26px; margin-bottom: 20px; }
.skills-card__list { display: grid; gap: 10px; }
.skills-card__list li {
    font-size: 14px;
    color: var(--obsidian);
    padding: 12px 0;
    border-top: 1px solid var(--mist);
    display: flex;
    gap: 12px;
}
.skills-card__list li::before {
    content: "→";
    color: var(--gold-deep);
    font-weight: 600;
    flex-shrink: 0;
}

/* ============================================================
   Curriculum / Módulos
   ============================================================ */
.curriculum { display: grid; gap: 0; }
.module {
    border-top: 1px solid var(--graphite);
    padding: 28px 0;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
}
.module:last-child { border-bottom: 1px solid var(--graphite); }
.module__num { font-family: var(--font-display); font-size: 36px; color: var(--gold-light); font-weight: 300; line-height: 1; }
.module__body h4 { color: var(--white); font-family: var(--font-display); font-size: 22px; font-weight: 400; line-height: 1.25; margin-bottom: 6px; }
.module__body p { color: var(--silver); font-size: 14px; line-height: 1.55; max-width: 72ch; }
.module__meta { color: var(--silver); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   Investimento · pricing card
   ============================================================ */
.investment {
    background: linear-gradient(155deg, var(--white) 0%, var(--gold-mist) 130%);
    border: 1px solid var(--gold-light);
    border-radius: var(--r-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.investment__label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.investment__title { font-size: 32px; margin-bottom: 14px; }
.investment__desc { color: var(--smoke); font-size: 15px; line-height: 1.6; max-width: 50ch; margin-bottom: 18px; }
.investment__perks { display: grid; gap: 8px; }
.investment__perks li { font-size: 13px; color: var(--obsidian); display: flex; gap: 10px; align-items: center; }
.investment__perks li::before { content: "✓"; color: var(--gold-deep); font-weight: 700; }
.investment__price { text-align: center; padding: 28px; background: var(--white); border: 1px solid var(--gold-light); border-radius: var(--r-lg); }
.investment__price-from { font-size: 12px; color: var(--smoke); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.investment__price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--obsidian); margin: 6px 0; line-height: 1; }
.investment__price-amount sup { font-size: 16px; vertical-align: top; }
.investment__price-note { font-size: 12px; color: var(--smoke); margin-bottom: 18px; }

/* ============================================================
   Form (login, empresas)
   ============================================================ */
.form-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-xl);
    padding: 48px;
    max-width: 480px;
    margin: 0 auto;
}
.form-card--wide { max-width: 720px; }
.form-card h2 { font-size: 32px; margin-bottom: 12px; }
.form-card p { color: var(--smoke); font-size: 15px; line-height: 1.55; margin-bottom: 28px; }
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--smoke); }
.field input, .field textarea, .field select {
    border: 1px solid var(--mist);
    border-radius: var(--r);
    padding: 12px 14px;
    font: inherit;
    font-size: 15px;
    background: var(--ivory);
    transition: border-color 180ms, background 180ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-card .btn { width: 100%; justify-content: center; }
.form-card__foot { margin-top: 18px; font-size: 13px; color: var(--smoke); text-align: center; }
.form-card__foot a { color: var(--gold-deep); font-weight: 600; }
.form-card__foot a:hover { color: var(--gold); }

/* ============================================================
   Trilhas filter (toolbar)
   ============================================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.filter-bar button {
    padding: 8px 16px;
    border: 1px solid var(--mist);
    border-radius: 999px;
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--obsidian);
    transition: all 180ms;
}
.filter-bar button.is-active, .filter-bar button:hover {
    background: var(--obsidian);
    color: var(--white);
    border-color: var(--obsidian);
}

/* ============================================================
   Generic two-column intro
   ============================================================ */
.intro-cols {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}
.intro-cols .lead-md {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 300;
    color: var(--obsidian);
    letter-spacing: -0.01em;
}
.intro-cols .lead-md em { font-style: italic; color: var(--gold-deep); }
.intro-cols__body p { color: var(--smoke); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.intro-cols__body p:last-child { margin-bottom: 0; }

/* responsivo extra */
@media (max-width: 1100px) {
    .page-hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .investment { grid-template-columns: 1fr; padding: 36px; }
    .intro-cols { grid-template-columns: 1fr; gap: 28px; }
    .skills-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .module { grid-template-columns: 1fr; gap: 8px; }
    .module__num { font-size: 28px; }
    .form-card { padding: 32px 24px; }
}

/* ============================================================
   MBA card · pricing visível (listagem mbas.html)
   ============================================================ */
.mba-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 12px;
    color: var(--smoke);
    padding-top: 10px;
    border-top: 1px solid var(--mist);
    margin-top: 6px;
}
.mba-card__details strong { color: var(--obsidian); font-weight: 600; }
.mba-card__price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0 6px;
    margin-top: 4px;
    border-top: 1px dashed var(--mist);
}
.mba-card__price-from {
    font-size: 11px;
    color: var(--smoke);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}
.mba-card__price-amount {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--gold-deep);
    font-weight: 400;
    line-height: 1;
}
.mba-card__price-amount sup { font-size: 11px; vertical-align: top; font-weight: 500; }
.mba-card__price-amount sub { font-size: 11px; vertical-align: baseline; color: var(--smoke); font-weight: 500; }

/* ============================================================
   Lead magnet · banner gratuito (aula aberta)
   ============================================================ */
.lead-magnet {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(212, 170, 90, 0.10), transparent 55%),
        var(--charcoal);
    color: var(--white);
    padding: 64px 0;
    border-top: 1px solid var(--graphite);
    border-bottom: 1px solid var(--graphite);
}
.lead-magnet__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
}
.lead-magnet__title {
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 40px);
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.012em;
    margin: 14px 0 14px;
    max-width: 22ch;
}
.lead-magnet__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.lead-magnet__sub {
    color: var(--silver);
    font-size: 16px;
    line-height: 1.55;
    max-width: 50ch;
    margin-bottom: 24px;
}
.lead-magnet__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--silver);
    font-size: 13px;
    padding-top: 18px;
    border-top: 1px solid var(--graphite);
    margin-top: 24px;
}
.lead-magnet__meta-item { display: flex; align-items: center; gap: 8px; }
.lead-magnet__meta-item strong { color: var(--white); font-weight: 600; }
.lead-magnet__meta-item .icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(212, 170, 90, 0.15);
    border: 1px solid rgba(212, 170, 90, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
}
.lead-magnet__cta-card {
    background: linear-gradient(155deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    border: 1px solid var(--graphite);
    border-radius: var(--r-xl);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}
.lead-magnet__cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 100%, rgba(212, 170, 90, 0.18), transparent 55%);
    pointer-events: none;
}
.lead-magnet__cta-card > * { position: relative; }
.lead-magnet__cta-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    align-self: flex-start;
}
.lead-magnet__cta-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.22;
    letter-spacing: -0.01em;
}
.lead-magnet__cta-perks { display: grid; gap: 8px; padding: 12px 0; }
.lead-magnet__cta-perks li { font-size: 13px; color: var(--silver); display: flex; gap: 10px; }
.lead-magnet__cta-perks li::before { content: "✓"; color: var(--gold-light); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   Press strip · Bizinnt na imprensa
   ============================================================ */
.press {
    background: var(--white);
    padding: 56px 0;
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
}
.press__label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 32px;
}
.press__strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 36px;
    align-items: center;
}
.press__logo {
    text-align: center;
    color: var(--smoke);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 200ms;
    user-select: none;
    line-height: 1.2;
    padding: 8px 0;
}
.press__logo:hover { color: var(--gold-deep); }
.press__logo--serif {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.press__logo--sans {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.press__logo small {
    display: block;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 4px;
}

/* ============================================================
   Calendar · calendario.html (próximas turmas)
   ============================================================ */
.calendar-list-page {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--mist);
}
.cal-row {
    display: grid;
    grid-template-columns: 130px 1.5fr 1fr 1fr auto;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--mist);
    align-items: center;
    transition: background 180ms;
}
.cal-row:hover { background: rgba(180, 140, 60, 0.04); }
.cal-row--past { opacity: 0.45; }
.cal-row--past:hover { background: transparent; }
.cal-date {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 300;
    color: var(--gold-deep);
    line-height: 1;
}
.cal-date span {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--smoke);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 6px;
}
.cal-program {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--obsidian);
    line-height: 1.25;
}
.cal-program em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.cal-meta { font-size: 13px; color: var(--smoke); line-height: 1.55; }
.cal-meta strong { color: var(--obsidian); font-weight: 600; }
.cal-vacancy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}
.cal-vacancy--open { background: var(--gold-mist); color: var(--gold-deep); }
.cal-vacancy--low { background: rgba(212, 170, 90, 0.20); color: var(--gold-deep); border: 1px dashed var(--gold-deep); }
.cal-vacancy--closed { background: var(--mist); color: var(--smoke); }
.cal-vacancy::before { content: "●"; font-size: 8px; }
.cal-vacancy--low::before { color: var(--gold); }
.cal-vacancy--closed::before { color: var(--silver); }

@media (max-width: 900px) {
    .lead-magnet__inner { grid-template-columns: 1fr; gap: 32px; }
    .press__strip { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .cal-row { grid-template-columns: 1fr; gap: 12px; }
    .cal-date { font-size: 30px; }
}
@media (max-width: 480px) {
    .press__strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Insights · editorial cards (autoridade)
   ============================================================ */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.insight-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 220ms var(--ease), border-color 220ms;
}
.insight-card:hover { transform: translateY(-4px); border-color: var(--gold-light); box-shadow: 0 18px 40px -22px rgba(13,13,13,0.16); }
.insight-card--feature {
    grid-column: span 2;
    grid-row: span 2;
}
.insight-card__cover {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal) 60%, var(--gold-deep) 130%);
    position: relative;
    flex-shrink: 0;
}
.insight-card--feature .insight-card__cover { aspect-ratio: 16 / 8; }
.insight-card__cover-edition {
    position: absolute;
    bottom: 16px; left: 22px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold-light);
    font-style: italic;
    opacity: 0.85;
    letter-spacing: 0.02em;
}
.insight-card__cover-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--gold-light);
    backdrop-filter: blur(8px);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
}
.insight-card__body { padding: 26px 26px 24px; flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
.insight-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.insight-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.22;
    color: var(--obsidian);
    letter-spacing: -0.005em;
}
.insight-card--feature .insight-card__title { font-size: 32px; }
.insight-card__excerpt {
    font-size: 14px;
    color: var(--smoke);
    line-height: 1.6;
    flex-grow: 1;
}
.insight-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--mist);
    font-size: 12px;
    color: var(--smoke);
}
.insight-card__author-name { color: var(--obsidian); font-weight: 600; }
.insight-card__author-meta::before { content: " · "; color: var(--silver); }

/* Insight detail */
.insight-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 0 80px;
}
.insight-article__meta {
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--smoke);
    font-size: 13px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.insight-article__meta strong { color: var(--obsidian); font-weight: 600; }
.insight-article h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.12;
    margin-bottom: 24px;
    max-width: 22ch;
}
.insight-article h1 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.insight-article .lead {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.45;
    color: var(--smoke);
    font-weight: 400;
    margin: 28px 0 40px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}
.insight-article h2 {
    font-size: 28px;
    margin: 48px 0 16px;
}
.insight-article h3 {
    font-size: 22px;
    margin: 36px 0 12px;
}
.insight-article p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: var(--obsidian);
}
.insight-article p strong { color: var(--obsidian); font-weight: 600; }
.insight-article p em { color: var(--gold-deep); font-style: italic; }
.insight-article ul, .insight-article ol {
    padding-left: 24px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.75;
}
.insight-article ul li { padding-left: 8px; margin-bottom: 8px; }
.insight-article ul li::marker { color: var(--gold); }
.insight-article blockquote {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--obsidian);
    font-weight: 400;
    border-left: 3px solid var(--gold);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
}
.insight-article blockquote cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--smoke);
    margin-top: 12px;
    font-style: normal;
}
.insight-article hr {
    border: none;
    height: 1px;
    background: var(--mist);
    margin: 48px 0;
}

.insight-author-card {
    background: var(--ivory);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 48px;
}
.insight-author-card__photo {
    width: 80px; height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--gold-mist) 0%, var(--ivory) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--gold-deep);
    border: 1px solid var(--gold);
}
.insight-author-card__info h4 { font-size: 18px; margin-bottom: 4px; font-family: var(--font-display); font-weight: 400; color: var(--obsidian); }
.insight-author-card__info p { font-size: 13px; color: var(--smoke); line-height: 1.55; }

/* ============================================================
   Sobre · timeline + valores
   ============================================================ */
.timeline {
    display: grid;
    gap: 0;
    border-left: 2px solid var(--mist);
    padding-left: 32px;
    max-width: 720px;
    margin: 0 auto;
}
.timeline-item {
    padding-bottom: 32px;
    position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: "";
    position: absolute;
    left: -41px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--ivory);
    box-shadow: 0 0 0 1px var(--gold);
}
.timeline-item__year {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-deep);
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.timeline-item__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--obsidian);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}
.timeline-item__desc {
    font-size: 15px;
    color: var(--smoke);
    line-height: 1.65;
    max-width: 56ch;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.value {
    text-align: center;
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    transition: border-color 220ms, transform 220ms;
}
.value:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.value__num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold);
    font-weight: 300;
    display: block;
    line-height: 1;
    margin-bottom: 14px;
}
.value__title { font-size: 22px; margin-bottom: 12px; }
.value__desc { font-size: 14px; color: var(--smoke); line-height: 1.6; }

/* ============================================================
   Partners · bloco de parceiros (home + página)
   ============================================================ */
.partners {
    padding: 56px 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--mist);
}
.partners__head {
    text-align: center;
    margin-bottom: 36px;
}
.partners__head .eyebrow { display: block; margin-bottom: 6px; }
.partners__head h3 {
    font-size: 22px;
    color: var(--obsidian);
    font-weight: 400;
    font-family: var(--font-display);
    letter-spacing: -0.005em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.partner-group__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--mist);
}
.partner-group__logos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.partner-logo {
    text-align: center;
    color: var(--smoke);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 200ms;
    user-select: none;
    line-height: 1.2;
}
.partner-logo:hover { color: var(--gold-deep); }
.partner-logo--serif {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
}
.partner-logo--sans {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .insight-card--feature { grid-column: span 2; grid-row: span 1; }
    .insight-card--feature .insight-card__title { font-size: 26px; }
    .partners-grid { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .insights-grid { grid-template-columns: 1fr; }
    .insight-card--feature { grid-column: span 1; }
    .insight-author-card { flex-direction: column; text-align: center; }
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } * { animation: none !important; transition: none !important; } }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1100px) {
    .hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero__visual { aspect-ratio: 16 / 9; }
    .trails { grid-template-columns: repeat(2, 1fr); }
    .mbas { grid-template-columns: repeat(2, 1fr); }
    .faculty-grid { grid-template-columns: repeat(3, 1fr); }
    .ecosystem-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .proof__strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .container { padding: 0 22px; }
    .topbar__inner { flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }
    .nav { display: none; }
    .header__cta .btn:not(.btn--primary) { display: none; }
    .section { padding: 72px 0; }
    .next-level { padding: 80px 0; }
    .hero__slide { padding: 64px 0 88px; }
    .hero__visual-title { font-size: 32px; }
    .trails, .mbas, .faculty-grid { grid-template-columns: 1fr; }
    .proof__strip { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    h1 { font-size: 38px; }
    h2 { font-size: 28px; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__diff { font-size: 11px; padding: 6px 10px; }
}

/* ============================================================
   Página Professores · galeria de fotos estilo FIA
   ============================================================ */
.faculty-page {
    background: var(--white);
    padding: 72px 0 96px;
}
.faculty-page__head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.faculty-page__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 14px 0 18px;
    color: var(--obsidian);
}
.faculty-page__title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}
.faculty-page__lead {
    font-size: 17px;
    color: var(--smoke);
    line-height: 1.55;
    margin: 0;
}
.faculty-page__section {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin: 64px 0 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--mist);
}

/* ============================================================
   Página de docente individual (docente.html?slug=...)
   ============================================================ */
.docente-hero {
    padding: 72px 0 80px;
    background: var(--obsidian);
    color: var(--white);
}
.docente-hero__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 920px;
    margin: 0 auto;
}
.docente-hero__photo {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(160deg, var(--charcoal), var(--graphite));
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.docente-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
}
.docente-hero__mono {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 300;
    color: var(--gold-deep);
    opacity: 0.5;
    letter-spacing: -0.02em;
}
.docente-hero__main { padding-top: 4px; }
.docente-hero__tagline {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 0 16px;
    line-height: 1.5;
}
.docente-hero__nome {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.05;
    color: var(--white);
    margin: 0 0 28px;
    word-break: break-word;
}
.docente-hero__bio {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ivory);
    max-width: 52ch;
    margin: 0 0 36px;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}
.docente-areas { margin-top: 8px; }
.docente-areas__title {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    margin: 0 0 14px;
}
.docente-areas__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.docente-areas__list li {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--ivory);
    background: rgba(180, 140, 60, 0.12);
    border: 1px solid rgba(212, 170, 90, 0.3);
    border-radius: 999px;
    padding: 6px 14px;
}

/* Detalhes secundários (limpo, vertical, em coluna estreita) */
.docente-detalhes { padding: 64px 0 80px; background: var(--white); }
.docente-detalhes > .container--narrow > div {
    margin-bottom: 48px;
}
.docente-detalhes > .container--narrow > div:last-child { margin-bottom: 0; }

.docente-curriculo {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 14px 0 0;
    max-width: 65ch;
}
.docente-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}
.docente-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--mist);
    font-size: 15px;
    line-height: 1.5;
    color: var(--obsidian);
}
.docente-list li:last-child { border-bottom: 0; }
.docente-list li strong { font-weight: 600; }
.docente-list li em { font-style: normal; color: var(--gold-deep); font-weight: 500; }
.docente-list__sub {
    display: block;
    font-size: 13.5px;
    color: var(--smoke);
    margin-top: 4px;
}
.docente-links { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 18px 28px; }
.docente-links li { padding: 0; }
.docente-links a {
    color: var(--gold-deep);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}
.docente-links a:hover { color: var(--obsidian); text-decoration: underline; }

.docente-error { padding: 120px 0; }

@media (max-width: 760px) {
    .docente-hero { padding: 48px 0 56px; }
    .docente-hero__row { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
    .docente-hero__photo { max-width: 200px; margin: 0 auto; }
    .docente-hero__bio { font-size: 19px; padding-left: 16px; }
}

/* Estado de carregamento / vazio / erro da listagem dinâmica */
.faculty-state {
    padding: 64px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r);
}
.faculty-state__msg {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--smoke);
    margin: 0;
}
.faculty-state[data-state="loading"] .faculty-state__msg::after {
    content: " ·";
    animation: facultyDots 1.2s infinite;
}
.faculty-state[data-state="error"] .faculty-state__msg { color: #a13838; }
.faculty-state[data-state="empty"] .faculty-state__msg { color: var(--gold-deep); }
@keyframes facultyDots {
    0%, 100% { content: " ·"; }
    33% { content: " · ·"; }
    66% { content: " · · ·"; }
}
.faculty-page__section:first-of-type { margin-top: 0; }

.faculty-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}
.prof { margin: 0; }
.prof__card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--r);
    background: linear-gradient(160deg, var(--gold-mist) 0%, var(--mist) 100%);
    text-decoration: none;
    color: inherit;
    transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.prof__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -20px rgba(13, 13, 13, 0.35);
}
.prof__photo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) contrast(1.02);
    transition: filter 380ms var(--ease), transform 480ms var(--ease);
}
.prof__card:hover .prof__photo {
    /* Identidade visual: fotos sempre em P&B, mesmo no hover. Apenas zoom sutil. */
    transform: scale(1.03);
}
.prof__mono {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(56px, 6vw, 96px);
    letter-spacing: -0.02em;
    color: var(--gold-deep);
    opacity: 0.55;
    user-select: none;
}
.prof__overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 18px 16px 16px;
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.55) 60%, rgba(13, 13, 13, 0) 100%);
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.prof__card:hover .prof__overlay,
.prof__card:focus-visible .prof__overlay {
    opacity: 1;
    transform: translateY(0);
}
.prof__role {
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--silver);
}
.prof__area {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.prof__name {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--obsidian);
    margin: 14px 0 0;
    line-height: 1.3;
}

@media (max-width: 960px) {
    .faculty-photos { grid-template-columns: repeat(3, 1fr); }
    .faculty-page__title { font-size: 44px; }
}
@media (max-width: 720px) {
    .faculty-photos { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
    .faculty-page { padding: 48px 0 72px; }
    .faculty-page__title { font-size: 36px; }
    .faculty-page__section { margin: 48px 0 22px; }
}
@media (hover: none) {
    .prof__overlay { opacity: 1; transform: none; }
    /* Mantém grayscale em mobile/touch também (identidade visual Bizinnt) */
}

/* ============================================================
 * 023 — Blocos da home v5 reformulada
 * audience_cards · programs_tabs · bizinnt_quote ·
 * logos_strip · ecosystem_cards
 * Compatíveis com edit-mode (cada bloco já é envolvido em
 * .bz-block[data-block-id] pelo renderer).
 * ============================================================ */

/* ---- Hero: variante com imagem lateral ---- */
.hero__visual--image {
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    border: 1px solid var(--graphite);
    background: var(--charcoal);
    overflow: hidden;
    position: relative;
    padding: 0;
    display: block;
}
.hero__visual--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero__visual-tag--overlay {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
}

/* ---- audience_cards: "Você já chegou longe" ---- */
.audience { padding: 96px 0; }
.audience__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}
.audience__intro { padding-top: 16px; }
.audience__title {
    margin: 16px 0 22px;
    max-width: 14ch;
    font-size: clamp(36px, 4vw, 52px);
}
.audience__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.audience__sub {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-light);
    font-size: 20px;
    margin: 0 0 20px;
}
.audience__lead { color: var(--silver); max-width: 44ch; margin-bottom: 28px; }
.audience__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.audience__cards {
    display: grid;
    gap: 14px;
}
.audience-card {
    /* Antes era grid com coluna 44px para a bolinha decorativa.
       Sem a bola, vira fluxo simples. */
    display: block;
    padding: 22px 24px;
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: var(--r-lg);
    transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.audience-card:hover {
    border-color: rgba(212, 170, 90, 0.45);
    transform: translateY(-2px);
}
.audience-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(180, 140, 60, 0.12);
    color: var(--gold-light);
    font-size: 18px;
}
.audience-card__title {
    color: var(--white);
    font-size: 17px;
    font-family: var(--font-sans);
    font-weight: 600;
    margin: 0 0 4px;
}
.audience-card__desc { color: var(--silver); font-size: 14px; line-height: 1.55; margin: 0; }

/* ---- programs_tabs: "Programas para cada momento" ---- */
.programs { padding: 96px 0; }
.programs__head { margin-bottom: 32px; }
.programs__head h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.programs__tabs {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 999px;
    margin: 0 auto 40px;
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.programs__tab {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--smoke);
    background: transparent;
    transition: all 180ms var(--ease);
    white-space: nowrap;
}
.programs__tab.is-active {
    background: var(--obsidian);
    color: var(--white);
}
.programs__tab:not(.is-active):hover { color: var(--obsidian); }
.programs__panel { display: none; }
.programs__panel.is-active { display: block; }
.programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.program-card {
    display: block;
    padding: 26px 26px 22px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    transition: border-color 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.program-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(13, 13, 13, 0.06);
}
.program-card__icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gold-mist);
    color: var(--gold-deep);
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 16px;
    overflow: hidden;
}
/* Quando o card tem badge (imagem), o quadrado bege some — o logo aparece SOLTO
   e CENTRALIZADO no topo do card (mais presença visual). */
.program-card__icon--img {
    background: transparent;
    border-radius: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.program-card__icon--img img {
    object-fit: contain;
    display: block;
}
/* 5 tamanhos editáveis (s/m/l/xl/xxl). Dupla classe para vencer a regra base.
   Aumentados ~2× em relação à versão anterior — badges agora têm peso visual real. */
.program-card__icon--img.program-card__icon--img-s   img { width: 80px;  height: 80px; }
.program-card__icon--img.program-card__icon--img-m   img { width: 120px; height: 120px; }
.program-card__icon--img.program-card__icon--img-l   img { width: 160px; height: 160px; }
.program-card__icon--img.program-card__icon--img-xl  img { width: 200px; height: 200px; }
.program-card__icon--img.program-card__icon--img-xxl img { width: 260px; height: 260px; }
/* Capa do card de MBA (banner no topo). Com imagem (capa_url) ou, sem ela,
   um gradiente escuro elegante (matiz derivada do slug) com o nome da área,
   pra os cards nunca ficarem "vazios". Margem negativa = sangra a borda do card. */
.program-card__cover {
    margin: -26px -26px 18px;
    height: 152px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    overflow: hidden;
    background: var(--mist);
}
.program-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.program-card__cover--ph {
    display: flex;
    align-items: flex-end;
    padding: 16px 18px;
    background: linear-gradient(135deg, hsl(var(--h, 40), 22%, 15%), hsl(var(--h, 40), 30%, 33%));
}
.program-card__cover-txt {
    font-family: var(--font-display);
    font-size: 21px;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.94);
}

/* Bloco de investimento dentro do card (cursos.html + mbas.html). Replica
   o visual do hero direito do curso — parcelas em destaque + à vista pequeno. */
.program-card__invest {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--mist);
    margin-bottom: 12px;
}
.program-card__invest-lbl {
    display: block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 4px;
}
.program-card__invest-parc {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2px;
}
.program-card__invest-pre {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--smoke);
    line-height: 1;
}
.program-card__invest-num {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--obsidian);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
}
.program-card__invest-suf {
    font-size: 11px;
    color: var(--gold-deep);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.program-card__invest-avista {
    font-size: 12px;
    color: var(--smoke);
    margin-top: 2px;
}
@media (max-width: 720px) {
    .program-card__icon--img.program-card__icon--img-s   img { width: 60px;  height: 60px; }
    .program-card__icon--img.program-card__icon--img-m   img { width: 90px;  height: 90px; }
    .program-card__icon--img.program-card__icon--img-l   img { width: 120px; height: 120px; }
    .program-card__icon--img.program-card__icon--img-xl  img { width: 150px; height: 150px; }
    .program-card__icon--img.program-card__icon--img-xxl img { width: 190px; height: 190px; }
}
.program-card__title {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    color: var(--obsidian);
    margin: 0 0 10px;
    line-height: 1.3;
}
.program-card__desc {
    color: var(--smoke);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 14px;
}
.program-card__tag {
    display: inline-block;
    padding: 5px 10px;
    background: var(--gold-mist);
    color: var(--gold-deep);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.program-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-deep);
    font-size: 13px;
    font-weight: 600;
}
.program-card:hover .program-card__cta .arrow { transform: translateX(3px); }
.programs__footer { text-align: center; margin-top: 40px; }

/* ---- bizinnt_quote: "O QUE É A BIZINNT" ---- */
.bz-quote { padding: 96px 0; }
.bz-quote__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.bz-quote__title {
    margin: 16px 0 28px;
    max-width: 14ch;
    font-size: clamp(34px, 3.6vw, 48px);
}
.bz-quote__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.bz-quote__box {
    border-left: 3px solid var(--gold);
    padding: 4px 0 4px 22px;
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: var(--silver);
}
.bz-quote__para { color: var(--silver); line-height: 1.65; max-width: 50ch; }
.bz-quote__side { padding-top: 16px; }
.bz-quote__side-title {
    color: var(--white);
    margin: 14px 0 26px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 30px;
}
.bz-quote__list { display: grid; gap: 18px; }
.bz-quote__item {
    /* Antes era grid com coluna de 36px para o circulo decorativo.
       Removido o circulo, vira fluxo simples sem grid. */
    display: block;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--graphite);
}
.bz-quote__item:first-child { border-top: none; padding-top: 4px; }
.bz-quote__item-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(180, 140, 60, 0.18);
    border: 1px solid rgba(212, 170, 90, 0.35);
    display: inline-block;
}
.bz-quote__item-title { color: var(--white); margin: 0 0 4px; font-size: 16px; font-weight: 600; font-family: var(--font-sans); }
.bz-quote__item-desc { color: var(--silver); font-size: 14px; line-height: 1.55; margin: 0; }

/* ---- logos_strip: "Onde nossos alunos atuam" + parceiros/acreditações ----
   Padding vertical reduzido (88 → 56px) e margin head→wrap reduzido (40 → 28px)
   pra ficar visualmente equilibrado quando há poucos logos grandes (Ultra/XXL).
   Com 4+ logos pequenos, ainda há respiro suficiente — testado em ambos modos. */
.logos-strip { padding: 56px 0; }
.logos-strip__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 400;
    margin: 14px 0 8px;
}
.logos-strip__lead {
    color: var(--smoke);
    max-width: 56ch;
    margin: 8px auto 0;
}
.logos-strip__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 16px;
    margin-top: 14px;
}
/* logos_strip em carrossel contínuo (marquee) — opt-in (p.carrossel).
   Logos duplicados no render pra emendar o loop; margin (não gap) pro
   translateX(-50%) bater. Pausa no hover; respeita prefers-reduced-motion. */
.logos-strip__carousel {
    width: 100%;
    overflow: hidden;
    margin-top: 18px;
    min-height: calc(var(--logos-carousel-h, 120px) + 28px); /* reserva espaço; acompanha a altura escolhida */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logos-strip__track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: logosStripMarquee var(--marquee-dur, 32s) linear infinite;
    will-change: transform;
}
.logos-strip__carousel:hover .logos-strip__track { animation-play-state: paused; }
.logos-strip__track .logo-pill { flex: 0 0 auto; margin: 0 22px; }
/* No carrossel os logos têm altura uniforme (marquee limpo). Especificidade
   alta (3 classes) pra VENCER os caps por-tamanho .logo-pill--img-l/m/xl etc.,
   que senão limitam max-height/max-width e fazem o logo encolher no container. */
.logos-strip__carousel .logo-pill.logo-pill--img img {
    height: var(--logos-carousel-h, 120px);
    max-height: var(--logos-carousel-h, 120px);
    max-width: calc(var(--logos-carousel-h, 120px) * 4);
    width: auto;
}
@keyframes logosStripMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .logos-strip__track { animation: none; flex-wrap: wrap; justify-content: center; }
}
.logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 56px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 999px;
    color: var(--smoke);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.logo-pill:hover { border-color: var(--gold); color: var(--obsidian); }
.logo-pill img {
    max-height: 28px;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: filter 200ms var(--ease);
}
.logo-pill:hover img { filter: grayscale(0) opacity(1); }

/* Variante "logo solto": quando o item tem logo_url, descarta o pill
   (sem fundo, sem borda, sem grayscale). Logo aparece bem maior e em cor cheia.
   Especificidade dupla (.logo-pill.logo-pill--img) pra vencer .logo-pill--destaque
   que define height: 64px e sobrescreveria o height: auto aqui. */
.logo-pill.logo-pill--img {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    min-width: auto;
    height: auto;
    padding: 0;
    align-items: center;
    overflow: visible;
}
.logo-pill.logo-pill--img:hover { background: transparent !important; transform: none; }
/* Tamanho controlavel pelo admin (5 niveis). Proporção sempre mantida
   via object-fit: contain — só limitamos max-height/max-width.
   max-width gera teto generoso para horizontais; max-height é o "drive". */
.logo-pill--img img {
    filter: none;
    opacity: 1;
    object-fit: contain;
    width: auto;
    height: auto;
}
/* Duplica a classe (.logo-pill--img.logo-pill--img-X) para elevar
   especificidade e vencer qualquer regra herdada do .logo-pill img. */
.logo-pill--img.logo-pill--img-s     img { max-height: 60px;  max-width: 180px; }
.logo-pill--img.logo-pill--img-m     img { max-height: 96px;  max-width: 260px; }
.logo-pill--img.logo-pill--img-l     img { max-height: 130px; max-width: 320px; }
.logo-pill--img.logo-pill--img-xl    img { max-height: 170px; max-width: 400px; }
.logo-pill--img.logo-pill--img-xxl   img { max-height: 220px; max-width: 480px; }
.logo-pill--img.logo-pill--img-ultra img { max-height: 300px; max-width: 600px; }
/* Personalizado: usa --logo-pill-h (style inline). max-width segue 2x. */
.logo-pill--img.logo-pill--img-custom img {
    max-height: var(--logo-pill-h, 130px);
    max-width: calc(var(--logo-pill-h, 130px) * 2);
}

@media (max-width: 720px) {
    /* No mobile reduz ~30% para nao quebrar layout */
    .logo-pill--img.logo-pill--img-s     img { max-height: 42px;  max-width: 130px; }
    .logo-pill--img.logo-pill--img-m     img { max-height: 70px;  max-width: 190px; }
    .logo-pill--img.logo-pill--img-l     img { max-height: 90px;  max-width: 240px; }
    .logo-pill--img.logo-pill--img-xl    img { max-height: 120px; max-width: 290px; }
    .logo-pill--img.logo-pill--img-xxl   img { max-height: 160px; max-width: 340px; }
    .logo-pill--img.logo-pill--img-ultra img { max-height: 210px; max-width: 420px; }
    .logo-pill--img.logo-pill--img-custom img {
        max-height: calc(var(--logo-pill-h, 130px) * 0.7);
        max-width:  calc(var(--logo-pill-h, 130px) * 1.4);
    }
}

/* Variante destaque (Parcerias e Acreditações) */
.logos-strip--destaque {
    background: linear-gradient(180deg, var(--gold-mist) 0%, var(--white) 100%);
    border-top: 1px solid rgba(180, 140, 60, 0.2);
    border-bottom: 1px solid rgba(180, 140, 60, 0.2);
    position: relative;
}
.logos-strip--destaque::before,
.logos-strip--destaque::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}
.logos-strip--destaque::before { top: 0; }
.logos-strip--destaque::after  { bottom: 0; }
.logos-strip--destaque .eyebrow { color: var(--gold-deep); }
.logos-strip--destaque .logos-strip__title { color: var(--obsidian); }
.logos-strip--destaque .logos-strip__title em { font-style: italic; color: var(--gold-deep); }
.logo-pill--destaque {
    background: var(--white);
    border: 1px solid rgba(180, 140, 60, 0.3);
    box-shadow: 0 4px 18px rgba(180, 140, 60, 0.08);
    min-width: 150px;
    height: 64px;
    padding: 14px 26px;
    color: var(--gold-deep);
    font-weight: 600;
}
.logo-pill--destaque:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 22px rgba(180, 140, 60, 0.16);
    transform: translateY(-1px);
}
/* Só aplica quando NÃO for variante "logo solto" — senão sobrescreve o
   tamanho escolhido pelo admin (s/m/l/xl/xxl). */
.logo-pill--destaque:not(.logo-pill--img) img { max-height: 36px; max-width: 130px; }

/* ---- ecosystem_cards: "Mais do que educação" ---- */
.ecosystem { padding: 96px 0; }
.ecosystem__head { margin-bottom: 48px; max-width: 60ch; }
.ecosystem__title {
    margin: 16px 0 20px;
    font-size: clamp(36px, 4vw, 52px);
}
.ecosystem__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.ecosystem__lead { color: var(--silver); max-width: 56ch; line-height: 1.65; }
.ecosystem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ecosystem-card {
    padding: 32px 28px;
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: var(--r-lg);
    transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.ecosystem-card:hover {
    border-color: rgba(212, 170, 90, 0.45);
    transform: translateY(-3px);
}
.ecosystem-card__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(180, 140, 60, 0.15);
    color: var(--gold-light);
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
}
.ecosystem-card__title { color: var(--white); margin: 0 0 12px; font-size: 22px; font-family: var(--font-display); font-weight: 400; }
.ecosystem-card__desc { color: var(--silver); font-size: 15px; line-height: 1.6; margin: 0 0 20px; }
.ecosystem-card__bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ecosystem-card__bullets li {
    color: var(--silver);
    font-size: 14px;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}
.ecosystem-card__bullets li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--gold);
}

/* ---- Responsivo ---- */
@media (max-width: 1100px) {
    .audience__grid,
    .bz-quote__grid { grid-template-columns: 1fr; gap: 48px; }
    .programs__grid,
    .ecosystem__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .audience, .programs, .bz-quote, .ecosystem, .logos-strip { padding: 64px 0; }
    .programs__grid,
    .ecosystem__grid { grid-template-columns: 1fr; }
    .logo-pill { min-width: 110px; height: 48px; padding: 10px 18px; font-size: 13px; }
    .logo-pill--destaque { min-width: 130px; height: 56px; padding: 12px 22px; }
    .bz-quote__grid { gap: 36px; }
    /* Mobile: abas empilhadas (os rótulos longos não cabem lado a lado e os
       cantos arredondados eram cortados pelo overflow-x do body). */
    .programs__tabs {
        width: 100%;
        flex-direction: column;
        border-radius: 18px;
    }
    .programs__tab {
        width: 100%;
        text-align: center;
        white-space: normal;
        border-radius: 14px;
    }
}

/* ============================================================
 * 024 — MBA detail page (Bizinnt MBA completa)
 * Hero rico com stats + selos + imagem
 * Para quem é · Formato+Diferenciais · O que recebe ·
 * Grade · Credenciais · Banner FACINT · Professores · Investimento
 * Lista MBAs ganhou bloco MEC/FACINT destaque.
 * ============================================================ */

/* ---- Hero MBA ---- */
.mba-hero {
    position: relative;
    background-color: var(--obsidian);
    padding: 88px 0 72px;
    border-bottom: 1px solid var(--graphite);
}
.mba-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: end;
}
.mba-hero__copy { max-width: 640px; }
.mba-hero__dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    margin-right: 8px;
    vertical-align: middle;
}
.mba-hero__title {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 16px 0 18px;
    max-width: 18ch;
}
.mba-hero__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.mba-hero__lead {
    color: var(--silver);
    font-size: 16.5px;
    line-height: 1.55;
    max-width: 52ch;
    margin: 0 0 28px;
}
.mba-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin: 0 0 32px;
    padding: 16px 0;
    border-top: 1px solid var(--graphite);
    border-bottom: 1px solid var(--graphite);
}
.mba-hero__stat-v {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.mba-hero__stat-l {
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 500;
}
.mba-hero__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.mba-hero__vagas {
    color: var(--silver);
    font-size: 13px;
    margin-left: 6px;
}
.mba-hero__selos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-self: end;
    justify-self: end;
    max-width: 320px;
}
.mba-selo {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid var(--graphite);
    border-radius: 10px;
    min-width: 140px;
    backdrop-filter: blur(8px);
}
.mba-selo__top {
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 600;
    margin-bottom: 3px;
}
.mba-selo__bot {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.1;
}
.mba-selo--img {
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(250, 250, 248, 0.95);
}
.mba-selo--img img {
    max-width: 100%;          /* preenche a largura do card (menos "fundo" sobrando) */
    max-height: 96px;         /* padrao bem maior que os 56px de antes */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
/* Tamanho da imagem de cada selo (quando tem logo). Vazio = padrão (96px). */
.mba-selo--img[data-tamanho="s"]     img { max-height: 60px; }
.mba-selo--img[data-tamanho="m"]     img { max-height: 80px; }
.mba-selo--img[data-tamanho="l"]     img { max-height: 116px; }
.mba-selo--img[data-tamanho="xl"]    img { max-height: 150px; }
.mba-selo--img[data-tamanho="ultra"] img { max-height: 190px; }

/* Fundo e borda escolhidos por selo (valem pra selo de texto e de imagem).
   data-fundo/data-borda vazios = padrão (claro pra imagem, escuro pro texto). */
.mba-selo[data-fundo="claro"]        { background: rgba(250, 250, 248, 0.96); }
.mba-selo[data-fundo="transparente"] { background: transparent; }
.mba-selo[data-fundo="escuro"]       { background: rgba(26, 26, 26, 0.85); }
.mba-selo[data-fundo="dourado"]      { background: rgba(180, 140, 60, 0.18); }
.mba-selo[data-borda="nao"]          { border: none; }
/* Texto legível quando o fundo claro/dourado é usado em selo de TEXTO. */
.mba-selo[data-fundo="claro"]   .mba-selo__top,
.mba-selo[data-fundo="dourado"] .mba-selo__top { color: #8a7320; }
.mba-selo[data-fundo="claro"]   .mba-selo__bot,
.mba-selo[data-fundo="dourado"] .mba-selo__bot { color: var(--obsidian); }

/* Selos em carrossel contínuo ("desfilando") — opt-in. Os selos sao duplicados
   pelo JS pra emendar o loop; margin (nao gap) pra translateX(-50%) bater exato.
   Pausa no hover; respeita prefers-reduced-motion. */
/* Selos fixos (acima do carrossel) no modo hibrido: respiro pro marquee abaixo. */
.mba-hero__selos--fixos { margin-bottom: 14px; }
.mba-selos-carousel {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.mba-selos-track {
    display: flex;
    width: max-content;
    align-items: stretch;
    animation: mbaSelosMarquee var(--marquee-dur, 30s) linear infinite;
    will-change: transform;
}
.mba-selos-carousel:hover .mba-selos-track { animation-play-state: paused; }
.mba-selos-track .mba-selo { flex: 0 0 auto; margin-right: 12px; }
@keyframes mbaSelosMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .mba-selos-track { animation: none; flex-wrap: wrap; }
}

/* ---- Hero · painel lateral opt-in (imagem / texto / selo MEC / logos) ----
   Coluna direita do hero. Tudo opt-in: o JS só monta .mba-hero__aside quando
   há conteúdo; senão renderiza os selos de texto como antes. Cada bloco de
   imagem aceita data-tamanho (s/m/l/xl/ultra) — padrão da casa pra imagens. */
.mba-hero__aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    align-self: start;        /* imagem (com a borda) alinhada ao topo do hero */
    justify-self: end;
    width: 100%;
    max-width: 360px;
}
.mba-hero__aside .mba-hero__selos { width: 100%; max-width: none; justify-self: stretch; }
.mba-hero__aside-img { width: 100%; text-align: center; }
.mba-hero__aside-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--graphite);
    display: block;
    margin: 0 auto;
}
.mba-hero__aside-img[data-tamanho="s"]     img { max-width: 140px; }
.mba-hero__aside-img[data-tamanho="m"]     img { max-width: 200px; }
.mba-hero__aside-img[data-tamanho="l"]     img { max-width: 260px; }
.mba-hero__aside-img[data-tamanho="xl"]    img { max-width: 320px; }
.mba-hero__aside-img[data-tamanho="ultra"] img { max-width: 360px; }
.mba-hero__aside-texto {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 600;
    text-align: center;
}
/* Título opcional logo acima dos selos (uma linha). Aproxima-se dos selos
   abaixo via margin negativo pra parecer um rótulo do grupo de selos. */
.mba-hero__selos-titulo {
    width: 100%;
    text-align: center;
    color: var(--silver);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: -6px;
}
.mba-hero__mec {
    background: rgba(250, 250, 248, 0.96);
    border-radius: 12px;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mba-hero__mec img { width: 100%; height: auto; max-width: 150px; display: block; }
.mba-hero__mec[data-tamanho="s"]     img { max-width: 100px; }
.mba-hero__mec[data-tamanho="m"]     img { max-width: 150px; }
.mba-hero__mec[data-tamanho="l"]     img { max-width: 200px; }
.mba-hero__mec[data-tamanho="xl"]    img { max-width: 250px; }
.mba-hero__mec[data-tamanho="ultra"] img { max-width: 300px; }
.mba-hero__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.mba-hero__logo {
    background: rgba(250, 250, 248, 0.95);
    border-radius: 10px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mba-hero__logo img { height: 38px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.mba-hero__logo[data-tamanho="s"]     img { height: 28px; }
.mba-hero__logo[data-tamanho="m"]     img { height: 38px; }
.mba-hero__logo[data-tamanho="l"]     img { height: 50px; }
.mba-hero__logo[data-tamanho="xl"]    img { height: 64px; }
.mba-hero__logo[data-tamanho="ultra"] img { height: 80px; }

/* ---- Diff strip ---- */
.mba-diff-strip {
    background: var(--obsidian);
    border-bottom: 1px solid var(--graphite);
    padding: 14px 0;
}
.mba-diff-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.mba-diff-strip__item {
    color: var(--silver);
    font-size: 12.5px;
    letter-spacing: 0.04em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.mba-diff-strip__item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 18px;
}

/* ---- Para quem é (4 cards) ---- */
.mba-publico { padding: 72px 0 56px; }
.mba-publico .eyebrow { display: block; margin-bottom: 28px; }
.mba-publico__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.mba-publico__card {
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
}
.mba-publico__card h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--obsidian);
}
.mba-publico__card p {
    font-size: 13.5px;
    color: var(--smoke);
    line-height: 1.55;
    margin: 0;
}

/* ---- Formato + Diferenciais ---- */
.mba-twocol { padding: 56px 0; }
.mba-twocol__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.mba-twocol__col {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 26px 28px;
}
.mba-twocol__col .eyebrow { display: block; margin-bottom: 20px; }
.mba-twocol__list { display: grid; gap: 18px; }
.mba-twocol__item h4 {
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--obsidian);
}
.mba-twocol__item p {
    font-size: 13.5px;
    color: var(--smoke);
    line-height: 1.55;
    margin: 0;
}
/* mba-twocol__list--check removido (bolinhas pediam sumir) */

/* ---- O que você recebe (4 cards com tag) ---- */
.mba-recebe { padding: 56px 0; }
.mba-recebe .eyebrow { display: block; margin-bottom: 28px; }
.mba-recebe__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.mba-recebe__card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 22px 24px;
    position: relative;
}
/* mba-recebe__icon removido (quadradinho pediu sumir) */
.mba-recebe__card h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--obsidian);
}
.mba-recebe__card p {
    font-size: 13.5px;
    color: var(--smoke);
    line-height: 1.55;
    margin: 0 0 12px;
}
.mba-recebe__tag {
    display: inline-block;
    background: var(--gold-mist);
    color: var(--gold-deep);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 5px;
}

/* ---- Grade curricular ---- */
.mba-grade { padding: 56px 0; }
.mba-grade .eyebrow { display: block; margin-bottom: 16px; }
.mba-grade__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    border-bottom: none;
    font-size: 14px;
    color: var(--smoke);
    font-weight: 500;
    flex-wrap: wrap;
    gap: 12px;
}
.mba-grade__cta {
    color: var(--gold-deep);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.mba-grade__cta:hover { color: var(--gold); }
.mba-grade__list {
    background: var(--white);
    border: 1px solid var(--mist);
    border-top: none;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    overflow: hidden;
}
.mba-grade__row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    border-top: 1px solid var(--mist);
}
.mba-grade__row:first-child { border-top: none; }
.mba-grade__num {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold-deep);
    font-weight: 400;
    text-align: center;
}
.mba-grade__body h4 {
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--obsidian);
}
.mba-grade__body p {
    font-size: 12.5px;
    color: var(--smoke);
    margin: 0;
}
.mba-grade__tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
}
.mba-grade__tag--sand   { background: #f0e8d5; color: #8a6a28; }
.mba-grade__tag--blue   { background: #e3eef7; color: #1f5b94; }
.mba-grade__tag--green  { background: #e1f1e1; color: #2e6b3f; }
.mba-grade__tag--orange { background: #fae7cf; color: #b56c1c; }
.mba-grade__tag--purple { background: #ede2f5; color: #6c3ba1; }
.mba-grade__tag--red    { background: #f9dfe0; color: #a83333; }
.mba-grade__tag--gold   { background: var(--gold-mist); color: var(--gold-deep); }

/* ---- Credenciais (3 cards) ---- */
.mba-cred { padding: 80px 0; }
.mba-cred__title {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 28ch;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.25;
}
.mba-cred__title em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.mba-cred__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.mba-cred__card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 26px 26px 24px;
}
.mba-cred__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.mba-cred__logobox {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: var(--cred-logo-band, 56px);
}
.mba-cred__head[data-logo-pos="topo-centro"] .mba-cred__logobox { justify-content: center; }
.mba-cred__head[data-logo-pos="topo-centro"] .mba-cred__icon { font-size: 44px; }
.mba-cred__icon { font-size: 26px; line-height: 1; }
.mba-cred__logo { max-height: 36px; max-width: 80px; object-fit: contain; }
.mba-cred__logo[data-tamanho="s"]     { max-height: 28px;  max-width: 70px; }
.mba-cred__logo[data-tamanho="m"]     { max-height: 48px;  max-width: 110px; }
.mba-cred__logo[data-tamanho="l"]     { max-height: 64px;  max-width: 150px; }
.mba-cred__logo[data-tamanho="xl"]    { max-height: 84px;  max-width: 200px; }
.mba-cred__logo[data-tamanho="ultra"] { max-height: 110px; max-width: 260px; }
.mba-cred__head[data-logo-pos="topo-esq"]    { flex-direction: column; align-items: flex-start; gap: 10px; }
.mba-cred__head[data-logo-pos="topo-centro"] { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.mba-cred__card h3 {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    color: var(--obsidian);
}
.mba-cred__card p {
    font-size: 13.5px;
    color: var(--smoke);
    line-height: 1.6;
    margin: 0 0 14px;
}
.mba-cred__card strong { color: var(--obsidian); font-weight: 600; }
.mba-cred__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gold-deep);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border: 1px solid var(--gold-light);
    border-radius: 6px;
}
.mba-cred__cta:hover { background: var(--gold-mist); }

/* ---- Banner FACINT (Parceria educacional) ---- */
.mba-banner {
    background: var(--obsidian);
    color: var(--white);
    padding: 22px 0;
}
.mba-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}
.mba-banner__left {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: var(--white);
}
.mba-banner__centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--silver);
    font-size: 12.5px;
}
.mba-banner__lbl { letter-spacing: 0.04em; }
.mba-banner__centro-txt {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold-light);
    font-weight: 400;
}
.mba-banner__centro img { max-height: 32px; max-width: 140px; object-fit: contain; }
.mba-banner__right {
    text-align: right;
    color: var(--silver);
    font-size: 14px;
    font-weight: 500;
}

/* ---- Professores referência ---- */
.mba-profs { padding: 72px 0 56px; }
.mba-profs .eyebrow { display: block; margin-bottom: 28px; }
.mba-profs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
/* Carrossel de docentes cadastrados (scroll horizontal + setas) */
.mba-profs__carousel { position: relative; }
.mba-profs__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.mba-profs__track::-webkit-scrollbar { height: 6px; }
.mba-profs__track::-webkit-scrollbar-thumb { background: var(--mist); border-radius: 3px; }
.mba-profs__carousel .mba-profs__card {
    flex: 0 0 clamp(240px, 78vw, 280px);
    scroll-snap-align: start;
}
.mba-profs__foto {
    width: 72px; height: 72px; border-radius: 50%;
    object-fit: cover; margin-bottom: 14px;
    border: 2px solid var(--mist);
}
.mba-profs__carousel .mba-profs__cargo {
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.mba-profs__arrow {
    position: absolute; top: 42%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--mist);
    color: var(--obsidian); font-size: 22px; line-height: 1;
    cursor: pointer; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .12);
}
.mba-profs__arrow:hover { border-color: var(--gold); color: var(--gold-deep); }
.mba-profs__arrow--prev { left: -8px; }
.mba-profs__arrow--next { right: -8px; }
@media (max-width: 640px) { .mba-profs__arrow { display: none; } }

/* Carrossel CONTÍNUO (marquee) — desliza da direita pra esquerda sem parar.
   Ligado via JS (classe --continuo) quando o autoplay está on, o usuário aceita
   movimento e há cards suficientes pra rolar. Os cards são duplicados pra emendar
   o loop; usa margin (não gap) pra que o translateX(-50%) bata exatamente no
   início da segunda cópia — sem salto. Pausa no hover. */
.mba-profs__carousel--continuo {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.mba-profs__carousel--continuo .mba-profs__track {
    width: max-content;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
    animation: mbaProfsMarquee var(--marquee-dur, 40s) linear infinite;
    will-change: transform;
}
.mba-profs__carousel--continuo .mba-profs__card { margin-right: 16px; }
.mba-profs__carousel--continuo:hover .mba-profs__track,
.mba-profs__carousel--continuo .mba-profs__track:focus-within { animation-play-state: paused; }
.mba-profs__carousel--continuo .mba-profs__arrow { display: none; }
.mba-profs__carousel--continuo .mba-profs__track::-webkit-scrollbar { display: none; }
@keyframes mbaProfsMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .mba-profs__carousel--continuo .mba-profs__track { animation: none; }
}
.mba-profs__card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 26px 22px 22px;
    text-align: center;
}
.mba-profs__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 17px;
    color: var(--obsidian);
    margin-bottom: 14px;
}
.mba-profs__avatar--sand   { background: #f5e9cc; color: #8a6a28; }
.mba-profs__avatar--blue   { background: #d6e6f5; color: #1f5b94; }
.mba-profs__avatar--green  { background: #d6ecd6; color: #2e6b3f; }
.mba-profs__avatar--orange { background: #f9dfbb; color: #b56c1c; }
.mba-profs__avatar--pink   { background: #f9d7e2; color: #a13a64; }
.mba-profs__card h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--obsidian);
}
.mba-profs__cargo, .mba-profs__breve {
    font-size: 12.5px;
    color: var(--smoke);
    margin: 0 0 6px;
    line-height: 1.45;
}
.mba-profs__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    border-radius: 5px;
    margin-top: 6px;
    background: var(--gold-mist);
    color: var(--gold-deep);
}
.mba-profs__tag--green  { background: #e1f1e1; color: #2e6b3f; }
.mba-profs__tag--red    { background: #f9dfe0; color: #a83333; }
.mba-profs__tag--orange { background: #fae7cf; color: #b56c1c; }
.mba-profs__tag--purple { background: #ede2f5; color: #6c3ba1; }
.mba-profs__tag--blue   { background: #e3eef7; color: #1f5b94; }

/* ---- Investimento (sem financiamento) ---- */
.mba-invest {
    padding: 72px 0;
    background: var(--obsidian);
    color: var(--white);
}
.mba-invest .eyebrow { display: block; margin-bottom: 22px; }
.mba-invest__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}
/* F3.35 — Parcelado em destaque (número grande), à vista secundário. */
/* Preço-âncora opcional ("De R$ X riscado por") acima do valor — seção escura. */
.mba-invest__de {
    font-size: 17px;
    color: var(--silver);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.mba-invest__de-val { text-decoration: line-through; color: rgba(255, 255, 255, 0.5); margin: 0 5px; }
.mba-invest__de-por { color: var(--silver); }
.mba-invest__parc-destaque {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.mba-invest__parc-pre {
    font-size: clamp(18px, 2.4vw, 26px);
    color: var(--silver);
    font-weight: 400;
}
.mba-invest__parc-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    color: var(--gold-light);
    font-weight: 300;
    line-height: 1;
}
.mba-invest__parc-suf {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}
/* Fallback texto único (frase inteira tipo "ou 18x de R$ 938,90"):
   fonte um pouco menor que o split puro pra caber sem quebrar feio. */
.mba-invest__parc-destaque--texto {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(34px, 4.6vw, 54px);
    color: var(--gold-light);
    font-weight: 300;
    line-height: 1.05;
}
.mba-invest__avista {
    color: var(--silver);
    font-size: 17px;
    margin-bottom: 8px;
}
.mba-invest__avista span {
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}
.mba-invest__obs {
    color: var(--silver);
    font-size: 12.5px;
    margin-bottom: 26px;
}
.mba-invest__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.mba-invest__benefits li {
    color: var(--silver);
    font-size: 13.5px;
    padding-left: 22px;
    position: relative;
}
.mba-invest__benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: 700;
}
.mba-invest__right {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center;
}
.mba-invest__turma {
    color: var(--silver);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}
.mba-invest__ctas {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}
.mba-invest__ctas .btn { justify-content: center; }
.mba-invest__vagas {
    color: var(--silver);
    font-size: 12.5px;
}

/* ---- Lista MBAs: bloco MEC/FACINT ---- */
/* Paleta Bizinnt: fundo escuro obsidiana → charcoal com borda dourada.
   Antes era azul-marinho (fora da paleta). Mantém a percepção de selo
   premium usando o gradient escuro com glow dourado sutil. */
.mbas-mec { padding: 56px 0 32px; }
.mbas-mec__card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal) 100%);
    color: var(--white);
    border-radius: var(--r-xl);
    padding: 36px 40px;
    border: 1px solid rgba(212, 170, 90, 0.45);
    box-shadow:
        0 12px 36px rgba(13, 13, 13, 0.18),
        inset 0 1px 0 rgba(212, 170, 90, 0.08);
    position: relative;
    overflow: hidden;
}
/* Glow dourado discreto no canto superior direito, como nos outros cards dark da Bizinnt */
.mbas-mec__card::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(180, 140, 60, 0.18) 0%, transparent 65%);
    pointer-events: none;
}
.mbas-mec__card > * { position: relative; z-index: 1; }
.mbas-mec__seal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 170, 90, 0.4);
    border-radius: 12px;
    color: var(--white);
}
.mbas-mec__seal-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
}
.mbas-mec__seal-body { display: flex; flex-direction: column; gap: 2px; }
.mbas-mec__seal-top {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 600;
}
.mbas-mec__seal-stars { color: var(--gold-light); font-size: 16px; letter-spacing: 0.05em; }
.mbas-mec__seal-bot {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 600;
}
.mbas-mec__copy .eyebrow { color: var(--gold-light); margin-bottom: 10px; display: block; }
.mbas-mec__copy h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 400;
    margin: 0 0 12px;
    font-size: clamp(26px, 2.6vw, 34px);
}
.mbas-mec__copy h2 em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.mbas-mec__copy p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 10px;
}
.mbas-mec__copy strong { color: var(--white); font-weight: 600; }
.mbas-mec__small {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 0.04em;
}

/* ---- Responsivo MBA detail ---- */
@media (max-width: 1100px) {
    .mba-hero__inner { grid-template-columns: 1fr; }
    .mba-hero__selos { justify-self: start; max-width: none; grid-template-columns: repeat(4, 1fr); }
    .mba-cred__grid,
    .mba-profs__grid { grid-template-columns: repeat(2, 1fr); }
    .mba-recebe__grid,
    .mba-twocol__grid,
    .mba-publico__grid { grid-template-columns: 1fr; }
    .mba-invest__grid { grid-template-columns: 1fr; gap: 32px; }
    .mbas-mec__card { grid-template-columns: 1fr; text-align: left; }
    .mbas-mec__seal { justify-self: start; }
    .mba-banner__inner { grid-template-columns: 1fr; text-align: center; gap: 12px; }
    .mba-banner__left, .mba-banner__right { text-align: center; }
}

/* ============================================================
 * 025 — Curso detail rico (Bizinnt curso)
 * Hero com imagem + badge no titulo + card invest sticky
 * Sobre cards 2x2 · Para quem é · Modulos timeline ·
 * Professor · Depoimentos · Acreditadoras · CTA final
 * ============================================================ */

/* ---- Hero ---- */
.curso-hero {
    background: var(--obsidian);
    padding: 0;
    color: var(--white);
    border-bottom: 1px solid var(--graphite);
}
.curso-hero__grid {
    display: grid;
    /* copy (esquerda) · card investimento (direita) — sem imagem central */
    grid-template-columns: 1.4fr 0.85fr;
    gap: 0;
    align-items: stretch;
    min-height: 480px;
}
.curso-hero__copy {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    /* flex-start: texto comeca do topo. Antes era center, que deixava o
       copy boiando no meio quando o cardInvest crescia muito (ex.: imagem
       grande do selo) e gerava um vazio no topo da coluna esquerda. */
    justify-content: flex-start;
}
.curso-hero__img {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    overflow: hidden;
    align-self: stretch;
    /* margens internas para a imagem não colar nas bordas, dando respiro visual */
    margin: 32px 0;
    border-radius: var(--r-lg);
}
.curso-hero__img--placeholder {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border: 1px dashed rgba(212, 170, 90, 0.25);
}
.curso-hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--r-lg); }
/* ---- Hero com IMAGEM (3 colunas: imagem · copy · cardInvest) ---- */
/* Adiciona-se a classe curso-hero__grid--with-img quando cfg.capa_url existe.
   Coluna da imagem é dimensionada por [data-tamanho] no elemento .curso-hero__img. */
.curso-hero__grid--with-img {
    grid-template-columns: 0.85fr 1fr 0.7fr;
}
.curso-hero__grid--with-img:has(.curso-hero__img[data-tamanho="s"])     { grid-template-columns: 0.5fr 1.3fr 0.7fr; }
.curso-hero__grid--with-img:has(.curso-hero__img[data-tamanho="m"])     { grid-template-columns: 0.85fr 1fr 0.7fr; }
.curso-hero__grid--with-img:has(.curso-hero__img[data-tamanho="l"])     { grid-template-columns: 1.1fr 0.9fr 0.7fr; }
.curso-hero__grid--with-img:has(.curso-hero__img[data-tamanho="xl"])    { grid-template-columns: 1.4fr 0.8fr 0.7fr; }
.curso-hero__grid--with-img:has(.curso-hero__img[data-tamanho="ultra"]) { grid-template-columns: 1.7fr 0.7fr 0.6fr; }

.curso-hero__dot {
    display: inline-block; width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold-light); margin-right: 8px; vertical-align: middle;
}
.curso-hero__meta { margin: 14px 0 12px; }
.curso-hero__meta-pill {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(180, 140, 60, 0.12);
    border: 1px solid rgba(212, 170, 90, 0.35);
    color: var(--gold-light);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.curso-hero__title {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(34px, 4.5vw, 48px);
    line-height: 1.1;
    margin: 12px 0 18px;
    max-width: 18ch;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.curso-hero__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.curso-hero__badge {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(250, 250, 248, 0.95);
    border-radius: 12px;
    padding: 6px;
    border: 1px solid rgba(212, 170, 90, 0.4);
}
.curso-hero__lead {
    color: var(--silver);
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 22px;
    max-width: 48ch;
}
.curso-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.curso-hero__tag {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--graphite);
    border-radius: 999px;
    color: var(--silver);
    font-size: 12px;
    font-weight: 500;
}

/* Card de investimento dentro do hero, à direita */
.curso-invest {
    background: var(--white);
    color: var(--obsidian);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 32px 32px 32px 0;
    border-radius: var(--r-lg);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    align-self: center;
}
.curso-invest__lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--smoke);
}
/* Parcelas em destaque (preço de entrada percebido) — versão legado (texto único) */
.curso-invest__parc {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--obsidian);
    line-height: 1.05;
    margin: 4px 0 6px;
}
/* Versão "split" — prefixo pequeno + número grande (ênfase total no número) + sufixo embaixo */
.curso-invest__parc--split {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin: 6px 0 4px;
}
.curso-invest__parc-pre {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--smoke);
    line-height: 1;
}
.curso-invest__parc-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--obsidian);
    line-height: 1;
    letter-spacing: -0.01em;
}
.curso-invest__parc-suf {
    width: 100%;
    font-size: 12px;
    color: var(--gold-deep);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}
/* Valor à vista pequeno, abaixo do destaque das parcelas */
.curso-invest__valor {
    font-size: 13.5px;
    color: var(--smoke);
    margin-bottom: 12px;
    font-weight: 500;
}
.curso-invest__cta {
    margin-top: 12px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
}
.curso-invest__cta2 { justify-content: center; }
.curso-invest__inc { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--mist); }
.curso-invest__inc .eyebrow { display: block; margin-bottom: 8px; }
.curso-invest__inc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}
.curso-invest__inc li {
    font-size: 13px;
    color: var(--smoke);
    padding-left: 18px;
    position: relative;
}
.curso-invest__inc li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-deep);
    font-weight: 700;
}
.curso-invest__garantia {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--mist);
    font-size: 12px;
    color: var(--smoke);
    text-align: center;
}

/* ---- Sobre o curso ---- */
.curso-sobre { padding: 60px 0 48px; }
.curso-sobre .eyebrow { display: block; margin-bottom: 24px; }
.curso-sobre__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.curso-sobre__card {
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
}
/* Icones decorativos REMOVIDOS a pedido do socio. As classes
   .curso-sobre__icon--{cor} foram retiradas pra evitar CSS morto.
   Se quiser voltar, restaurar este bloco + o <span> no render
   (page-collection.js) e voltar o card pra grid 44px 1fr. */
.curso-sobre__card h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--obsidian);
}
.curso-sobre__card p { font-size: 13.5px; color: var(--smoke); line-height: 1.55; margin: 0; }

/* ---- Para quem é ---- */
.curso-publico { padding: 32px 0; }
.curso-publico .eyebrow { display: block; margin-bottom: 18px; }
.curso-publico__list { display: grid; gap: 8px; }
.curso-publico__row {
    padding: 14px 22px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    font-size: 14.5px;
    color: var(--obsidian);
}

/* ---- Módulos ---- */
.curso-modulos { padding: 56px 0 32px; }
.curso-modulos .eyebrow { display: block; margin-bottom: 18px; }
.curso-modulos__list {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.curso-modulos__row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 24px;
    border-top: 1px solid var(--mist);
}
.curso-modulos__row:first-child { border-top: none; }
.curso-modulos__num {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold-deep);
    font-weight: 400;
    text-align: center;
}
.curso-modulos__body h4 {
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--obsidian);
}
.curso-modulos__body p { font-size: 13px; color: var(--smoke); margin: 0; }
.curso-modulos__dur {
    font-size: 13px;
    color: var(--gold-deep);
    font-weight: 600;
    white-space: nowrap;
}

/* ---- Ementa (campo texto livre do curso) ---- */
.curso-ementa { padding: 56px 0; }
.curso-ementa .eyebrow { display: block; margin-bottom: 10px; }
.curso-ementa__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 400;
    color: var(--obsidian);
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.curso-ementa__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: ementa;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.curso-ementa__list li {
    counter-increment: ementa;
    padding: 18px 24px 18px 80px;
    border-top: 1px solid var(--mist);
    position: relative;
    font-size: 15.5px;
    color: var(--obsidian);
    font-weight: 500;
}
.curso-ementa__list li:first-child { border-top: none; }
.curso-ementa__list li::before {
    content: counter(ementa, decimal-leading-zero);
    position: absolute;
    left: 24px;
    top: 18px;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold-deep);
    font-weight: 400;
    width: 40px;
    text-align: center;
}
.curso-ementa__text {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 24px 28px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--obsidian);
}

/* ---- Professores ---- */
.curso-profs { padding: 48px 0 32px; }
.curso-profs .eyebrow { display: block; margin-bottom: 22px; }
.curso-profs__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.curso-profs__card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
}
.curso-profs__avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 18px;
    color: var(--obsidian);
    overflow: hidden;
}
.curso-profs__avatar img { width: 100%; height: 100%; object-fit: cover; }
.curso-profs__avatar--sand   { background: #f5e9cc; color: #8a6a28; }
.curso-profs__avatar--blue   { background: #d6e6f5; color: #1f5b94; }
.curso-profs__avatar--green  { background: #d6ecd6; color: #2e6b3f; }
.curso-profs__avatar--orange { background: #f9dfbb; color: #b56c1c; }
.curso-profs__avatar--pink   { background: #f9d7e2; color: #a13a64; }
.curso-profs__body h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--obsidian);
}
.curso-profs__cargo, .curso-profs__breve {
    font-size: 13px;
    color: var(--smoke);
    margin: 0 0 6px;
    line-height: 1.5;
}
.curso-profs__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    border-radius: 5px;
    margin-top: 4px;
}
.curso-profs__tag--green  { background: #e1f1e1; color: #2e6b3f; }
.curso-profs__tag--red    { background: #f9dfe0; color: #a83333; }
.curso-profs__tag--orange { background: #fae7cf; color: #b56c1c; }
.curso-profs__tag--purple { background: #ede2f5; color: #6c3ba1; }
.curso-profs__tag--blue   { background: #e3eef7; color: #1f5b94; }

/* ---- Depoimentos ---- */
.curso-dep { padding: 48px 0 32px; }
.curso-dep .eyebrow { display: block; margin-bottom: 22px; }
.curso-dep__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}
.curso-dep__card {
    padding: 26px 28px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
}
.curso-dep__frase {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.5;
    color: var(--obsidian);
    margin: 0 0 18px;
}
.curso-dep__autor {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: center;
}
.curso-dep__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}
.curso-dep__avatar--sand   { background: #f5e9cc; color: #8a6a28; }
.curso-dep__avatar--blue   { background: #d6e6f5; color: #1f5b94; }
.curso-dep__avatar--green  { background: #d6ecd6; color: #2e6b3f; }
.curso-dep__avatar--orange { background: #f9dfbb; color: #b56c1c; }
.curso-dep__avatar--pink   { background: #f9d7e2; color: #a13a64; }
.curso-dep__autor strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--obsidian);
}
.curso-dep__autor span { font-size: 11.5px; color: var(--smoke); }

/* ---- Acreditações ---- */
.curso-acred { padding: 64px 0; }
.curso-acred__head { margin-bottom: 36px; }
.curso-acred__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 400;
    margin: 14px 0 0;
    color: var(--obsidian);
}
.curso-acred__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}
.curso-acred__card {
    background: var(--white);
    border: 1px solid rgba(180, 140, 60, 0.3);
    border-radius: var(--r-lg);
    padding: 26px 22px;
    text-align: center;
}
.curso-acred__logo { max-height: 56px; max-width: 160px; object-fit: contain; margin: 0 auto 12px; display: block; }
.curso-acred__nome {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold-deep);
    font-weight: 400;
    margin-bottom: 10px;
}
.curso-acred__card p {
    color: var(--smoke);
    font-size: 13px;
    line-height: 1.55;
    margin: 8px 0 0;
}

/* ---- CTA final ---- */
.curso-cta-final { padding: 72px 0; }
.curso-cta-final h2 { margin: 12px 0 14px; }
.curso-cta-final p { color: var(--silver); margin-bottom: 22px; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ---- ACREDITADORA: card no hero ---- */
.curso-hero__acred {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 170, 90, 0.4);
    border-radius: var(--r-lg);
    margin: 0 0 22px;
    max-width: 560px;
}
.curso-hero__acred-escudo {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    /* Sem fundo nem padding: o selo aparece "solto", mostra o desenho real. */
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.curso-hero__acred-escudo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.curso-acred__sigla,
.curso-hero__acred-escudo .curso-acred__sigla {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    color: var(--gold-deep);
}
.curso-hero__acred-lbl {
    font-size: 10.5px;
    color: var(--silver);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.curso-hero__acred-nome {
    color: var(--gold-light);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    margin: 4px 0 2px;
    line-height: 1.25;
}
.curso-hero__acred-desc {
    color: var(--silver);
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0;
}

/* ---- Presets de TEMA do card "Curso acreditado por" ----
   Cada preset coordena bg + borda + cor dos 3 textos (lbl/nome/desc).
   Selecionado via [data-estilo] no DOM, controlado por acreditadora.card_estilo
   no editor inline. Valores aceitos: claro, dourado, obsidiana, transparente.
   Sem atributo (ou valor invalido), prevalece o estilo padrao definido acima. */

/* CLARO — inverte: fundo marfim, texto escuro. Usar quando o selo escuro
   fica dificil de ler no card escuro padrao. */
.curso-hero__acred[data-estilo="claro"] {
    background: var(--ivory);
    border-color: var(--gold);
}
.curso-hero__acred[data-estilo="claro"] .curso-hero__acred-lbl  { color: var(--gold-deep); }
.curso-hero__acred[data-estilo="claro"] .curso-hero__acred-nome { color: var(--obsidian); }
.curso-hero__acred[data-estilo="claro"] .curso-hero__acred-desc { color: #4a4a4a; }
.curso-hero__acred[data-estilo="claro"] .curso-acred__sigla,
.curso-hero__acred[data-estilo="claro"] .curso-hero__acred-escudo .curso-acred__sigla { color: var(--gold-deep); }

/* DOURADO — fundo ouro Bizinnt solido, texto branco em alto contraste. */
.curso-hero__acred[data-estilo="dourado"] {
    background: var(--gold);
    border-color: var(--gold-deep);
}
.curso-hero__acred[data-estilo="dourado"] .curso-hero__acred-lbl  { color: rgba(255,255,255,0.85); }
.curso-hero__acred[data-estilo="dourado"] .curso-hero__acred-nome { color: var(--white); }
.curso-hero__acred[data-estilo="dourado"] .curso-hero__acred-desc { color: rgba(255,255,255,0.85); }
.curso-hero__acred[data-estilo="dourado"] .curso-acred__sigla,
.curso-hero__acred[data-estilo="dourado"] .curso-hero__acred-escudo .curso-acred__sigla { color: var(--white); }

/* OBSIDIANA — preto solido (mais opaco que o padrao translucido), borda
   dourada brilhante, textos claros. Bom pra dar destaque "premium". */
.curso-hero__acred[data-estilo="obsidiana"] {
    background: var(--obsidian);
    border-color: var(--gold-light);
}
.curso-hero__acred[data-estilo="obsidiana"] .curso-hero__acred-lbl  { color: var(--gold-light); }
.curso-hero__acred[data-estilo="obsidiana"] .curso-hero__acred-nome { color: var(--white); }
.curso-hero__acred[data-estilo="obsidiana"] .curso-hero__acred-desc { color: var(--silver); }

/* TRANSPARENTE — sem fundo, sem borda, so o conteudo. Usar quando o hero
   ja tem peso visual e o card chama atencao demais. */
.curso-hero__acred[data-estilo="transparente"] {
    background: transparent;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

/* ---- Selo no topo do card de investimento (hero direita) ---- */
.curso-invest__selo {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--mist);
}
.curso-invest__selo-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    /* Sem fundo: selo "solto" para que logos de qualquer cor aparecam intactos.
       Se o logo importado tiver fundo proprio (como o DTWI quadrado escuro),
       ele aparece com sua cor original sem ser "comido" por um background.
       Para mudar a cor INTERNA do selo (dentro do contorno), o admin oferece
       a ferramenta "🎨 Pintar" no editor — gera nova imagem com flood fill,
       preservando bordas e texto. */
    background: transparent;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.curso-invest__selo-img img { width: 100%; height: 100%; object-fit: contain; }
/* Tamanhos seleciónaveis via [data-tamanho] no selo_card.escudo_tamanho.
   s/m/l/xl/ultra. Padrão (sem atributo ou m) mantém 140px. */
.curso-invest__selo-img[data-tamanho="s"]     { width: 80px;  height: 80px; }
.curso-invest__selo-img[data-tamanho="l"]     { width: 200px; height: 200px; }
.curso-invest__selo-img[data-tamanho="xl"]    { width: 260px; height: 260px; }
.curso-invest__selo-img[data-tamanho="ultra"] { width: 320px; height: 320px; }
.curso-invest__selo .eyebrow { display: inline-block; margin: 6px 0; }
.curso-invest__selo-titulo {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--obsidian);
    font-weight: 400;
    line-height: 1.2;
    margin: 2px 0;
}
.curso-invest__selo-cert {
    font-size: 11.5px;
    color: var(--gold-deep);
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ---- Seção "Certificação incluída" (dedicada) ---- */
.curso-cert { padding: 64px 0; }
.curso-cert__card {
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal) 100%);
    border: 1px solid rgba(212, 170, 90, 0.45);
    border-radius: var(--r-xl);
    padding: 40px 48px;
    display: grid;
    /* auto = ajusta ao tamanho do escudo (s/m/l/xl/ultra) sem espremer o texto. */
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    color: var(--white);
    box-shadow:
        0 12px 36px rgba(13, 13, 13, 0.18),
        inset 0 1px 0 rgba(212, 170, 90, 0.08);
    position: relative;
    overflow: hidden;
}
.curso-cert__card::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(180, 140, 60, 0.18) 0%, transparent 65%);
    pointer-events: none;
}
.curso-cert__card > * { position: relative; z-index: 1; }
.curso-cert__escudo {
    /* Tamanho default — sobreposto por [data-tamanho] herdado do selo_card. */
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background: var(--charcoal);
    border: 1px solid rgba(212, 170, 90, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
    flex-shrink: 0;
}
.curso-cert__escudo img { width: 100%; height: 100%; object-fit: contain; }
/* Tamanhos herdados do selo_card.escudo_tamanho (escala ~1.5x do hero direito
   pra fazer jus ao card grande horizontal). Sem atributo ou 'm' = 200px padrao. */
.curso-cert__escudo[data-tamanho="s"]     { width: 120px; height: 120px; padding: 12px; }
.curso-cert__escudo[data-tamanho="m"]     { width: 160px; height: 160px; padding: 14px; }
.curso-cert__escudo[data-tamanho="l"]     { width: 220px; height: 220px; padding: 18px; }
.curso-cert__escudo[data-tamanho="xl"]    { width: 280px; height: 280px; padding: 20px; }
.curso-cert__escudo[data-tamanho="ultra"] { width: 340px; height: 340px; padding: 22px; }
.curso-cert__escudo .curso-acred__sigla {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold-light);
}
.curso-cert__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 10px;
}
.curso-cert__titulo {
    font-family: var(--font-display);
    font-weight: 300;
    color: var(--white);
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.1;
    margin: 0 0 14px;
}
.curso-cert__titulo em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.curso-cert__desc {
    color: var(--silver);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 64ch;
}
.curso-cert__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.curso-cert__bullets li {
    color: var(--gold-light);
    font-size: 13.5px;
    padding-left: 22px;
    position: relative;
    line-height: 1.55;
}
.curso-cert__bullets li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ---- CTA final reformulado (bloco investimento grande) ---- */
.curso-cta-final { padding: 56px 0; text-align: left; }
.curso-cta-final__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal) 100%);
    border: 1px solid rgba(212, 170, 90, 0.35);
    border-radius: var(--r-xl);
    padding: 36px 44px;
}
.curso-cta-final__lbl {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 6px;
}
.curso-cta-final__parc {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2px 0;
}
.curso-cta-final__parc-pre {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--silver);
    line-height: 1;
}
.curso-cta-final__parc-num {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--gold-light);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
}
.curso-cta-final__parc-suf {
    width: 100%;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.curso-cta-final__valor {
    color: var(--silver);
    font-size: 14px;
    margin: 4px 0 18px;
}
.curso-cta-final__benef {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 8px;
}
.curso-cta-final__benef li {
    color: var(--silver);
    font-size: 13.5px;
    padding-left: 22px;
    position: relative;
}
.curso-cta-final__benef li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: 700;
}
.curso-cta-final__right {
    display: grid;
    gap: 10px;
    text-align: center;
}
.curso-cta-final__right .btn { justify-content: center; }
.curso-cta-final__link {
    color: var(--silver);
    font-size: 13px;
    margin-top: 4px;
    text-decoration: underline;
}
.curso-cta-final__link:hover { color: var(--gold-light); }
.curso-cta-final__garantia {
    color: var(--silver);
    font-size: 12.5px;
    margin-top: 8px;
}

/* ============================================================
   CORES DE FUNDO POR SECAO (data-bg no .bz-entity wrapper)
   Definidas no editor inline via cfg.secoes_estilo. 4 presets +
   vazio = padrao (cor original da secao). O wrapper .bz-entity
   envolve cada secao; o data-bg cascateia pra .section descendente.
   Sobrepoe .section--canvas/--mist por especificidade do
   [data-bg] (atributo + classe + classe = 30 > .section--* = 10).
   Sem !important.
   ============================================================ */
.bz-entity[data-bg="marfim"]    > .section { background: var(--ivory); }
.bz-entity[data-bg="areia"]     > .section { background: var(--mist); }
.bz-entity[data-bg="ouroclaro"] > .section { background: var(--gold-mist); }

/* Obsidiana = bg escuro. Inverte cor de textos comuns dentro da
   secao pra preservar legibilidade. Eyebrow vira gold-light. */
.bz-entity[data-bg="obsidiana"] > .section { background: var(--obsidian); }
.bz-entity[data-bg="obsidiana"] > .section .eyebrow { color: var(--gold-light); }
.bz-entity[data-bg="obsidiana"] > .section h1,
.bz-entity[data-bg="obsidiana"] > .section h2,
.bz-entity[data-bg="obsidiana"] > .section h3,
.bz-entity[data-bg="obsidiana"] > .section h4 { color: var(--white); }
.bz-entity[data-bg="obsidiana"] > .section p,
.bz-entity[data-bg="obsidiana"] > .section li { color: var(--silver); }
/* Cards dentro de secao escura precisam de bg claro pra contrastar */
.bz-entity[data-bg="obsidiana"] > .section .curso-sobre__card,
.bz-entity[data-bg="obsidiana"] > .section .curso-publico__item,
.bz-entity[data-bg="obsidiana"] > .section .curso-modulos__item,
.bz-entity[data-bg="obsidiana"] > .section .curso-profs__card,
.bz-entity[data-bg="obsidiana"] > .section .curso-dep__card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 170, 90, 0.3);
}
.bz-entity[data-bg="obsidiana"] > .section .curso-sobre__card h4,
.bz-entity[data-bg="obsidiana"] > .section .curso-profs__card h4,
.bz-entity[data-bg="obsidiana"] > .section .curso-dep__card strong { color: var(--white); }
.bz-entity[data-bg="obsidiana"] > .section .curso-sobre__card p,
.bz-entity[data-bg="obsidiana"] > .section .curso-profs__card p,
.bz-entity[data-bg="obsidiana"] > .section .curso-dep__card p { color: var(--silver); }

/* ---- Variantes MBA: mesma logica obsidiana pros cards do MBA ---- */
.bz-entity[data-bg="obsidiana"] > .section .mba-publico__card,
.bz-entity[data-bg="obsidiana"] > .section .mba-twocol__col,
.bz-entity[data-bg="obsidiana"] > .section .mba-recebe__card,
.bz-entity[data-bg="obsidiana"] > .section .mba-grade__row,
.bz-entity[data-bg="obsidiana"] > .section .mba-profs__card,
.bz-entity[data-bg="obsidiana"] > .section .mba-cred__card,
.bz-entity[data-bg="obsidiana"] > .section .mba-invest__card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 170, 90, 0.3);
}
.bz-entity[data-bg="obsidiana"] > .section .mba-publico__card h3,
.bz-entity[data-bg="obsidiana"] > .section .mba-twocol__item h4,
.bz-entity[data-bg="obsidiana"] > .section .mba-recebe__card h4,
.bz-entity[data-bg="obsidiana"] > .section .mba-grade__row h4,
.bz-entity[data-bg="obsidiana"] > .section .mba-profs__card h4,
.bz-entity[data-bg="obsidiana"] > .section .mba-cred__card h3 { color: var(--white); }
.bz-entity[data-bg="obsidiana"] > .section .mba-publico__card p,
.bz-entity[data-bg="obsidiana"] > .section .mba-twocol__item p,
.bz-entity[data-bg="obsidiana"] > .section .mba-recebe__card p,
.bz-entity[data-bg="obsidiana"] > .section .mba-grade__row p,
.bz-entity[data-bg="obsidiana"] > .section .mba-profs__cargo,
.bz-entity[data-bg="obsidiana"] > .section .mba-profs__breve,
.bz-entity[data-bg="obsidiana"] > .section .mba-cred__card p { color: var(--silver); }
/* Investimento ja vive em obsidiana por padrao (section--obsidian) — picker
   so altera quando o sócio escolhe um preset claro. */
.bz-entity[data-bg="marfim"]    > .mba-invest .mba-invest__parc-num,
.bz-entity[data-bg="areia"]     > .mba-invest .mba-invest__parc-num,
.bz-entity[data-bg="ouroclaro"] > .mba-invest .mba-invest__parc-num,
.bz-entity[data-bg="marfim"]    > .mba-invest .mba-invest__parc-destaque--texto,
.bz-entity[data-bg="areia"]     > .mba-invest .mba-invest__parc-destaque--texto,
.bz-entity[data-bg="ouroclaro"] > .mba-invest .mba-invest__parc-destaque--texto { color: var(--obsidian); }
.bz-entity[data-bg="marfim"]    > .mba-invest .eyebrow--ondark,
.bz-entity[data-bg="areia"]     > .mba-invest .eyebrow--ondark,
.bz-entity[data-bg="ouroclaro"] > .mba-invest .eyebrow--ondark { color: var(--gold-deep); }

/* ============================================================
   PRESETS DE TEMA — card "Certificacao Incluida" e bloco CTA Final
   Selecionados via [data-estilo] nos respectivos containers.
   Valores aceitos: claro, dourado, obsidiana, transparente.
   Sem atributo (ou invalido), prevalece o padrao acima.
   Coordenam background + borda + cor de TODOS os textos descendentes.
   ============================================================ */

/* ---- CERT CARD: CLARO ---- */
.curso-cert__card[data-estilo="claro"] {
    background: var(--ivory);
    border-color: var(--gold);
    color: var(--obsidian);
}
.curso-cert__card[data-estilo="claro"]::before { background: radial-gradient(circle, rgba(180, 140, 60, 0.10) 0%, transparent 65%); }
.curso-cert__card[data-estilo="claro"] .curso-cert__eyebrow { color: var(--gold-deep); }
.curso-cert__card[data-estilo="claro"] .curso-cert__titulo  { color: var(--obsidian); }
.curso-cert__card[data-estilo="claro"] .curso-cert__titulo em { color: var(--gold-deep); }
.curso-cert__card[data-estilo="claro"] .curso-cert__desc    { color: #4a4a4a; }
.curso-cert__card[data-estilo="claro"] .curso-cert__bullets li { color: var(--obsidian); }
.curso-cert__card[data-estilo="claro"] .curso-cert__bullets li::before { color: var(--gold-deep); }
.curso-cert__card[data-estilo="claro"] .curso-cert__escudo { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }
.curso-cert__card[data-estilo="claro"] .curso-cert__escudo .curso-acred__sigla { color: var(--gold-deep); }

/* ---- CERT CARD: DOURADO ---- */
.curso-cert__card[data-estilo="dourado"] {
    background: var(--gold);
    border-color: var(--gold-deep);
}
.curso-cert__card[data-estilo="dourado"]::before { background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 65%); }
.curso-cert__card[data-estilo="dourado"] .curso-cert__eyebrow { color: var(--white); }
.curso-cert__card[data-estilo="dourado"] .curso-cert__titulo  { color: var(--white); }
.curso-cert__card[data-estilo="dourado"] .curso-cert__titulo em { color: var(--ivory); }
.curso-cert__card[data-estilo="dourado"] .curso-cert__desc    { color: rgba(255,255,255,0.92); }
.curso-cert__card[data-estilo="dourado"] .curso-cert__bullets li { color: var(--white); }
.curso-cert__card[data-estilo="dourado"] .curso-cert__bullets li::before { color: var(--ivory); }
.curso-cert__card[data-estilo="dourado"] .curso-cert__escudo { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
.curso-cert__card[data-estilo="dourado"] .curso-cert__escudo .curso-acred__sigla { color: var(--white); }

/* ---- CERT CARD: OBSIDIANA SOLIDA ---- */
.curso-cert__card[data-estilo="obsidiana"] {
    background: var(--obsidian);
    border-color: var(--gold-light);
}
.curso-cert__card[data-estilo="obsidiana"] .curso-cert__eyebrow { color: var(--gold-light); }
.curso-cert__card[data-estilo="obsidiana"] .curso-cert__titulo  { color: var(--white); }
.curso-cert__card[data-estilo="obsidiana"] .curso-cert__desc    { color: var(--silver); }

/* ---- CERT CARD: TRANSPARENTE ---- */
.curso-cert__card[data-estilo="transparente"] {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}
.curso-cert__card[data-estilo="transparente"]::before { display: none; }

/* ---- CTA FINAL: CLARO ---- */
.curso-cta-final__grid[data-estilo="claro"] {
    background: var(--ivory);
    border-color: var(--gold);
}
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__lbl       { color: var(--gold-deep); }
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__parc-pre  { color: #4a4a4a; }
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__parc-num  { color: var(--obsidian); }
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__parc-suf  { color: var(--gold-deep); }
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__valor     { color: #4a4a4a; }
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__benef li  { color: var(--obsidian); }
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__benef li::before { color: var(--gold-deep); }
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__link      { color: var(--gold-deep); }
.curso-cta-final__grid[data-estilo="claro"] .curso-cta-final__garantia  { color: #4a4a4a; }

/* ---- CTA FINAL: DOURADO ---- */
.curso-cta-final__grid[data-estilo="dourado"] {
    background: var(--gold);
    border-color: var(--gold-deep);
}
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__lbl       { color: rgba(255,255,255,0.85); }
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__parc-pre  { color: rgba(255,255,255,0.85); }
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__parc-num  { color: var(--white); }
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__parc-suf  { color: var(--ivory); }
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__valor     { color: rgba(255,255,255,0.85); }
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__benef li  { color: var(--white); }
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__benef li::before { color: var(--ivory); }
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__link      { color: var(--ivory); }
.curso-cta-final__grid[data-estilo="dourado"] .curso-cta-final__garantia  { color: rgba(255,255,255,0.85); }

/* ---- CTA FINAL: OBSIDIANA SOLIDA (mais opaco que o padrao) ---- */
.curso-cta-final__grid[data-estilo="obsidiana"] {
    background: var(--obsidian);
    border-color: var(--gold-light);
}

/* ---- CTA FINAL: TRANSPARENTE ---- */
.curso-cta-final__grid[data-estilo="transparente"] {
    background: transparent;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1100px) {
    .curso-cert__card,
    .curso-cta-final__grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }
    .curso-cert__escudo { width: 160px; height: 160px; margin: 0 auto; }
    .curso-cta-final__right { text-align: center; }
}

/* ---- Cards de curso na LISTA (cursos.html) ---- */
.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}
.curso-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
    color: var(--obsidian);
    text-decoration: none;
    transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.curso-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(13, 13, 13, 0.06);
}
.curso-card__body {
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.curso-card__cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.curso-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin: 4px 0;
    color: var(--obsidian);
}
.curso-card p {
    color: var(--smoke);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}
.curso-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--mist);
}
.curso-card__meta span {
    font-size: 12px;
    color: var(--smoke);
    font-weight: 500;
}
.curso-card__cta {
    margin-top: auto;
    padding-top: 16px;
    color: var(--gold-deep);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.curso-card:hover .curso-card__cta .arrow { transform: translateX(3px); }

/* ---- Responsivo curso detail ---- */
@media (max-width: 1100px) {
    .curso-hero__grid { grid-template-columns: 1fr; min-height: auto; }
    .curso-hero__grid--with-img { grid-template-columns: 1fr !important; }
    .curso-hero__img { aspect-ratio: 16/9; }
    .curso-hero__copy { padding: 40px 28px; }
    .curso-invest { margin: 28px; }
    .curso-sobre__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .curso-hero__title { font-size: 30px; gap: 12px; }
    .curso-hero__badge { width: 48px; height: 48px; }
    .curso-modulos__row { grid-template-columns: 44px 1fr; gap: 12px; }
    .curso-modulos__dur { grid-column: 2; }
}
@media (max-width: 720px) {
    .mba-hero { padding: 56px 0 48px; }
    .mba-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .mba-hero__selos { grid-template-columns: repeat(2, 1fr); }
    .mba-cred__grid,
    .mba-profs__grid { grid-template-columns: 1fr; }
    .mba-grade__row { grid-template-columns: 40px 1fr; gap: 12px; }
    .mba-grade__tag { grid-column: 2; margin-top: 4px; justify-self: start; }
}

/* ============================================================
   Captação de leads — modal + inline (lead-form)
   ============================================================ */
body.lf-locked { overflow: hidden; }

.lf-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(13, 13, 13, 0.72);
    backdrop-filter: blur(4px);
    animation: lf-fade 0.2s var(--ease);
}
/* `hidden` precisa vencer o display:flex acima (mesma especificidade →
   ordem decidiria e .lf-overlay ganharia). O seletor com [hidden] tem
   especificidade maior e garante o fechar (X, ESC, clique fora). */
.lf-overlay[hidden] { display: none; }
@keyframes lf-fade { from { opacity: 0; } to { opacity: 1; } }

.lf-panel {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--mist);
    box-shadow: 0 24px 64px rgba(13, 13, 13, 0.28);
    padding: 38px 34px 30px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    animation: lf-rise 0.24s var(--ease);
}
@keyframes lf-rise { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.lf-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--smoke);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lf-close:hover { background: var(--ivory); color: var(--obsidian); }

/* Form (compartilhado por modal e inline) */
.lf-eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 8px;
}
.lf-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--obsidian);
    margin-bottom: 6px;
}
.lf-sub {
    font-family: var(--font-sans);
    font-size: 14.5px;
    color: var(--smoke);
    margin-bottom: 22px;
}
.lf-field { margin-bottom: 15px; }
.lf-field label {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--graphite);
    margin-bottom: 6px;
}
.lf-field .lf-opt { color: var(--silver); font-weight: 400; }
.lf-field .lf-req { color: #c0392b; font-weight: 600; }
.lf-field input,
.lf-field select,
.lf-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--obsidian);
    background: var(--ivory);
    border: 1px solid var(--mist);
    border-radius: var(--r);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.lf-field textarea { resize: vertical; min-height: 88px; }
.lf-field input:focus,
.lf-field select:focus,
.lf-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-mist);
    background: var(--white);
}
.lf-loading { padding: 48px; text-align: center; color: var(--silver); font-size: 14px; }
.lf-field--erro input,
.lf-field--erro select,
.lf-field--erro textarea { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192, 57, 43, .12); }
.lf-hp {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.lf-submit { width: 100%; justify-content: center; margin-top: 6px; }
.lf-submit[disabled] { opacity: 0.6; cursor: progress; }
.lf-fine {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--silver);
    text-align: center;
    margin-top: 12px;
}
.lf-error {
    margin-top: 12px;
    padding: 10px 12px;
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: #8a2020;
    background: #fbeaea;
    border: 1px solid #e6bcbc;
    border-radius: var(--r);
}

/* Estado de sucesso */
.lf-success { text-align: center; padding: 14px 0 6px; }
.lf-check {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    background: var(--gold);
    border-radius: 50%;
    animation: lf-pop 0.32s var(--ease);
}
@keyframes lf-pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Variante inline (sem overlay) — cartão dentro de uma seção */
.lf-inline {
    max-width: 440px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    box-shadow: 0 14px 40px rgba(13, 13, 13, 0.08);
    padding: 34px 32px 28px;
}

/* Faixa "fale conosco" (copy + formulário) ao fim das páginas */
.lf-band {
    background: var(--ivory);
    border-top: 1px solid var(--mist);
    padding: 72px 0;
}
.lf-band__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.lf-band__copy .lf-band__eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
}
.lf-band__copy h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.12;
    color: var(--obsidian);
    margin-bottom: 16px;
}
.lf-band__copy p {
    font-family: var(--font-sans);
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--smoke);
    max-width: 46ch;
}
.lf-band .lf-inline { margin-left: auto; }

@media (max-width: 860px) {
    .lf-band__grid { grid-template-columns: 1fr; gap: 32px; }
    .lf-band__copy h2 { font-size: 32px; }
    .lf-band .lf-inline { margin: 0; max-width: none; }
}

@media (max-width: 520px) {
    .lf-panel { padding: 32px 22px 24px; }
    .lf-title { font-size: 24px; }
    .lf-inline { padding: 28px 22px 22px; }
    .lf-band { padding: 52px 0; }
}

