* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fafcff;
    color: #1e293b;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.btn-primary {
    display: inline-block;
    background: #0f3b5e;
    color: #fff;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(15, 59, 94, 0.25);
}

.btn-primary:hover {
    background: #1a4f76;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 59, 94, 0.35);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #0f3b5e;
    font-weight: 600;
    padding: 13px 34px;
    border-radius: 40px;
    border: 2px solid #0f3b5e;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0f3b5e;
    color: #fff;
    transform: translateY(-3px);
}

.btn-success {
    display: inline-block;
    background: #2b8c6e;
    color: #fff;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(43, 140, 110, 0.3);
}

.btn-success:hover {
    background: #3aa57f;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(43, 140, 110, 0.4);
}

.btn-voltar {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.btn-voltar:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

header {
    background: #ffffff;
    padding: 18px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.6rem;
    color: #0f3b5e;
}

.logo-image {
    display: block;
    width: 140px;
    height: 64px;
    max-width: 140px;
    max-height: 64px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 10px;
}

.footer-logo,
.preview-logo,
.sidebar-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
    border-radius: 5px;
}

.preview-logo,
.sidebar-logo {
    margin-right: 4px;
}

.logo i {
    font-size: 2rem;
    color: #2b8c6e;
}

.logo .destaque {
    color: #2b8c6e;
}

.logo .tag {
    font-size: 0.65rem;
    font-weight: 500;
    background: #eef3f7;
    color: #1e4a6b;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 8px;
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    font-weight: 500;
    color: #334155;
    transition: color 0.2s;
}

nav a:hover {
    color: #0f3b5e;
}

nav a.active {
    color: #0f3b5e;
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #0a2638;
    margin-bottom: 12px;
}

