/* ── AMBC Global Styles ─────────────────────────────────────── */

:root {
    --navy:       #0d2137;
    --blue:       #1a4a6e;
    --accent:     #1e6fa8;
    --light-blue: #e8f0f7;
    --bg:         #f0f4f8;
    --white:      #ffffff;
    --text:       #1a2b3c;
    --muted:      #5a7a94;
    --pink:       #e91e8c;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* ── UTILITÁRIOS GLOBAIS ────────────────────────────────────── */

.ambc-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.ambc-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 36px;
}

.ambc-section__header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    margin: 0 0 6px;
}

.ambc-section__header p {
    font-size: 14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.ambc-ver-todas {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
    padding-top: 4px;
    transition: opacity .15s;
}

.ambc-ver-todas:hover { opacity: .75; }

/* Botões globais */
.ambc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .15s, color .15s, opacity .15s;
}

.ambc-btn--solid {
    background: var(--navy);
    color: #fff;
}
.ambc-btn--solid:hover { background: var(--blue); color: #fff; }

.ambc-btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.ambc-btn--outline:hover { background: var(--navy); color: #fff; }

.ambc-btn--white {
    background: #fff;
    color: var(--navy);
    width: 100%;
    justify-content: center;
}
.ambc-btn--white:hover { opacity: .9; }

.ambc-btn--insta {
    background: var(--pink);
    color: #fff;
}
.ambc-btn--insta:hover { opacity: .9; }

.ambc-btn--sm {
    padding: 7px 14px;
    font-size: 12px;
    border-radius: 8px;
}

.ambc-empty {
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 24px 0;
}

/* Tags de categoria */
.ambc-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tag-blue { background: #1a4a6e; color: #fff; }
.tag-red  { background: #fde8e8; color: #c0392b; }
.tag-seg  { background: #e8f4fd; color: #1a4a6e; }
.tag-ev   { background: #fef3e2; color: #d4850a; }
.tag-ass  { background: #e8fdf0; color: #1a7a45; }
.tag-man  { background: #f0e8fd; color: #6a1aaa; }
.tipo-ord { background: #e8f4fd; color: #1a4a6e; }
.tipo-ext { background: #e8fdf0; color: #1a7a45; }

/* ── NAVBAR ─────────────────────────────────────────────────── */

.ambc-navbar {
    background: var(--white);
    border-bottom: 1px solid #dde6ee;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Container interno com max-width para o conteúdo não encostar nas bordas */
.ambc-navbar__inner {
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ambc-navbar__brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -.02em;
    flex-shrink: 0;
}

.ambc-navbar__links {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ambc-navbar__links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: all .15s;
    font-family: 'Sora', sans-serif;
    white-space: nowrap;
}

.ambc-navbar__links a:hover,
.ambc-navbar__links li.current-menu-item > a,
.ambc-navbar__links li.current_page_item > a {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

.ambc-navbar__btn-gestao {
    background: var(--navy);
    color: #fff !important;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}

.ambc-navbar__btn-gestao:hover {
    background: var(--blue);
    color: #fff;
}

/* Hamburger — mobile */
.ambc-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.ambc-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .25s;
}

/* Mobile drawer */
.ambc-navbar__drawer {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #dde6ee;
    padding: 20px 24px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(13,33,55,.08);
}

.ambc-navbar__drawer.is-open {
    display: block;
}

.ambc-navbar__drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ambc-navbar__drawer ul li {
    border-bottom: 1px solid #edf2f7;
}

.ambc-navbar__drawer ul li:last-child {
    border-bottom: none;
}

.ambc-navbar__drawer ul li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
}

.ambc-navbar__drawer ul li.current-menu-item > a,
.ambc-navbar__drawer ul li.current_page_item > a {
    color: var(--navy);
    font-weight: 700;
}

.ambc-navbar__drawer .ambc-navbar__btn-gestao {
    display: inline-block;
    margin-top: 14px;
    width: 100%;
    text-align: center;
}

/* ── FOOTER BASE ────────────────────────────────────────────── */

.ambc-footer {
    padding: 56px 0 0;
}

.ambc-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Topo: brand à esquerda, nav à direita */
.ambc-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 40px;
}

/* Brand */
.ambc-footer__brand-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.ambc-footer__brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 8px;
    line-height: 1.1;
}

.ambc-footer__brand-desc {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    margin: 0;
}

/* Nav horizontal */
.ambc-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 4px;
}

.ambc-footer__nav a {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
}

/* Divisor */
.ambc-footer__divider {
    height: 1px;
    width: 100%;
}

/* Rodapé copyright */
.ambc-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.ambc-footer__bottom p {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.ambc-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity .15s;
}

.ambc-footer__social:hover { opacity: .7; }

/* ── FOOTER CLARO ───────────────────────────────────────────── */

.ambc-footer--light {
    background: #dde8f2;
}

.ambc-footer--light .ambc-footer__brand-name { color: var(--navy); }
.ambc-footer--light .ambc-footer__brand-desc { color: var(--muted); }
.ambc-footer--light .ambc-footer__nav a      { color: var(--muted); }
.ambc-footer--light .ambc-footer__nav a:hover { color: var(--navy); }
.ambc-footer--light .ambc-footer__divider    { background: #c5d5e5; }
.ambc-footer--light .ambc-footer__bottom     { border-top: none; }
.ambc-footer--light .ambc-footer__bottom p   { color: var(--muted); }
.ambc-footer--light .ambc-footer__social     { background: var(--white); color: var(--muted); }

/* ── FOOTER ESCURO (Notícias) ───────────────────────────────── */

.ambc-footer--dark {
    background: var(--navy);
}

.ambc-footer--dark .ambc-footer__brand-label  { color: #5aa8d8; }
.ambc-footer--dark .ambc-footer__brand-name   { color: #fff; }
.ambc-footer--dark .ambc-footer__brand-desc   { color: rgba(255,255,255,.5); }
.ambc-footer--dark .ambc-footer__nav a        { color: rgba(255,255,255,.55); }
.ambc-footer--dark .ambc-footer__nav a:hover  { color: #fff; }
.ambc-footer--dark .ambc-footer__divider      { background: rgba(255,255,255,.1); }
.ambc-footer--dark .ambc-footer__bottom p     { color: rgba(255,255,255,.35); }
.ambc-footer--dark .ambc-footer__social       { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }

/* ── HERO ───────────────────────────────────────────────────── */

.ambc-hero {
    background: var(--bg);
    padding: 0px 0;
}

.ambc-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    min-height: calc(100vh - 72px);
}

.ambc-hero__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ambc-hero__title {
    font-size: 52px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 0 0 20px;
}

.ambc-hero__title span { color: var(--accent); }

.ambc-hero__desc {
    font-size: 15px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0 0 32px;
}

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

/* Imagem */
.ambc-hero__img-wrap { position: relative; }

.ambc-hero__img {
    width: 100%;
    border-radius: 20px;
    height: 380px;
    background: linear-gradient(135deg, #c8dbe8, #a0c0d8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}

.ambc-hero__img--tilt:hover {
    transform: rotate(1.5deg) scale(1.02);
}

/* Card flutuante */
.ambc-hero__card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 8px 32px rgba(13,33,55,.12);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 280px;
}

.ambc-hero__card-icon {
    background: var(--light-blue);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ambc-hero__card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
}

.ambc-hero__card p {
    font-size: 12px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    margin: 0;
}

/* ── DESTAQUES ──────────────────────────────────────────────── */

.ambc-destaques {
    background: var(--bg);
    padding: 20px 0 60px;
}

.ambc-destaques__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 360px;
    gap: 20px;
    align-items: stretch;
}

.ambc-destaque-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #dde6ee;
    display: flex;
    flex-direction: column;
}

.ambc-destaque-card--empty {
    grid-column: 1 / -2;
}

.ambc-destaque-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -.02em;
    margin: 0 0 10px;
}

.ambc-destaque-card p {
    font-size: 14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.ambc-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
}

.ambc-author-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
}

.ambc-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.ambc-author-time {
    font-size: 11px;
    color: var(--muted);
}

.ambc-ler-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: opacity .15s;
}

.ambc-ler-link:hover { opacity: .75; }

/* ── MURAL DE AVISOS ────────────────────────────────────────── */

.ambc-mural-header {
    background: var(--white);
    padding: 48px 0 40px;
}

.ambc-mural-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.ambc-mural-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
    margin: 0 0 10px;
}

.ambc-mural-header p {
    font-size: 15px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0;
}

.ambc-mural-body {
    background: var(--bg);
    padding: 48px 0 64px;
}

.ambc-mural-body__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 44px;
    align-items: start;
}

/* Sidebar */
.ambc-sidebar__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 12px;
}

.ambc-sidebar__cats {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.ambc-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
    transition: all .15s;
}

.ambc-cat-item:hover {
    background: var(--white);
    color: var(--navy);
}

.ambc-cat-item.is-active {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
}

.ambc-cat-count {
    font-size: 11px;
    font-weight: 700;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    padding: 2px 8px;
}

.ambc-cat-item.is-active .ambc-cat-count {
    background: rgba(255,255,255,.25);
}

.ambc-emerg-card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #dde6ee;
}

.ambc-emerg-card__icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.ambc-emerg-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
}

.ambc-emerg-card p {
    font-size: 12px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    margin: 0 0 12px;
}

.ambc-emerg-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: opacity .15s;
}

.ambc-emerg-link:hover { opacity: .75; }

/* Card destaque */
.ambc-aviso-featured {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 28px;
    border: 1px solid #dde6ee;
}

.ambc-aviso-featured__img {
    background: linear-gradient(135deg, #3a7a5a, #2a5a4a);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    overflow: hidden;
}

.ambc-aviso-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambc-aviso-featured__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.ambc-aviso-featured__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ambc-aviso-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.ambc-aviso-featured__body h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -.02em;
    margin: 0 0 10px;
}

.ambc-aviso-featured__body > p {
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.ambc-aviso-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #edf2f7;
    gap: 12px;
}

.ambc-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ambc-author-avatar__img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    display: block;
}

