/* ═══════════════════════════════════════════════════════════════════
   GC PMLONTRA — Prefeitura Municipal de Lontra
   PNTP Diamante · WCAG 2.1 AA · LGPD Lei 13.709/2018
   ═══════════════════════════════════════════════════════════════════ */
:root {
    --wine:       #7B1A1A;
    --wine-dark:  #5C1212;
    --wine-light: #9B2C2C;
    --gold:       #C8A000;
    --gold-light: #F0C030;
    --blue:       #1B6CB0;
    --text:       #1A1A2E;
    --muted:      #64748B;
    --bg:         #F8F5F5;
    --white:      #FFFFFF;
    --border:     rgba(123,26,26,.12);
    --header-h:   70px;
    --navbar-h:   46px;
    font-family: 'Segoe UI', Inter, system-ui, sans-serif;
}

/* ── Reset / Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg); color: var(--text);
    line-height: 1.6; min-height: 100vh;
    padding-top: calc(var(--header-h) + var(--navbar-h));
    padding-bottom: 46px;
    display: flex; flex-direction: column;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Acessibilidade ───────────────────────────────────────────────── */
.skip-link {
    position: absolute; top: 0; left: 0; z-index: 9999;
    padding: .5rem 1.2rem; background: var(--gold); color: #000;
    font-weight: 700; transform: translateY(-130%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
body.alto-contraste { background: #000 !important; color: #fff !important; }
body.alto-contraste a { color: #ff0 !important; }
body.alto-contraste .pml-header,
body.alto-contraste .pml-navbar,
body.alto-contraste .pml-footer { background: #111 !important; }
body.fundo-amarelo { background: #ff0 !important; color: #000 !important; }
body.fundo-amarelo .pml-header,
body.fundo-amarelo .pml-navbar { background: #e6b800 !important; color: #000 !important; }

/* ── Header ───────────────────────────────────────────────────────── */
.pml-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: var(--header-h); background: var(--wine);
    border-bottom: 3px solid var(--gold);
    display: flex; align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.22);
}
.pml-header .container { display: flex; align-items: center; gap: 1rem; width: 100%; }
.pml-brand { display: flex; align-items: center; gap: .8rem; flex: 1; }
.pml-brasao {
    height: 50px; width: 50px; object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); flex-shrink: 0;
}
.pml-brand-text { display: flex; flex-direction: column; }
.pml-brand-name {
    font-size: 1rem; font-weight: 800; color: #fff;
    letter-spacing: .04em; text-transform: uppercase; line-height: 1.1;
}
.pml-brand-slogan { font-size: .72rem; color: rgba(255,255,255,.75); letter-spacing: .02em; }
.pml-header-actions { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.pml-hbtn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.1); color: #fff; font-size: .95rem;
    cursor: pointer; transition: background .15s; text-decoration: none;
}
.pml-hbtn:hover, .pml-hbtn:focus {
    background: rgba(255,255,255,.22); outline: 2px solid rgba(255,255,255,.35);
}
.pml-hbtn.admin { background: rgba(255,255,255,.92); color: var(--wine); }
.pml-hbtn.admin:hover { background: #fff; }
.pml-hbtn.login { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.pml-hbtn.login:hover { background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.7); }

/* Accessibility panel */
.a11y-wrap { position: relative; }
.a11y-wrap summary { list-style: none; }
.a11y-wrap summary::-webkit-details-marker { display: none; }
.a11y-panel {
    display: none; position: absolute; top: calc(100% + .5rem); right: 0;
    width: 200px; padding: .65rem; border-radius: .8rem; background: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,.14); border: 1px solid rgba(148,163,184,.2);
    flex-direction: column; gap: .35rem; z-index: 300;
}
details[open] .a11y-panel { display: flex; }
.a11y-panel .a11y-row { display: flex; gap: .25rem; }
.a11y-panel button {
    flex: 1; padding: .3rem .4rem; border-radius: .5rem;
    border: 1px solid #e2e8f0; background: var(--wine); color: #fff;
    font-size: .8rem; font-weight: 700; cursor: pointer;
}
.a11y-panel button:hover { background: var(--wine-dark); }
.a11y-panel .btn-normal   { background: #e2e8f0; color: #1a2130; }
.a11y-panel .btn-contraste { background: #0f172a; }
.a11y-panel .btn-amarelo  { background: #e6b800; color: #000; }

/* ── Navbar ───────────────────────────────────────────────────────── */
.pml-navbar {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 190;
    height: var(--navbar-h); background: var(--wine-dark);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.pml-navbar .container { height: 100%; display: flex; align-items: center; gap: .15rem; }
.pml-nav-link {
    display: inline-flex; align-items: center; gap: .3rem;
    padding: .3rem .85rem; border-radius: .4rem;
    color: rgba(255,255,255,.8); font-size: .86rem; font-weight: 500;
    transition: background .15s, color .15s; white-space: nowrap;
}
.pml-nav-link:hover, .pml-nav-link:focus, .pml-nav-link.active {
    background: rgba(255,255,255,.14); color: #fff;
}
.pml-nav-link.active { border-bottom: 2px solid var(--gold); }
.pml-nav-link i { font-size: .85rem; }
.pml-nav-mobile-btn {
    display: none; background: none; border: none; color: #fff;
    font-size: 1.5rem; cursor: pointer; padding: .25rem; margin-left: auto;
    width: 40px; height: 40px; align-items: center; justify-content: center;
    border-radius: .4rem; transition: background .15s; flex-shrink: 0;
}
.pml-nav-mobile-btn:hover { background: rgba(255,255,255,.12); }
.pml-nav-mobile-menu { display: none; }

/* ── Nav Desktop: dropdown ────────────────────────────────────────── */
.pml-nav-desktop {
    overflow: visible !important;
    display: flex; align-items: center; gap: .15rem; flex: 1; min-width: 0;
}
.pml-nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.5); z-index: 184;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.pml-nav-overlay.open { display: block; }
.pml-dd-parent { position: relative; display: inline-flex; }
button.pml-dd-toggle {
    background: none; border: none; cursor: pointer;
    font-family: inherit; line-height: inherit;
}
.pml-dd-caret { font-size: .6rem; transition: transform .2s; pointer-events: none; }
.pml-dd-parent:hover .pml-dd-caret,
.pml-dd-parent:focus-within .pml-dd-caret { transform: rotate(180deg); }
.pml-dd {
    position: absolute; top: calc(100% + 3px); left: 0;
    list-style: none; margin: 0; padding: .35rem 0;
    background: #fff; min-width: 240px; border-radius: .5rem;
    box-shadow: 0 10px 32px rgba(0,0,0,.16);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .18s, transform .18s, visibility .18s; z-index: 2000;
}
.pml-dd-parent:hover > .pml-dd,
.pml-dd-parent:focus-within > .pml-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.pml-dd > li { position: relative; }
.pml-dd > li > a {
    display: flex; align-items: center; gap: .5rem;
    padding: .46rem 1.1rem; font-size: .82rem; color: #374151;
    text-decoration: none; white-space: nowrap;
    transition: background .14s, color .14s;
}
.pml-dd > li > a:hover { background: #f1f5f9; color: var(--wine); }
button.pml-sub-toggle {
    background: none; border: none; cursor: pointer; font-family: inherit;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: .46rem 1.1rem; font-size: .82rem; color: #374151;
    gap: .5rem; transition: background .14s, color .14s; box-sizing: border-box;
}
button.pml-sub-toggle:hover { background: #f1f5f9; color: var(--wine); }
.pml-sub-inner { display: flex; align-items: center; gap: .5rem; }
.pml-sub-caret { font-size: .6rem; pointer-events: none; }
.pml-sub-dd {
    position: absolute; top: 0; left: 100%;
    list-style: none; margin: 0; padding: .35rem 0;
    background: #fff; min-width: 210px; border-radius: .5rem;
    box-shadow: 0 10px 32px rgba(0,0,0,.16);
    opacity: 0; visibility: hidden; transform: translateX(6px);
    transition: opacity .18s, transform .18s, visibility .18s; z-index: 2001;
}
.pml-sub-parent:hover > .pml-sub-dd,
.pml-sub-parent:focus-within > .pml-sub-dd { opacity: 1; visibility: visible; transform: translateX(0); }
.pml-sub-dd > li > a {
    display: flex; align-items: center; gap: .5rem;
    padding: .46rem 1.1rem; font-size: .82rem; color: #374151;
    text-decoration: none; white-space: nowrap;
    transition: background .14s, color .14s;
}
.pml-sub-dd > li > a:hover { background: #f1f5f9; color: var(--wine); }

/* ── Mobile Dropdown (acordeão) ───────────────────────────────────── */
#pml-nav-mobile .m-dd { border-top: 1px solid rgba(255,255,255,.1); }
#pml-nav-mobile .m-dd-toggle {
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: .85rem 1.2rem; font-size: .9rem; font-weight: 500;
    color: inherit; font-family: inherit; gap: .5rem; box-sizing: border-box;
}
#pml-nav-mobile .m-dd-panel {
    overflow: hidden; max-height: 0;
    background: rgba(0,0,0,.12);
    transition: max-height .3s ease;
}
#pml-nav-mobile .m-dd-panel.open { max-height: 600px; padding: .2rem 0; }
#pml-nav-mobile .m-dd-panel > a {
    display: block; padding: .65rem 1.8rem; font-size: .87rem;
    color: inherit; text-decoration: none; opacity: .92;
}
#pml-nav-mobile .m-dd-panel > a:hover { opacity: 1; background: rgba(255,255,255,.08); }
#pml-nav-mobile .m-sub { border-top: 1px solid rgba(255,255,255,.08); }
#pml-nav-mobile .m-sub-toggle {
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: .65rem 1.8rem; font-size: .87rem;
    color: inherit; font-family: inherit; opacity: .92; gap: .5rem; box-sizing: border-box;
}
#pml-nav-mobile .m-sub-panel {
    overflow: hidden; max-height: 0;
    background: rgba(0,0,0,.1);
    transition: max-height .3s ease;
}
#pml-nav-mobile .m-sub-panel.open { max-height: 300px; }
#pml-nav-mobile .m-sub-panel > a {
    display: block; padding: .6rem 2.6rem; font-size: .84rem;
    color: inherit; text-decoration: none; opacity: .88;
}
#pml-nav-mobile .m-sub-panel > a:hover { opacity: 1; background: rgba(255,255,255,.08); }
#pml-nav-mobile .m-caret { font-size: .6rem; transition: transform .2s; pointer-events: none; }

/* ── Container ────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Section Header ───────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 2.25rem; }
.section-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .25rem .85rem; border-radius: 2rem;
    background: rgba(123,26,26,.09); color: var(--wine);
    font-size: .8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: .65rem;
}
.section-title { font-size: clamp(1.35rem,2.5vw,1.9rem); font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.section-subtitle { color: var(--muted); font-size: .95rem; max-width: 55ch; margin: 0 auto; }
.section-divider { width: 50px; height: 4px; background: var(--gold); border-radius: 2px; margin: .65rem auto 0; }

/* ── Hero Slider ──────────────────────────────────────────────────── */
.pml-hero { position: relative; background: #123D1B; overflow: hidden; height: 420px; }
.pml-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity .6s ease; display: flex; align-items: center;
}
.pml-slide.active { opacity: 1; }
.pml-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pml-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(18,61,27,.85) 0%, rgba(18,61,27,.45) 60%, transparent 100%);
}
.pml-slide-content { position: relative; z-index: 1; padding: 2.5rem 3rem; max-width: 560px; }
.pml-slide-title { font-size: clamp(1.4rem,3vw,2.3rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: .7rem; }
.pml-slide-desc { font-size: .96rem; color: rgba(255,255,255,.87); margin-bottom: 1.2rem; line-height: 1.7; }
.pml-slide-btn {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .6rem 1.5rem; border-radius: 2rem;
    background: var(--gold); color: #000; font-weight: 700; font-size: .88rem;
    transition: background .15s, transform .15s;
}
.pml-slide-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.pml-slide-dots {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: .45rem; z-index: 2;
}
.pml-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.38); border: none; cursor: pointer;
    transition: background .2s, width .2s;
}
.pml-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.pml-hero-placeholder {
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem; height: 100%; color: rgba(255,255,255,.6);
}
.pml-hero-placeholder h2 { font-size: 1.8rem; color: #fff; }

/* ── Quick Access ─────────────────────────────────────────────────── */
.pml-quick { padding: 2rem 0; background: #fff; border-bottom: 1px solid var(--border); }
.quick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.quick-item {
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    padding: 1.2rem .75rem; border-radius: .85rem;
    border: 1.5px solid var(--border); background: #fff;
    text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s; cursor: pointer;
}
.quick-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(123,26,26,.12); border-color: var(--wine); }
.quick-item-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: #fff; flex-shrink: 0;
}
.quick-item-name { font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.3; }

