.section-title{
    color:#fff;
    font-size:3.5rem;
    font-weight:700;
    text-align:center;
    margin-bottom:40px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050b12;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 50px;

    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);

    z-index: 999;
}

.logo img {
    height: 70px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #00b7ff;
}

/* HERO */

#hero {
    position: relative;

    min-height: 100vh;

    background-image: url('../img/home.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    max-width: 550px;

    position: relative;
    z-index: 2;

    margin-top: -20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 0 12px rgba(0,183,255,0.4);
}

.hero-content p {
    font-size: 1.3rem;
    color: #d8d8d8;
    max-width:400px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #00b7ff;
    color: #fff;

    text-decoration: none;
    font-weight: bold;

    border-radius: 18px;

    transition: 0.3s;
}

.btn:hover {
    background: #008fd6;
    transform: translateY(-2px);
}

/* SEÇÕES */

section {
    padding: 100px 10%;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;

    margin-bottom: 50px;

    color: #00b7ff;
}

/* FOOTER */

footer {
    text-align: center;

    padding: 50px 20px;

    background: #02060a;

    border-top: 1px solid rgba(255,255,255,0.1);
}

footer img {
    height: 60px;
    margin-bottom: 20px;
}

footer p {
    color: #cfcfcf;
}
.footer-logo {
    height: 80px;
    width: auto;
}

/* SOLUÇÕES */

#solucoes {
    background: #050b12;
    padding: 80px 10% 120px 10%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: #bfbfbf;
    margin-bottom: 60px;
    font-size: 1.2rem;
}

.cards {
 display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    width: 330px;
    min-height: 380px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,183,255,0.15);
    border-radius: 20px;
    padding: 30px;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);

    border-color: rgba(0,183,255,0.5);

    box-shadow: 0 0 25px rgba(0,183,255,0.15);
}

.card h3 {
    margin-bottom: 20px;
    color: #00b7ff;
}

.card p {
    color: #d8d8d8;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 8px;
    color: #bfbfbf;
}

#projetos {
    padding: 80px 10%;

    background: linear-gradient(
        180deg,
        #030c15 0%,
        #05101c 100%
    );
}

#projetos .subtitulo {
    text-align: center;

    font-size: 1.2rem;

    color: #c0c0c0;

    margin-bottom: 60px;
}

#quem-somos {
    padding-top: 80px;
    padding-bottom: 60px;
}

.quem-container{
    max-width:1000px;
    margin:0 auto;
}

.quem-texto{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.quem-texto p{
    margin-bottom:20px;
    color:#d8d8d8;
    font-size:1.1rem;
    line-height:1.8;
}

.quem-grid{
    display:grid;
    grid-template-columns: repeat(2, 320px);
    justify-content:center;
    gap:15px 40px;
    margin-top:20px;
}

.quem-grid div{
    font-size:1.2rem;
    color:#fff;
}

.quem-grid div::before{
    content:"✓ ";
    color:#00b7ff;
    font-weight:bold;
}

.knowledge-feature {

    max-width: 900px;

    margin: 0 auto 60px auto;

    padding: 40px;

    text-align: center;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(0,183,255,0.15);

    border-radius: 20px;
}

.knowledge-feature h3 {

    color: #00b7ff;

    font-size: 2rem;

    margin-bottom: 20px;
}

.knowledge-feature p {

    max-width: 700px;

    margin: 0 auto 30px auto;

    color: #d8d8d8;
}

.contato-info{
    max-width:900px;
    margin:60px auto 0;
    text-align:center;
}

.contato-info p{
    margin-bottom:15px;
    color:#d0d0d0;
}

.card ul li::before{
    content:"✓";
    color:#00b7ff;
    font-weight:bold;
    margin-right:8px;
}
/* =======================================
   PORTAL RMEVOLUTION
======================================= */

.portal-hero{

    max-width:500px;

    margin-top:20px;

    align-items:flex-start;

    text-align:left;
}

.portal-hero h1{

    font-size:3rem;

    margin-bottom:20px;
}

.portal-hero p{

    max-width:650px;

    text-align:left;

    margin-bottom:30px;
}

.portal-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;
}