/* Grid de avisos normais */
.ambc-avisos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ambc-aviso-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #dde6ee;
    display: flex;
    flex-direction: column;
    transition: box-shadow .15s;
}

.ambc-aviso-card:hover {
    box-shadow: 0 4px 16px rgba(13,33,55,.07);
}

.ambc-aviso-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin: 0 0 8px;
    letter-spacing: -.01em;
}

.ambc-aviso-card p {
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.ambc-aviso-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
}

.ambc-posted-by {
    font-size: 11px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

/* Paginação */
.ambc-paginacao {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    justify-content: center;
}

.ambc-pg-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #dde6ee;
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    transition: all .15s;
}

.ambc-pg-btn.is-active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.ambc-pg-btn:hover:not(.is-active) {
    background: var(--light-blue);
}

/* Card calendário */
.ambc-cal-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.ambc-cal-icon {
    background: rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 20px;
    display: flex;
}

.ambc-cal-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.ambc-cal-card p {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
}

/* ── ÚLTIMAS ATAS (home) ────────────────────────────────────── */

.ambc-atas-home {
    background: var(--white);
    padding: 60px 0;
}

.ambc-atas-home__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ambc-ata-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg);
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #dde6ee;
    transition: box-shadow .15s;
}

.ambc-ata-item:hover {
    box-shadow: 0 4px 16px rgba(13,33,55,.07);
}

