/* ==========================================================================
   OGOV — Landing page (substitui /site/index.jsp)
   Stack atual usa apenas CSS estático servido pelo Tomcat. O versionamento
   do arquivo é feito via `?vN` controlado por commit.
   ========================================================================== */

:root {
    --ogov-navy: #062338;
    --ogov-navy-2: #0b3148;
    --ogov-teal: #159CB3;
    --ogov-teal-2: #11879c;
    --ogov-teal-soft: #E6F6F9;
    --ogov-bg: #ffffff;
    --ogov-ink: #062338;
    --ogov-ink-2: #3c4f5f;
    --ogov-muted: #6a7a87;
    --ogov-line: rgba(6, 35, 56, 0.08);
    --ogov-hero-grad: linear-gradient(180deg, #EAF6F9 0%, #DCEEFB 60%, #F3F8FC 100%);
}

/* Reset escopado ao layout do OGOV para não vazar para outras telas Bootstrap */
.ogov *,
.ogov *::before,
.ogov *::after { box-sizing: border-box; }

/* O navegador aplica margin:8px ao body por padrão — neutraliza.
   Como este CSS só é carregado pela landing OGOV, é seguro mexer em html/body. */
html, body { margin: 0; padding: 0; }

.ogov {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--ogov-ink);
    background: var(--ogov-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

.ogov a { color: inherit; text-decoration: none; }
.ogov button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.ogov img { max-width: 100%; display: block; }

.ogov .ogov-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== Nav ===== */
.ogov .nav-wrap { position: absolute; top: 0; left: 0; right: 0; z-index: 10; }
.ogov .nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.ogov .brand { display: flex; align-items: center; gap: 10px; }
.ogov .brand img { height: 34px; width: auto; }
.ogov .nav-links { display: flex; align-items: center; gap: 36px; }
.ogov .nav-links a {
    font-size: 15px; font-weight: 500; color: var(--ogov-navy);
    opacity: .85; transition: opacity .15s;
}
.ogov .nav-links a:hover { opacity: 1; }

.ogov .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.ogov .btn-primary { background: var(--ogov-navy); color: #fff; }
.ogov .btn-primary:hover { background: var(--ogov-navy-2); transform: translateY(-1px); }
.ogov .btn-primary:active { transform: translateY(0); }
.ogov .btn .arrow { transition: transform .2s ease; }
.ogov .btn:hover .arrow { transform: translateX(3px); }

/* ===== Hero ===== */
.ogov .hero {
    position: relative;
    background: var(--ogov-hero-grad);
    padding: 130px 0 100px;
    overflow: hidden;
}
.ogov .hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 90%);
    pointer-events: none;
}
.ogov .hero-inner {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
    position: relative; z-index: 2;
}
.ogov .hero h1 {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.02; letter-spacing: -0.03em;
    font-weight: 800; margin: 0 0 28px;
    color: var(--ogov-navy); text-wrap: balance;
}
.ogov .hero h1 .accent { color: var(--ogov-teal); }
.ogov .hero p.lead {
    font-size: 18px; color: var(--ogov-ink-2); max-width: 520px; margin: 0 0 36px;
}
.ogov .hero .cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ogov .btn-ghost { color: var(--ogov-navy); font-weight: 600; padding: 12px 18px; border-radius: 999px; }
.ogov .btn-ghost:hover { background: rgba(6, 35, 56, 0.06); }

/* ===== Hero illustration ===== */
.ogov .hero-art {
    position: relative; aspect-ratio: 1 / 1; max-width: 560px;
    justify-self: end; width: 100%;
}
.ogov .hero-art .ring { position: absolute; inset: 6%; border-radius: 50%; border: 1px solid rgba(21, 156, 179, .18); }
.ogov .hero-art .ring.r2 { inset: 0; border-color: rgba(21, 156, 179, .10); }
.ogov .hero-art .circle {
    position: absolute; inset: 12%;
    background: radial-gradient(circle at 35% 30%, #1FB6CE 0%, var(--ogov-teal) 55%, #0E7A8C 100%);
    border-radius: 50%;
    box-shadow: 0 30px 70px -20px rgba(21, 156, 179, .45), inset 0 -10px 40px rgba(0, 0, 0, .08);
    display: grid; place-items: center;
}
.ogov .hero-art .circle img {
    width: 55%; height: 55%; object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .18));
}
.ogov .hero-art .dot {
    position: absolute; border-radius: 50%; background: #fff;
    box-shadow: 0 6px 14px rgba(6, 35, 56, .08);
    animation: ogovFloat 6s ease-in-out infinite;
}
.ogov .hero-art .dot.d1 { width: 14px; height: 14px; top: 6%; left: 50%; transform: translate(-50%, -50%); animation-delay: -1.5s; animation-duration: 5s; }
.ogov .hero-art .dot.d2 { width: 16px; height: 16px; top: 48%; right: -2%; animation-delay: -4s; animation-duration: 7s; }
.ogov .hero-art .dot.d3 { width: 14px; height: 14px; top: 85.4%; left: 14.6%; transform: translate(-50%, -50%); background: #062338; animation-delay: -2.5s; animation-duration: 6s; }
.ogov .hero-art .dot.accent { background: var(--ogov-navy); width: 54px; height: 54px; top: 8%; right: 2%; display: grid; place-items: center; animation-delay: -3.5s; animation-duration: 7s; }
.ogov .hero-art .dot.accent svg { width: 24px; height: 24px; color: #fff; }

.ogov .float-card {
    position: absolute; background: #fff; border-radius: 18px; padding: 14px;
    box-shadow: 0 18px 40px -10px rgba(6, 35, 56, 0.18), 0 4px 10px rgba(6, 35, 56, 0.06);
    width: 64px; height: 64px; display: grid; place-items: center;
    animation: ogovFloat 6s ease-in-out infinite;
}
.ogov .float-card svg { width: 30px; height: 30px; color: var(--ogov-teal); }
.ogov .float-card.c1 { top: 4%; left: 4%; animation-delay: -1s; }
.ogov .float-card.c2 { bottom: 22%; left: -2%; animation-delay: -3s; }
.ogov .float-card.c3 { bottom: 6%; right: 6%; animation-delay: -2s; }

@keyframes ogovFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes ogovFloatCentered {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-50%, calc(-50% - 10px)); }
}
.ogov .hero-art .dot.d3,
.ogov .hero-art .dot.d1 { animation-name: ogovFloatCentered; }

