/* ============================================================
   APEJ — Redesign Profissional
   Tipografia: Outfit | Paleta: Laranja + Escuro
   VARIANCE:6 | MOTION:4 | DENSITY:4
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---- TOKENS ---- */
:root {
  --font:       'Outfit', 'Segoe UI', system-ui, sans-serif;
  --dark:       #0F172A;
  --dark-2:     #1E293B;
  --light:      #F8FAFC;
  --gray:       #64748B;
  --border:     #E2E8F0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.07);
  --shadow-lg:  0 14px 48px rgba(0,0,0,.14);
  --radius:     12px;
}

body {
  font-family: var(--font);
  line-height: 1.65;
  background: var(--light);
  color: var(--dark);
}

/* ---- TOPBAR ---- */
.topbar {
  background: #060E1F;
  font-size: 12.5px;
  padding: 7px 0;
  letter-spacing: .01em;
}

/* ---- HEADER ---- */
header {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.header-inner { padding: 10px 0; }
.logo-wrap img { height: 80px; }

nav ul li a {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  color: #374151;
  transition: all .2s;
}
nav ul li a:hover,
nav ul li a.active {
  background: rgba(247,148,29,.1);
  color: var(--orange);
}
.btn-login {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 24px !important;
  font-weight: 700 !important;
  transition: all .25s !important;
}
.btn-login:hover {
  background: #D97F10 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(247,148,29,.3);
}

/* ---- HERO ---- */
.hero {
  background:
    linear-gradient(160deg, rgba(6,14,31,.90) 0%, rgba(15,23,42,.82) 45%, rgba(26,17,50,.88) 100%),
    url('../img/hero-jovens-profissionais.jpg') center 30%/cover no-repeat;
  min-height: 88vh;
  padding: 96px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 70vw;
  height: 130%;
  background:
    radial-gradient(ellipse at 60% 35%, rgba(247,148,29,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 78%, rgba(216,27,96,.12) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,148,29,.35), transparent);
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 56px;
  align-items: center;
}
.hero-text h1,
.hero-text h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  text-shadow: none;
  animation: aFadeUp .7s cubic-bezier(.16,1,.3,1) both;
}
.hero-text h1 .accent,
.hero-text h2 .accent { color: var(--orange); }
.hero-text p {
  font-size: 16.5px;
  line-height: 1.72;
  opacity: .76;
  margin-bottom: 36px;
  max-width: 52ch;
  font-weight: 400;
  animation: aFadeUp .7s .12s cubic-bezier(.16,1,.3,1) both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: aFadeUp .7s .22s cubic-bezier(.16,1,.3,1) both;
}
.hero-stats { animation: aFadeIn .8s .2s both; }

.btn {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  letter-spacing: .01em;
}
.btn:active { transform: translateY(1px) !important; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(247,148,29,.35);
}
.btn-primary:hover {
  background: #E08519;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247,148,29,.45);
}
.btn-outline {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.17);
  border-color: rgba(255,255,255,.42);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.stat-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(247,148,29,.3);
  transform: translateY(-4px);
}
.stat-card .num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 4px;
}
.stat-card .lbl {
  font-size: 12.5px;
  opacity: .7;
  font-weight: 500;
  line-height: 1.35;
}

