/* ============================================================
   ASSB — Design System Moderno
   Paleta: preto · branco · cinza · verde #a2ad02
   ============================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

   /* ── Variáveis ── */
   :root {
     --green:       #a2ad02;
     --green-dark:  #7a8400;
     --green-muted: #f5f6e8;
     --black:       #1a1a1a;
     --grey-dark:   #404040;
     --grey-mid:    #6b6b6b;
     --grey-light:  #d0d0d0;
     --grey-bg:     #f2f2f2;
     --white:       #ffffff;
   
     --font-display: 'Playfair Display', Georgia, serif;
     --font-body:    'Inter', system-ui, sans-serif;
   
     --radius:    6px;
     --radius-lg: 12px;
     --shadow:    0 2px 12px rgba(0,0,0,.08);
     --shadow-md: 0 8px 32px rgba(0,0,0,.12);
   
     --nav-h:  64px;
     --max-w:  1140px;
     --prose:  700px;
   
     --focus: 0 0 0 3px rgba(162,173,2,.4);
   }
   
   /* ── Reset ── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   html { scroll-behavior: smooth; font-size: 16px; }
   body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
   img { max-width: 100%; display: block; }
   a { color: inherit; text-decoration: none; }
   ul { list-style: none; }
   button, input, select, textarea { font-family: inherit; }
   
   /* ── Skip link ── */
   .skip-link { position: absolute; top: -100%; left: 16px; background: var(--green); color: var(--black); padding: 8px 16px; border-radius: 0 0 var(--radius) var(--radius); font-size: .875rem; font-weight: 600; z-index: 9999; transition: top .2s; }
   .skip-link:focus { top: 0; }
   
   /* ── Focus ── */
   a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; border-radius: var(--radius); }
   
   /* ── Container ── */
   .container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
   
   /* ══════════════════════
      NAVBAR
   ══════════════════════ */
   .navbar {
     position: fixed; top: 0; inset-inline: 0; z-index: 900;
     height: var(--nav-h);
     background: var(--white);
     border-bottom: 1px solid transparent;
     transition: border-color .3s, box-shadow .3s;
   }
   .navbar.scrolled { border-bottom-color: var(--grey-light); box-shadow: var(--shadow); }
   .navbar .container { display: flex; align-items: center; height: 100%; gap: 24px; }
   
   .nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
   .nav-brand img {
     height: 44px;
     width: auto;
     object-fit: contain;
   }
   .nav-brand-name { font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: var(--black); line-height: 1.3; max-width: 160px; }
   
   .nav-links { display: flex; align-items: center; gap: 0; margin-left: auto; }
   .nav-links a {
     font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em;
     color: var(--grey-mid); padding: 8px 14px; position: relative;
     transition: color .2s;
   }
   .nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 1.5px; background: var(--green); transform: scaleX(0); transition: transform .2s; }
   .nav-links a:hover { color: var(--black); }
   .nav-links a.active { color: var(--black); font-weight: 600; }
   .nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
   
   .nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px; margin-left: auto; cursor: pointer; background: none; border: none; border-radius: var(--radius); }
   .nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--black); border-radius: 2px; transition: .3s; }
   .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
   .nav-burger.open span:nth-child(2) { opacity: 0; }
   .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
   
   .nav-mobile { display: none; position: fixed; top: var(--nav-h); inset-inline: 0; background: var(--white); border-bottom: 1px solid var(--grey-light); padding: 8px 32px 20px; z-index: 899; box-shadow: var(--shadow-md); }
   .nav-mobile.open { display: block; }
   .nav-mobile a { display: block; padding: 12px 0; font-size: .88rem; font-weight: 500; color: var(--grey-mid); border-bottom: 1px solid var(--grey-bg); text-transform: uppercase; letter-spacing: .06em; transition: color .2s; }
   .nav-mobile a:last-child { border-bottom: none; }
   .nav-mobile a:hover, .nav-mobile a.active { color: var(--black); }
   
   /* ══════════════════════
      HERO — escuro e impactante
   ══════════════════════ */
   .hero {
     margin-top: var(--nav-h);
     min-height: calc(100vh - var(--nav-h));
     background: var(--black);
     display: flex; align-items: center;
     position: relative; overflow: hidden;
   }
   /* Linha verde decorativa */
   .hero::before {
     content: '';
     position: absolute; left: 0; top: 0; bottom: 0;
     width: 4px;
     background: var(--green);
   }
   .hero .container { padding-block: 80px; position: relative; z-index: 1; }
   .hero-label { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 28px; }
   .hero-title {
     font-family: var(--font-display);
     font-size: clamp(3rem, 7vw, 6rem);
     font-weight: 900;
     color: var(--white);
     line-height: 1.02;
     margin-bottom: 32px;
     max-width: 820px;
   }
   .hero-title .green { color: var(--green); }
   .hero-desc { color: rgba(255,255,255,.6); font-size: 1.05rem; font-weight: 300; line-height: 1.8; max-width: 520px; margin-bottom: 44px; }
   .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
   .hero-stats { display: flex; gap: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
   .hero-stat { }
   .hero-stat-val { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--green); display: block; line-height: 1; margin-bottom: 5px; }
   .hero-stat-label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); }
   
   /* ══════════════════════
      BOTÕES
   ══════════════════════ */
   .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; border: none; transition: all .2s; }
   .btn-primary { background: var(--green); color: var(--black); }
   .btn-primary:hover { background: #b9c503; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(162,173,2,.3); }
   .btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
   .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
   .btn-dark { background: var(--black); color: var(--white); }
   .btn-dark:hover { background: var(--grey-dark); transform: translateY(-1px); }
   .btn-outline { background: transparent; color: var(--black); border: 1px solid var(--grey-light); }
   .btn-outline:hover { border-color: var(--black); }
   .btn-green-outline { background: transparent; color: var(--green-dark); border: 1px solid var(--green); }
   .btn-green-outline:hover { background: var(--green); color: var(--black); }
   .btn-sm { padding: 8px 18px; font-size: .74rem; }
   
   /* ══════════════════════
      SECÇÕES
   ══════════════════════ */
   .section { padding: 100px 0; }
   .section-sm { padding: 64px 0; }
   .section-grey { background: var(--grey-bg); }
   .section-dark { background: var(--black); }
   
   /* Tag + título padrão */
   .section-tag {
     font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
     color: var(--green-dark); display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
   }
   .section-tag::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--green); flex-shrink: 0; }
   .section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 700; color: var(--black); line-height: 1.12; }
   .section-title-white { color: var(--white); }
   .section-desc { color: var(--grey-mid); font-size: 1rem; line-height: 1.75; margin-top: 16px; max-width: 560px; }
   .section-header { margin-bottom: 56px; }
   .section-header.centered { text-align: center; }
   .section-header.centered .section-tag { justify-content: center; }
   .section-header.centered .section-tag::before { display: none; }
   .section-header.centered .section-desc { margin-inline: auto; }
   
   /* ══════════════════════
      CARDS
   ══════════════════════ */
   .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1px; background: var(--grey-light); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); overflow: hidden; }
   .card { background: var(--white); padding: 36px 32px; transition: background .2s; position: relative; }
   .card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .3s; }
   .card:hover { background: var(--green-muted); }
   .card:hover::after { transform: scaleX(1); }
   .card-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 16px; }
   .card-title { font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--black); margin-bottom: 10px; }
   .card-text { color: var(--grey-mid); font-size: .9rem; line-height: 1.7; }
   
   /* ══════════════════════
      NOTÍCIAS
   ══════════════════════ */
   .news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
   .news-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
   .news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
   .news-card-img { aspect-ratio: 16/9; background: var(--grey-bg); overflow: hidden; position: relative; }
   .news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
   .news-card:hover .news-card-img img { transform: scale(1.04); }
   .news-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--grey-bg); }
   .news-card-img-placeholder svg { width: 32px; height: 32px; fill: var(--grey-light); }
   .news-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
   .news-card-date { font-size: .7rem; color: var(--grey-light); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
   .news-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 8px; }
   .news-card-title a { color: inherit; }
   .news-card-title a:hover { color: var(--green-dark); }
   .news-card-desc { color: var(--grey-mid); font-size: .875rem; line-height: 1.65; flex: 1; }
   .news-card-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-dark); transition: gap .2s; }
   .news-card-link:hover { gap: 9px; }
   
   /* ══════════════════════
      EVENTOS
   ══════════════════════ */
   .eventos-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-light); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); overflow: hidden; }
   .evento-row { background: var(--white); display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: center; padding: 24px 28px; transition: background .2s; }
   .evento-row:hover { background: var(--green-muted); }
   .evento-date { text-align: center; }
   .evento-day { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-dark); line-height: 1; display: block; }
   .evento-month { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-mid); display: block; margin-top: 2px; }
   .evento-info { }
   .evento-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
   .evento-meta { font-size: .8rem; color: var(--grey-mid); display: flex; align-items: center; gap: 6px; }
   .evento-meta svg { width: 12px; height: 12px; fill: var(--grey-light); flex-shrink: 0; }
   .evento-passado .evento-day, .evento-passado .evento-title { color: var(--grey-mid); }
   .evento-passado { opacity: .6; }
   
   /* Página de evento individual */
   .evento-hero { background: var(--grey-bg); padding: 52px 0; margin-top: var(--nav-h); border-bottom: 1px solid var(--grey-light); }
   .evento-hero-date { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
   .evento-hero-date::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--green); }
   
   /* ══════════════════════
      PAGE HERO (páginas internas)
   ══════════════════════ */
   .page-hero { margin-top: var(--nav-h); background: var(--black); padding: 64px 0 52px; border-bottom: 3px solid var(--green); }
   .page-hero-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
   .page-hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--green); }
   .page-hero-title { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,4rem); font-weight: 900; color: var(--white); line-height: 1.05; }
   
   /* ══════════════════════
      GALERIA
   ══════════════════════ */
   .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 3px; }
   .gallery-item { aspect-ratio: 4/3; overflow: hidden; position: relative; cursor: pointer; background: var(--grey-bg); }
   .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
   .gallery-item:hover img { transform: scale(1.06); }
   .gallery-item-overlay { position: absolute; inset: 0; background: rgba(26,26,26,.55); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 14px; }
   .gallery-item:hover .gallery-item-overlay { opacity: 1; }
   .gallery-item-label { color: var(--white); font-size: .78rem; font-weight: 500; }
   /* Lightbox */
   .lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(26,26,26,.96); display: none; align-items: center; justify-content: center; padding: 24px; }
   .lightbox.open { display: flex; }
   .lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
   .lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 1.5rem; color: rgba(255,255,255,.6); cursor: pointer; background: none; border: none; padding: 8px; border-radius: var(--radius); transition: color .2s; }
   .lightbox-close:hover { color: var(--white); }
   .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: var(--white); width: 48px; height: 48px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; }
   .lightbox-nav:hover { background: var(--green); color: var(--black); border-color: var(--green); }
   .lightbox-prev { left: 20px; }
   .lightbox-next { right: 20px; }
   
   /* ══════════════════════
      DOCUMENTOS
   ══════════════════════ */
   .doc-year { margin-bottom: 40px; }
   .doc-year-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--black); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
   .doc-year-title::after { content: ''; flex: 1; height: 1px; background: var(--grey-light); }
   .doc-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-light); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); overflow: hidden; }
   .doc-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--white); transition: background .2s; }
   .doc-item:hover { background: var(--green-muted); }
   .doc-icon { width: 36px; height: 36px; background: var(--grey-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
   .doc-icon svg { width: 18px; height: 18px; fill: var(--grey-mid); }
   .doc-info { flex: 1; min-width: 0; }
   .doc-name { font-weight: 500; color: var(--black); font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
   .doc-meta { font-size: .75rem; color: var(--grey-light); margin-top: 2px; }
   .doc-download { display: flex; align-items: center; gap: 5px; color: var(--green-dark); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 7px 14px; border-radius: var(--radius); border: 1px solid var(--grey-light); transition: all .2s; white-space: nowrap; }
   .doc-download:hover { background: var(--green); color: var(--black); border-color: var(--green); }
   .doc-download svg { width: 13px; height: 13px; fill: currentColor; }
   
   /* ══════════════════════
      CONTACTOS
   ══════════════════════ */
   .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1px; background: var(--grey-light); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 64px; }
   .contact-card { background: var(--white); padding: 28px 22px; transition: background .2s; }
   .contact-card:hover { background: var(--green-muted); }
   .contact-card-label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
   .contact-card-label svg { width: 13px; height: 13px; fill: var(--green); flex-shrink: 0; }
   .contact-card-value { font-size: .9rem; font-weight: 500; color: var(--black); line-height: 1.55; }
   .contact-card-value a { color: inherit; transition: color .2s; }
   .contact-card-value a:hover { color: var(--green-dark); }
   .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
   .contact-form-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--black); margin-bottom: 28px; }
   .form-group { margin-bottom: 18px; }
   .form-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 7px; }
   .form-input, .form-textarea, .form-select { width: 100%; padding: 12px 14px; border: 1px solid var(--grey-light); border-radius: var(--radius); font-size: .92rem; color: var(--black); background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; }
   .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--green); box-shadow: var(--focus); }
   .form-textarea { resize: vertical; min-height: 130px; }
   .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
   .form-feedback { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; font-weight: 500; display: none; }
   .form-feedback.success { background: #f0f4d8; color: #4a5200; border: 1px solid var(--green); display: block; }
   .form-feedback.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; display: block; }
   .map-wrap { border-radius: var(--radius-lg); overflow: hidden; }
   .map-wrap iframe { display: block; width: 100%; height: 360px; border: none; filter: grayscale(30%); }
   .contact-extra { margin-top: 14px; padding: 14px 16px; background: var(--grey-bg); border-radius: var(--radius); font-size: .84rem; color: var(--grey-mid); line-height: 1.7; }
   
   /* ══════════════════════
      ASSB
   ══════════════════════ */
   .assb-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
   .assb-img { position: relative; }
   .assb-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); display: block; }
   .assb-img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--grey-bg); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
   .assb-img-placeholder svg { width: 64px; height: 64px; fill: var(--grey-light); }
   .assb-body p { color: var(--grey-mid); font-size: .98rem; line-height: 1.85; }
   .assb-body p + p { margin-top: 16px; }
   .assb-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-light); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); overflow: hidden; margin-top: 40px; }
   .assb-stat { background: var(--white); padding: 24px 16px; text-align: center; }
   .assb-stat-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green-dark); display: block; line-height: 1; margin-bottom: 6px; }
   .assb-stat-label { font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-mid); }
   .values-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
   .value-tag { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-dark); border: 1px solid var(--green); padding: 5px 14px; border-radius: 100px; background: var(--green-muted); }
   
   /* ══════════════════════
      ARTIGO
   ══════════════════════ */
   .article-wrap { max-width: var(--prose); margin: 0 auto; }
   .article-hero-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 40px; }
   .article-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
   .article-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--green); }
   .article-title { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--black); line-height: 1.12; margin-bottom: 32px; }
   .article-body { font-size: 1rem; line-height: 1.85; color: var(--grey-mid); }
   .article-body h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--black); margin: 32px 0 14px; }
   .article-body p { margin-bottom: 18px; }
   .article-body ul { padding-left: 20px; list-style: disc; margin-bottom: 18px; }
   .article-body li { margin-bottom: 8px; }
   .article-back { display: inline-flex; align-items: center; gap: 7px; color: var(--grey-mid); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 36px; transition: color .2s, gap .2s; }
   .article-back:hover { color: var(--black); gap: 11px; }
   
   /* ══════════════════════
      RODAPÉ
   ══════════════════════ */
   .footer { background: var(--grey-dark); color: rgba(255,255,255,.6); padding: 64px 0 0; }
   .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
   .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
   .footer-brand img {
     height: 40px;
     width: auto;
     object-fit: contain;
   }
   .footer-brand-name { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--white); }
   .footer-desc { font-size: .84rem; line-height: 1.75; max-width: 260px; }
   .footer-heading { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
   .footer-links { display: flex; flex-direction: column; gap: 10px; }
   .footer-links a { font-size: .84rem; transition: color .2s; }
   .footer-links a:hover { color: var(--green); }
   .footer-info { display: flex; flex-direction: column; gap: 11px; font-size: .84rem; }
   .footer-info-item { display: flex; align-items: flex-start; gap: 8px; }
   .footer-info-item svg { width: 13px; height: 13px; fill: var(--green); flex-shrink: 0; margin-top: 3px; }
   .footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: .74rem; flex-wrap: wrap; gap: 12px; }
   .footer-social { display: flex; gap: 8px; }
   .footer-social a { width: 32px; height: 32px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
   .footer-social a:hover { background: var(--green); }
   .footer-social svg { width: 14px; height: 14px; fill: var(--white); }
   
   /* ══════════════════════
      404
   ══════════════════════ */
   .not-found { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 64px 32px; margin-top: var(--nav-h); }
   .not-found-code { font-family: var(--font-display); font-size: 9rem; font-weight: 900; color: var(--grey-bg); line-height: 1; }
   .not-found-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
   .not-found-desc { color: var(--grey-mid); margin-bottom: 28px; font-size: .98rem; }
   
   /* ══════════════════════
      ALERTS
   ══════════════════════ */
   .alert { padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; font-weight: 500; margin-bottom: 18px; }
   .alert-success { background: var(--green-muted); color: #4a5200; border: 1px solid var(--green); }
   .alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
   .alert-info    { background: var(--grey-bg); color: var(--grey-dark); border: 1px solid var(--grey-light); }
   
   /* ══════════════════════
      RESPONSIVO
   ══════════════════════ */
   @media (max-width: 1024px) {
     .assb-layout { grid-template-columns: 1fr; gap: 40px; }
   }
   @media (max-width: 900px) {
     .contact-layout { grid-template-columns: 1fr; gap: 40px; }
     .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
     .evento-row { grid-template-columns: 60px 1fr; }
     .evento-row .btn-sm { display: none; }
   }
   @media (max-width: 640px) {
     :root { --nav-h: 60px; }
     .nav-links { display: none; }
     .nav-burger { display: flex; }
     .nav-brand-name { max-width: 130px; font-size: .74rem; }
     .section { padding: 64px 0; }
     .section-sm { padding: 44px 0; }
     .container { padding: 0 20px; }
     .hero-stats { flex-wrap: wrap; gap: 28px; }
     .hero-cta { flex-direction: column; }
     .hero-cta .btn { justify-content: center; }
     .cards-grid { grid-template-columns: 1fr; }
     .form-row { grid-template-columns: 1fr; }
     .assb-stats { grid-template-columns: 1fr; }
     .contact-grid { grid-template-columns: 1fr 1fr; }
     .footer-grid { grid-template-columns: 1fr; gap: 28px; }
     .footer-bottom { flex-direction: column; text-align: center; }
     .page-hero { padding: 44px 0 36px; }
     .page-hero-title { font-size: 2.2rem; }
   }
   @media (max-width: 400px) {
     .container { padding: 0 16px; }
     .contact-grid { grid-template-columns: 1fr; }
   }
   
   /* ── Print ── */
   @media print {
     .navbar, .nav-mobile, .footer, .btn, .lightbox, .hero-cta { display: none !important; }
     .hero { background: none !important; color: var(--black) !important; margin-top: 0; min-height: 0; padding: 20px 0; }
     .hero-title, .hero-desc { color: var(--black) !important; }
     .page-hero { background: none !important; color: var(--black) !important; margin-top: 0; }
   }