/* Cancela animação se o usuário pedir movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .ogov .hero-art .dot,
    .ogov .float-card { animation: none; }
}

/* ===== Sections ===== */
.ogov .ogov-section { padding: 96px 0; }
.ogov .section-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px;
}
.ogov .section-head h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05; letter-spacing: -0.025em; font-weight: 800; margin: 0;
    color: var(--ogov-navy);
}
.ogov .section-head p { color: var(--ogov-ink-2); max-width: 500px; margin: 0; font-size: 17px; }

/* ===== Serviços ===== */
.ogov .services { padding-top: 40px; padding-bottom: 48px; }
.ogov #presenca { padding-top: 48px; }

.ogov .svc-tabs {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px;
}
.ogov .svc-tab {
    display: flex; align-items: center; gap: 14px; text-align: left;
    background: #fff; border: 1.5px solid var(--ogov-line); border-radius: 18px;
    padding: 16px 42px 16px 18px; cursor: pointer;
    position: relative;
    box-shadow: 0 4px 14px -10px rgba(6, 35, 56, .18);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ogov .svc-tab::after {
    content: ""; position: absolute; right: 14px; top: 50%;
    width: 16px; height: 16px; transform: translateY(-50%);
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23159CB3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>") no-repeat center / contain;
    opacity: .7;
    transition: opacity .2s ease, transform .2s ease;
}
.ogov .svc-tab:hover {
    border-color: var(--ogov-teal);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -14px rgba(21, 156, 179, .45);
    background: #f5fbfc;
}
.ogov .svc-tab:hover::after { opacity: 1; transform: translateY(-50%) translateX(3px); }
.ogov .svc-tab:focus-visible {
    outline: none; border-color: var(--ogov-teal);
    box-shadow: 0 0 0 3px rgba(21, 156, 179, .25);
}
.ogov .svc-tab.is-active {
    border-color: var(--ogov-navy); background: var(--ogov-navy);
    box-shadow: 0 18px 30px -18px rgba(6, 35, 56, .4);
    transform: none;
}
.ogov .svc-tab.is-active::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    opacity: 1; transform: translateY(-50%);
}
.ogov .svc-tab.is-active .svc-tab-label strong { color: #fff; }
.ogov .svc-tab.is-active .svc-tab-label small  { color: #a8c0d2; }

.ogov .svc-tab-ico {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center; flex-shrink: 0;
}
.ogov .svc-tab-ico svg,
.ogov .svc-tab-ico img { width: 28px; height: 28px; object-fit: contain; }
.ogov .svc-tab-ico.svc-pig img { width: 34px; height: auto; }

.ogov .svc-tab-label { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.ogov .svc-tab-label strong { font-size: 16px; font-weight: 700; color: var(--ogov-navy); transition: color .2s; }
.ogov .svc-tab-label small  { font-size: 13px; color: var(--ogov-muted); font-weight: 500; transition: color .2s; }

.ogov .svc-panels { position: relative; }
.ogov .svc-panel {
    display: none;
    grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    background: #fff; border: 1px solid var(--ogov-line); border-radius: 28px;
    padding: 48px;
    box-shadow: 0 30px 60px -32px rgba(6, 35, 56, .18);
    animation: ogovPanelFade .4s ease;
}
.ogov .svc-panel.is-active { display: grid; }
@keyframes ogovPanelFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}

.ogov .svc-logo { display: flex; align-items: center; margin-bottom: 18px; height: 36px; }
.ogov .svc-logo img { height: 32px; width: auto; }
.ogov .svc-logo.logo-rastro img { height: 36px; }

.ogov .svc-pages { display: grid; }
.ogov .svc-page {
    grid-column: 1; grid-row: 1;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s ease;
}
.ogov .svc-page.is-active {
    opacity: 1; visibility: visible; pointer-events: auto;
}

.ogov .svc-page-tag {
    display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ogov-teal); background: rgba(21, 156, 179, .1);
    padding: 5px 10px; border-radius: 6px; margin-bottom: 14px;
}
.ogov .svc-pager { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--ogov-line); }
.ogov .svc-learn-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--ogov-teal);
    margin-top: 18px;
    transition: gap .2s ease, color .15s ease;
}
.ogov .svc-learn-more:hover { color: var(--ogov-teal-2); gap: 10px; }
.ogov .svc-learn-more svg { width: 14px; height: 14px; flex-shrink: 0; }
.ogov .svc-pager-btn {
    width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--ogov-line);
    background: #fff; color: var(--ogov-navy); cursor: pointer;
    display: grid; place-items: center; transition: all .2s;
}
.ogov .svc-pager-btn:hover { border-color: var(--ogov-teal); color: var(--ogov-teal); background: rgba(21, 156, 179, .06); }
.ogov .svc-dots { display: flex; gap: 6px; flex: 1; justify-content: center; }
.ogov .svc-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #D7E0E6; border: 0; padding: 0; cursor: pointer;
    transition: all .2s;
}
.ogov .svc-dot.is-active { background: var(--ogov-teal); width: 24px; border-radius: 4px; }
.ogov .svc-dot:hover:not(.is-active) { background: #A8B5BD; }

.ogov .svc-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ogov .svc-feats li {
    position: relative; padding-left: 28px;
    font-size: 15px; color: var(--ogov-ink); font-weight: 500; line-height: 1.5;
}
.ogov .svc-feats li::before {
    content: ""; width: 18px; height: 18px; border-radius: 50%; background: var(--ogov-teal);
    position: absolute; left: 0; top: 3px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.ogov .svc-feats li strong { font-weight: 700; color: var(--ogov-navy); }

.ogov .svc-panel h3 {
    font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; margin: 0 0 14px;
    color: var(--ogov-navy); letter-spacing: -.02em; line-height: 1.15;
}
.ogov .svc-panel p { margin: 0 0 22px; color: var(--ogov-ink-2); font-size: 16px; line-height: 1.6; max-width: 480px; }

.ogov .svc-panel-art {
    border-radius: 22px; padding: 36px; aspect-ratio: 1.05 / 1;
    display: grid; place-items: center; position: relative; overflow: hidden;
}
.ogov .svc-panel-art img { width: 100%; max-width: 440px; height: auto; }
.ogov .svc-panel-art.svc-art-wide img { max-width: 520px; }

/* swatches por produto */
.ogov .c-blue   { background: #DBEAFE; }
.ogov .c-green  { background: #E7F4D5; }
.ogov .c-indigo { background: #FFEED9; }
.ogov .c-blue   .svc-tab-ico svg { color: #2563EB; }
.ogov .c-green  .svc-tab-ico svg { color: #5C8A1F; }
.ogov .c-indigo .svc-tab-ico svg { color: #D97706; }

/* ===== Presença ===== */
.ogov .presence-wrap { display: flex; flex-direction: column; gap: 32px; }
.ogov .presence-card {
    background: #fff;
    border: 1px solid var(--ogov-line);
    border-radius: 32px; padding: 56px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    box-shadow: 0 30px 60px -32px rgba(6, 35, 56, .18);
}
.ogov .presence-card h2 {
    font-size: clamp(32px, 3.6vw, 44px); font-weight: 800; margin: 0 0 20px;
    color: var(--ogov-navy); letter-spacing: -.02em;
}
.ogov .presence-card .lead { color: var(--ogov-ink-2); font-size: 16.5px; margin: 0 0 28px; max-width: 480px; line-height: 1.6; }
.ogov .presence-card .accent { color: var(--ogov-teal); font-weight: 700; }
.ogov .presence-card .eyebrow {
    display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ogov-teal); background: rgba(21, 156, 179, .1); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}

.ogov .presence-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin: 0 0 24px; padding: 20px 0;
    border-top: 1px solid var(--ogov-line); border-bottom: 1px solid var(--ogov-line);
}
.ogov .pstat strong {
    display: flex; align-items: baseline; gap: 2px;
    font-size: clamp(26px, 2.8vw, 34px); font-weight: 800; color: var(--ogov-navy); letter-spacing: -.02em; line-height: 1;
}
.ogov .pstat .plus { color: var(--ogov-teal); font-size: .7em; }
.ogov .pstat span { display: block; margin-top: 6px; font-size: 12.5px; color: var(--ogov-muted); font-weight: 500; white-space: nowrap; }

.ogov .presence-art {
    position: relative; display: grid; place-items: center;
    min-height: 480px;
}
.ogov .presence-art .map-bg { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.ogov .presence-art .map-bg img { width: 100%; max-width: 560px; height: auto; opacity: .7; }
.ogov .presence-art img.map { position: relative; z-index: 1; width: 78%; max-width: 380px; height: auto; }

/* ===== Mapa SVG dinâmico ===== */
.ogov .ogov-map {
    position: relative; z-index: 1;
    width: 78%; max-width: 380px; margin: 0 auto;
}
.ogov .ogov-map #svg-map {
    width: 100%; height: auto; display: block; overflow: visible;
}
/* Estado padrão (não atendido) */
.ogov .ogov-map #svg-map path {
    fill: #D7DEE4;
    stroke: #ffffff;
    stroke-width: 1.2;
    transition: fill .2s ease;
}
/* Remove o comportamento de anchor padrão dentro do SVG */
.ogov .ogov-map #svg-map a { cursor: default; }
.ogov .ogov-map #svg-map a.is-active { cursor: pointer; }
/* Estado ativo (atendido pela OGOV) */
.ogov .ogov-map #svg-map a.is-active path {
    fill: var(--ogov-teal);
}
.ogov .ogov-map #svg-map a.is-active:hover path {
    fill: var(--ogov-teal-2);
}
/* Tooltip flutuante */
.ogov .ogov-map-tooltip {
    position: absolute;
    background: var(--ogov-navy);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12.5px; font-weight: 600;
    pointer-events: none; opacity: 0;
    transition: opacity .15s ease;
    z-index: 5; white-space: nowrap;
    box-shadow: 0 8px 18px -8px rgba(6, 35, 56, .35);
}
.ogov .ogov-map-tooltip.is-visible { opacity: 1; }
.ogov .ogov-map-tooltip::after {
    content: ""; position: absolute; left: 12px; top: 100%;
    border: 5px solid transparent; border-top-color: var(--ogov-navy);
}

.ogov .cta-banner {
    background: linear-gradient(135deg, #EAF6FB 0%, #DCEEFB 100%);
    border-radius: 24px; padding: 48px; text-align: center;
    grid-column: 1 / -1;
    border: 1px solid rgba(21, 156, 179, .14);
}
.ogov .cta-banner h3 {
    font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; margin: 0 0 10px; color: var(--ogov-navy); letter-spacing: -.015em;
}
.ogov .cta-banner p { color: var(--ogov-ink-2); margin: 0 0 22px; font-size: 16px; }

/* ===== FAQ ===== */
.ogov .faq-section {
    background: linear-gradient(180deg, #F1F8FB 0%, #ECF6F9 100%);
    position: relative; overflow: hidden;
}
.ogov .faq-section::before {
    content: ""; position: absolute; top: -160px; right: -160px; width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(21, 156, 179, .16), transparent 65%);
    pointer-events: none;
}
.ogov .faq-grid {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start;
    position: relative;
}
.ogov .faq-intro .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ogov-teal); background: rgba(21, 156, 179, .10);
    padding: 8px 14px; border-radius: 999px; margin-bottom: 20px;
}
.ogov .faq-intro .eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ogov-teal); }
.ogov .faq-intro h2 {
    font-size: clamp(36px, 4vw, 52px); font-weight: 800; margin: 0 0 16px;
    color: var(--ogov-navy); letter-spacing: -.025em; line-height: 1.05;
}
.ogov .faq-intro p { color: var(--ogov-ink-2); font-size: 16.5px; margin: 0 0 28px; max-width: 380px; line-height: 1.6; }
.ogov .faq-intro .contact-hint {
    display: flex; align-items: center; gap: 14px; padding: 18px;
    background: #fff; border-radius: 18px; border: 1px solid var(--ogov-line); max-width: 380px;
}
.ogov .faq-intro .contact-hint .ico {
    width: 42px; height: 42px; border-radius: 12px; background: var(--ogov-navy); color: #fff;
    display: grid; place-items: center; flex-shrink: 0;
}
.ogov .faq-intro .contact-hint .ico svg { width: 20px; height: 20px; }
.ogov .faq-intro .contact-hint .t { font-size: 13px; color: var(--ogov-muted); margin: 0 0 2px; }
.ogov .faq-intro .contact-hint .v { font-size: 15px; color: var(--ogov-navy); font-weight: 600; margin: 0; }