/* ---- QUICK ACTIONS ---- */
.quick-actions {
  background: #0d1627;
  padding: 0;
  overflow: hidden;
  border-top: 3px solid #e87722;
}
.quick-actions .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.quick-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  font-family: var(--font);
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .22s ease;
}
.quick-btn:last-child { border-right: none; }
.quick-btn:hover { background: rgba(255,255,255,.05); }
.quick-btn::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #e87722;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.quick-btn:hover::before { transform: scaleX(1); }
.quick-btn-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(232,119,34,.12);
  border: 1px solid rgba(232,119,34,.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .22s, border-color .22s;
}
.quick-btn:hover .quick-btn-icon {
  background: rgba(232,119,34,.22);
  border-color: rgba(232,119,34,.5);
}
.quick-btn-icon svg { width: 18px; height: 18px; stroke: #e87722; fill: none; }
.qa-text { flex: 1; min-width: 0; }
.qa-label { font-size: 13px; font-weight: 700; line-height: 1.3; color: #fff; }
.qa-sub { font-size: 11px; color: rgba(255,255,255,.42); margin-top: 3px; }
.qa-arrow {
  color: rgba(255,255,255,.22);
  font-size: 17px;
  flex-shrink: 0;
  margin-left: 4px;
  transition: transform .22s ease, color .22s ease;
}
.quick-btn:hover .qa-arrow { transform: translateX(5px); color: #e87722; }

/* ---- SECTIONS ---- */
.section { padding: 84px 0; }
.section-alt { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--dark);
}
.section-header p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 56ch;
  margin: 0 auto;
}
.section-line { display: none; }

/* ---- ABOUT ---- */
.about-grid { gap: 64px; }
.about-img-placeholder {
  background:
    linear-gradient(180deg, rgba(9,14,27,.25) 0%, rgba(9,14,27,.5) 100%),
    url('../img/about-mentoria-apej.jpg') center/cover no-repeat;
  height: 420px;
  border-radius: 20px;
  font-size: 0;
  display: block;
}
.about-badge {
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 13.5px;
  line-height: 1.4;
}
.about-badge .big { font-size: 30px; }
.about-text h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.18;
  margin-bottom: 18px;
}
.about-text h2 span { color: var(--orange); }
.about-text p {
  font-size: 15.5px;
  line-height: 1.78;
  color: #475569;
  margin-bottom: 18px;
}
.about-list {
  margin-bottom: 30px;
  gap: 12px;
}
.about-list li {
  font-size: 15px;
  color: #374151;
  align-items: center;
}
.about-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23F7941D'/%3E%3Cpath d='M7 12l3.5 3.5L17 8.5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover;
  flex-shrink: 0;
}

/* ---- PROGRAMS ---- */
.programs-grid { gap: 20px; }
.prog-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.prog-card-top { height: 4px; }
.prog-card-body { padding: 28px 24px; }
.prog-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: 26px;
  margin-bottom: 18px;
}
.prog-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.01em;
  color: var(--dark);
}
.prog-card p {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--gray);
  margin-bottom: 18px;
}
.tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ---- EVENTS ---- */
.events-list { gap: 14px; }
.event-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: none;
  background: var(--white);
  align-items: center;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.event-item:hover {
  transform: translateX(6px);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(247,148,29,.12);
}
.event-date {
  border-radius: 12px;
  min-width: 64px;
  padding: 12px 14px;
}
.event-date .day { font-size: 27px; font-weight: 800; line-height: 1; }
.event-date .mon { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.event-info h4 {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.event-info p { font-size: 13.5px; color: var(--gray); }

/* ---- NEWS ---- */
.news-grid { gap: 22px; }
.news-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.news-thumb {
  height: 190px;
  border-radius: 0;
  font-size: 0;
  overflow: hidden;
}
.news-thumb.nt1 {
  background: url('../img/noticias-workshop-digital.jpg') center/cover no-repeat;
}
.news-thumb.nt2 {
  background: url('../img/noticias-certificados.jpg') center/cover no-repeat;
}
.news-thumb.nt3 {
  background: url('../img/noticias-feira-emprego.jpg') center/cover no-repeat;
}
.news-body { padding: 22px 20px; }
.news-meta { font-size: 12px; margin-bottom: 10px; gap: 8px; }
.news-meta span { color: #94A3B8; }
.news-body h4 {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--dark);
}
.news-body p { font-size: 14px; line-height: 1.68; color: var(--gray); margin-bottom: 16px; }
.read-more { font-size: 13.5px; font-weight: 700; }

/* ---- GALERIA ---- */
.galeria-filtros {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}
.gfiltro {
  padding: 7px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.gfiltro:hover { border-color: var(--orange); color: var(--orange); }
.gfiltro.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.galeria-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg, #fff);
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.galeria-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.galeria-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #f0f4f8;
  display: block;
}
.galeria-card-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, #f0f4f8 60%, #e2eaf4);
  color: #90a4b8;
}
.galeria-card-body {
  padding: 14px 16px 16px;
}
.galeria-card-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 7px;
}
.galeria-card-cat.formacao  { background: rgba(21,101,192,.1);  color: var(--blue); }
.galeria-card-cat.parceria  { background: rgba(0,137,123,.1);   color: var(--teal); }
.galeria-card-cat.evento    { background: rgba(232,119,34,.1);  color: var(--orange); }
.galeria-card-cat.estagio   { background: rgba(123,31,162,.1);  color: var(--purple, #7b1fa2); }
.galeria-card-cat.outro     { background: rgba(96,125,139,.1);  color: #607d8b; }
.galeria-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--dark);
  line-height: 1.4;
}
.galeria-card-data {
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
}

/* ---- PARTNERS (dark strip) ---- */
.partners-strip-section {
  background: var(--dark);
  padding: 64px 0;
}
.partners-strip-section .section-header h2 { color: var(--white); }
.partners-strip-section .section-header p { color: #64748B; }
.partners-strip { gap: 14px; }
.partner-logo {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  color: #94A3B8;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  padding: 16px 28px;
  border-radius: 10px;
  transition: all .2s;
}
.partner-logo:hover {
  background: rgba(247,148,29,.12);
  border-color: rgba(247,148,29,.35);
  color: var(--orange);
}

/* ---- CONTACT SECTION ---- */
.card {
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: none;
}
.card-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.card-body { padding: 20px 22px; }
.form-control {
  font-family: var(--font);
  border-radius: 10px;
  border-color: var(--border);
  font-size: 14.5px;
  padding: 12px 14px;
}
.form-control:focus { border-color: var(--orange); }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--dark); }