.portal-card{

    width:330px;

    min-height:260px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(0,183,255,0.15);

    border-radius:20px;

    padding:30px;

    transition:0.3s;
}

.portal-card:hover{

    transform:translateY(-6px);

    border-color:rgba(0,183,255,0.5);

    box-shadow:0 0 25px rgba(0,183,255,0.15);
}

.portal-card h3{

    color:#00b7ff;

    margin-bottom:15px;
}

.portal-card p{

    color:#d8d8d8;

    margin-bottom:25px;
}

.portal-dev{

    border:1px dashed #00b7ff;
}

.portal-badge{

    display:inline-block;

    margin-top:10px;

    padding:6px 12px;

    border-radius:20px;

    background:#00b7ff;

    color:#fff;

    font-size:.8rem;

    font-weight:bold;

    letter-spacing:1px;
}

/* =======================================
   MANIFESTO
======================================= */

.manifesto{

    max-width:1000px;

    margin:140px auto 80px;

    padding:60px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(0,183,255,.15);

    border-radius:20px;
}

.manifesto h1{

    color:#00b7ff;

    text-align:center;

    font-size:3rem;

    margin-bottom:15px;
}

.manifesto h2{

    color:#ffffff;

    text-align:center;

    font-weight:400;

    margin-bottom:60px;
}

.manifesto p{

    color:#d7d7d7;

    font-size:1.15rem;

    line-height:2;

    margin-bottom:30px;
}

.manifesto .destaque{

    color:#00b7ff;

    text-align:center;

    font-size:1.6rem;

    font-weight:bold;

    margin:60px 0;
}

.manifesto hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.1);

    margin:50px 0;
}

.manifesto .final{

    text-align:center;

    font-size:1.3rem;
}

.manifesto .botao{

    text-align:center;

    margin-top:60px;
}

/* =======================================
   CONHECIMENTO
======================================= */

.topo{
    padding-top:140px;
    padding-bottom:60px;
    text-align:center;
}

.topo h1{
    font-size:3rem;
    color:#fff;
    margin-bottom:20px;
}

.topo p{
    color:#bfbfbf;
    max-width:800px;
    margin:auto;
}

.categoria{
    margin-bottom:80px;
}

.categoria h2{
    color:#00b7ff;
    margin-bottom:30px;
    text-align:center;
}

.subcategoria{
    margin-top:38px;
}

.subcategoria > h3{
    color:#dff4ff;
    font-size:1.25rem;
    margin-bottom:22px;
    text-align:center;
}