.ogov .faq-list { display: flex; flex-direction: column; gap: 12px; }
.ogov details.faq-item {
    background: #fff; border-radius: 20px; padding: 0 24px;
    border: 1px solid var(--ogov-line);
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.ogov details.faq-item:hover { border-color: rgba(21, 156, 179, .4); }
.ogov details.faq-item[open] {
    box-shadow: 0 18px 40px -22px rgba(6, 35, 56, .25);
    border-color: rgba(21, 156, 179, .5);
}
.ogov details.faq-item summary {
    list-style: none; cursor: pointer;
    padding: 22px 0; display: flex; align-items: center; gap: 18px;
    font-weight: 600; font-size: 16px; color: var(--ogov-navy);
}
.ogov details.faq-item summary::-webkit-details-marker { display: none; }
.ogov details.faq-item .num {
    font-size: 13px; font-weight: 700; color: var(--ogov-teal);
    width: 32px; flex-shrink: 0; font-variant-numeric: tabular-nums;
}
.ogov details.faq-item .q-text { flex: 1; }
.ogov details.faq-item .chev {
    width: 32px; height: 32px; border-radius: 50%; background: #F1F6F9;
    display: grid; place-items: center; color: var(--ogov-navy);
    transition: transform .3s ease, background .2s ease; flex-shrink: 0;
}
.ogov details.faq-item[open] .chev { transform: rotate(45deg); background: var(--ogov-teal); color: #fff; }
.ogov details.faq-item .answer {
    padding: 0 0 24px 50px; color: var(--ogov-ink-2); font-size: 15.5px; line-height: 1.65; max-width: 680px;
}

/* ===== Contato ===== */
.ogov .contact {
    padding-top: 40px; padding-bottom: 120px;
    position: relative; overflow: hidden;
}
.ogov .contact-grid {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
    background: #fff; border: 1px solid var(--ogov-line); border-radius: 32px;
    overflow: hidden; box-shadow: 0 40px 80px -40px rgba(6, 35, 56, .2);
}
.ogov .contact-left {
    background: linear-gradient(160deg, var(--ogov-navy) 0%, #0a3b56 100%);
    color: #fff; padding: 56px 48px; position: relative; overflow: hidden;
}
.ogov .contact-left::before {
    content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 156, 179, .35), transparent 65%);
    bottom: -100px; right: -100px;
}
.ogov .contact-left::after {
    content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    top: -50px; left: -50px;
}
.ogov .contact-left .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: #a8e0eb; background: rgba(255, 255, 255, .08);
    padding: 7px 13px; border-radius: 999px; margin-bottom: 22px;
    position: relative; z-index: 1;
}
.ogov .contact-left h2 {
    font-size: clamp(28px, 3vw, 38px); font-weight: 800; margin: 0 0 14px;
    color: #fff; letter-spacing: -.02em; line-height: 1.1;
    position: relative; z-index: 1;
}
.ogov .contact-left .lead {
    color: #b8cad6; font-size: 15.5px; margin: 0 0 36px; line-height: 1.6;
    position: relative; z-index: 1;
}