.ambc-ata-item__icon {
    width: 42px;
    height: 42px;
    background: var(--light-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ambc-ata-item__body {
    flex: 1;
}

.ambc-ata-item__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.ambc-ata-tipo {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ambc-ata-item__date {
    font-size: 12px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.ambc-ata-item__body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    letter-spacing: -.01em;
}

.ambc-ata-item__action {
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── REDES SOCIAIS ──────────────────────────────────────────── */

.ambc-social {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid #dde6ee;
}

.ambc-social__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.ambc-social__content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    margin: 0 0 14px;
    line-height: 1.15;
}

.ambc-social__content > p {
    font-size: 14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0 0 24px;
}

.ambc-social__features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ambc-social__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ambc-social__feature-icon {
    background: var(--light-blue);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-shrink: 0;
}

.ambc-social__feature h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 3px;
}

.ambc-social__feature p {
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.ambc-insta-btn--mobile { display: none; }

/* Grid de fotos */
.ambc-social__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ambc-social__photo {
    border-radius: 12px;
    aspect-ratio: 1;
    display: block;
    transition: transform .3s, opacity .3s;
}

.ambc-social__photo:hover {
    transform: scale(1.03);
    opacity: .9;
}

/* ── NOTÍCIAS ───────────────────────────────────────────────── */

.ambc-not-header {
    background: var(--white);
    padding: 48px 80px 16px;
}

.ambc-not-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.ambc-not-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.ambc-not-h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin: 0;
}

.ambc-not-h1 span { color: var(--accent); }

.ambc-not-body {
    background: var(--bg);
    padding: 52px 80px 64px;
}

.ambc-not-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 44px;
    align-items: start;
}

/* Card destaque */
.ambc-not-featured {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dde6ee;
    margin-bottom: 32px;
}

.ambc-not-feat-img {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ambc-not-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}

.ambc-not-feat-img:hover img { transform: scale(1.04); }

.ambc-destaque-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
}