/* ---- FOOTER ---- */
footer {
  background: #060E1F;
  padding: 68px 0 0;
}
.footer-grid { gap: 48px; margin-bottom: 52px; }
footer h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  margin-bottom: 20px;
}
.footer-brand p { font-size: 14px; color: #475569; line-height: 1.72; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: #475569; }
.footer-links a:hover { color: var(--orange); }
.footer-contact li { font-size: 14px; color: #475569; margin-bottom: 10px; }
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px !important;
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}
.social-btn:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  opacity: 1;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  color: #334155;
  font-size: 13px;
}

/* ---- ANIMATIONS ---- */
@keyframes aFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-text h1, .hero-text h2, .hero-text p, .hero-btns, .hero-stats { animation: none; }

/* ---- SECÇÃO ADERIR ---- */
.apj-aderir {
  --apj-azul: #03406D;
  --apj-azul-escuro: #022A48;
  --apj-laranja: #FE7902;
  --apj-carmim: #A20226;
  --apj-fundo: #F2F5F8;
  --apj-linha: #D8E1E9;
  --apj-texto: #122B3D;
  --apj-texto-suave: #4A6376;
  background: var(--apj-fundo);
  color: var(--apj-texto);
  padding: 72px 20px 80px;
  font-family: "Archivo","Segoe UI",system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing: antialiased;
}
.apj-aderir * { box-sizing: border-box; }
.apj-wrap { max-width: 1080px; margin: 0 auto; }
.apj-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--apj-laranja); margin: 0 0 18px;
}
.apj-titulo {
  font-size: clamp(30px,5.2vw,52px); line-height: 1.08; font-weight: 600;
  color: var(--apj-azul); margin: 0 0 18px; max-width: 16ch;
}
.apj-titulo .apj-neg { display: block; color: var(--apj-carmim); }
.apj-sub {
  font-size: clamp(16px,2.1vw,20px); line-height: 1.55;
  color: var(--apj-texto-suave); max-width: 52ch; margin: 0 0 8px;
}
.apj-sub strong { color: var(--apj-texto); font-weight: 600; }

.apj-vias {
  margin: 40px 0 0; display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--apj-linha);
  border: 1px solid var(--apj-linha); border-radius: 4px; overflow: hidden;
}
.apj-via { background: #fff; padding: 24px 22px; }
.apj-via-num { font-size: 12px; font-weight: 800; color: var(--apj-laranja); letter-spacing: .1em; margin: 0 0 10px; }
.apj-via h4 { font-size: 16.5px; font-weight: 700; color: var(--apj-azul); margin: 0 0 8px; line-height: 1.3; }
.apj-via p { font-size: 14.5px; line-height: 1.55; color: var(--apj-texto-suave); margin: 0; }

.apj-pacto {
  margin: 44px 0 0; background: #fff;
  border: 1px solid var(--apj-linha); border-radius: 4px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1px 1fr;
}
.apj-pacto-col { padding: 32px 30px; }
.apj-pacto-div { background: var(--apj-linha); }
.apj-pacto h3 {
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 20px; color: var(--apj-azul);
}
.apj-pacto-col:last-child h3 { color: var(--apj-laranja); }
.apj-pacto ul { list-style: none; margin: 0; padding: 0; }
.apj-pacto li {
  position: relative; padding: 0 0 14px 26px;
  font-size: 15.5px; line-height: 1.5; color: var(--apj-texto);
}
.apj-pacto li:last-child { padding-bottom: 0; }
.apj-pacto li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 10px; height: 2px; background: var(--apj-azul);
}
.apj-pacto-col:last-child li::before { background: var(--apj-laranja); }

