@import url('base.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.12.1/font/bootstrap-icons.min.css');
@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Notch&family=Roboto&display=swap');

/*Home*/
.secao-inicial {
    width: 100%;
    min-height: 75vh;
    position: relative;
}

.secao-inicial::before,
.secao-inicial::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 1;
    mix-blend-mode: screen;
    z-index: 0;
}

.secao-inicial::before {
    top: 50%;
    left: -230px;
    transform: translateY(-50%);
    background: radial-gradient(circle,
            rgb(127, 83, 168) 0%,
            rgba(90, 41, 137, 0.9) 25%,
            rgba(133, 50, 210, 0.6) 45%,
            transparent 70%);
    box-shadow: 0 0 60px 40px rgba(147, 51, 234, 0.3);
}

.secao-inicial::after {
    top: 35%;
    right: -100px;
    transform: translateY(-50%);
    background: radial-gradient(circle,
            rgb(179, 111, 208) 0%,
            rgba(90, 41, 137, 0.9) 25%,
            rgba(133, 51, 234, 0.6) 45%,
            transparent 75%);
    box-shadow: 0 0 80px 50px rgba(192, 132, 252, 0.4);
}

.secao-inicial .container {
    position: relative;
    z-index: 1;
}

.titulo-principal {
    font-family: "Stack Sans Notch", sans-serif;
    font-size: 57px;
    font-weight: 900px;
    margin-left: -45px;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
}

.roxo {
    color: #935cd6;
}

.subtitulo {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    margin-top: 1rem;
    margin-left: -45px;
    color: #b0b0b0;
}

.secao-inicial img {
    margin-top: -50px;
    max-width: 700px;
}

.pilares {
    background: linear-gradient(90deg, #683990 19%, #251435 100%);
    padding: 5rem 0;
    width: 99vw;
    margin: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.titulo-pilares {
    font-family: "Trebuchet MS";
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    padding: 0 2rem;
}

.titulo-pilares::before,
.titulo-pilares::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 345px;
    height: 3px;
    background-color: #fff;
    transform: translateY(-50%);
}

.titulo-pilares::before {
    right: 100%;
    margin-right: 20px;
}

.titulo-pilares::after {
    left: 100%;
    margin-left: 20px;
}

.titulo-pilar {
    font-family: "Segoe UI";
    font-size: 20px;
    font-weight: bold;
    color: #9F6ACE;
}

.texto-pilar {
    font-family: "Segoe UI";
    font-size: 18px;
}

.pilares h2 {
    margin-bottom: 4rem;
}

.pillar-card {
    background: #1f1f1f;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    width: 90%;
    margin: 0 auto 2rem;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(156, 126, 255, 0.7);
}

.pillar-card i {
    color: #c69eff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow:
        0 0 5px #896bb3,
        0 0 10px #a885da,
        0 0 20px #c69eff,
        0 0 40px #b784f4,
        0 0 80px #3d2855;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.pillar-card i:hover {
    transform: scale(1.1);
    text-shadow:
        0 0 10px #aa87d5,
        0 0 20px #d3aaff,
        0 0 40px #c69eff,
        0 0 80px #b784f4,
        0 0 120px #9b5de5;
}

.pillar-card p {
    font-size: 1rem;
    color: #ccc;
}

.titulo-projetosrecentes {
    font-family: "Trebuchet MS";
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-left: -10px;
}

.titulo-projetosrecentes::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 896px;
    height: 3px;
    background-color: #fff;
    margin-left: 15px;
}

/*Projetos*/

