/* ── VARIÁVEIS ── */
:root {
  --pu:   #4A2480;
  --pu-d: #321158;
  --pu-m: #6B3DB8;
  --pu-l: #EDE8F7;
  --pu-ll:#F6F3FC;
  --t:    #1B5C52;
  --tl:   #E8F3F0;
  --r:    #C47A96;
  --rl:   #F9EFF4;
  --cr:   #F7F3EA;
  --cd:   #EDE8DC;
  --k:    #161916;
  --k2:   #3D413D;
  --k3:   #767A76;
  --serif:'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --rr:   10px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cr); color: var(--k); font-size: 18px; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TOPBAR ── */
.tb {
  background: var(--pu-d); padding: 7px 52px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.4); letter-spacing: .05em;
}
.tb a { color: rgba(255,255,255,.4); transition: color .2s; }
.tb a:hover { color: #fff; }
.tb-r { display: flex; gap: 20px; }

/* ── NAV ── */
.nav {
  background: #fff; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; border-bottom: 1px solid rgba(74,36,128,.1);
  position: sticky; top: 0; z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.nav-name { font-family: var(--serif); font-size: 22px; color: var(--pu); letter-spacing: -.01em; }
.nav-name a { color: inherit; }
.nav-sub { font-size: 14px; color: var(--k3); max-width: 180px; line-height: 1.3; }
.nav-links { display: flex; gap: 1px; flex-wrap: nowrap; }
.nav-links a {
  font-size: 17px; color: var(--k2); padding: 6px 10px;
  border-radius: 6px; transition: all .15s; font-weight: 400; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--pu-ll); color: var(--pu); }
.nav-cta {
  background: var(--pu); color: #fff; padding: 9px 18px;
  border-radius: 100px; font-size: 17px; font-weight: 500;
  border: none; cursor: pointer; font-family: var(--sans); transition: background .2s;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--pu-d); }

/* ── HERO MODO BASE ── */
.hero {
  padding: 72px 52px 60px;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 48px; align-items: center;
  background: #fff; border-bottom: 1px solid rgba(74,36,128,.08);
  position: relative; overflow: hidden; transition: all .4s;
}
.hero-wm {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%); opacity: .04; pointer-events: none;
}
.hero-base-right { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.stat { background: var(--pu-ll); border-radius: 9px; padding: 14px 16px; border: 1px solid rgba(74,36,128,.1); }
.stat-n { font-family: var(--serif); font-size: 30px; color: var(--pu); line-height: 1; }
.stat-l { font-size: 13px; color: var(--k3); margin-top: 3px; }

/* ── HERO MODO EVENTO ── */
.hero-event-right {
  display: none; position: relative; border-radius: 12px;
  overflow: hidden; height: 340px; background: var(--pu-l);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.hero-photo:hover { transform: scale(1.02); }
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pu) 0%, var(--pu-m) 60%, var(--r) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 32px;
}
.php-logo { opacity: .35; }
.php-label {
  font-family: var(--serif); font-size: 18px; color: rgba(255,255,255,.6);
  text-align: center; line-height: 1.5; font-style: italic;
}
.hero-event-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(50,17,88,.92) 0%, transparent 100%);
  padding: 32px 20px 20px;
}
.hec-tag { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--r); font-weight: 600; margin-bottom: 5px; }
.hec-title { font-family: var(--serif); font-size: 16px; color: #fff; line-height: 1.35; margin-bottom: 4px; }
.hec-date { font-size: 13px; color: rgba(255,255,255,.55); }
.event-banner {
  display: none; background: var(--r); padding: 10px 52px;
  font-size: 17px; color: #fff; font-weight: 500;
  letter-spacing: .04em; align-items: center; gap: 12px;
}
.event-banner span { font-weight: 300; opacity: .85; }
.event-banner-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: .6; flex-shrink: 0; }