.apj-cta { margin: 40px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }
.apj-btn {
  display: inline-block; background: var(--apj-laranja); color: #fff;
  text-decoration: none; font-size: 16px; font-weight: 700;
  letter-spacing: .01em; padding: 17px 34px; border: none;
  border-radius: 3px; cursor: pointer; transition: background .18s ease, transform .18s ease;
}
.apj-btn:hover { background: #E56C00; transform: translateY(-1px); }
.apj-btn:focus-visible { outline: 3px solid var(--apj-azul); outline-offset: 3px; }
.apj-btn-sec {
  color: var(--apj-azul); text-decoration: none; font-size: 15px; font-weight: 600;
  border-bottom: 2px solid var(--apj-linha); padding-bottom: 2px;
  transition: border-color .18s ease;
}
.apj-btn-sec:hover { border-color: var(--apj-laranja); }
.apj-condicoes {
  margin: 22px 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  font-size: 13.5px; color: var(--apj-texto-suave);
}
.apj-condicoes li { position: relative; padding-left: 16px; }
.apj-condicoes li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--apj-laranja);
}

.apj-quota {
  margin: 56px 0 0; background: var(--apj-azul); color: #fff;
  border-radius: 4px; padding: 38px 36px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px; align-items: start;
}
.apj-quota h3 { font-size: 24px; line-height: 1.25; font-weight: 600; margin: 0 0 14px; }
.apj-quota p { margin: 0 0 12px; font-size: 15.5px; line-height: 1.6; color: #C9DAE8; }
.apj-quota p:last-child { margin-bottom: 0; }
.apj-quota strong { color: #fff; font-weight: 600; }
.apj-quota-nota {
  border-left: 3px solid var(--apj-laranja); padding: 4px 0 4px 18px;
  font-size: 14.5px; line-height: 1.6; color: #E4EDF4;
}

.apj-faq { margin: 52px 0 0; border-top: 1px solid var(--apj-linha); }
.apj-faq details { border-bottom: 1px solid var(--apj-linha); }
.apj-faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0;
  position: relative; font-size: 16.5px; font-weight: 600; color: var(--apj-azul);
}
.apj-faq summary::-webkit-details-marker { display: none; }
.apj-faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 17px;
  font-size: 22px; font-weight: 400; color: var(--apj-laranja); transition: transform .2s ease;
}
.apj-faq details[open] summary::after { content: "–"; }
.apj-faq summary:focus-visible { outline: 2px solid var(--apj-azul); outline-offset: 2px; }
.apj-faq p {
  margin: 0; padding: 0 48px 22px 0;
  font-size: 15.5px; line-height: 1.65; color: var(--apj-texto-suave);
}