/* ── Serviços ─────────────────────────────────────────────────────── */
.pml-servicos { padding: 3rem 0; background: var(--bg); }
.servicos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 1.2rem; }
.card-servico {
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
    padding: 1.4rem 1rem; border-radius: 1rem;
    border: 1.5px solid var(--border); background: #fff;
    text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card-servico:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(123,26,26,.14); border-color: var(--wine); }
.card-servico-icon {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.card-servico-name { font-size: .86rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.card-servico-desc { font-size: .76rem; color: var(--muted); line-height: 1.4; }

/* ── Notícias ─────────────────────────────────────────────────────── */
.pml-noticias { padding: 3rem 0; background: #fff; }
.noticias-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.noticia-card {
    background: #fff; border-radius: 1rem; overflow: hidden;
    border: 1px solid rgba(148,163,184,.14); box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.noticia-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.1); }
.noticia-img { height: 175px; background: var(--wine-dark) center/cover no-repeat; }
.noticia-body { padding: 1.15rem; flex: 1; display: flex; flex-direction: column; gap: .45rem; }
.noticia-cat {
    display: inline-flex; padding: .18rem .65rem; border-radius: 2rem;
    background: rgba(123,26,26,.09); color: var(--wine);
    font-size: .73rem; font-weight: 700; text-transform: uppercase; width: fit-content;
}
.noticia-title { font-size: .94rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.noticia-title:hover { color: var(--wine); }
.noticia-meta {
    margin-top: auto; display: flex; align-items: center;
    gap: .45rem; font-size: .76rem; color: var(--muted);
}
.btn-more {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .6rem 1.6rem; border-radius: 2rem;
    background: var(--wine); color: #fff; font-weight: 700; font-size: .88rem;
    transition: background .15s, transform .15s;
}
.btn-more:hover { background: var(--wine-light); transform: translateY(-2px); }
.noticias-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; margin-top: 1.5rem; }

/* ── Transparência PNTP ───────────────────────────────────────────── */
.pml-transp-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #123D1B 0%, #1A5C2A 100%);
    color: #fff;
}
.transp-hero-inner { display: flex; align-items: center; gap: 3rem; }
.transp-hero-text { flex: 1; }
.transp-hero-text h1 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; margin-bottom: .75rem; }
.transp-hero-text p { color: rgba(255,255,255,.84); line-height: 1.75; max-width: 58ch; margin-bottom: 1.25rem; }
.transp-btns { display: flex; flex-wrap: wrap; gap: .7rem; }
.btn-transp {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .6rem 1.4rem; border-radius: 2rem; font-weight: 700; font-size: .86rem;
    transition: background .15s, transform .15s;
}
.btn-transp.primary { background: var(--gold); color: #000; }
.btn-transp.primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-transp.outline { border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn-transp.outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.diamante-badge {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
    gap: .65rem; padding: 1.6rem 2.2rem; border-radius: 1.25rem;
    background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); text-align: center;
}
.diamante-icon { font-size: 3.2rem; color: var(--gold); }
.diamante-badge strong { font-size: .95rem; color: #fff; }
.diamante-badge span   { font-size: .75rem; color: rgba(255,255,255,.68); }

.pml-pntp { padding: 3rem 0; background: var(--bg); }
.pntp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.pntp-item {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1.35rem;
    border-radius: 1rem; background: #fff; border: 1.5px solid var(--border);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pntp-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(123,26,26,.12); border-color: var(--wine); }
.pntp-item-icon {
    width: 44px; height: 44px; border-radius: .65rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: #fff; flex-shrink: 0; background: var(--wine);
}
.pntp-item-body { flex: 1; }
.pntp-item-title { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.pntp-item-desc  { font-size: .78rem; color: var(--muted); line-height: 1.45; }
.pntp-item-link  { font-size: .78rem; font-weight: 700; color: var(--wine); display: inline-flex; align-items: center; gap: .25rem; margin-top: .4rem; }
.pntp-item-link:hover { color: var(--wine-light); }

/* ── Links Úteis ──────────────────────────────────────────────────── */
.pml-links { padding: 3rem 0; background: #fff; }
.links-group { margin-bottom: 2rem; }
.links-group-title {
    font-size: .83rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .06em; color: var(--wine); margin-bottom: .85rem;
    padding-bottom: .35rem; border-bottom: 2px solid var(--border);
}
.links-grid { display: flex; flex-wrap: wrap; gap: .55rem; }
.link-util-card {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .45rem .95rem; border-radius: 2rem;
    border: 1.5px solid var(--border); background: var(--bg);
    font-size: .83rem; font-weight: 600; color: var(--text);
    transition: background .15s, border-color .15s, transform .15s;
}
.link-util-card i { font-size: .85rem; color: var(--wine); }
.link-util-card:hover { background: var(--wine); color: #fff; border-color: var(--wine); transform: translateY(-2px); }
.link-util-card:hover i { color: var(--gold); }

/* ── Page Hero ────────────────────────────────────────────────────── */
.page-hero {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #123D1B 0%, #1A5C2A 100%);
    color: #fff;
}
.page-hero h1 { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; margin-bottom: .4rem; }
.page-hero p  { color: rgba(255,255,255,.78); font-size: .95rem; }
.page-breadcrumb {
    display: flex; align-items: center; gap: .4rem;
    font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: .75rem;
}
.page-breadcrumb a { color: rgba(255,255,255,.75); }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb i { font-size: .7rem; }

/* ── Contato ──────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; margin-top: 2rem; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem; border-radius: .85rem;
    background: var(--bg); border: 1px solid var(--border); margin-bottom: 1rem;
}
.contact-info-icon {
    width: 42px; height: 42px; border-radius: .6rem;
    background: var(--wine); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    color: var(--muted); letter-spacing: .04em; margin-bottom: .2rem;
}
.contact-info-val { font-size: .9rem; color: var(--text); font-weight: 500; }
.contact-form { background: #fff; border: 1.5px solid var(--border); border-radius: 1rem; padding: 2rem; }
.contact-form h2 { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: .6rem .9rem;
    border: 1.5px solid #e2e8f0; border-radius: .6rem;
    font-size: .9rem; font-family: inherit; color: var(--text);
    outline: none; transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--wine); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
    width: 100%; padding: .7rem; border-radius: .6rem;
    background: var(--wine); color: #fff; font-weight: 700; font-size: .95rem;
    border: none; cursor: pointer; transition: background .15s;
}
.btn-submit:hover { background: var(--wine-light); }

/* ── LGPD / Página de conteúdo ────────────────────────────────────── */
.lgpd-content { padding: 2.5rem 0; background: var(--white); }
.lgpd-body {
    max-width: 860px; margin: 0 auto;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 1rem; padding: 2.5rem;
}
.lgpd-body h2 { font-size: 1.15rem; font-weight: 800; color: var(--wine); margin: 1.5rem 0 .6rem; }
.lgpd-body h2:first-child { margin-top: 0; }
.lgpd-body p  { font-size: .9rem; color: var(--text); line-height: 1.8; margin-bottom: .85rem; }
.lgpd-body ul { padding-left: 1.4rem; margin-bottom: .85rem; }
.lgpd-body ul li { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: .35rem; }
.lgpd-body a  { color: var(--wine); text-decoration: underline; }
.lgpd-meta {
    display: flex; flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: var(--muted);
    padding: 1rem 0 0; border-top: 1px solid var(--border); margin-top: 2rem;
}
.lgpd-meta span { display: inline-flex; align-items: center; gap: .3rem; }
.lgpd-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 1.2rem 0 .4rem; }
.lgpd-body ol { padding-left: 1.4rem; margin-bottom: .85rem; }
.lgpd-body ol li { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: .35rem; }
.lgpd-body strong { color: var(--dark); }
.lgpd-nav {
    display: flex; flex-wrap: wrap; gap: .5rem;
    margin-bottom: 1.5rem;
}
.lgpd-nav a {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .45rem .9rem; border-radius: 2rem;
    font-size: .82rem; font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--text); text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.lgpd-nav a:hover { background: var(--wine); color: #fff; border-color: var(--wine); }
.lgpd-nav a.active { background: var(--wine); color: #fff; border-color: var(--wine); }

/* ── Footer ───────────────────────────────────────────────────────── */
.pml-footer {
    background: var(--wine-dark);
    border-top: 3px solid var(--gold);
    padding: 0;
}
.pml-footer-top {
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.pml-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}
.pml-footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.pml-footer-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; flex-shrink: 0; }
.pml-footer-name { font-size: .95rem; font-weight: 700; color: #fff; }
.pml-footer-desc { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.5; margin-top: .15rem; }
.pml-footer-col-title {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--gold); margin-bottom: .75rem;
}
.pml-footer-links-list { display: flex; flex-direction: column; gap: .4rem; }
.pml-footer-links-list a {
    font-size: .8rem; color: rgba(255,255,255,.7);
    display: inline-flex; align-items: center; gap: .35rem; transition: color .15s;
}
.pml-footer-links-list a:hover { color: var(--gold); }
.pml-footer-bottom {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: var(--wine-dark);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -2px 8px rgba(0,0,0,.25);
    padding: .65rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .6rem;
}
.pml-footer-copy { font-size: .72rem; color: rgba(255,255,255,.45); }
.pml-footer-lgpd { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.pml-footer-lgpd a {
    font-size: .72rem; color: rgba(255,255,255,.6);
    display: inline-flex; align-items: center; gap: .2rem;
    transition: color .15s; white-space: nowrap;
}
.pml-footer-lgpd a:hover { color: var(--gold); }
.pml-footer-lgpd span { color: rgba(255,255,255,.2); }

/* ── Cookie Banner ────────────────────────────────────────────────── */
.gc-cookie-banner {
    position: fixed; bottom: 46px; left: 0; right: 0; z-index: 9990;
    background: rgba(92,18,18,.97); color: #fff;
    border-top: 3px solid var(--gold);
    padding: 1.1rem 0;
    transform: translateY(100%);
    transition: transform .35s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.gc-cookie-banner.visible { transform: translateY(0); }
.gc-cookie-inner {
    display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}
.gc-cookie-text { flex: 1; min-width: 260px; }
.gc-cookie-text p { font-size: .82rem; line-height: 1.55; color: rgba(255,255,255,.9); margin: 0; }
.gc-cookie-text a { color: var(--gold); text-decoration: underline; }
.gc-cookie-actions { display: flex; gap: .5rem; flex-shrink: 0; flex-wrap: wrap; }
.gc-btn-accept {
    background: var(--gold); color: #000; border: none; border-radius: .45rem;
    padding: .5rem 1.2rem; font-size: .82rem; font-weight: 700; cursor: pointer;
    transition: background .15s; white-space: nowrap;
}
.gc-btn-accept:hover { background: var(--gold-light); }
.gc-btn-manage {
    background: transparent; color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.3); border-radius: .45rem;
    padding: .5rem 1rem; font-size: .82rem; cursor: pointer;
    transition: background .15s; white-space: nowrap;
}
.gc-btn-manage:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* nav: hamburger substitui links desktop */
    .pml-nav-desktop { display: none; }
    .pml-nav-mobile-btn { display: flex; }
    .pml-nav-mobile-menu {
        display: flex; flex-direction: column; gap: .2rem;
        position: fixed;
        top: calc(var(--header-h) + var(--navbar-h));
        left: 0; right: 0;
        background: var(--wine-dark); color: #fff;
        border-bottom: 2px solid var(--gold);
        z-index: 185;
        overflow: hidden; overflow-y: auto;
        max-height: 0; padding: 0;
        opacity: 0; visibility: hidden;
        transition: max-height .35s ease, opacity .25s, visibility .25s, padding .3s;
        -webkit-overflow-scrolling: touch;
    }
    .pml-nav-mobile-menu.open {
        max-height: calc(100vh - var(--header-h) - var(--navbar-h));
        max-height: calc(100dvh - var(--header-h) - var(--navbar-h));
        opacity: 1; visibility: visible; padding: .85rem;
    }
    /* conteúdo */
    .noticias-grid { grid-template-columns: repeat(2, 1fr); }
    .transp-hero-inner { flex-direction: column; gap: 1.5rem; }
    .diamante-badge { width: 100%; flex-direction: row; justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .pml-footer-grid { grid-template-columns: 1fr 1fr; }
    .pml-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    :root { --header-h: 58px; --navbar-h: 44px; }
    .pml-brand-slogan { display: none; }
    .pml-brasao { height: 40px; width: 40px; }
    .pml-brand-name { font-size: .88rem; }
    .noticias-grid { grid-template-columns: 1fr; }
    .pml-hero { height: 300px; }
    .pml-slide-content { padding: 1.5rem; }
    .pntp-grid { grid-template-columns: 1fr; }
    .quick-grid { grid-template-columns: repeat(3, 1fr); }
    .pml-footer-grid { grid-template-columns: 1fr; }
    .pml-footer-bottom { flex-direction: column; align-items: flex-start; padding: .5rem 1rem; gap: .3rem; }
    body { padding-bottom: 72px; }
    .gc-cookie-banner { bottom: 72px; }
    .lgpd-body { padding: 1.5rem; }
}