/* modo evento ativo */
body.mode-evento .hero-base-right { display: none; }
body.mode-evento .hero-event-right { display: block; }
body.mode-evento .hero-wm { opacity: .015; }
body.mode-evento .event-banner { display: flex; }
body.mode-evento .hero { grid-template-columns: 1fr 400px; }
body.mode-evento .tag-line { background: var(--rl); }

/* ── HERO TEXT ── */
.tag-line {
  display: inline-block; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--r);
  border: 1px solid var(--r); padding: 4px 11px; border-radius: 2px;
  margin-bottom: 24px; font-weight: 400;
}
h1.hero-h {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  font-weight: 400;
  color: var(--pu);
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
h1.hero-h em { font-style: italic; color: var(--r); }
.hero-sub {
  font-size: 18px; color: var(--k2); line-height: 1.78;
  max-width: 440px; margin-bottom: 32px; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn {
  background: var(--pu); color: #fff; padding: 12px 26px;
  font-size: 16px; font-weight: 500; border: none; cursor: pointer;
  font-family: var(--sans); letter-spacing: .04em; display: inline-block; transition: background .2s;
}
.btn:hover { background: var(--pu-d); }
.btn-o {
  background: transparent; border: 1px solid var(--pu); color: var(--pu);
  padding: 12px 26px; font-size: 16px; font-weight: 400; cursor: pointer;
  font-family: var(--sans); letter-spacing: .04em; transition: all .2s;
}
.btn-o:hover { background: var(--pu); color: #fff; }

/* ── TICKER ── */
.ticker { background: var(--pu); padding: 12px 0; display: flex; align-items: center; overflow: hidden; }
.t-lbl {
  font-size: 14px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--r); padding: 0 22px 0 52px; white-space: nowrap; flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.15); margin-right: 22px;
}
.t-scroll { display: flex; gap: 44px; animation: sc 28s linear infinite; white-space: nowrap; }
.t-scroll span { font-size: 16px; color: rgba(255,255,255,.72); font-weight: 300; }
.t-scroll span::before { content: "→  "; color: var(--r); }
@keyframes sc { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTION BASE ── */
.sec { padding: 72px 52px; }
.sec-tag { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--r); font-weight: 500; margin-bottom: 6px; }
h2.sh { font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--k); letter-spacing: -.01em; }
h2.sh em { font-style: italic; color: var(--pu); }
.sec-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.see-all { font-size: 16px; color: var(--pu); font-weight: 400; border-bottom: 1px solid var(--pu); padding-bottom: 2px; transition: all .2s; }
.see-all:hover { color: var(--r); border-bottom-color: var(--r); }

/* ── GRIDS ── */
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

/* ── CARDS ── */
.card {
  background: #fff; border-radius: var(--rr); border: 1px solid rgba(74,36,128,.08);
  overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,36,128,.1); }
.bar { height: 4px; background: var(--pu); }
.bar.r { background: var(--r); }
.bar.t { background: var(--t); }
.cbody { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.ccat { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--pu); font-weight: 500; margin-bottom: 8px; }
.ccat.r { color: var(--r); }
.ccat.t { color: var(--t); }
.card h4 { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--k); line-height: 1.35; margin-bottom: 8px; }
.card h4 a { color: inherit; }
.card h4 a:hover { color: var(--pu); }
.card p { font-size: 16px; color: var(--k3); line-height: 1.65; font-weight: 300; flex: 1; }
.cmeta {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(74,36,128,.07);
  font-size: 17px; color: var(--k3); display: flex; align-items: center; justify-content: space-between;
}
.dc { border-radius: 100px; padding: 3px 10px; font-size: 13px; font-weight: 500; background: var(--pu-ll); color: var(--pu); }
.dc.r { background: var(--rl); color: var(--r); }
.dc.t { background: var(--tl); color: var(--t); }
.wide { grid-column: span 2; }
.wide .cbody { flex-direction: row; gap: 18px; align-items: flex-start; }
.wbadge {
  width: 68px; height: 68px; border-radius: 8px; background: var(--pu-ll);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--serif); font-size: 13px; color: var(--pu); text-align: center; line-height: 1.3;
}
.wcont { flex: 1; }

