/* ============================================================
   LUZSIMPLES — Estilos do site
   Tipografia: El Messiri (títulos) + Karla (texto), fontes variáveis locais
   ============================================================ */
@font-face { font-family: 'El Messiri'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('../fonts/el-messiri-latin.woff2') format('woff2'); }
@font-face { font-family: 'Karla'; font-style: normal; font-weight: 200 800; font-display: swap; src: url('../fonts/karla-latin.woff2') format('woff2'); }
@font-face { font-family: 'Karla'; font-style: italic; font-weight: 200 800; font-display: swap; src: url('../fonts/karla-italic-latin.woff2') format('woff2'); }

:root {
    --ls-dark: #0e0700;
    --ls-ink: #111111;
    --ls-text: #6b6b6b;
    --ls-line: #e4e4e4;
    --ls-light: #f5f5f5;
    --ls-radius: 14px;
    --font-head: 'El Messiri', Georgia, serif;
    --font-body: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--ls-text); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--ls-dark); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
a { color: inherit; text-decoration: none; transition: color .2s, background-color .2s, border-color .2s; }
a:hover { color: var(--ls-dark); }
p { margin: 0 0 14px; }
img { max-width: 100%; height: auto; }
strong { color: var(--ls-ink); font-weight: 700; }
address { font-style: normal; }
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: -.125em; flex-shrink: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: 16px; top: -80px; z-index: 3000; background: #fff; color: var(--ls-dark); padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 16px; }
main:focus { outline: none; }
.bg-img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; z-index: -2; }

.container-xl { max-width: 1240px; padding-left: 24px; padding-right: 24px; }
.titulo-xl { font-size: 48px; font-weight: 600; }
.titulo-lg { font-size: 40px; font-weight: 600; }
.titulo-md { font-size: 30px; font-weight: 600; }
.titulo-sm { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--ls-ink); }
.texto-sm { font-size: 14px; }
.texto-escuro { color: var(--ls-ink); }

/* Animação de entrada só com CSS (sem atrasar a primeira pintura) */
/* Só transformação (sem opacidade): o texto mantém sempre o contraste total */
@keyframes ls-reveal { from { transform: translateY(28px); } to { transform: none; } }
@media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
        .reveal { animation: ls-reveal linear both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
    }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ============================================================ Header */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; padding: 24px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 30px; width: auto; display: block; }