.ogov .contact-info { display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 1; }
.ogov .contact-info .row { display: flex; gap: 14px; align-items: flex-start; }
.ogov .contact-info .ico {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(21, 156, 179, .18); color: #7cd6e8;
    display: grid; place-items: center; flex-shrink: 0;
}
.ogov .contact-info .ico svg { width: 18px; height: 18px; }
.ogov .contact-info .t { font-size: 12.5px; color: #8aa1b2; margin: 0 0 2px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.ogov .contact-info .v { font-size: 15px; color: #fff; margin: 0; font-weight: 500; }

.ogov .contact-right { padding: 56px 48px; background: #fff; }
.ogov .contact-right h3 { font-size: 22px; font-weight: 700; margin: 0 0 6px; color: var(--ogov-navy); letter-spacing: -.01em; }
.ogov .contact-right .sub { color: var(--ogov-muted); margin: 0 0 28px; font-size: 14.5px; }

.ogov .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ogov .field { margin-bottom: 16px; }
.ogov .field label {
    display: block; font-size: 12.5px; font-weight: 600; color: var(--ogov-navy);
    margin-bottom: 8px; letter-spacing: .02em;
}
.ogov .field input,
.ogov .field textarea,
.ogov .field select {
    width: 100%; border: 1.5px solid #E4EBF0; border-radius: 14px; padding: 13px 16px;
    font: inherit; font-size: 14.5px; color: var(--ogov-navy); background: #F8FAFB;
    transition: border .15s, box-shadow .15s, background .15s;
}
.ogov .field input::placeholder,
.ogov .field textarea::placeholder { color: #9aacba; }
.ogov .field input:focus,
.ogov .field textarea:focus,
.ogov .field select:focus {
    outline: 0; border-color: var(--ogov-teal); background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 156, 179, .10);
}
.ogov .field textarea { resize: vertical; min-height: 110px; }

.ogov .submit {
    width: 100%; background: var(--ogov-navy); color: #fff; padding: 16px; border-radius: 14px;
    font-weight: 700; font-size: 15px; margin-top: 6px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .15s, transform .15s, box-shadow .2s;
}
.ogov .submit:hover { background: var(--ogov-teal); transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(21, 156, 179, .5); }
.ogov .submit:disabled { background: var(--ogov-teal); cursor: default; }

.ogov .contact-feedback {
    margin-top: 18px; padding: 14px 18px; border-radius: 14px;
    background: rgba(21, 156, 179, .10); color: var(--ogov-navy);
    font-size: 14px; font-weight: 600; display: none;
}
.ogov .contact-feedback.is-visible { display: block; }
.ogov .contact-feedback.is-error { background: rgba(220, 38, 38, .08); color: #b91c1c; }

.ogov .form-foot { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12.5px; color: var(--ogov-muted); }
.ogov .form-foot svg { width: 14px; height: 14px; color: var(--ogov-teal); flex-shrink: 0; }

/* ===== Footer ===== */
.ogov .ogov-footer { background: var(--ogov-navy); color: #cfdbe4; padding: 60px 0 32px; }
.ogov .foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.ogov .foot-brand img { height: 32px; width: auto; margin-bottom: 14px; filter: brightness(1.05); }
.ogov .foot-brand p { color: #9fb1bf; font-size: 14.5px; margin: 0; max-width: 280px; }
.ogov .foot-col h4 { font-size: 14px; color: #fff; margin: 0 0 14px; font-weight: 700; letter-spacing: .02em; }
.ogov .foot-col a {
    display: block; color: #9fb1bf; font-size: 14.5px; padding: 5px 0;
    transition: color .15s;
}
.ogov .foot-col a:hover { color: #fff; }
.ogov .foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 48px; padding-top: 24px; text-align: center;
    color: #7d909e; font-size: 13.5px;
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
    .ogov .hero-inner { gap: 32px; }
    .ogov .presence-card { padding: 44px; gap: 32px; }
    .ogov .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .ogov .nav-toggle { display: inline-flex; }
    .ogov .nav-links {
        position: absolute; top: 72px; left: 16px; right: 16px;
        background: #fff; flex-direction: column; align-items: stretch; gap: 0;
        padding: 12px; border-radius: 16px;
        box-shadow: 0 20px 40px -20px rgba(6, 35, 56, .25);
        display: none;
    }
    .ogov .nav-links.is-open { display: flex; }
    .ogov .nav-links a { padding: 12px 14px; border-radius: 10px; }
    .ogov .nav-links a:hover { background: rgba(6, 35, 56, .05); }

    .ogov .hero { padding: 100px 0 60px; }
    .ogov .hero-inner { grid-template-columns: 1fr; gap: 24px; }
    .ogov .hero-art { margin: 0 auto; max-width: 400px; justify-self: center; }
    .ogov .section-head { grid-template-columns: 1fr; gap: 14px; }
    .ogov .svc-tabs { grid-template-columns: 1fr; gap: 10px; }
    .ogov .svc-panel { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
    .ogov .svc-panel-art { order: 2; padding: 24px; }
    .ogov .presence-card { padding: 36px 28px; grid-template-columns: 1fr; }
    .ogov .presence-art img.map { max-width: 360px; }
    .ogov .presence-art { min-height: 360px; }
    .ogov .cta-banner { padding: 32px 24px; }
    .ogov .faq-grid { grid-template-columns: 1fr; gap: 32px; }
    .ogov .contact-left,
    .ogov .contact-right { padding: 36px 28px; }
    .ogov .field-row { grid-template-columns: 1fr; }
    .ogov details.faq-item .answer { padding-left: 0; }
    .ogov .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ogov .ogov-section { padding: 64px 0; }
}

@media (max-width: 560px) {
    .ogov .ogov-container { padding: 0 20px; }
    .ogov .hero h1 { font-size: clamp(36px, 9vw, 52px); }
    .ogov .presence-stats { grid-template-columns: 1fr; gap: 16px; text-align: left; }
    .ogov .pstat strong { justify-content: flex-start; }
    .ogov .foot-grid { grid-template-columns: 1fr; gap: 24px; }
    .ogov .svc-panel { padding: 24px 18px; }
    .ogov .svc-panel-art { padding: 18px; }
}

/* Botão hambúrguer da nav — só aparece em telas pequenas */
.ogov .nav-toggle {
    display: none; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(6, 35, 56, .06); color: var(--ogov-navy);
}
.ogov .nav-toggle svg { width: 20px; height: 20px; }