@media (max-width: 820px) {
  .apj-aderir { padding: 56px 18px 64px; }
  .apj-vias { grid-template-columns: 1fr; }
  .apj-pacto { grid-template-columns: 1fr; }
  .apj-pacto-div { height: 1px; width: 100%; }
  .apj-pacto-col { padding: 26px 22px; }
  .apj-quota { grid-template-columns: 1fr; padding: 30px 24px; }
  .apj-btn { width: 100%; text-align: center; }
}
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-text h1, .hero-text h2 { font-size: clamp(30px, 3.8vw, 46px); }
}
@media (max-width: 900px) {
  .quick-actions .container { grid-template-columns: repeat(2, 1fr); }
  .quick-btn { border-bottom: 1px solid rgba(255,255,255,.07); }
  .quick-btn:nth-child(2n) { border-right: none; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 0 56px; }
  .hero-content { grid-template-columns: 1fr; gap: 44px; }
  .hero-text h1, .hero-text h2 { font-size: 30px; }
  .hero-text p { font-size: 15px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-placeholder { height: 280px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 26px; }
}
@media (max-width: 480px) {
  .quick-actions .container { grid-template-columns: 1fr; }
  .quick-btn { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ============================================================
   ADMIN — Gestão de Associados
============================================================ */

/* KPI row */
.admin-kpi-row { display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:24px; }
@media(max-width:900px){ .admin-kpi-row{grid-template-columns:1fr 1fr;} }
@media(max-width:480px){ .admin-kpi-row{grid-template-columns:1fr;} }
.admin-kpi { background:var(--white);border-radius:12px;padding:18px 20px;box-shadow:var(--shadow);border-left:4px solid transparent; }
.admin-kpi .kpi-num { font-size:32px;font-weight:800;line-height:1; }
.admin-kpi .kpi-label { font-size:12px;color:var(--gray);margin-top:5px; }
.admin-kpi.kpi-total   { border-left-color:var(--blue); }
.admin-kpi.kpi-activo  { border-left-color:var(--teal); }
.admin-kpi.kpi-pendente{ border-left-color:var(--orange); }
.admin-kpi.kpi-problema{ border-left-color:var(--red); }

/* Toolbar */
.admin-toolbar { display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin-bottom:16px; }
.admin-toolbar input[type="text"] { flex:1;min-width:180px;padding:9px 14px;border:1.5px solid var(--border);border-radius:8px;font-size:14px;outline:none;background:var(--white); }
.admin-toolbar input[type="text"]:focus { border-color:var(--blue); }
.admin-toolbar select { padding:9px 12px;border:1.5px solid var(--border);border-radius:8px;font-size:13.5px;color:var(--dark);background:var(--white);outline:none;cursor:pointer; }
.admin-toolbar select:focus { border-color:var(--blue); }
.admin-count { font-size:12px;color:var(--gray);white-space:nowrap; }

/* Table */
.admin-table-wrap { background:var(--white);border-radius:12px;box-shadow:var(--shadow);overflow:auto; }
.admin-table { width:100%;border-collapse:collapse;font-size:13.5px;min-width:720px; }
.admin-table thead tr { background:var(--light); }
.admin-table thead th { padding:10px 14px;text-align:left;font-size:11px;font-weight:700;color:var(--gray);text-transform:uppercase;letter-spacing:.5px;border-bottom:2px solid var(--border); }
.admin-table tbody tr { border-bottom:1px solid var(--border);transition:background .15s; }
.admin-table tbody tr:last-child { border-bottom:none; }
.admin-table tbody tr:hover { background:#fafbfc; }
.admin-table td { padding:11px 14px;vertical-align:middle; }

/* Member name cell */
.member-name-cell { display:flex;align-items:center;gap:10px; }
.member-avatar-sm { width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:var(--white);flex-shrink:0; }

/* Estado badges */
.estado-badge { display:inline-block;padding:3px 10px;border-radius:20px;font-size:11.5px;font-weight:700; }
.estado-activo    { background:#e8f5e9;color:#2e7d32; }
.estado-pendente  { background:#fff3e0;color:#e65100; }
.estado-suspenso  { background:#fce4ec;color:#c62828; }
.estado-expirado  { background:#f5f5f5;color:#757575; }
.estado-rejeitado { background:#f5f5f5;color:#999; }

/* Tipo chips */
.tipo-chip { display:inline-block;padding:3px 9px;border-radius:5px;font-size:11px;font-weight:600; }
.tipo-jovem         { background:#e3f2fd;color:var(--blue); }
.tipo-empresa       { background:#f3e5f5;color:var(--purple); }
.tipo-formador      { background:#e0f2f1;color:var(--teal); }
.tipo-institucional { background:#f5f5f5;color:#555; }

/* Quota cells */
.quota-cell { font-size:12px;font-weight:700; }
.quota-pago     { color:#2e7d32; }
.quota-pendente { color:var(--orange); }
.quota-na       { color:var(--gray); }

/* Table action buttons */
.btn-table-action { padding:5px 12px;border-radius:6px;border:1.5px solid var(--border);background:var(--white);font-size:12px;font-weight:600;cursor:pointer;transition:all .15s;color:var(--dark); }
.btn-table-action:hover { border-color:var(--blue);color:var(--blue);background:#e3f2fd; }

/* Candidatura cards */
.cand-card { background:var(--white);border-radius:12px;box-shadow:var(--shadow);padding:20px 22px;display:flex;gap:18px;align-items:flex-start;margin-bottom:16px; }
@media(max-width:600px){ .cand-card{flex-direction:column;} }
.cand-avatar { width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:800;color:var(--white);flex-shrink:0; }
.cand-info { flex:1;min-width:0; }
.cand-info h4 { font-size:15px;font-weight:700;margin-bottom:2px; }
.cand-info .cand-sub { font-size:12px;color:var(--gray);margin-bottom:10px; }
.cand-info .cand-meta { display:flex;gap:14px;font-size:12px;color:var(--gray);flex-wrap:wrap; }
.cand-actions { display:flex;flex-direction:column;gap:8px;flex-shrink:0; }
.btn-aprovar { padding:8px 18px;border-radius:8px;border:none;background:var(--teal);color:var(--white);font-size:13px;font-weight:700;cursor:pointer;transition:opacity .2s; }
.btn-aprovar:hover { opacity:.85; }
.btn-rejeitar { padding:8px 18px;border-radius:8px;border:1.5px solid var(--red);background:none;color:var(--red);font-size:13px;font-weight:700;cursor:pointer;transition:all .2s; }
.btn-rejeitar:hover { background:var(--red);color:var(--white); }

/* Member detail modal */
.member-modal-overlay { position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:2000;display:flex;align-items:center;justify-content:center;padding:20px; }
.member-modal-box { background:var(--white);border-radius:16px;width:100%;max-width:660px;max-height:90vh;overflow-y:auto;box-shadow:0 24px 80px rgba(0,0,0,.35); }
.modal-header { display:flex;align-items:center;gap:16px;padding:22px 24px;border-bottom:1px solid var(--border);position:sticky;top:0;background:var(--white);z-index:1; }
.modal-avatar { width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:800;color:var(--white);flex-shrink:0; }
.modal-header-info h3 { font-size:17px;font-weight:800;margin-bottom:4px; }
.modal-body { padding:20px 24px; }
.modal-tabs { display:flex;border-bottom:2px solid var(--border);margin-bottom:20px;overflow-x:auto; }
.modal-tab { padding:9px 16px;border:none;background:none;font-size:13px;font-weight:600;color:var(--gray);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-2px;white-space:nowrap; }
.modal-tab.active { color:var(--blue);border-bottom-color:var(--blue); }
.modal-footer { padding:16px 24px;border-top:1px solid var(--border);display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap; }

/* Admin section cards */
.admin-section-card { background:var(--white);border-radius:12px;box-shadow:var(--shadow);padding:20px 22px;margin-bottom:20px; }
.admin-section-card h4 { font-size:14px;font-weight:700;color:var(--dark);margin-bottom:14px;padding-bottom:10px;border-bottom:1px solid var(--border); }

/* Quota table */
.quota-table { width:100%;border-collapse:collapse;font-size:13.5px; }
.quota-table th { padding:10px 14px;text-align:left;font-size:11px;font-weight:700;color:var(--gray);text-transform:uppercase;border-bottom:2px solid var(--border); }
.quota-table td { padding:10px 14px;border-bottom:1px solid var(--border);vertical-align:middle; }
.quota-table tr:last-child td { border-bottom:none; }
.quota-table tbody tr:hover td { background:#fafbfc; }

/* Report bars */
.report-bar-row { display:flex;align-items:center;gap:12px;margin-bottom:10px; }
.report-bar-label { width:140px;font-size:13px;color:var(--dark);flex-shrink:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.report-bar-track { flex:1;background:var(--border);border-radius:4px;height:10px;overflow:hidden; }
.report-bar-fill { height:10px;border-radius:4px; }
.report-bar-count { font-size:12px;color:var(--gray);width:30px;text-align:right;flex-shrink:0; }

/* Info grid (modal) */
.info-grid { display:flex;flex-direction:column; }

/* Modal inputs */
.estado-select { padding:8px 12px;border:1.5px solid var(--border);border-radius:8px;font-size:13px;width:100%;margin-top:6px;outline:none; }
.estado-select:focus { border-color:var(--blue); }
.notas-textarea { width:100%;padding:10px 12px;border:1.5px solid var(--border);border-radius:8px;font-size:13px;resize:vertical;margin-top:6px;min-height:80px;outline:none;box-sizing:border-box; }
.notas-textarea:focus { border-color:var(--blue); }

/* Empty state */
.empty-state { text-align:center;padding:48px 20px;color:var(--gray); }
.empty-state .empty-icon { font-size:48px;margin-bottom:12px; }
.empty-state p { font-size:14px; }