.nav-pill { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 5px; border: 1px solid rgba(255, 255, 255, .38); border-radius: 999px; }
.nav-pill > li { position: relative; }
.nav-pill > li::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-pill .nav-link { display: flex; align-items: center; gap: 9px; padding: 10px 24px; border-radius: 999px; color: #fff; font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.nav-pill .nav-link .ico { font-size: 10px; }
.nav-pill > li.is-active > .nav-link, .nav-pill > li:hover > .nav-link, .nav-pill > li:focus-within > .nav-link { background: rgba(255, 255, 255, .22); color: #fff; }
.nav-pill .dropdown-menu { display: none; position: absolute; top: calc(100% + 12px); left: 0; z-index: 60; min-width: 280px; margin: 0; padding: 10px; list-style: none; background: #fff; border: 0; border-radius: 12px; box-shadow: 0 24px 60px rgba(0, 0, 0, .18); }
.nav-pill > li:hover > .dropdown-menu, .nav-pill > li:focus-within > .dropdown-menu { display: block; }
.nav-pill .dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--ls-dark); font-size: 14px; font-weight: 500; }
.nav-pill .dropdown-menu a:hover, .nav-pill .dropdown-menu a[aria-current="page"] { background: var(--ls-light); }
.nav-toggle { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .15); border: 1px solid rgba(255, 255, 255, .4); color: #fff; border-radius: 999px; font-size: 22px; }

/* Menu móvel (<dialog>) */
.menu-movel { position: fixed; inset: 0 0 0 auto; margin: 0; width: min(340px, 88vw); max-width: 88vw; height: 100dvh; max-height: none; padding: 0; border: 0; background: var(--ls-dark); color: #fff; overflow-y: auto; }
.menu-movel::backdrop { background: rgba(0, 0, 0, .55); }
.menu-movel-topo { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; }
.menu-movel-topo img { height: 26px; width: auto; display: block; }
.menu-fechar { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); background: transparent; color: #fff; font-size: 16px; }
.menu-movel-corpo { padding: 0 24px 32px; }
.menu-movel-corpo .grupo { display: block; font-family: var(--font-head); font-size: 20px; color: #fff; margin: 18px 0 2px; padding: 0; }
.menu-movel-corpo a:not(.btn-ls):not(.grupo) { display: block; padding: 9px 0; color: rgba(255, 255, 255, .8); font-size: 15px; }
.menu-movel-corpo a[aria-current="page"], .menu-movel-corpo a:not(.btn-ls):hover { color: #fff; }
.menu-movel-corpo .btn-ls { margin-top: 26px; width: 100%; }

/* ============================================================ Botões */
.btn-ls { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 30px; border-radius: 999px; border: 1px solid #fff; background: #fff; color: var(--ls-dark); font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: all .2s; }
.btn-ls:hover { background: var(--ls-dark); color: #fff; border-color: var(--ls-dark); }
.btn-ls.is-dark { background: var(--ls-dark); color: #fff; border-color: var(--ls-dark); }
.btn-ls.is-dark:hover { background: #fff; color: var(--ls-dark); }
.btn-ls.is-contorno { background: transparent; color: var(--ls-dark); border-color: var(--ls-dark); }
.btn-ls.is-contorno:hover { background: var(--ls-dark); color: #fff; }

/* ============================================================ Heróis e faixas com imagem */
.home-hero, .page-hero, .cta-band { position: relative; isolation: isolate; overflow: hidden; background-color: var(--ls-dark); color: #fff; }
.home-hero::before, .page-hero::before, .cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; }
.home-hero { min-height: 720px; display: flex; align-items: center; padding: 150px 0 110px; }
.home-hero::before { background: linear-gradient(180deg, rgba(48, 24, 70, .55) 0%, rgba(14, 7, 0, .45) 100%); }
.hero-tag { display: inline-block; padding: 9px 18px; border-radius: 999px; background: rgba(255, 255, 255, .2); font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.home-hero h1 { font-size: 72px; font-weight: 500; color: #fff; max-width: 640px; margin: 0 0 40px; }
.page-hero { min-height: 420px; display: flex; align-items: flex-end; padding: 150px 0 64px; }
.page-hero::before { background: linear-gradient(180deg, rgba(14, 7, 0, .62) 0%, rgba(14, 7, 0, .45) 100%); }
.page-hero h1 { color: #fff; font-size: 56px; font-weight: 500; max-width: 780px; margin: 0; }
.crumb { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; background: rgba(0, 0, 0, .35); font-size: 12px; font-weight: 500; margin-bottom: 22px; }
.crumb a:hover { color: #fff; text-decoration: underline; }
.crumb-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.cta-band { padding: 110px 0; text-align: center; }
.cta-band::before { background: rgba(20, 10, 0, .58); }
.cta-band h2 { color: #fff; font-size: 46px; font-weight: 500; max-width: 560px; margin: 0 auto 14px; }
.cta-band p { max-width: 440px; margin: 0 auto 30px; color: rgba(255, 255, 255, .9); font-size: 14px; }

/* ============================================================ Secções */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-light { background: var(--ls-light); }
.section-dark { background: var(--ls-dark); color: rgba(255, 255, 255, .88); }
.section-dark h2, .section-dark h3, .section-dark strong { color: #fff; }
.intro-texto { font-size: 14px; }
.intro-texto p { margin-bottom: 10px; }
.intro-texto a { color: var(--ls-ink); text-decoration: underline; }
.lista-simples { padding-left: 0; list-style: none; }
.lista-simples li { margin-bottom: 10px; }

/* Cartões com imagem */
.feature-card, .comunidade-card, .parceiro-card, .noticia-card { position: relative; isolation: isolate; overflow: hidden; display: flex; border-radius: var(--ls-radius); color: #fff; background-color: #2a2420; }
.feature-card::before, .comunidade-card::before, .parceiro-card::before, .noticia-card::before { content: ""; position: absolute; inset: 0; z-index: -1; transition: background .3s; }
.feature-card:hover, .comunidade-card:hover, .noticia-card:hover { color: #fff; }
.feature-card { align-items: flex-end; min-height: 340px; padding: 30px 34px; }
.feature-card::before { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .8) 100%); }
.feature-card:hover::before { background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .85) 100%); }
.feature-card h2 { color: #fff; font-size: 26px; font-weight: 500; margin: 0 0 4px; max-width: 75%; }
.feature-card p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .88); max-width: 75%; }
.card-arrow { position: absolute; right: 30px; bottom: 30px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, .6); border-radius: 50%; color: #fff; font-size: 16px; transition: all .2s; }
.feature-card:hover .card-arrow, .noticia-card:hover .card-arrow { background: #fff; color: var(--ls-dark); border-color: #fff; }

.icon-box { display: flex; gap: 20px; margin-top: 30px; }
.icon-box .ico-circulo { flex: 0 0 50px; width: 50px; height: 50px; border-radius: 50%; background: var(--ls-dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.icon-box h3 { font-size: 22px; margin-bottom: 6px; }
.icon-box p { margin: 0; font-size: 14px; }

.img-rounded { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: var(--ls-radius); display: block; }
.img-rounded.is-alta { min-height: 560px; }
.img-rounded.is-media { min-height: 300px; max-height: 340px; }
.img-rounded.is-grande { min-height: 420px; max-height: 460px; }

/* Comunidades */
.comunidade-card { flex-direction: column; min-height: 340px; padding: 36px 40px; }
.comunidade-card::before { background: linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .45) 55%, rgba(0, 0, 0, .2) 100%); }
.comunidade-card:hover::before { background: linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .3) 100%); }
.comunidade-card .local { font-size: 12px; color: rgba(255, 255, 255, .9); margin-bottom: 4px; }
.comunidade-card h3 { color: #fff; font-size: 26px; font-weight: 500; margin-bottom: 24px; }
.comunidade-card ul { list-style: none; padding: 0; margin: 0; font-size: 13px; font-weight: 600; line-height: 1.7; }
.comunidade-card .etiqueta { position: absolute; top: 24px; right: 24px; padding: 6px 12px; border-radius: 999px; background: rgba(0, 0, 0, .55); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.stats-comunidade { list-style: none; padding: 0; margin: 0 0 20px; font-size: 14px; font-weight: 600; color: var(--ls-ink); }

/* Parceiros */
.parceiro-card { align-items: flex-end; min-height: 280px; padding: 24px 28px; }
.parceiro-card::before { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .82) 100%); }
.parceiro-nome { color: #fff; font-size: 17px; font-weight: 600; margin: 0; }

/* Notícias */
.noticia-card { align-items: flex-end; min-height: 380px; padding: 28px 30px; }
.noticia-card::before { background: linear-gradient(180deg, rgba(0, 0, 0, .1) 25%, rgba(0, 0, 0, .86) 100%); }
.noticia-card:hover::before { background: linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .88) 100%); }
.noticia-card .data { font-size: 12px; color: rgba(255, 255, 255, .85); margin-bottom: 8px; }
.noticia-card h2 { color: #fff; font-size: 21px; font-weight: 500; margin: 0; max-width: 78%; }
.noticia-card .card-arrow { right: 24px; bottom: 28px; }
.post-topo { background: var(--ls-dark); padding: 130px 0 0; }
.post-imagem { display: block; width: 100%; height: auto; max-height: 620px; object-fit: cover; border-radius: 22px 22px 0 0; }
.post-corpo { max-width: 800px; margin: 0 auto; }
.post-corpo h1 { font-size: 44px; font-weight: 500; margin: 44px 0 26px; padding-bottom: 26px; border-bottom: 1px solid var(--ls-line); }
.post-meta { font-size: 13px; margin-bottom: 26px; }
.post-meta a { color: var(--ls-ink); font-weight: 600; text-decoration: underline; }
.post-texto { font-size: 15px; }
.post-texto h2 { font-size: 28px; margin-top: 30px; }
.post-texto h3 { font-size: 22px; margin-top: 24px; }
.post-texto a { color: var(--ls-ink); text-decoration: underline; }
.post-texto blockquote { border-left: 3px solid var(--ls-dark); margin: 20px 0; padding: 4px 0 4px 18px; font-style: italic; }
.post-rodape { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; border-top: 1px solid var(--ls-line); padding-top: 24px; margin-top: 34px; }
.rodape-titulo { font-family: var(--font-head); font-size: 16px; color: var(--ls-dark); margin: 0 0 8px; }
.partilhar a { width: 40px; height: 40px; border-radius: 50%; background: var(--ls-dark); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-left: 6px; font-size: 14px; }
.partilhar a:hover { background: #333; color: #fff; }

/* ============================================================ Rodapé */
.site-footer { background: var(--ls-dark); color: rgba(255, 255, 255, .75); padding: 70px 0 30px; font-size: 14px; }
.site-footer img { height: 28px; width: auto; }
.footer-titulo { color: #fff; font-size: 22px; font-weight: 500; margin-bottom: 18px; }
.site-footer a { color: rgba(255, 255, 255, .75); }
.site-footer a:hover { color: #fff; }
.footer-links a, .footer-botao { display: block; margin-bottom: 10px; padding: 2px 0; }
.footer-botao { background: none; border: 0; color: rgba(255, 255, 255, .75); font: inherit; text-align: left; cursor: pointer; }
.footer-botao:hover { color: #fff; text-decoration: underline; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; font-size: 16px; }
.footer-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); }
.site-footer .livro-reclamacoes { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 9px 14px; border-radius: 8px; background: #fff; color: var(--ls-dark); font-weight: 700; font-size: 13px; line-height: 1.2; }
.site-footer .livro-reclamacoes:hover { color: var(--ls-dark); box-shadow: 0 0 0 3px rgba(255, 255, 255, .35); }
.livro-reclamacoes .ico { font-size: 22px; }
.livro-reclamacoes small { display: block; font-weight: 500; font-size: 11px; color: #4a4a4a; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 50px; padding-top: 22px; }
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, .65); margin: 0 0 4px; }

/* ============================================================ Formulários */
.form-dark { background: var(--ls-dark); border-radius: 18px; padding: 44px; color: #fff; }
.form-dark.is-narrow { max-width: 680px; margin: 0 auto; }
.form-dark label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.form-dark .form-control, .form-dark .form-select { background-color: transparent; border: 1px solid rgba(255, 255, 255, .5); border-radius: 8px; color: #fff; padding: 12px 16px; font-size: 14px; box-shadow: none; }
.form-dark .form-control::placeholder { color: rgba(255, 255, 255, .62); }
.form-dark .form-control:focus, .form-dark .form-select:focus { border-color: #fff; background-color: transparent; color: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .2); }
.form-dark textarea.form-control { min-height: 150px; resize: vertical; }
.form-dark .form-select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
.form-dark .form-select option { color: var(--ls-dark); background: #fff; }
.form-dark .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; margin: 20px 0 18px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.form-dark .consent input { margin-top: 3px; width: 16px; height: 16px; flex: 0 0 16px; }
.form-dark a { color: #fff; text-decoration: underline; }
.form-dark .btn-ls { width: 100%; }
.form-dark .campo-linha { margin-bottom: 18px; }
.form-rgpd { font-size: 12px; color: rgba(255, 255, 255, .75); margin: 16px 0 0; }
.form-info { border-right: 1px solid rgba(255, 255, 255, .15); }
.info-lbl { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .7); margin: 0 0 6px; }
.info-val { font-family: var(--font-head); font-size: 20px; line-height: 1.35; color: #fff; margin: 0 0 26px; }
.form-dark .info-val a { text-decoration: none; }
.info-social { display: flex; gap: 12px; font-size: 16px; }
.info-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); text-decoration: none; }
.alert-ls { border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-bottom: 22px; }
.alert-ls.ok { background: rgba(60, 200, 120, .16); color: #c6f5da; border: 1px solid rgba(60, 200, 120, .45); }
.alert-ls.err { background: rgba(220, 60, 60, .16); color: #ffd0d0; border: 1px solid rgba(220, 60, 60, .45); }
.alert-ls.info { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .25); }

/* ============================================================ FAQ e acordeões (<details>) */
.faq-item { border: 1px solid var(--ls-line); border-radius: 10px; margin-bottom: 14px; background: #fff; }
.faq-item > summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--ls-dark); line-height: 1.3; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .ico { font-size: 14px; transition: transform .2s; }
.faq-item[open] > summary .ico { transform: rotate(180deg); }
.faq-item > summary:focus-visible { outline: 2px solid var(--ls-dark); outline-offset: 2px; border-radius: 10px; }
.faq-a { padding: 0 22px 20px; font-size: 14px; }
.faq-a a { color: var(--ls-ink); text-decoration: underline; }
.tipo-parceria { border: 0; border-bottom: 1px solid var(--ls-dark); border-radius: 0; margin-bottom: 26px; }
.tipo-parceria > summary { padding: 10px 0 12px; font-size: 16px; }
.tipo-parceria .faq-a { padding: 0 0 18px; }

.valor-card { border: 1px solid var(--ls-line); border-radius: 14px; padding: 34px 30px; height: 100%; background: #fff; }
.valor-card h3 { font-size: 28px; font-weight: 500; margin-bottom: 16px; }
.valor-card p { font-size: 14px; margin: 0; }

/* ============================================================ Calculadora e mapas */
.calc-box { background: var(--ls-dark); border-radius: 18px; padding: 40px 36px; color: #fff; text-align: center; }
.calc-box label { display: block; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.calc-box .form-select { background-color: #000; border: 1px solid rgba(255, 255, 255, .3); border-radius: 999px; color: #fff; text-align: center; text-align-last: center; padding: 14px 44px 14px 20px; font-size: 14px; font-weight: 600; box-shadow: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
.calc-box .form-select option { background: #000; color: #fff; }
.calc-result { margin: 22px 0 28px; padding: 14px; border-radius: 999px; background: rgba(255, 255, 255, .1); font-size: 14px; font-weight: 600; }
.calc-box .btn-ls { width: 100%; }
.mapa { position: relative; height: 400px; border-radius: 14px; overflow: hidden; background: #e6e9ec; z-index: 1; }
.mapa.is-grande { height: 480px; }
.mapa:not(.is-ativo)::after { content: "A carregar o mapa…"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #444; font-size: 14px; }
.leaflet-container { font-family: var(--font-body); }
.leaflet-popup-content { font-size: 13px; line-height: 1.5; }
.leaflet-popup-content a { color: var(--ls-dark); text-decoration: underline; font-weight: 600; }
.leaflet-container .leaflet-control-attribution a { color: #1f4e79; }
.lista-mapa { columns: 2; column-gap: 32px; list-style: none; padding: 0; margin: 0; }
.lista-mapa li { break-inside: avoid; margin-bottom: 12px; font-size: 14px; }
.lista-mapa a { color: var(--ls-ink); font-weight: 700; text-decoration: underline; }
.mapa-facade { position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center; background: var(--ls-light); }
.mapa-facade-conteudo { max-width: 560px; text-align: center; padding: 40px 24px; }
.mapa-facade-conteudo .ico { font-size: 34px; color: var(--ls-dark); margin-bottom: 12px; }
.mapa-facade-conteudo .acoes { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 20px 0 14px; }
.mapa-facade-conteudo .nota { font-size: 12px; margin: 0; }
.mapa-facade-conteudo .nota a { color: var(--ls-ink); text-decoration: underline; }
.mapa-embed { width: 100%; height: 400px; border: 0; display: block; }

/* ============================================================ Instalações */
.instalacao { padding: 56px 0; }
.instalacao + .instalacao { border-top: 1px solid var(--ls-line); }
.instalacao h3 { font-size: 24px; font-weight: 600; text-align: center; margin-bottom: 4px; }
.instalacao .site { display: block; width: fit-content; margin: 0 auto 26px; text-align: center; font-family: var(--font-head); font-size: 18px; color: var(--ls-dark); }
.instalacao .site:hover { text-decoration: underline; }
.instalacao-texto { font-size: 14px; }
.galeria { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
.galeria a { display: block; overflow: hidden; border-radius: 10px; }
.galeria img { width: 100%; height: 300px; object-fit: cover; display: block; cursor: zoom-in; transition: transform .4s; }
.galeria a:hover img { transform: scale(1.04); }
.caracteristicas { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; background: rgba(0, 0, 0, .92); cursor: zoom-out; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 8px; }

/* ============================================================ Tarifas */
.tabela-wrap { overflow-x: auto; }
.tabela-tarifas { width: 100%; min-width: 860px; border-collapse: collapse; font-size: 13px; color: #333; }
.tabela-tarifas th, .tabela-tarifas td { border: 1px solid #333; padding: 9px 10px; vertical-align: middle; }
.tabela-tarifas th { font-weight: 700; text-align: center; background: #fff; }
.tabela-tarifas caption { caption-side: top; padding: 10px; border: 1px solid #333; border-bottom: 0; text-align: center; font-weight: 700; color: #333; }

/* ============================================================ Páginas legais */
.conteudo-legal { max-width: 900px; font-size: 15px; }
.conteudo-legal h2 { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--ls-dark); margin: 38px 0 12px; }
.conteudo-legal h3 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ls-ink); margin: 26px 0 8px; }
.conteudo-legal ol, .conteudo-legal ul { padding-left: 22px; margin-bottom: 14px; }
.conteudo-legal li { margin-bottom: 6px; }
.conteudo-legal table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 16px 0 22px; }
.conteudo-legal th, .conteudo-legal td { border: 1px solid var(--ls-line); padding: 10px; vertical-align: top; text-align: left; }
.conteudo-legal th { background: var(--ls-light); color: var(--ls-ink); font-weight: 700; }
.conteudo-legal a { color: var(--ls-ink); text-decoration: underline; }
.conteudo-legal mark { background: #fff3cd; color: #6b4f00; padding: 0 4px; border-radius: 3px; }
.legal-atualizacao { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--ls-line); font-size: 13px; }

/* ============================================================ Aviso de cookies */
.cookie-banner { position: fixed; left: 24px; bottom: 24px; z-index: 1500; width: calc(100% - 48px); max-width: 420px; background: #fff; border-radius: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, .28); padding: 22px 24px; font-size: 13px; line-height: 1.6; color: #333; }
.cookie-titulo { font-weight: 700; font-size: 16px; color: #111; margin: 0 0 8px; }
.cookie-banner a { color: var(--ls-dark); text-decoration: underline; font-weight: 600; }
.cookie-opcoes { display: grid; gap: 10px; margin-top: 14px; }
.cookie-opcao { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; border: 1px solid var(--ls-line); border-radius: 8px; cursor: pointer; }
.cookie-opcao input { margin-top: 4px; width: 16px; height: 16px; flex: 0 0 16px; }
.cookie-opcao strong { display: block; color: #111; }
.cookie-banner .acoes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cookie-banner .acoes button { flex: 1 1 auto; min-height: 42px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--ls-dark); background: var(--ls-dark); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; cursor: pointer; }
.cookie-banner .acoes button[data-cookies="personalizar"] { background: #fff; color: var(--ls-dark); }
.cookie-banner .acoes button:focus-visible { outline: 3px solid #1863dc; outline-offset: 2px; }

.pagina-404 { min-height: 70vh; display: flex; align-items: center; text-align: center; padding: 160px 0 80px; }
.pagina-404 h1 { font-size: 100px; font-weight: 500; color: #fff; }

/* ============================================================ Responsivo */
@media (max-width: 1199.98px) {
    .nav-pill .nav-link { padding: 10px 14px; font-size: 10.5px; letter-spacing: .06em; }
    .home-hero h1 { font-size: 60px; }
}
@media (max-width: 991.98px) {
    .home-hero { min-height: 600px; padding: 130px 0 80px; }
    .home-hero h1 { font-size: 50px; }
    .titulo-xl { font-size: 38px; }
    .titulo-lg { font-size: 32px; }
    .page-hero { min-height: 340px; padding: 130px 0 44px; }
    .page-hero h1 { font-size: 40px; }
    .section { padding: 70px 0; }
    .cta-band { padding: 80px 0; }
    .cta-band h2 { font-size: 36px; }
    .form-dark { padding: 30px 24px; }
    .form-info { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .15); padding-bottom: 10px; }
    .galeria { grid-template-columns: 1fr 1fr; }
    .galeria img { height: 240px; }
    .img-rounded.is-alta { min-height: 380px; }
    .post-corpo h1 { font-size: 34px; }
    .lista-mapa { columns: 1; }
}
@media (max-width: 767.98px) {
    .conteudo-legal table { display: block; overflow-x: auto; }
}
@media (max-width: 575.98px) {
    .home-hero h1 { font-size: 40px; }
    .feature-card { min-height: 260px; padding: 24px; }
    .feature-card h2 { font-size: 22px; }
    .comunidade-card { min-height: 300px; padding: 26px; }
    .galeria { grid-template-columns: 1fr; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; max-width: none; }
    .brand img { height: 26px; }
    .pagina-404 h1 { font-size: 64px; }
}