.ambc-not-feat-body { padding: 28px; }

.ambc-not-cat-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    margin: 0 0 10px;
}

.ambc-not-feat-body h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -.02em;
    margin: 0 0 10px;
}

.ambc-not-feat-body p {
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0 0 14px;
}

.ambc-ler-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: opacity .15s;
}

.ambc-ler-btn:hover { opacity: .75; }

/* Grid de cards normais */
.ambc-not-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ambc-not-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dde6ee;
    position: relative;
    transition: box-shadow .15s;
}

.ambc-not-card:hover { box-shadow: 0 4px 16px rgba(13,33,55,.08); }

.ambc-not-card-link {
    position: absolute;
    inset: 0;
}

.ambc-not-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ambc-not-card-img .zoom-wrap,
.ambc-not-card-img .zoom-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zoom hover */
.zoom-wrap { overflow: hidden; }
.zoom-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
    display: block;
}
.zoom-wrap:hover img { transform: scale(1.07); }

.ambc-not-card-body { padding: 20px; }

.ambc-not-cat-sm {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.ambc-not-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin: 6px 0;
    letter-spacing: -.01em;
}

.ambc-not-card-body p {
    font-size: 12px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar */
.ambc-search-box {
    background: var(--white);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #dde6ee;
    margin-bottom: 20px;
}

.ambc-search-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 12px;
}

.ambc-search-input {
    position: relative;
    display: flex;
}

.ambc-search-input input {
    width: 100%;
    padding: 10px 40px 10px 14px;
    border: 1.5px solid #dde6ee;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Sora', sans-serif;
    color: var(--text);
    outline: none;
}

.ambc-search-input input:focus { border-color: var(--accent); }

.ambc-search-input button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    padding: 0;
}

/* Newsletter */
.ambc-newsletter-card {
    background: var(--navy);
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 20px;
}

.ambc-newsletter-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.01em;
}

.ambc-newsletter-card p {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0 0 16px;
}

.ambc-nl-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-family: 'Sora', sans-serif;
    margin-bottom: 10px;
    outline: none;
    display: block;
}

.ambc-nl-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    transition: all .15s;
}