.card-projeto {
    width: 100%;
    max-width: 380px;
    min-height: 520px;
    background: linear-gradient(180deg, #552187, #3a145b 60%, #2a0d44);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 25px rgba(126, 54, 194, 0.45);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

.card-projeto:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 40px rgba(155, 92, 255, 0.55);
}


.card-projeto .carousel-inner {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-projeto img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform .35s ease;
}

.card-projeto:hover img {
    transform: scale(1.06);
}

.card-projeto .card-body {
    padding: 24px;
    color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-projeto .card-title {
    font-family: "Segoe UI";
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: capitalize;
    background: linear-gradient(to right, #d8b8ff, #bf8aff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word;
}


.card-projeto .card-views {
    opacity: 0.85;
    font-size: .95rem;
    margin-bottom: 14px;
    text-align: center;
}

.card-projeto .card-desc {
    font-size: 1rem;
    line-height: 1.45;
    text-align: justify;
    margin-bottom: 22px;
    color: #e7d9ff;
    backdrop-filter: blur(2px);
    overflow: visible;
    text-overflow: unset;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    text-transform: capitalize;
}

.btn-projeto {
    display: inline-block;
    background: linear-gradient(90deg, #5a1e8b, #8e46b8, #b97cff);
    color: #ffffff;
    padding: 12px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    width: 100%;
    text-align: center;
    border: none;
    transition: all 0.28s ease;
}

.btn-projeto:hover {
    background: linear-gradient(90deg, #7a3db5, #c78ce5, #b97cff);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/*Passos*/
.passos {
    position: relative;
    min-height: 75vh;
    width: 100%;
}

.passos::before,
.passos::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 1;
    mix-blend-mode: screen;
    z-index: 0;
}

.passos::before {
    top: 30%;
    left: -360px;

    transform: translateY(-20%);
    background: radial-gradient(circle,
            rgb(80, 46, 94) 0%,
            rgba(90, 41, 137, 0.9) 25%,
            rgba(93, 31, 168, 0.6) 45%,
            transparent 75%);
    box-shadow: 0 0 80px 30px rgba(192, 132, 252, 0.4);
}

.passos::after {
    top: 30%;
    right: -90px;
    width: 100px;
    transform: translateY(-50%);
    background: radial-gradient(circle,
            rgb(80, 46, 94) 0%,
            rgba(90, 41, 137, 0.9) 25%,
            rgba(133, 51, 234, 0.6) 45%,
            transparent 75%);
    box-shadow: 0 0 80px 50px rgba(192, 132, 252, 0.4);
}

.passos h2 {
    font-family: "Trebuchet MS";
    font-size: 36px;
    font-weight: 700;
    color: #b78af2;
    white-space: nowrap;

}

.passos ol {
    list-style: decimal;
    padding-left: 1.5rem;
    color: #fff;
    line-height: 1.8;
    z-index: 2;
    position: relative;
}

.passos li {
    font-family: "Trebuchet MS";
    font-size: 20px;
    margin-bottom: 1rem;
    transition: 0.3s ease;
}

.passos li strong {
    display: inline-block;
    color: #d4b3ff;
    font-size: 22px;
    margin-bottom: 2px;
}

.passos li:hover {
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(180, 140, 255, 0.6);
}

.dica-extra {
    font-size: 1.05rem;
    color: #e8d9ff;
    margin-top: 15px;
}

.btn-cadastro {
    display: inline-block;
    background: linear-gradient(135deg, #9F6ACE, #7b3bb3);
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Trebuchet MS";
    transition: 0.3s ease;
}

.btn-cadastro:hover {
    background: linear-gradient(135deg, #b281ff, #9046d2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(180, 120, 255, 0.5);
}

.passos img {
    padding-right: 100px;
    max-width: 550px;
    z-index: 2;
    position: relative;
}

.passos .container {
    padding-left: 70px;
}

/*Projetos*/

.titulo-pagprojetos {
    font-family: "Trebuchet MS";
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.projetos-subtitulo {
    font-size: 1.1rem;
    color: #d0c9e8;
}

.filtros-projetos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    width: fit-content;
}

.form-filtro {
    width: 260px;
}

.secao-projetos {
    width: 100%;
    min-height: 75vh;
    position: relative;
}

/*ProjetoDetalhes*/

.projeto-detalhes-page {
    position: relative;
    z-index: 2;
}

.projeto-imagem-wrapper {
    overflow: hidden;
    border-radius: 20px;
    background: #1a0f27;
    box-shadow: 0 0 25px rgba(112, 74, 166, 0.4);
}

.projeto-imagem {
    border-radius: 20px;
}

.titulo-projeto-detalhes {
    font-family: "Trebuchet MS";
    font-weight: 700;
    font-size: 38px;
    color: #dabdff;
    text-transform: capitalize;
}

.info-projeto-lista {
    margin-top: 15px;
}

.titulo-info {
    font-family: "Segoe UI";
    color: #f6effd;
    font-weight: 600;
    font-size: 18px;
}

.valor-info {
    font-family: "Segoe UI";
    color: #e6e6e6;
}

.icone-info {
    color: #c395ff;
    margin-right: 8px;
    text-shadow: 0 0 10px rgba(180, 120, 255, 0.4);
}

.descricao-curta {
    font-family: "Segoe UI";
    font-size: 19px;
    color: #eee;
    text-transform: capitalize;
    line-height: 1.6;
}

.card.bg-secondary,
.card.bg-dark {
    border-radius: 20px !important;
    background: rgba(25, 15, 40, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 25px rgba(150, 100, 220, 0.25);
}

.card h3 {
    color: #c8aaff;
    text-shadow: 0 0 12px rgba(160, 100, 230, 0.4);
}

.btn-outline-light {
    border-radius: 10px;
    border-width: 2px;
    padding: 10px 28px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-light:hover {
    background: #8b45aa;
    border-color: #8b45aa;
}

.secao-projeto {
    background: #281a38;
    padding: 40px 45px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 55px;
}

.titulo-secao-projeto {
    font-family: "Segoe UI";
    font-size: 26px;
    font-weight: 700;
    color: #f6effd;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 12px;
}

.conteudo-secao-projeto {
    font-family: "Segoe UI";
    font-size: 17px;
    color: #ffffff;
    line-height: 1.9;
    white-space: pre-line;
}

.conteudo-secao-projeto p {
    margin-bottom: 10px;
}

.btn-projetoDetalhes {
    display: inline-block;
    background: linear-gradient(90deg, #491874, #8b45aa, #9f6ace);
    color: #ffffff;
    padding: 12px 32px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-projetoDetalhes:hover {
    background: linear-gradient(90deg, #72429d, #bb81d3, #9f6ace);
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45) !important;
}

.titulo-projeto-detalhes,
.texto-detalhes-projeto p,
.descricao-curta,
.conteudo-secao-projeto {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.btn-curtida {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
}

.btn-curtida:hover {
    opacity: 0.7;
}

.text-danger {
    color: red;
}

/*Trilha*/

.pagina-trilha {
    margin-top: 4px !important;
}

.tituloPagina-trilha {
    font-family: "Trebuchet MS";
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}

.trilha-img {
    max-width: 600px;
    filter: drop-shadow(0 0 12px #9d50ff70);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.linha-central {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #c6aae0, #a98ac2);
    border-radius: 2px;
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    min-height: 120px;
    z-index: 1;
}

.timeline-texto {
    padding: 25px;
}

.bolinha {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #a855f7;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}

.bolinha:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.7);
}

.bolinha::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid #a855f7;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    z-index: 1;
}

.linha-central {
    width: 6px;
    background: linear-gradient(to bottom, #c084fc, #7e22ce);
    box-shadow: 0 0 12px rgba(192, 132, 252, 0.5);
}


.nav-tabs .nav-link.active {
    background-color: #7c3aed;
    color: white !important;
    font-weight: 500;
}

.nav-tabs .nav-link {
    color: #7c3aed;
    border-radius: 0.25rem 0.25rem 0 0;
}


.btn-outline-purple {
    color: #7c3aed;
    border: 1px solid #7c3aed;
}

.btn-outline-purple:hover {
    background-color: #7c3aed;
    color: white;
}

.text-purple {
    color: #7c3aed;
}

/* Apoiadores*/
h2.titulo-apoiadores {
    font-family: "Stack Sans Notch", sans-serif;
    font-size: 57px;
    font-weight: 900px;
    color: #fff;
    font-weight: bold;
}

h1.titulo-equipe .roxo {
    color: #b86bff;
}

.subtitulo-apoiadores {
    text-align: center;
    font-size: 1.05rem;
    color: #d0c9e8;
    max-width: 720px;
    margin: 0 auto 28px auto;
    line-height: 1.55;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
    opacity: 0.85;
}

.apoiadores-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 25px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.card-apoiador {
    background: rgba(25, 25, 35, 0.85);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(120, 70, 255, 0.25);
    transition: all .35s ease;
    box-shadow: 0 5px 25px rgba(70, 0, 170, 0.25);
    display: flex;
    flex-direction: column;
    height: 100%;

    animation: fadeUp .7s ease forwards;
}

.card-apoiador:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(120, 60, 255, 0.40);
    border-color: rgba(150, 90, 255, 0.55);
}

.card-apoiador img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #111;
    transition: transform .4s ease;
}

.card-apoiador:hover img {
    transform: scale(1.07);
}

.card-foto-vazia {
    height: 180px;
    background: linear-gradient(135deg, #444 0%, #222 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
}

.card-apoiador h5 {
    font-family: "Segoe UI";
    text-transform: capitalize;
    font-weight: 700;
    font-size: 20px;
    color: #d2c8ff;
}

.card-apoiador .p-3 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-apoiador p {
    color: #cfcfcf;
    font-family: "Segoe UI";
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    flex-grow: 1;
    text-align: justify;
}

.card-apoiador img,
.card-foto-vazia {
    height: 180px !important;
    flex-shrink: 0;
}

.card-apoiador .social-links {
    margin-top: auto;
}

.card-apoiador .social-links a {
    color: #cfc3ff;
    transition: .25s;
}

.card-apoiador .social-links a:hover {
    color: #9e6aff;
    transform: scale(1.15);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Impactos*/

h1.titulo-impacto {
    font-family: "Trebuchet MS";
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.subtitulo-impacto {
    text-align: center;
    font-size: 1.05rem;
    color: #d0c9e8;
    max-width: 720px;
    margin: 0 auto 28px auto;
    line-height: 1.55;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
    opacity: 0.85;
}

/*SobreInnovamind*/

.conheca-section {
    padding: 15px 0;
    color: #e6e0f5;
}

.conheca-titulo {
    font-family: "Stack Sans Notch", sans-serif;
    font-size: 57px;
    font-weight: 900px;
    color: #fff;
    font-weight: bold;
}

.conheca-roxo {
    color: #b06bff;
    font-weight: 700;
}

.conheca-subtitulo {
    font-family: "Roboto", sans-serif;
    font-size: 19px;
    color: #d8cffa;
    opacity: 0.9;
}

.conheca-h2 {
    font-family: "Segoe UI";
    font-size: 27px;
    font-weight: 700;
    color: #d7c9ff;
}

.conheca-h3 {
    font-family: "Segoe UI";
    font-size: 27px;
    font-weight: 700;
    color: #cbb3ff;
}

.conheca-h4 {
    font-family: "Segoe UI";
    font-size: 27px;
    color: #d9cfff;
    font-weight: 700;
}

.conheca-lead {
    font-family: "Segoe UI";
    font-size: 20px;
    color: #d8d2e8;
    text-align: justify;
}

.conheca-p {
    font-family: "Segoe UI";
    font-size: 20px;
    color: #d8d2e8;
    line-height: 1.6;
    text-align: justify;
}

.conheca-lista li {
    font-family: "Segoe UI";
    font-size: 20px;
    color: #dfd9f2;
    text-align: justify;
}

.conheca-card {
    background: #0f0a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px !important;
    transition: 0.3s ease;
}

.conheca-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(176, 107, 255, 0.25);
}

.conheca-card-titulo {
    font-family: "Segoe UI";
    font-size: 20px;
    color: #cdaeff;
    font-weight: 600;
}

.conheca-card-p {
    font-family: "Segoe UI";
    font-size: 17px;
    color: #dfd9f2;

}

.estrutura-panel {
    max-width: 1100px;
    margin: 0 auto;
}

.estrutura-titulo {
    color: #c8a6ff;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.estrutura-row {
    display: flex;
    flex-wrap: wrap;
}

.estrutura-col {
    display: flex;
}

.estrutura-col-inner {
    background: #140b24;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #3b2360;
    transition: transform .2s ease, box-shadow .2s ease;

    height: 100%;
    flex: 1;
}

.estrutura-col-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(90, 0, 160, 0.3);
}

.estrutura-subtitulo {
    color: #d4b2ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.estrutura-texto {
    line-height: 1.6;
    color: #d8d4e2;
    font-size: 1.05rem;
}

.estrutura-lista {
    padding-left: 20px;
    margin: 0;
    color: #e8e4f5;
}

.estrutura-lista li {
    margin-bottom: 8px;
    padding-left: 4px;
}


.faq-container {
    width: 90%;
    margin: 40px auto;
    font-family: "Segoe UI";
    font-size: 30px;
    font-weight: 700;
}

.faq {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    color: #eaeaea;
}

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

.respostaFAQ {
    margin-top: 8px;
    color: #cfcfcf;
    font-size: 15px;
}

.btn-toggle i {
    transition: transform 0.2s;
}

.faq[open] .btn-toggle i {
    transform: rotate(180deg);
    color: #b06bff;
}

.d-flex .btn-curtida {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.3rem;
}

/*EditalExterno*/

.titulo-editais {
    font-family: "Trebuchet MS";
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.subtitulo-editais {
    font-size: 1.1rem;
    color: #d0c9e8;
}

.categoria-titulo {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 40px 0 20px;
    border-left: 5px solid #8b5cf6;
    padding-left: 12px;
    color: #fff;
}

.card-editais {
    background: #171717;
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #460872;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-edital h5 {
    font-weight: 600;
    font-size: 1.2rem;
}

.card-edital p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-acessar {
    margin-top: auto;
    background: #8b5cf6;
    color: white;
    font-weight: 500;
    border-radius: 10px;
    padding: 10px 0;
    width: 100%;
    transition: 0.2s;
}

.btn-acessar:hover {
    background: #7c3aed;
    color: #fff;
}

/*EditaisInternos*/

.editais-container {
    background: radial-gradient(circle at top, #3b2b5b 0%, #1e172f 100%);
    padding: 40px;
    border-radius: 15px;
}

.card-edital {
    background: #171717;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
    border-left: 4px solid #460872;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-edital:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(130, 42, 255, 0.35);
}



.desc {
    color: #cfcfcf;
    font-size: 0.95rem;
}

.status-aberto {
    color: #22ff77 !important;
}

.status-encerrado {
    color: #ff4b4b !important;
}

.status-analise {
    color: #f6d32d !important;
}

.card-edital .btn-dark {
    background: #4d287c;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.25s;
}

.card-edital .btn-dark:hover {
    background: #9f63ff;
}

/*EditalInterno*/
.edital-container {
    max-width: 1400px !important;
    background-color: #251435;
    padding: 50px 70px;
    border-radius: 20px;
    color: #fff;
    margin: 50px auto;
}



.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
}

.bloco-info .label,
.card-detalhado .label {
    font-family: "Segoe UI";
    font-weight: 700;
    font-size: 19px;
    color: #f5d3ff;
}

.bloco-info .texto,
.card-detalhado .texto {
    font-family: "Segoe UI";
    font-size: 17px;
    color: #faf7ff;
    line-height: 20px;
}

.btn-inscricao {
    background: #8a4dff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    display: block;
    width: fit-content;
    transition: .2s;
    text-decoration: none;
}

.btn-inscricao:hover {
    background: #a372ff;
}

.subtitulo-editalinterno {
    color: #9a00c5;
    font-size: 22px;
    font-weight: 550;
}

.btn-voltarEdital {
    background: #4a4359;
    color: #e0d7f6;
    font-weight: 600;
    padding: 12px 32px;
    font-size: 17px;
    border-radius: 12px;
    border: none;
    transition: all 0.25s ease-in-out;
    text-decoration: none !important;
    display: inline-block;
}

.btn-voltarEdital:hover {
    background: #5a5270;
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-tabs {
    border: none;
    position: relative;
}

.nav-tabs::after {
    content: "";
    display: block;
    width: 70%;
    height: 2px;
    border-radius: 50px;
    opacity: 0.2;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

.nav-tabs .nav-link {
    font-family: "Segoe UI", sans-serif;
    color: #fff;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(61, 21, 110, 0.3);
    border-bottom: none;
    padding: 10px 22px;
    border-radius: 12px 12px 0 0;
    margin: 0 6px;
    transition: 0.3s;
}

.nav-tabs .nav-link:hover {
    background: rgba(40, 30, 70, 0.8);
    color: #d2c8ff;
}

.nav-tabs .nav-link.active {
    background: #7846ff;
    color: #fff;
    border-color: #4d2f83;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(120, 60, 255, 0.6);
}

.nav-tabs {
    margin-bottom: 40px !important;
}


/*ModalProjeto*/

.modal-contribuir {
    background: #1b1223 !important;
    color: #ffffff !important;
    border-radius: 16px;
    padding: 5px 10px;
    border: 1px solid #5a2e84;
    box-shadow: 0 0 25px rgba(146, 69, 220, 0.5);
}

.modal-contribuir .modal-header {
    border-bottom: 1px solid #2d1a3f;
}

.modal-contribuir .modal-title {
    font-family: "Segoe UI", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.modal-contribuir .modal-body,
.modal-contribuir .modal-body p,
.modal-contribuir .modal-footer,
.modal-contribuir .modal-footer button,
.modal-contribuir .modal-contact-box,
.modal-contribuir .modal-contact-box strong {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
}

.text-aviso {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    color: #d08ae9;
}

.modal-contribuir .modal-footer {
    border-top: 1px solid #2d1a3f;
}

.modal-contribuir .btn-close-white {
    filter: invert(1);
}

.modal-contact-box {
    background: #2a1b3c;
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #4b2f6c;
}

.modal-contact-box i {
    color: #c78bff;
    font-size: 1.4rem;
}

.btn-voltarProjeto {
    background: #4a4359;
    color: #e0d7f6;
    font-weight: 600;
    padding: 12px 32px;
    font-size: 17px;
    border-radius: 12px;
    border: none;
    transition: all 0.25s ease-in-out;
    text-decoration: none !important;
    display: inline-block;
}

.btn-voltarProjeto:hover {
    background: #5a5270;
    color: #ffffff;
    transform: translateY(-2px);
}

/*Paginação*/

.pagination {
    gap: 0;
}

.pagination .page-item .page-link {
    background-color: #ffffff;
    color: #6a0dad;
    border: 2px solid #6a0dad;
    border-radius: 0;
    margin: 0;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.pagination .page-item:first-child .page-link {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.pagination .page-item:last-child .page-link {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.pagination .page-link:hover {
    background-color: #f3e6ff;
    color: #6a0dad;
}

.pagination .page-item.active .page-link {
    background-color: #6a0dad;
    color: #ffffff;
    border-color: #6a0dad;
}

.pagination .page-item.disabled .page-link {
    background-color: #e6e6e6;
    color: #9e9e9e;
    border-color: #c9c9c9;
}

/*NossaEquipe*/

h1.titulo-equipe {
    font-family: "Stack Sans Notch", sans-serif;
    font-size: 57px;
    font-weight: 900px;
    color: #fff;
    font-weight: bold;
}

h1.titulo-equipe .roxo {
    color: #b86bff;
}

.container-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    padding: 10px 60px;
}

.integrantes {
    background: #0f0a15;
    border: 1px solid rgba(184, 107, 255, 0.3);
    box-shadow: 0 0 20px rgba(184, 107, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.integrantes:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(184, 107, 255, 0.4);
}

.integrantes img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #b86bff;
    margin-bottom: 15px;
    background: #1a0f27;
}

.integrantes a:first-of-type {
    font-family: "Segoe UI";
    font-size: 18px;
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #b86bff;
    text-decoration: none;
    margin-bottom: 8px;
}

.integrantes a:first-of-type:hover {
    text-decoration: underline;
}

.integrantes p {
    font-family: "Segoe UI";
    font-size: 16px;
    margin: 5px 0 12px;
    font-size: 1rem;
    color: #ccc;
}

.integrantes a:last-of-type {
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
}

.integrantes a:last-of-type:hover {
    color: #b86bff;
    text-decoration: underline;
}

/*TrilhaEducaCoop*/

#trilhaTabs .nav-link {
    font-family: "Segoe UI";
    font-size: 18px;
    color: #ccc;
    font-weight: 500;
    border-radius: 0;
    border: 1px solid transparent;
    padding: 10px 18px;
    transition: 0.3s ease;
}

#trilhaTabs .nav-link:hover {
    color: #b47bff;
    border-color: #b47bff;
}

#trilhaTabs .nav-link.active {
    background-color: transparent;
    color: #c084fc;
    border-bottom: 3px solid #c084fc;
    font-weight: 700;
}

#trilhaTabsContent {
    background: #0b0b0b;
    border: 1px solid #2b0054;
    border-top: none;
    padding: 30px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px;
    color: #fff;
}

.text-purple {
    font-family: "Segoe UI";
    font-size: 18px;
    color: #c084fc !important;
}

h2.text-purple {
    font-family: "Segoe UI";
    font-size: 21px;
    font-weight: 800;
    font-size: 2.3rem;
    margin-top: 20px;
}

h5.fw-bold {
    font-family: "Segoe UI";
    font-size: 24px;
    color: #c084fc;
}

.btn-outline-purple {
    border: 2px solid #c084fc;
    color: #c084fc;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s ease;
}

.btn-outline-purple:hover {
    background: #c084fc;
    color: #000;
}

.alert-success {
    background: rgba(120, 255, 120, 0.1);
    border: 1px solid #4ade80;
    color: #4ade80;
}

.alert-warning {
    background: rgba(255, 255, 120, 0.1);
    border: 1px solid #fde047;
    color: #fde047;
}

#apresentacao img {
    border: 2px solid #3a005f;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(197, 109, 255, 0.3);
}

.btn-certificado {
    background: linear-gradient(90deg, #b47aff, #8042e0);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    transition: .3s;
}

.btn-certificado:hover {
    background: linear-gradient(90deg, #491874, #9F6ACE, #8B45AA);
    transform: scale(1.03);
}

.text-certificado {
    font-family: "Segoe UI";
    font-size: 18px;
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #b86bff;
    text-decoration: none;
    margin-bottom: 8px;
}

.titulo-cad {
    font-family: "Trebuchet MS";
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

/*Index*/
@media (max-width: 768px) {

    .titulo-pilares::before,
    .titulo-pilares::after {
        display: none !important;
    }

    .titulo-projetosrecentes::after {
        display: none !important;
    }

    .titulo-projetosrecentes {
        text-align: center !important;
        margin: 30px auto 25px auto !important;
        width: 100%;
        display: block;
    }

    .pillar-card {
        width: 100% !important;
        margin: 0 auto 20px !important;
    }

    .pilares img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }

    .titulo-principal,
    .subtitulo {
        margin-left: 0 !important;
        text-align: center;
    }

    .titulo-principal {
        font-size: 38px !important;
    }

    .secao-inicial img {
        max-width: 100% !important;
        height: auto !important;
        margin: 20px auto 0 !important;
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 992px) {

    .titulo-pilares::before,
    .titulo-pilares::after {
        display: block !important;
        width: 180px !important;
    }

    .pillar-card {
        width: 90% !important;
        margin: 0 auto 25px;
    }

    .pilares img {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 962px) {

    .titulo-pilares::before,
    .titulo-pilares::after {
        width: 120px !important;
    }

    .titulo-projetosrecentes::after {
        width: 290px !important;
    }
}

@media (max-width: 992px) {

    .passos {
        text-align: center !important;
    }

    .passos img {
        max-width: 90% !important;
        height: auto;
        display: block !important;
        margin: 20px auto 0 !important;
        padding-right: 0 !important;
    }

    .passos h2 {
        white-space: normal !important;
        margin-top: 20px;
    }

    .passos ol {
        text-align: left;
        padding-left: 10px !important;
        margin-top: 20px;
    }
}

html,
body {
    overflow-x: hidden !important;
}

img {
    max-width: 100%;
    height: auto;
}

.card img,
.carousel-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

footer img {
    max-width: 200px;
}

header img,
nav img {
    max-width: 160px;
}


@media (max-width: 768px) {

    .titulo-pilares::before,
    .titulo-pilares::after {
        display: none !important;
    }

    .titulo-projetosrecentes::after {
        display: none !important;
    }

    .titulo-projetosrecentes {
        text-align: center !important;
        margin: 30px auto 25px auto !important;
        width: 100%;
        display: block;
    }

    .pillar-card {
        width: 100% !important;
        margin: 0 auto 20px !important;
    }

    .pilares img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }

    .titulo-principal,
    .subtitulo {
        margin-left: 0 !important;
        text-align: center;
    }

    .titulo-principal {
        font-size: 38px !important;
    }

    .secao-inicial img {
        max-width: 100% !important;
        height: auto !important;
        margin: 20px auto 0 !important;
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 992px) {

    .titulo-pilares::before,
    .titulo-pilares::after {
        display: block !important;
        width: 180px !important;
    }

    .pillar-card {
        width: 90% !important;
        margin: 0 auto 25px;
    }

    .pilares img {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 962px) {

    .titulo-pilares::before,
    .titulo-pilares::after {
        width: 120px !important;
    }

    .titulo-projetosrecentes::after {
        width: 290px !important;
    }
}

@media (max-width: 992px) {

    .passos {
        text-align: center !important;
    }

    .passos img {
        max-width: 90% !important;
        height: auto;
        display: block !important;
        margin: 20px auto 0 !important;
        padding-right: 0 !important;
    }

    .passos h2 {
        white-space: normal !important;
        margin-top: 20px;
    }

    .passos ol {
        text-align: left;
        padding-left: 10px !important;
        margin-top: 20px;
    }
}

html,
body {
    overflow-x: hidden !important;
}

img {
    max-width: 100%;
    height: auto;
}

.card img,
.carousel-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

footer img {
    max-width: 200px;
}

header img,
nav img {
    max-width: 160px;
}

@media (max-width: 1280px) {

    .titulo-pilares::before,
    .titulo-pilares::after {
        width: 120px !important;
    }

    .pillar-card {
        width: 90% !important;
        margin: 0 auto 25px !important;
    }

    .pilares img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

    .titulo-projetosrecentes::after {
        display: none !important;
    }

    .titulo-projetosrecentes {
        text-align: center !important;
        margin: 30px auto 25px auto !important;
        width: 100%;
        display: block;
    }

    .passos {
        text-align: center !important;
    }

    .passos img {
        max-width: 90% !important;
        margin: 20px auto !important;
        display: block !important;
    }

    .passos h2 {
        white-space: normal !important;
        margin-top: 20px;
        text-align: center !important;
    }

    .passos ol {
        text-align: left;
        padding-left: 10px !important;
        margin-top: 20px;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .card img,
    .carousel-item img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    footer img {
        max-width: 200px;
        height: auto;
    }

    header img,
    nav img {
        max-width: 160px;
        height: auto;
    }
}

@media (max-width: 1024px) {

    .titulo-pagprojetos {
        text-align: center;
        font-size: 35px;
        margin: 30px auto 20px auto;
    }

    .filtros-projetos {
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 12px;
    }

    .form-filtro {
        width: 230px;
    }
}

@media (max-width: 768px) {

    .titulo-pagprojetos {
        text-align: center !important;
        font-size: 30px !important;
        margin: 25px 0 15px 0 !important;
    }


    .filtros-projetos {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto !important;
        /* CENTRALIZA DE VERDADE */
        gap: 12px;
        width: fit-content;
    }

    .form-filtro {
        width: 90% !important;
        max-width: 320px;
    }

    .secao-projetos {
        padding: 0 15px;
    }
}


/*Login*/
@media (max-width: 1024px) {

    .login-card {
        max-width: 90%;
        margin: 20px auto;
        padding: 10px;
    }

    .login-img {
        width: 260px;
    }

    .login-right {
        padding: 30px;
    }

    .login-title {
        font-size: 32px;
    }

    .login-frase-box {
        max-width: 320px;
    }
}

@media (max-width: 768px) {

    .login-card {
        flex-direction: column;
        padding: 0;
        border-radius: 15px;
        max-width: 95%;
    }

    .login-card::before,
    .login-card::after {
        width: 280px !important;
        height: 280px !important;
        filter: blur(80px);
        left: 50%;
        transform: translateX(-50%);
    }

    .login-ilustracao {
        padding: 25px 20px;
    }

    .login-img {
        width: 220px;
    }

    .login-frase-box {
        max-width: 90%;
    }

    .login-right {
        padding: 25px 20px;
    }

    .login-title {
        font-size: 28px !important;
        margin-bottom: 20px;
    }

    .campo-formulario {
        padding: 12px;
        font-size: 1rem;
    }

    .btn-login {
        padding: 12px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {

    .login-img {
        width: 180px;
    }

    .login-title {
        font-size: 24px !important;
    }

    .login-card::before,
    .login-card::after {
        width: 220px !important;
        height: 220px !important;
        filter: blur(70px);
    }
}

/*Editais*/
@media (max-width: 768px) {
    .editais-container {
        padding: 20px;
    }

    .card-edital {
        padding: 18px;
    }

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

    .edital-wrapper {
        width: 95%;
    }
}

/*Botão-ProjetoDetalhes*/
@media (max-width: 768px) {
    .botoes-projeto {
        flex-direction: column !important;
        align-items: center;
        gap: 12px;
    }

    .botoes-projeto .btn-projetoDetalhes,
    .botoes-projeto .btn-voltarProjeto {
        width: 85%;
        padding: 14px 0;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .botoes-projeto {
        flex-direction: row !important;
        justify-content: center;
        gap: 20px;
    }

    .botoes-projeto .btn-projetoDetalhes,
    .botoes-projeto .btn-voltarProjeto {
        min-width: 260px;
        padding: 14px 40px;
        text-align: center;
    }
}

/*NossaEquipe*/

@media (max-width: 600px) {
    h1.titulo-equipe {
        font-size: 2.3rem;
    }

    .integrantes img {
        width: 130px;
        height: 130px;
    }

    .container-equipe {
        padding: 10px 20px;
    }
}

@media (max-width: 960px) {
    .container-equipe {
        grid-template-columns: 1fr;
    }
}

/*Apoiadores*/
@media (max-width: 1000px) {
    .apoiadores-grid {
        grid-template-columns: repeat(2, 300px);
    }
}

@media (max-width: 650px) {
    .apoiadores-grid {
        grid-template-columns: repeat(1, 300px);
    }
}