.section-sub {
    text-align: center;
    color: #475569;
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 48px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.card {
    background: #f8fafc;
    padding: 32px 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9eef3;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(15, 59, 94, 0.08);
    border-color: #cbd9e6;
}

.card i {
    font-size: 2.8rem;
    color: #2b8c6e;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f3b5e;
}

.card p {
    color: #475569;
    font-size: 0.95rem;
}

.btn-ver-todos {
    text-align: center;
    margin-top: 48px;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 64px;
    background: linear-gradient(135deg, #f0f7fa 0%, #dce8f0 100%);
    border-bottom: 1px solid rgba(15, 59, 94, 0.06);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0a2638;
    margin-bottom: 12px;
}

.hero-content h1 i {
    color: #2b8c6e;
}

.hero-content .destaque-anos {
    display: inline-block;
    background: #0f3b5e;
    color: #fff;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-content .destaque-anos i {
    color: #facc15;
    margin-right: 6px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #334155;
    max-width: 520px;
    margin-bottom: 24px;
}

.hero-content p strong {
    color: #0f3b5e;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 30px;
    margin-top: 20px;
}

.hero-badges span {
    font-weight: 500;
    color: #0f3b5e;
    font-size: 0.95rem;
}

.hero-badges i {
    color: #2b8c6e;
    margin-right: 6px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .illustration {
    background: #ffffffcc;
    backdrop-filter: blur(4px);
    padding: 40px 28px;
    border-radius: 32px;
    box-shadow: 0 20px 48px rgba(15, 59, 94, 0.12);
    width: 100%;
    max-width: 440px;
    text-align: center;
}

.hero-image .illustration i {
    font-size: 4.5rem;
    color: #2b8c6e;
    margin-bottom: 12px;
}

.hero-image .illustration h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f3b5e;
}

.hero-image .illustration .cidade {
    color: #475569;
    font-weight: 500;
    margin-top: 4px;
}

.hero-image .illustration .cidade i {
    font-size: 1rem;
    color: #facc15;
}

/* ===== HERO PÁGINAS INTERNAS ===== */
.hero-interna {
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #0a2638 0%, #1a4f76 100%);
    color: #fff;
    text-align: center;
}

.hero-interna h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-interna h1 i {
    color: #2b8c6e;
}

.hero-interna p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
}

.hero-interna .breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.hero-interna .breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

.hero-interna .breadcrumb a:hover {
    opacity: 0.8;
}

/* ===== ORBITAL UNIVERSE ===== */
.orbital-universo {
    background: linear-gradient(180deg, #0a2638 0%, #123a5e 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

.orbital-universo .section-title {
    color: #ffffff;
}

.orbital-universo .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.universo {
    position: relative;
    height: 560px;
    max-width: 900px;
    margin: 40px auto 0;
}

.orbita {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(121, 200, 255, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
}

.orbita-1 {
    width: 460px;
    height: 300px;
}

.orbita-2 {
    width: 620px;
    height: 400px;
    transform: translate(-50%, -50%) rotate(30deg);
}

.trilho {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform-origin: center;
    pointer-events: none;
    z-index: 2;
}

.trilho-1 {
    width: 460px;
    height: 300px;
    transform: translate(-50%, -50%) rotate(-18deg);
}

.trilho-2 {
    width: 620px;
    height: 400px;
    transform: translate(-50%, -50%) rotate(30deg);
}

.astro {
    position: absolute;
    left: 0;
    top: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    offset-path: ellipse(50% 50% at 50% 50%);
    offset-rotate: 0deg;
    animation: viajar-orbita 10s linear infinite;
}

.astro::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    background: inherit;
    opacity: .18;
    filter: blur(5px);
}

.astro-verde {
    background: #2b8c6e;
    box-shadow: 0 0 8px #2b8c6e, 0 0 18px #3aa57f;
}

.astro-azul {
    width: 8px;
    height: 8px;
    background: #5eeaff;
    box-shadow: 0 0 7px #5eeaff, 0 0 16px #33d6ff;
    animation-duration: 15s;
}

.astro-dourado {
    width: 7px;
    height: 7px;
    background: #facc15;
    box-shadow: 0 0 7px #facc15, 0 0 15px #ffd24a;
    animation-duration: 18s;
    animation-direction: reverse;
}

.astro-atrasado {
    animation-delay: -7s;
}

@keyframes viajar-orbita {
    from { offset-distance: 0%; }
    to { offset-distance: 100%; }
}

.nucleo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(230px, 42vw);
    height: min(230px, 42vw);
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    z-index: 3;
    text-align: center;
}

.nucleo-imagem {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 230px;
    max-height: 230px;
    object-fit: cover;
}

.nucleo picture {
    display: block;
    width: 100%;
    height: 100%;
}

.planeta {
    position: absolute;
    z-index: 4;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(12, 34, 54, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #fff;
    transition: all 0.25s;
    cursor: default;
    white-space: nowrap;
}

.planeta:hover {
    transform: translateY(-5px);
    border-color: rgba(43, 140, 110, 0.6);
    box-shadow: 0 14px 36px rgba(43, 140, 110, 0.25);
}

.planeta i {
    font-size: 0.95rem;
    color: #3aa57f;
}

.p1 { left: 8%; top: 14%; }
.p2 { right: 5%; top: 18%; }
.p3 { left: 0; top: 52%; }
.p4 { right: 0; top: 55%; }
.p5 { left: 20%; bottom: 6%; }
.p6 { right: 16%; bottom: 4%; }
.p7 { left: calc(50% - 64px); top: 8%; }
.p8 { left: 14%; top: 34%; }
.p9 { right: 10%; top: 34%; }
.p10 { left: 28%; top: 14%; }

.planeta-azul {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #4fc3f7, #0277bd 60%, #01579b);
    box-shadow: 0 0 10px 2px rgba(79, 195, 247, .45);
    vertical-align: middle;
}

@media (max-width: 992px) {
    .universo {
        height: 520px;
    }

    .orbita-1,
    .trilho-1 {
        width: 420px;
        height: 280px;
    }

    .orbita-2,
    .trilho-2 {
        width: 560px;
        height: 360px;
    }
}

@media (max-width: 600px) {
    .universo {
        height: 480px;
        max-width: 100%;
    }

    .orbita-1,
    .trilho-1 {
        width: 320px;
        height: 220px;
    }

    .orbita-2,
    .trilho-2 {
        width: 420px;
        height: 290px;
    }

    .nucleo {
        width: min(160px, 42vw);
        height: min(160px, 42vw);
    }

    .nucleo-imagem {
        width: 100%;
        height: 100%;
    }

    .planeta {
        padding: 6px 8px;
        font-size: 0.7rem;
        gap: 5px;
    }

    .p1 { left: 0; top: 12%; }
    .p2 { right: 0; top: 16%; }
    .p3 { left: 0; top: 50%; }
    .p4 { right: 0; top: 52%; }
    .p5 { left: 6%; bottom: 8%; }
    .p6 { right: 4%; bottom: 6%; }
    .p7 { left: calc(50% - 57px); top: 10%; }
    .p8 { left: 0; top: 34%; }
    .p9 { right: 0; top: 34%; }
    .p10 { left: 12%; top: 22%; }
}

@media (prefers-reduced-motion: reduce) {
    .astro {
        animation-play-state: paused;
    }
}

/* ===== PARCEIROS ===== */
.parceiros {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #eef3f7;
}

.parceiros-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 48px;
}

.parceiros-inner span {
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.parceiros-inner .entidade {
    font-weight: 700;
    color: #0f3b5e;
    font-size: 1.1rem;
    background: #f1f5f9;
    padding: 6px 18px;
    border-radius: 40px;
    transition: all 0.2s;
}

.parceiros-inner .entidade:hover {
    background: #e2e8f0;
    transform: scale(1.03);
}

.parceiros-inner .entidade i {
    color: #2b8c6e;
    margin-right: 6px;
    font-size: 0.85rem;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    padding: 80px 0;
    background: #ffffff;
}

/* ===== SOBRE / HISTÓRIA ===== */
.sobre {
    background: #f0f7fa;
    padding: 80px 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-texto h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a2638;
    margin-bottom: 16px;
}

.sobre-texto .selo {
    display: inline-block;
    background: #0f3b5e;
    color: #fff;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.sobre-texto p {
    color: #334155;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.sobre-texto ul {
    list-style: none;
    margin: 20px 0;
}

.sobre-texto ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.sobre-texto ul li i {
    color: #2b8c6e;
    font-size: 1.1rem;
    width: 24px;
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat {
    background: #ffffff;
    padding: 28px 16px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.stat strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f3b5e;
}

.stat span {
    color: #475569;
    font-size: 0.95rem;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    padding: 80px 0;
    background: #ffffff;
}

.depo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.depo-item {
    background: #f8fafc;
    padding: 28px 24px;
    border-radius: 20px;
    border-left: 6px solid #2b8c6e;
}

.depo-item p {
    font-style: italic;
    color: #1e293b;
    font-size: 1rem;
}

.depo-item .autor {
    margin-top: 16px;
    font-weight: 600;
    color: #0f3b5e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.depo-item .autor i {
    color: #2b8c6e;
    font-size: 1.2rem;
}

/* ===== CTA ===== */
.cta {
    background: #0a2638;
    color: #fff;
    padding: 72px 0;
    text-align: center;
    border-radius: 40px 40px 0 0;
    margin-top: 40px;
}

.cta h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta .btn-success {
    background: #2b8c6e;
    box-shadow: 0 4px 20px rgba(43, 140, 110, 0.4);
}

.cta .btn-success:hover {
    background: #3aa57f;
    box-shadow: 0 8px 28px rgba(43, 140, 110, 0.5);
}

/* ===== CTA RECURSOS ===== */
.cta-recursos {
    background: #0a2638;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-recursos h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-recursos p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-recursos .btn-success {
    background: #2b8c6e;
    box-shadow: 0 4px 20px rgba(43, 140, 110, 0.4);
}

.cta-recursos .btn-success:hover {
    background: #3aa57f;
    box-shadow: 0 8px 28px rgba(43, 140, 110, 0.5);
}

/* ===== RECURSOS ===== */
.visao-sistema {
    background: #ffffff;
    padding: 64px 0;
}

.visao-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef3f7;
    color: #0f3b5e;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 18px;
}

.mini-label i {
    color: #2b8c6e;
}

.visao-texto h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #0a2638;
    margin-bottom: 16px;
}

.visao-texto p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.modulos-resumo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.modulos-resumo span {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e9eef3;
    color: #0f3b5e;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 12px;
}

.modulos-resumo i {
    color: #2b8c6e;
}

.sistema-preview {
    background: #0a2638;
    border-radius: 22px;
    box-shadow: 0 22px 52px rgba(15, 59, 94, 0.22);
    overflow: hidden;
    color: #fff;
}

.preview-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-top span {
    font-weight: 800;
}

.preview-top i {
    color: #2b8c6e;
    margin-right: 8px;
}

.preview-top strong {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.preview-body {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 310px;
}

.preview-body aside {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px 0;
}

.preview-body aside span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.preview-body aside span.active {
    background: rgba(43, 140, 110, 0.18);
    color: #fff;
    border-left: 4px solid #2b8c6e;
}

.preview-body aside i {
    color: #2b8c6e;
    width: 18px;
    text-align: center;
}

.preview-body main {
    background: #f8fafc;
    color: #0f3b5e;
    padding: 24px;
    display: grid;
    gap: 16px;
    align-content: start;
}

.preview-card {
    background: #ffffff;
    border: 1px solid #e9eef3;
    border-radius: 14px;
    padding: 18px;
}

.preview-card small,
.preview-card span {
    display: block;
    color: #64748b;
}

.preview-card strong {
    display: block;
    font-size: 1.7rem;
    margin: 4px 0;
}

.preview-card.destaque {
    border-color: rgba(43, 140, 110, 0.35);
    box-shadow: 0 12px 28px rgba(15, 59, 94, 0.08);
}

.preview-row {
    display: grid;
    gap: 10px;
}

.preview-row span {
    height: 12px;
    border-radius: 20px;
    background: #e2e8f0;
}

.preview-row span:nth-child(1) {
    width: 88%;
}

.preview-row span:nth-child(2) {
    width: 70%;
}

.preview-row span:nth-child(3) {
    width: 78%;
}

.recursos-lista {
    padding: 64px 0 80px;
    background: #ffffff;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.recurso-card {
    background: #f8fafc;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid #e9eef3;
    transition: all 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 59, 94, 0.08);
    border-color: #cbd9e6;
}

.recurso-card .icon {
    font-size: 2.6rem;
    color: #2b8c6e;
    margin-bottom: 16px;
}

.recurso-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 10px;
}

.recurso-card p {
    color: #475569;
    font-size: 0.98rem;
    margin-bottom: 12px;
}

.recurso-card .tag {
    display: inline-block;
    background: #eef3f7;
    color: #0f3b5e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-right: 6px;
    margin-top: 4px;
}

.recurso-card .tag i {
    color: #2b8c6e;
    margin-right: 4px;
}

/* ===== CATEGORIAS ===== */
.categorias {
    background: #f0f7fa;
    padding: 60px 0;
}

.categorias h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0a2638;
    margin-bottom: 12px;
}