.ambc-nl-btn:hover { background: #fff; color: var(--navy); }

/* Categorias / Recentes */
.ambc-cats-box {
    background: var(--white);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #dde6ee;
    margin-bottom: 20px;
}

.ambc-cats-box h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 14px;
}

.ambc-cat-row-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color .15s;
}

.ambc-cat-row-link:last-child { border-bottom: none; }
.ambc-cat-row-link:hover { color: var(--navy); }

.ambc-cat-num {
    font-size: 11px;
    font-weight: 700;
    background: var(--light-blue);
    color: var(--accent);
    border-radius: 999px;
    padding: 2px 8px;
    flex-shrink: 0;
}

/* Emergência */
.ambc-emerg-box {
    background: var(--light-blue);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #c8dae8;
}

.ambc-emerg-box h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 14px;
}

.ambc-emerg-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ambc-emerg-item__text h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 2px;
}

.ambc-emerg-item__text a {
    font-size: 12px;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

/* ── ATAS ───────────────────────────────────────────────────── */

.ambc-atas-header {
    background: var(--white);
    padding: 48px 80px 40px;
}

.ambc-atas-header__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ambc-atas-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
    margin: 0 0 12px;
}

.ambc-atas-header p {
    font-size: 15px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0;
    max-width: 680px;
}

.ambc-atas-body {
    background: var(--bg);
    padding: 40px 80px 64px;
}

.ambc-atas-layout {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 44px;
    align-items: start;
}

/* Filtros */
.ambc-atas-filters { margin-bottom: 24px; }