.docs-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.doc-card{
    width:330px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(0,183,255,0.15);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.doc-card:hover{
    transform:translateY(-6px);
    border-color:rgba(0,183,255,0.5);
    box-shadow:0 0 25px rgba(0,183,255,0.15);
}

.doc-card h3{
    color:#00b7ff;
    margin-bottom:20px;
}

.doc-card p{
    color:#d8d8d8;
    margin-bottom:25px;
}

.knowledge-explorer{
    margin:0 auto;
    max-width:1320px;
    padding:130px 6% 80px;
}

.knowledge-hero{
    padding:0 0 34px;
}

.knowledge-hero__copy{
    max-width:840px;
}

.knowledge-eyebrow{
    color:#7ad8ff;
    display:inline-block;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    margin-bottom:12px;
    text-transform:uppercase;
}

.knowledge-hero h1{
    color:#fff;
    font-size:3rem;
    line-height:1.1;
    margin-bottom:16px;
}

.knowledge-hero p{
    color:#bfcdd6;
    font-size:1.08rem;
    max-width:760px;
}

.knowledge-summary{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:26px 0;
}

.knowledge-summary span{
    background:rgba(0,183,255,.08);
    border:1px solid rgba(0,183,255,.18);
    border-radius:8px;
    color:#d8edf7;
    padding:10px 14px;
}

.knowledge-summary strong{
    color:#00b7ff;
    font-size:1.25rem;
    margin-right:5px;
}

.knowledge-search{
    display:block;
    max-width:980px;
}

.knowledge-search span{
    color:#dff4ff;
    display:block;
    font-weight:700;
    margin-bottom:10px;
}

.knowledge-search input{
    appearance:none;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(0,183,255,.28);
    border-radius:10px;
    color:#fff;
    font-size:1.05rem;
    outline:none;
    padding:18px 20px;
    transition:border-color .2s, box-shadow .2s, background .2s;
    width:100%;
}

.knowledge-search input:focus{
    background:rgba(0,183,255,.07);
    border-color:#00b7ff;
    box-shadow:0 0 0 3px rgba(0,183,255,.12);
}

.knowledge-shell{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(0,183,255,.16);
    border-radius:14px;
    padding:22px;
}

.knowledge-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.knowledge-tab{
    appearance:none;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(122,191,255,.18);
    border-radius:8px;
    color:#cfe5f1;
    cursor:pointer;
    font-weight:700;
    padding:10px 14px;
    transition:background .2s, border-color .2s, color .2s;
}

.knowledge-tab:hover,
.knowledge-tab:focus,
.knowledge-tab.is-active{
    background:rgba(0,183,255,.12);
    border-color:rgba(0,183,255,.5);
    color:#fff;
}

.knowledge-tab span{
    color:#7ad8ff;
    margin-left:4px;
}

.knowledge-quick-grid{
    display:grid;
    gap:16px;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    margin-bottom:22px;
}

.knowledge-quick-card{
    background:rgba(0,0,0,.16);
    border:1px solid rgba(122,191,255,.14);
    border-radius:10px;
    min-width:0;
    padding:16px;
}

.knowledge-quick-card h2,
.knowledge-tree-header h2{
    color:#00b7ff;
    font-size:1.15rem;
    margin:0 0 10px;
    text-align:left;
}

.knowledge-mini-list,
.knowledge-list-panel{
    display:grid;
    gap:8px;
}

.knowledge-panel{
    display:none;
}

.knowledge-panel.is-active{
    display:block;
}

.knowledge-tree-header{
    align-items:flex-end;
    border-bottom:1px solid rgba(255,255,255,.08);
    display:flex;
    gap:16px;
    justify-content:space-between;
    margin-bottom:14px;
    padding-bottom:14px;
}

.knowledge-tree-header p{
    color:#9fb8c6;
    font-size:.92rem;
}

.knowledge-tree,
.knowledge-tree__children{
    list-style:none;
    margin:0;
    padding:0;
}

.knowledge-tree__children{
    border-left:1px solid rgba(122,191,255,.12);
    margin-left:17px;
    padding-left:16px;
}

.knowledge-tree__item[hidden]{
    display:none;
}

.knowledge-tree__details{
    margin:3px 0;
}

.knowledge-tree__details > summary{
    align-items:center;
    border-radius:8px;
    color:#dff4ff;
    cursor:pointer;
    display:flex;
    gap:10px;
    list-style:none;
    min-height:38px;
    padding:7px 9px;
    transition:background .2s, color .2s;
}

.knowledge-tree__details > summary::-webkit-details-marker{
    display:none;
}

.knowledge-tree__details > summary:hover,
.knowledge-tree__details > summary:focus{
    background:rgba(0,183,255,.08);
    color:#fff;
    outline:none;
}

.knowledge-tree__item.is-anchor-target > .knowledge-tree__details > summary,
.knowledge-tree__item.is-anchor-target > .knowledge-doc-row{
    background:rgba(0,183,255,.12);
    box-shadow:0 0 0 1px rgba(0,183,255,.38);
}

.knowledge-tree__details summary b{
    background:rgba(0,183,255,.12);
    border:1px solid rgba(0,183,255,.22);
    border-radius:999px;
    color:#9fe2ff;
    font-size:.78rem;
    margin-left:auto;
    padding:1px 8px;
}

.knowledge-tree__chevron{
    border-bottom:5px solid transparent;
    border-left:6px solid #7ad8ff;
    border-top:5px solid transparent;
    height:0;
    transition:transform .2s;
    width:0;
}

.knowledge-tree__details[open] > summary .knowledge-tree__chevron{
    transform:rotate(90deg);
}

.knowledge-domain-icon,
.knowledge-area-icon,
.knowledge-category-icon,
.knowledge-folder-icon,
.knowledge-doc-icon{
    align-items:center;
    background:rgba(0,183,255,.12);
    border:1px solid rgba(0,183,255,.24);
    border-radius:6px;
    color:#7ad8ff;
    display:inline-flex;
    flex:0 0 auto;
    font-size:.68rem;
    font-weight:800;
    height:24px;
    justify-content:center;
    letter-spacing:.03em;
    width:28px;
}

.knowledge-domain-icon{
    background:rgba(0,183,255,.18);
    border-color:rgba(0,183,255,.42);
    color:#e7f8ff;
    width:34px;
}

.knowledge-area-icon{
    background:rgba(122,191,255,.12);
    border-color:rgba(122,191,255,.3);
    color:#9fe2ff;
    font-size:.58rem;
    width:38px;
}

.knowledge-folder-icon{
    color:#dff4ff;
}

.knowledge-tree__item--domain > .knowledge-tree__details > summary{
    background:rgba(0,183,255,.06);
    border:1px solid rgba(0,183,255,.12);
    font-weight:800;
}

.knowledge-tree__item--area > .knowledge-tree__details > summary{
    color:#cfeeff;
    font-weight:700;
}

.knowledge-tree__item.is-empty > .knowledge-tree__details > summary{
    color:#7893a3;
}

.knowledge-tree__item.is-empty > .knowledge-tree__details > summary b{
    background:rgba(255,255,255,.035);
    border-color:rgba(255,255,255,.08);
    color:#7893a3;
}

.knowledge-doc-row{
    align-items:center;
    border-radius:8px;
    display:flex;
    gap:10px;
    margin:2px 0;
    padding:3px 4px;
}

.knowledge-doc-row:hover{
    background:rgba(255,255,255,.035);
}

.knowledge-doc-link{
    align-items:center;
    color:#d8edf7;
    display:flex;
    flex:1;
    gap:10px;
    min-width:0;
    padding:7px 5px;
    text-decoration:none;
}

.knowledge-doc-link strong,
.knowledge-stored-row strong{
    display:block;
    font-size:.96rem;
    font-weight:700;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.knowledge-doc-link small,
.knowledge-stored-row small{
    color:#8fa9b8;
    display:block;
    font-size:.78rem;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.knowledge-doc-link:hover strong,
.knowledge-doc-link:focus strong,
.knowledge-stored-row a:hover strong,
.knowledge-stored-row a:focus strong{
    color:#00b7ff;
}

.knowledge-fav-btn{
    align-items:center;
    appearance:none;
    background:transparent;
    border:1px solid transparent;
    border-radius:7px;
    color:#7793a3;
    cursor:pointer;
    display:flex;
    flex:0 0 auto;
    font-size:1.25rem;
    height:34px;
    justify-content:center;
    line-height:1;
    width:34px;
}

.knowledge-fav-btn:hover,
.knowledge-fav-btn:focus,
.knowledge-fav-btn.is-active{
    background:rgba(0,183,255,.1);
    border-color:rgba(0,183,255,.22);
    color:#00b7ff;
    outline:none;
}

.knowledge-stored-row{
    align-items:center;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(122,191,255,.12);
    border-radius:8px;
    display:flex;
    gap:10px;
    min-width:0;
    padding:9px 10px;
}

.knowledge-stored-row a{
    color:#d8edf7;
    flex:1;
    min-width:0;
    text-decoration:none;
}

.knowledge-empty{
    color:#8fa9b8;
    font-size:.92rem;
}

.knowledge-empty--search{
    background:rgba(0,0,0,.16);
    border:1px solid rgba(122,191,255,.12);
    border-radius:8px;
    padding:18px;
}

.doc-container{
    max-width:1240px;
    margin:140px auto 80px auto;
    padding:40px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(0,183,255,0.15);
    border-radius:20px;
}

.doc-pop-shell{
    min-width:0;
}

.doc-breadcrumb{
    align-items:center;
    color:#8da9b8;
    display:flex;
    flex-wrap:wrap;
    font-size:.9rem;
    gap:8px;
    margin-bottom:16px;
}

.doc-breadcrumb a{
    color:#7abfff;
    text-decoration:none;
}

.doc-breadcrumb a:hover,
.doc-breadcrumb a:focus{
    color:#00b7ff;
}

.doc-breadcrumb strong{
    color:#d8ecf7;
    font-weight:600;
}

.doc-meta{
    align-items:center;
    background:rgba(0,183,255,0.06);
    border:1px solid rgba(122,191,255,0.16);
    border-radius:12px;
    color:#cfe5f1;
    display:flex;
    flex-wrap:wrap;
    gap:12px 18px;
    margin-bottom:28px;
    padding:14px 16px;
    font-size:.9rem;
}

.doc-level-badge{
    background:rgba(0,183,255,0.12);
    border:1px solid rgba(0,183,255,0.24);
    border-radius:999px;
    color:#dff4ff;
    display:inline-block;
    font-weight:600;
    padding:2px 10px;
}

.doc-pop-layout{
    align-items:start;
    display:grid;
    gap:32px;
    grid-template-columns:minmax(0, 1fr) 250px;
}

.doc-content{
    color:#d8d8d8;
    grid-column:1;
    line-height:1.9;
    min-width:0;
}

.doc-content h1{
    color:#00b7ff;
    margin-bottom:25px;
}

.doc-content h2{
    color:#00b7ff;
    margin-top:40px;
    margin-bottom:20px;
}

.doc-content h3{
    color:#00b7ff;
    margin-top:30px;
    margin-bottom:15px;
}

.doc-content a{
    color:#00b7ff;
}

.doc-toc{
    grid-column:2;
    grid-row:1;
    position:sticky;
    top:110px;
}

.doc-toc details{
    background:rgba(255,255,255,0.025);
    border:1px solid rgba(122,191,255,0.16);
    border-radius:12px;
    padding:14px;
}

.doc-toc summary{
    color:#dff4ff;
    cursor:pointer;
    font-weight:700;
    list-style:none;
    margin-bottom:10px;
}

.doc-toc summary::-webkit-details-marker{
    display:none;
}

.doc-toc nav{
    display:flex;
    flex-direction:column;
    gap:5px;
    max-height:65vh;
    overflow:auto;
}

.doc-toc__link{
    border-left:2px solid transparent;
    color:#8fcfff;
    font-size:.9rem;
    line-height:1.35;
    padding:6px 8px;
    text-decoration:none;
}

.doc-toc__link--level-2{
    padding-left:18px;
}

.doc-toc__link--level-3{
    color:#9fb8c6;
    font-size:.85rem;
    padding-left:28px;
}

.doc-toc__link:hover,
.doc-toc__link:focus,
.doc-toc__link.is-active{
    background:rgba(0,183,255,0.09);
    border-left-color:#00b7ff;
    color:#fff;
}

.doc-highlight-card,
.doc-tools-card--summary{
    background:rgba(0,183,255,0.055);
    border:1px solid rgba(122,191,255,0.2);
    border-radius:12px;
}

.doc-highlight-card{
    margin:30px 0;
    padding:20px 22px;
}

.doc-highlight-card h1,
.doc-highlight-card h2,
.doc-highlight-card h3{
    margin-top:0;
}

.doc-tools-card--summary{
    flex-basis:100%;
    padding:12px;
}

.doc-tool-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
}

.doc-tool-tags span{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    color:#d8edf7;
    padding:4px 10px;
}

.doc-evidences{
    background:rgba(0,183,255,0.075);
}

.doc-evidences li{
    list-style:none;
    padding-left:26px;
    position:relative;
}

.doc-evidences li::before{
    border:1px solid #00b7ff;
    border-radius:4px;
    content:"";
    height:13px;
    left:0;
    position:absolute;
    top:.55em;
    width:13px;
}

.doc-next-actions{
    background:rgba(122,191,255,0.07);
}

.doc-content ul{
    margin:14px 0 22px 24px;
    padding:0;
}

.doc-content li{
    margin:6px 0;
}

.doc-content blockquote{
    background:rgba(0,183,255,0.08);
    border-left:4px solid #00b7ff;
    border-radius:8px;
    color:#dff4ff;
    margin:22px 0;
    padding:16px 20px;
}

.doc-content blockquote br:last-child{
    display:none;
}

.doc-content table{
    border-collapse:collapse;
    display:block;
    margin:24px 0;
    max-width:100%;
    overflow:auto;
}

.doc-content td,
.doc-content th{
    border:1px solid rgba(0,183,255,0.18);
    padding:10px 14px;
}

.doc-content hr{
    border:none;
    border-top:1px solid rgba(255,255,255,0.12);
    margin:32px 0;
}

.doc-content pre{
    background:rgba(0,0,0,0.35);
    border:1px solid rgba(0,183,255,0.14);
    border-radius:8px;
    color:#e8f7ff;
    line-height:1.6;
    margin:24px 0;
    overflow:auto;
    padding:18px;
    white-space:pre;
}

.doc-content code{
    font-family:Consolas, Monaco, monospace;
}

.voltar{
    margin-bottom:30px;
}

.doc-modal[hidden]{
    display:none;
}

.doc-modal-open{
    left:0;
    overflow:hidden;
    position:fixed;
    right:0;
    width:100%;
}

.doc-modal{
    inset:0;
    position:fixed;
    z-index:2000;
}

.doc-modal__backdrop{
    background:rgba(0,0,0,0.72);
    inset:0;
    position:absolute;
}

.doc-modal__dialog{
    background:#07121b;
    border:1px solid rgba(122,191,255,0.28);
    border-radius:14px;
    box-shadow:0 24px 80px rgba(0,0,0,0.62);
    color:#d8d8d8;
    display:flex;
    flex-direction:column;
    left:50%;
    max-height:85vh;
    max-width:1000px;
    outline:none;
    position:absolute;
    top:50%;
    transform:translate(-50%, -50%);
    width:min(92vw, 960px);
}

.doc-modal__header{
    align-items:center;
    background:#07121b;
    border-bottom:1px solid rgba(122,191,255,0.16);
    border-radius:14px 14px 0 0;
    display:flex;
    gap:20px;
    justify-content:space-between;
    padding:18px 24px;
    position:relative;
    z-index:1;
}

.doc-modal__header h2{
    color:#00b7ff;
    font-size:1.35rem;
    line-height:1.3;
    margin:0;
    padding-right:56px;
}

.doc-modal__close{
    align-items:center;
    appearance:none;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(122,191,255,0.28);
    border-radius:10px;
    color:#fff;
    cursor:pointer;
    display:flex;
    flex:0 0 auto;
    font-size:2rem;
    height:42px;
    justify-content:center;
    line-height:1;
    padding:0 0 4px;
    position:absolute;
    right:18px;
    top:14px;
    transition:background .2s, border-color .2s, color .2s;
    width:40px;
}

.doc-modal__close:hover,
.doc-modal__close:focus{
    background:rgba(0,183,255,0.14);
    border-color:#00b7ff;
    color:#00b7ff;
    outline:none;
}

.doc-modal__body{
    min-height:0;
    overflow:auto;
    padding:30px 34px 36px;
}

.doc-modal .doc-content{
    line-height:1.8;
    margin:0;
}

.doc-modal .doc-pop-layout{
    gap:24px;
    grid-template-columns:minmax(0, 1fr) 220px;
}

.doc-modal .doc-toc{
    top:0;
}

.doc-modal .doc-toc nav{
    max-height:48vh;
}

.doc-modal .doc-content h1:first-child{
    display:none;
}

.doc-modal .doc-content h1,
.doc-modal .doc-content h2,
.doc-modal .doc-content h3{
    scroll-margin-top:24px;
}

.doc-modal__loading{
    color:#bfbfbf;
    margin:0;
}

/* RESPONSIVO */

@media (max-width: 900px) {

    /* HEADER */

    header {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .logo img {
        height: 55px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
        gap: 10px;
    }

    nav a {
        font-size: 0.9rem;
    }

    /* HERO */

#hero{
        min-height: auto;

        padding-top: 150px;
        padding-bottom:400px;
background-size: 110%;
        background-position: center 300px;
        background-attachment: scroll;
    }
    .hero-content{
        margin-top: 10px;
        text-align:center;
    }

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

    .hero-content p{
        font-size:1rem;
    }

    .btn {
        padding: 12px 24px;
    }

    /* SEÇÕES */

    section {

        padding: 100px 6%;
scroll-margin-top: 70px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .doc-card{
        width:100%;
        max-width:380px;
    }

    .topo h1{
        font-size:2rem;
    }

    .doc-container{
        margin:120px 20px 40px;
        padding:25px;
    }

    .doc-pop-layout,
    .doc-modal .doc-pop-layout{
        display:block;
    }

    .doc-toc,
    .doc-modal .doc-toc{
        margin-bottom:22px;
        position:static;
    }

    .doc-toc details{
        padding:12px 14px;
    }

    .doc-toc nav,
    .doc-modal .doc-toc nav{
        max-height:260px;
    }

    .doc-modal__dialog{
        max-height:92vh;
        width:94vw;
    }

    .doc-modal__body{
        padding:22px;
    }

    .knowledge-explorer{
        padding:140px 5% 50px;
    }

    .knowledge-hero h1{
        font-size:2.15rem;
    }

    .knowledge-shell{
        padding:16px;
    }

    .knowledge-quick-grid{
        grid-template-columns:1fr;
    }

    .knowledge-tree-header{
        align-items:flex-start;
        flex-direction:column;
        gap:4px;
    }

    .knowledge-tree__children{
        margin-left:12px;
        padding-left:10px;
    }

    .knowledge-doc-link strong,
    .knowledge-stored-row strong{
        white-space:normal;
    }

    .knowledge-search input{
        font-size:1rem;
        padding:15px;
    }

    /* CARDS */

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 380px;
    }

    /* QUEM SOMOS */

    .quem-texto p {
        font-size: 1rem;
        text-align: left;
    }

    .quem-grid {
        grid-template-columns: 1fr;

        gap: 12px;

        max-width: 320px;

        margin: 20px auto 0;
    }

    .quem-grid div {
        font-size: 1rem;
    }

    /* CONHECIMENTO */

    .knowledge-feature {
        padding: 25px;
    }

    .knowledge-feature h3 {
        font-size: 1.5rem;
    }

    .knowledge-feature p {
        font-size: 1rem;
    }

    /* CONTATO */

    .contato-info {
        padding: 0 10px;
    }

    .contato-info p {
        font-size: 0.95rem;
    }

    /* FOOTER */

    .footer-logo {
        height: 60px;
    }
.portal-logo{
    max-width:280px;
}

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

.portal-hero p{
    font-size:1rem;
}

.portal-grid{
    flex-direction:column;
    align-items:center;
}

.portal-card{
    width:100%;
    max-width:380px;
}
/* MANIFESTO */

.manifesto{

    margin:120px 20px 40px;

    padding:30px;
}

.manifesto h1{

    font-size:2.2rem;
}

.manifesto h2{

    font-size:1.3rem;

    margin-bottom:40px;
}

.manifesto p{

    font-size:1rem;
}

.manifesto .destaque{

    font-size:1.3rem;
}

}