.categorias .sub {
    text-align: center;
    color: #475569;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 48px;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.categoria-item {
    background: #ffffff;
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9eef3;
}

.categoria-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.categoria-item i {
    font-size: 2.4rem;
    color: #2b8c6e;
    margin-bottom: 12px;
}

.categoria-item h4 {
    font-weight: 700;
    color: #0f3b5e;
    font-size: 1.1rem;
}

.categoria-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ===== MENU DO SISTEMA ===== */
.sistema-menu {
    background: #ffffff;
    padding: 60px 0;
}

.sistema-menu .section-sub {
    margin-bottom: 40px;
}

.sistema-menu-wrapper {
    display: flex;
    justify-content: center;
}

.sistema-sidebar {
    background: #0a2638;
    border-radius: 20px;
    padding: 24px 0;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 48px rgba(15, 59, 94, 0.2);
    overflow: hidden;
}

.sistema-sidebar .sidebar-header {
    padding: 0 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sistema-sidebar .sidebar-header .logo-sys {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.sistema-sidebar .sidebar-header .logo-sys i {
    color: #2b8c6e;
    margin-right: 8px;
}

.sistema-sidebar .sidebar-header .user-sys {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.sistema-sidebar .sidebar-header .user-sys i {
    margin-right: 4px;
}

.sistema-sidebar .menu-group {
    padding: 12px 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sistema-sidebar .menu-group:last-child {
    border-bottom: none;
}

.sistema-sidebar .menu-group-label {
    padding: 0 20px;
    color: #2b8c6e;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.sistema-sidebar .menu-item {
    padding: 7px 20px 7px 32px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    transition: all 0.15s;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sistema-sidebar .menu-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.sistema-sidebar .menu-item i {
    width: 18px;
    font-size: 0.8rem;
    color: #2b8c6e;
    text-align: center;
}

.sistema-sidebar .menu-item .sub-badge {
    margin-left: auto;
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.sistema-sidebar .menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 4px 20px;
}

.sistema-sidebar .menu-item.sair {
    color: rgba(255, 100, 100, 0.7);
}

.sistema-sidebar .menu-item.sair i {
    color: rgba(255, 100, 100, 0.7);
}

.sistema-sidebar .menu-item.sair:hover {
    color: #ff6b6b;
    background: rgba(255, 100, 100, 0.08);
}

.sistema-sidebar .menu-item.sair:hover i {
    color: #ff6b6b;
}

.sistema-menu-info {
    text-align: center;
    margin-top: 32px;
    color: #64748b;
    font-size: 0.9rem;
}

.sistema-menu-info i {
    color: #2b8c6e;
}

@media (max-width: 600px) {
    .sistema-sidebar {
        max-width: 100%;
    }
}

/* ===== RODAPÉ ===== */
footer {
    background: #0a2638;
    color: #94a3b8;
    padding: 32px 0;
    border-top: 1px solid #1e3a4f;
    text-align: center;
    font-size: 0.95rem;
}

footer i {
    color: #2b8c6e;
    margin: 0 4px;
}

footer .footer-destaque {
    color: #e2e8f0;
    font-weight: 500;
}

/* ===== INSTITUIÇÕES ===== */
.instituicoes {
    background: #ffffff;
    padding: 80px 0;
}

.instituicoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    max-width: 1240px;
    margin: 0 auto;
}

.inst-item {
    background: #f8fafc;
    border: 1px solid #e9eef3;
    border-radius: 14px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.25s;
    text-align: left;
}

.inst-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 59, 94, 0.08);
    border-color: #2b8c6e;
}

.inst-item i {
    color: #2b8c6e;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.inst-item b {
    color: #0f3b5e;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
}

.inst-item small {
    color: #64748b;
    font-size: 0.78rem;
}

.inst-item small::before {
    content: "\f0ac";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 5px;
    color: #2b8c6e;
}

@media (max-width: 600px) {
    .instituicoes-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .hero-grid,
    .sobre-grid,
    .visao-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-image .illustration {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    header {
        padding: 10px 0;
    }

    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 1.35rem;
    }

    .logo-image {
        width: 160px;
        height: 60px;
    }

    .logo .tag {
        display: none;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }

    nav a {
        font-size: 0.92rem;
    }

    nav .btn-primary {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-interna h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .parceiros-inner {
        gap: 12px 20px;
    }

    .parceiros-inner .entidade {
        font-size: 0.9rem;
        padding: 4px 14px;
    }

    .recursos-grid {
        grid-template-columns: 1fr;
    }

    .visao-sistema {
        padding: 42px 0;
    }

    .visao-texto h2 {
        font-size: 1.75rem;
    }

    .modulos-resumo,
    .preview-body {
        grid-template-columns: 1fr;
    }

    .preview-body {
        min-height: auto;
    }

    .preview-body aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 12px;
        gap: 8px;
    }

    .preview-body aside span {
        padding: 10px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
        font-size: 0.82rem;
    }

    .preview-body aside span.active {
        border-left: 0;
        outline: 1px solid rgba(43, 140, 110, 0.35);
    }

    .preview-body main {
        padding: 16px;
    }

    .categorias-grid {
        grid-template-columns: 1fr 1fr;
    }
}