.ambc-atas-filters__form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.ambc-atas-search {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.ambc-atas-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.ambc-atas-search input,
.ambc-atas-search input[type="search"] {
    box-sizing: border-box !important;
    width: 100% !important;
    padding: 12px 16px 12px 42px !important;
    border: 1.5px solid #dde6ee;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    color: var(--text);
    background: var(--white);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.ambc-atas-search input:focus { border-color: var(--accent); }

.ambc-filter-sel {
    padding: 11px 16px;
    border: 1.5px solid #dde6ee;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    color: var(--muted);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

/* Tabela */
.ambc-atas-table {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dde6ee;
}

.ambc-atas-thead {
    display: grid;
    grid-template-columns: 1fr 120px 120px 160px;
    padding: 12px 24px;
    background: var(--bg);
    border-bottom: 1px solid #dde6ee;
}

.ambc-atas-thead span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.ambc-ata-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px 160px;
    padding: 18px 24px;
    border-bottom: 1px solid #edf2f7;
    align-items: center;
    transition: background .18s, box-shadow .18s;
    position: relative;
    cursor: pointer;
}

.ambc-ata-row:last-child { border-bottom: none; }
.ambc-ata-row:hover {
    background: #eef4fb;
    box-shadow: inset 3px 0 0 var(--accent);
}

.ambc-ata-row__link {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ambc-ata-actions {
    position: relative;
    z-index: 1;
}

.ambc-ata-doc {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ambc-ata-doc-icon {
    width: 38px;
    height: 38px;
    background: var(--light-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ambc-ata-doc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
    line-height: 1.3;
}

.ambc-ata-doc-desc {
    font-size: 12px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.ambc-ata-date {
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.ambc-ata-tipo {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ambc-ata-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.ambc-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    transition: background .15s;
}

.ambc-pdf-btn:hover { background: var(--blue); color: #fff; }

.ambc-pdf-btn--locked {
    background: var(--bg);
    color: var(--muted);
    border: 1.5px solid #dde6ee;
}

.ambc-pdf-btn--locked:hover { background: var(--light-blue); color: var(--navy); }

.ambc-pdf-btn--empty {
    background: transparent;
    color: #bac6d3;
    border: 1.5px dashed #d0dce8;
    cursor: default;
    pointer-events: none;
}

/* Sidebar Compromisso */
.ambc-compromisso {
    background: var(--light-blue);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #c8dae8;
}

.ambc-compromisso h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 16px;
    letter-spacing: .02em;
}

.ambc-compromisso p {
    font-size: 14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0 0 12px;
}

.ambc-compromisso__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 8px;
    border: 1px solid #dde6ee;
}

.ambc-compromisso__feature svg { flex-shrink: 0; }

.ambc-compromisso__feature span {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

/* ── RESPONSIVO ─────────────────────────────────────────────── */

@media (max-width: 767px) {
    .ambc-navbar__inner {
        padding: 0 20px;
    }

    .ambc-navbar__links,
    .ambc-navbar__btn-gestao {
        display: none;
    }

    .ambc-navbar__toggle {
        display: flex;
    }

    .ambc-footer__inner {
        padding: 0 20px;
    }

    .ambc-footer__top {
        flex-direction: column;
        gap: 28px;
    }

    .ambc-footer__nav {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 20px;
    }

    .ambc-footer__bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    /* Hero mobile */
    .ambc-hero__inner {
        grid-template-columns: 1fr;
        min-height: unset;
        padding: 0 20px;
        gap: 40px;
    }

    .ambc-hero__title { font-size: 34px; }

    .ambc-hero__img { height: 240px; }

    .ambc-hero__card {
        position: static;
        margin-top: 16px;
        max-width: 100%;
    }

    /* Destaques mobile */
    .ambc-destaques__grid {
        grid-template-columns: 1fr;
    }

    .ambc-section__inner { padding: 0 20px; }

    /* Social mobile */
    .ambc-social__inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 24px;
    }

    .ambc-insta-btn--desktop { display: none; }

    .ambc-insta-btn--mobile {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }

    /* Ata item mobile */
    .ambc-ata-item {
        flex-wrap: wrap;
    }

    .ambc-ata-item__action {
        width: 100%;
    }

    /* Notícias mobile */
    .ambc-not-h1 { font-size: 32px; }

    .ambc-not-header { padding: 32px 20px 16px; }

    .ambc-not-body {
        padding: 32px 20px 48px;
    }

    .ambc-not-layout {
        grid-template-columns: 1fr;
    }

    .ambc-not-feat-img { height: 200px; }

    .ambc-not-small-grid {
        grid-template-columns: 1fr;
    }

    /* Atas mobile */
    .ambc-atas-header { padding: 32px 20px 24px; }
    .ambc-atas-header h1 { font-size: 32px; }
    .ambc-atas-body { padding: 28px 20px 48px; }

    .ambc-atas-layout {
        grid-template-columns: 1fr;
    }

    .ambc-atas-thead,
    .ambc-ata-row {
        grid-template-columns: 1fr 100px;
    }

    .ambc-atas-thead span:nth-child(2),
    .ambc-atas-thead span:nth-child(3),
    .ambc-ata-row > .ambc-ata-date,
    .ambc-ata-row > div:nth-child(4) {
        display: none;
    }

    .ambc-ata-actions { justify-content: flex-start; }

    .ambc-pdf-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Mural mobile */
    .ambc-mural-header h1 { font-size: 28px; }

    .ambc-mural-body__inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .ambc-mural-sidebar {
        order: 2;
    }

    .ambc-mural-main {
        order: 1;
    }

    .ambc-aviso-featured {
        grid-template-columns: 1fr;
    }

    .ambc-aviso-featured__img {
        min-height: 180px;
    }

    .ambc-avisos-grid {
        grid-template-columns: 1fr;
    }

    .ambc-mural-header__inner {
        padding: 0 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .ambc-hero__title { font-size: 40px; }

    .ambc-destaques__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ambc-destaques__grid .ambc-cal-card {
        grid-column: 1 / -1;
    }

    .ambc-social__inner {
        grid-template-columns: 1fr;
    }

    /* Notícias — reduz padding excessivo de 80px */
    .ambc-not-header { padding-left: 40px; padding-right: 40px; }
    .ambc-not-body   { padding-left: 40px; padding-right: 40px; }
    .ambc-not-layout { grid-template-columns: 1fr 260px; gap: 32px; }

    /* Atas — reduz padding excessivo de 80px */
    .ambc-atas-header { padding-left: 40px; padding-right: 40px; }
    .ambc-atas-body   { padding-left: 40px; padding-right: 40px; }
    .ambc-atas-layout { grid-template-columns: 1fr 220px; gap: 32px; }

    /* Tabela de atas — colunas menores em tablet */
    .ambc-atas-thead,
    .ambc-ata-row {
        grid-template-columns: 1fr 90px 110px 130px;
    }

    /* Mural — ajusta gap */
    .ambc-mural-body__inner { gap: 28px; }

    /* Aviso destaque — mantém 2 colunas mas reduz */
    .ambc-aviso-featured { grid-template-columns: 1fr 1fr; }
}

/* ── SINGLE AVISO ───────────────────────────────────────────── */

.ambc-single-aviso {
    background: var(--bg);
    min-height: calc(100vh - 72px);
    padding: 48px 0 80px;
}

.ambc-single-aviso__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.ambc-single-aviso__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color .15s;
    font-family: 'Sora', sans-serif;
}

.ambc-single-aviso__back:hover { color: var(--navy); }

.ambc-single-aviso__card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #dde6ee;
    overflow: hidden;
}

.ambc-single-aviso__header {
    padding: 36px 40px 28px;
    border-bottom: 1px solid #edf2f7;
}

.ambc-single-aviso__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ambc-single-aviso__title {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1.25;
    margin: 0 0 20px;
}

.ambc-single-aviso__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ambc-single-aviso__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.ambc-single-aviso__meta-item svg { flex-shrink: 0; }

.ambc-single-aviso__meta-item--exp {
    background: #fef3e2;
    color: #d4850a;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.ambc-single-aviso__content {
    padding: 36px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}

.ambc-single-aviso__content p { margin-bottom: 1.2em; }
.ambc-single-aviso__content p:last-child { margin-bottom: 0; }

.ambc-single-aviso__content h2,
.ambc-single-aviso__content h3 {
    font-family: 'Sora', sans-serif;
    color: var(--navy);
    font-weight: 700;
    margin: 1.6em 0 .6em;
}

.ambc-single-aviso__content ul,
.ambc-single-aviso__content ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}

.ambc-single-aviso__content li { margin-bottom: .4em; }

/* ── SINGLE ATA ─────────────────────────────────────────────── */

.ambc-single-ata__pdf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 40px;
    background: #f4f8ff;
    border-bottom: 1px solid #dde6ee;
}

.ambc-single-ata__pdf-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ambc-single-ata__pdf-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    margin: 0 0 2px;
}

.ambc-single-ata__pdf-sub {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.ambc-single-ata__pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s;
}

.ambc-single-ata__pdf-btn:hover { opacity: .88; color: #fff; }

@media (max-width: 600px) {
    .ambc-single-ata__pdf { flex-direction: column; align-items: flex-start; padding: 20px; }
    .ambc-single-ata__pdf-btn { width: 100%; justify-content: center; }
}

/* ── EXTRA PEQUENO (< 480px) ────────────────────────────────── */
@media (max-width: 480px) {
    /* Hero */
    .ambc-hero__title  { font-size: 28px; }
    .ambc-hero__desc   { font-size: 14px; }
    .ambc-hero__btns   { flex-direction: column; }
    .ambc-hero__btns .ambc-btn { width: 100%; justify-content: center; }

    /* Seções */
    .ambc-section__inner { padding: 0 16px; }

    /* Notícias */
    .ambc-not-h1      { font-size: 26px; }
    .ambc-not-header  { padding: 28px 16px 12px; }
    .ambc-not-body    { padding: 24px 16px 40px; }

    /* Atas */
    .ambc-atas-header h1 { font-size: 26px; }
    .ambc-atas-header    { padding: 28px 16px 20px; }
    .ambc-atas-body      { padding: 24px 16px 40px; }

    /* Filtros atas — empilha verticalmente */
    .ambc-atas-filters__form { flex-direction: column; align-items: stretch; }
    .ambc-filter-sel         { width: 100%; }

    /* Mural */
    .ambc-mural-header h1       { font-size: 24px; }
    .ambc-mural-header          { padding: 28px 0 24px; }
    .ambc-mural-header__inner   { padding: 0 16px; }
    .ambc-mural-body__inner     { padding: 0 16px; }

    /* Cards aviso */
    .ambc-aviso-featured__body  { padding: 20px 16px; }
    .ambc-aviso-featured__footer { flex-direction: column; align-items: flex-start; gap: 10px; }

    /* Footer */
    .ambc-footer__inner { padding: 0 16px; }
    .ambc-footer__bottom { padding: 16px 0; }

    /* Navbar */
    .ambc-navbar__inner { padding: 0 16px; }

    /* Paginação */
    .ambc-pg-btn { width: 32px; height: 32px; font-size: 12px; }
}

@media (max-width: 767px) {
    .ambc-single-aviso { padding: 32px 0 60px; }
    .ambc-single-aviso__inner { padding: 0 20px; }
    .ambc-single-aviso__header { padding: 24px 20px 20px; }
    .ambc-single-aviso__content { padding: 24px 20px; }
    .ambc-single-aviso__title { font-size: 22px; }
    .ambc-single-aviso__meta { gap: 12px; }
    .ambc-single-not__inner { padding: 0 20px; }
    .ambc-single-not__header { padding: 24px 20px 20px; }
    .ambc-single-not__title { font-size: 22px; }
}

/* ── SIDEBAR NOTÍCIAS — busca, newsletter, categorias ───────── */

.ambc-not-search {
    position: relative;
    display: flex;
    align-items: center;
}

.ambc-not-search input[type="search"] {
    width: 100%;
    padding: 10px 40px 10px 14px;
    border: 1.5px solid #dde6ee;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Sora', sans-serif;
    color: var(--text);
    outline: none;
    background: var(--white);
    transition: border-color .15s;
}

.ambc-not-search input[type="search"]:focus { border-color: var(--accent); }

.ambc-not-search button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    display: flex;
    padding: 0;
}

.ambc-not-newsletter {
    background: var(--navy);
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 20px;
}

.ambc-not-newsletter h3 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.01em;
}

.ambc-not-newsletter p {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0 0 16px;
}

.ambc-not-newsletter__input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-family: 'Sora', sans-serif;
    margin-bottom: 10px;
    outline: none;
    display: block;
}

.ambc-not-newsletter__btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    transition: all .15s;
}

.ambc-not-newsletter__btn:hover { background: #fff; color: var(--navy); }

.ambc-not-cat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 13px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: color .15s;
}

.ambc-not-cat-row:last-child { border-bottom: none; }
.ambc-not-cat-row:hover { color: var(--navy); }

.ambc-not-cat-count {
    font-size: 11px;
    font-weight: 700;
    background: var(--light-blue);
    color: var(--accent);
    border-radius: 999px;
    padding: 2px 8px;
}

/* ── SINGLE NOTÍCIA ─────────────────────────────────────────── */

.ambc-single-not {
    background: var(--bg);
    min-height: calc(100vh - 72px);
    padding: 48px 0 80px;
}

.ambc-single-not__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}

.ambc-single-not__card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #dde6ee;
    overflow: hidden;
}

.ambc-single-not__img {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.ambc-single-not__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambc-single-not__header {
    padding: 36px 40px 28px;
    border-bottom: 1px solid #edf2f7;
}

.ambc-single-not__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin: 10px 0 14px;
}

.ambc-single-not__resumo {
    font-size: 16px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0 0 20px;
}

.ambc-single-not__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