/* ── LINHAS DE PESQUISA ── */
.linha { display: flex; align-items: flex-start; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(74,36,128,.08); }
.linha:first-of-type { border-top: 1px solid rgba(74,36,128,.08); }
.ln { font-family: var(--serif); font-size: 36px; color: var(--pu-ll); line-height: 1; min-width: 44px; }
.lc h4 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--k); margin-bottom: 5px; line-height: 1.25; }
.lc p { font-size: 16px; color: var(--k3); line-height: 1.7; font-weight: 300; max-width: 560px; }
.lpill { margin-left: auto; background: var(--pu-ll); color: var(--pu); padding: 6px 16px; font-size: 17px; font-weight: 500; white-space: nowrap; align-self: center; flex-shrink: 0; }

/* ── OBSERVATÓRIOS ── */
.obs-sec { background: var(--pu); padding: 72px 52px; position: relative; overflow: hidden; }
.obs-wm { position: absolute; right: -60px; bottom: -60px; opacity: .06; pointer-events: none; }
.obs-sec .sec-tag { color: var(--r); }
.obs-sec h2.sh { color: #fff; }
.obs-sec h2.sh em { color: rgba(255,255,255,.4); }
.obs-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.oc { background: rgba(255,255,255,.1); border-radius: var(--rr); border: 1px solid rgba(255,255,255,.14); padding: 28px; transition: background .2s; }
.oc:hover { background: rgba(255,255,255,.15); }
.oi { width: 42px; height: 42px; background: rgba(255,255,255,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.oc h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.oc h4 a { color: inherit; }
.oc p { font-size: 16px; color: rgba(255,255,255,.58); line-height: 1.65; font-weight: 300; margin-bottom: 14px; }
.otag { display: inline-block; background: rgba(196,122,150,.2); color: var(--r); padding: 4px 12px; font-size: 13px; font-weight: 500; border: 1px solid rgba(196,122,150,.3); }

/* ── PESQUISADORES (home preview) ── */
.pw { background: var(--pu-d); padding: 72px 52px; position: relative; overflow: hidden; }
.pwm { position: absolute; right: -60px; bottom: -60px; opacity: .07; pointer-events: none; }
.pg { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 36px; }
.pc { text-align: center; background: rgba(255,255,255,.07); border-radius: 12px; padding: 22px 14px; border: 1px solid rgba(255,255,255,.1); transition: background .2s; }
.pc:hover { background: rgba(255,255,255,.12); }
.pf { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.1); margin: 0 auto 12px; border: 2px solid rgba(196,122,150,.4); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; color: rgba(255,255,255,.4); }
.pn { font-family: var(--serif); font-size: 18px; color: #fff; margin-bottom: 3px; line-height: 1.25; }
.pc2 { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.35; }
.pc2.c { color: var(--r); font-weight: 500; }

/* ── PESQUISADORES (página completa) ── */
.pesq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pesq-card { display: flex; gap: 24px; align-items: flex-start; background: #fff; border-radius: var(--rr); border: 1px solid rgba(74,36,128,.08); padding: 28px; transition: box-shadow .2s; }
.pesq-card:hover { box-shadow: 0 4px 20px rgba(74,36,128,.08); }
.pesq-foto-wrap { flex-shrink: 0; }
.pesq-foto { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(196,122,150,.35); }
.pesq-foto-ph { width: 88px; height: 88px; border-radius: 50%; background: var(--pu-ll); border: 2px solid rgba(74,36,128,.2); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 24px; color: var(--pu); }
.pesq-info { flex: 1; min-width: 0; }
.pesq-nome { font-family: var(--serif); font-size: 20px; color: var(--pu); margin-bottom: 2px; line-height: 1.2; }
.pesq-cargo { font-size: 17px; color: var(--r); font-weight: 500; letter-spacing: .04em; margin-bottom: 10px; text-transform: uppercase; }
.pesq-bio { font-size: 16px; color: var(--k3); line-height: 1.7; font-weight: 300; margin-bottom: 12px; }
.pesq-links { display: flex; gap: 10px; flex-wrap: wrap; }
.pesq-link { font-size: 17px; color: var(--pu); border-bottom: 1px solid rgba(74,36,128,.25); padding-bottom: 1px; transition: all .2s; }
.pesq-link:hover { color: var(--r); border-bottom-color: var(--r); }

/* ── PRODUÇÕES ── */
.prod-sec { background: #fff; padding: 72px 52px; }

/* ── PAGE HERO (páginas internas) ── */
.page-hero { background: var(--pu-d); padding: 60px 52px 48px; position: relative; overflow: hidden; }
.page-content { font-size: 18px; color: var(--k2); line-height: 1.8; font-weight: 300; }
.page-content h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--pu); margin: 40px 0 16px; }
.page-content h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--k); margin: 28px 0 12px; }
.page-content p { margin-bottom: 16px; }
.page-content a { color: var(--pu); border-bottom: 1px solid rgba(74,36,128,.3); }
.page-content a:hover { color: var(--r); }

/* ── CTA BAND ── */
.cband { background: var(--pu-m); padding: 72px 52px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.cbwm { position: absolute; left: -70px; top: 50%; transform: translateY(-50%); opacity: .07; pointer-events: none; }
.cband h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; color: #fff; margin-bottom: 8px; line-height: 1.15; }
.cband h3 em { font-style: italic; color: var(--r); }
.cband p { color: rgba(255,255,255,.6); font-size: 17px; font-weight: 300; max-width: 460px; line-height: 1.75; }
.ca { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.btn-r { background: var(--r); color: #fff; padding: 13px 28px; font-size: 16px; font-weight: 500; border: none; cursor: pointer; font-family: var(--sans); white-space: nowrap; letter-spacing: .04em; display: inline-block; transition: background .2s; }
.btn-r:hover { background: #a85c7c; }
.btn-gh { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.72); padding: 12px 24px; font-size: 16px; cursor: pointer; font-family: var(--sans); white-space: nowrap; display: inline-block; }
.btn-gh:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ── PARCEIROS ── */
.par { padding: 36px 52px; background: var(--cr); border-top: 1px solid rgba(74,36,128,.08); }
.par-lbl { font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--k3); margin-bottom: 16px; }
.par-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.pill { background: #fff; border: 1px solid rgba(74,36,128,.12); padding: 8px 18px; font-size: 15px; font-weight: 500; color: var(--k2); transition: border-color .2s; }
.pill:hover { border-color: var(--pu); color: var(--pu); }

/* ── FOOTER ── */
.ft { background: var(--pu-d); padding: 52px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.fc h5 { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.28); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.fc p, .fc a { font-size: 16px; color: rgba(255,255,255,.48); line-height: 1.85; font-weight: 300; display: block; transition: color .2s; }
.fc a:hover { color: rgba(255,255,255,.85); }
.fb { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.fb-n { font-family: var(--serif); font-size: 22px; color: #fff; }
.fbot { background: rgba(0,0,0,.22); padding: 14px 52px; display: flex; justify-content: space-between; align-items: center; }
.fbot p, .fbot a { font-size: 13px; color: rgba(255,255,255,.22); }

/* ── SOBRE ── */
.sobre-section { padding: 72px 52px; scroll-margin-top: 80px; }
.sobre-section:nth-child(even) { background: var(--pu-ll); }
.sobre-section:nth-child(odd) { background: #fff; }

/* ── RESPONSIVO ── */

/* ── NAV BRAND LINK ── */
.nav-brand-link { display: flex; align-items: center; gap: 12px; }

/* ── NAV RIGHT ── */
.nav-right { display: flex; align-items: center; gap: 12px; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 4px; border-radius: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--pu); border-radius: 2px;
  transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DROPDOWN ── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid rgba(74,36,128,.1);
  padding: 8px 0;
  position: relative;
  z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 16px; color: var(--k2); padding: 14px 20px;
  border-bottom: 1px solid rgba(74,36,128,.05);
  transition: background .15s;
}
.nav-mobile-menu a:hover { background: var(--pu-ll); color: var(--pu); }
.nav-mobile-cta {
  margin: 8px 20px 8px;
  background: var(--pu) !important; color: #fff !important;
  border-radius: 100px; text-align: center;
  border-bottom: none !important;
}


/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .nav { padding: 0 20px; }
  .nav-sub { display: none; }
  .nav-links a { font-size: 11px; padding: 6px 8px; }
  .hero { grid-template-columns: 1fr 260px; gap: 28px; padding: 52px 28px 44px; }
  .sec { padding: 52px 28px; }
  .obs-sec { padding: 52px 28px; }
  .pw { padding: 52px 28px; }
  .prod-sec { padding: 52px 28px; }
  .cband { padding: 52px 28px; }
  .par { padding: 24px 28px; }
  .ft { padding: 40px 28px; }
  .fbot { padding: 14px 28px; }
  .t-lbl { padding-left: 28px; }
  .tb { padding: 7px 28px; }
}

/* ── MOBILE (max 768px) ── */
@media (max-width: 768px) {
  .tb { display: none; }
  .nav { padding: 0 16px; height: 60px; }
  .nav-sub { display: none; }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 36px;
    gap: 32px; overflow: visible;
  }
  .hero-wm { display: none; }
  .hero-base-right { display: flex; width: 100%; }
  .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
  .stat { padding: 14px; }
  .stat-n { font-size: 26px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn { width: 100%; text-align: center; display: block; box-sizing: border-box; }
  .btn-o { width: 100%; text-align: center; display: block; box-sizing: border-box; }

  .ticker { padding: 10px 0; }
  .t-lbl { padding-left: 16px; padding-right: 14px; }

  .sec { padding: 44px 20px; }
  .obs-sec { padding: 44px 20px; }
  .pw { padding: 44px 20px; }
  .prod-sec { padding: 44px 20px; }
  .page-hero { padding: 36px 20px 28px; }
  .cband { padding: 44px 20px; grid-template-columns: 1fr; gap: 24px; }
  .par { padding: 24px 20px; }
  .ft { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px; }
  .fbot { padding: 14px 20px; flex-direction: column; gap: 6px; text-align: center; }

  .sec-top { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 28px; }

  .g3 { grid-template-columns: 1fr; gap: 12px; }
  .g2 { grid-template-columns: 1fr; gap: 12px; }
  .obs-g { grid-template-columns: 1fr; gap: 12px; }
  .pg { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pesq-grid { grid-template-columns: 1fr; gap: 16px; }

  .wide { grid-column: span 1; }
  .wide .cbody { flex-direction: column; gap: 14px; }

  .linha { flex-direction: column; gap: 10px; padding: 22px 0; }
  .ln { font-size: 28px; min-width: auto; }
  .lpill { margin-left: 0; align-self: flex-start; }
  .lc p { max-width: 100%; }

  .pesq-card { flex-direction: column; gap: 16px; padding: 20px; }
  .ca { align-items: stretch; }
  .btn-r { text-align: center; display: block; }
  .btn-gh { text-align: center; display: block; }
  .par-row { gap: 8px; }
  .pill { font-size: 13px; padding: 7px 14px; }

  h2.sh { font-size: 28px; }
  h1.hero-h { font-size: clamp(28px, 8vw, 44px); }
}
