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


/*fonte de título*/
@font-face {
    font-family: 'Track';
    src: url(src/track-webfont/style.css) format('woff2');
}

/*fonte de subtítulo*/
.maven-pro {
    font-family: "Maven Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*fonte de texto*/
.dosis {
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.titulo-noticia {
    font-family: "Track", "Ubuntu", sans-serif;
}

h1, h2 {
    font-family: 'Track', 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 32px;
}

h3, h4 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

p, a, li, span {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #05053f;
    border-bottom: 1px solid #05053f;
    height: 122px;
}

/* --- ESTILOS DOS BOTÕES DO MENU --- */
.btn-abrir-menu, .btn-fechar-menu {
    display: none; /* Escondidos no desktop */
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

.logo img {
    height: 70px;
    width: auto;
    margin-left: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-family: 'Ubuntu', sans-serif;
    text-decoration: none;
    font-size: 15px;
    color: white;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #ccc;
}










/* --- CONTEÚDO PRINCIPAL --- */
.conteudo-principal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Seção Inovação */
.secao-inovacao {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;

}

.inovacao-imagem {
    flex: 1;
}

.inovacao-imagem img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.inovacao-texto {
    flex: 1;
    padding-top: 20px;
}

.inovacao-texto h2 {
    margin-bottom: 20px;
    color: #000;
}

.inovacao-texto p {
    color: #555;
    line-height: 1.6;
    font-size: 24px;
}

















/* Seção Projetos e Integrantes */
.secao-projetos, .secao-integrantes {
    display: flex;
    margin-bottom: 80px;
    flex-direction: column;
}

.secao-projetos h2, .secao-integrantes h2 {
    margin-bottom: 30px;
    color: #000;
}

.titulo-centralizado {
    text-align: center;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.card img {
    width: 100%;
    height: 250px; /* Altura padrão para as imagens dos cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 26px;
    color: #000;
    margin-bottom: 5px;
}

.card p {
    font-size: 22px;
    color: #666;
    line-height: 1.4;
}























.rodape{
    background-color: #05053f;
}

.rodape_caixa{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 0%;
}

.rodape_info{
    display: flex;
    align-items: center;
    gap: 15px;
}

.rodape_logo img {
    height: 150px;
    padding-left: 15px;
}

.rodape_texto {
    padding-right: 15px
}

.rodape_texto p {
    font-size: 20px;
    color: #e5e7eb;
    margin-bottom: 5px;

}

.rodape_texto a {
    text-decoration: none;
    color:#e5e7eb
}

.rodape_social {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 100px;
}


.rodape_social a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.rodape_social a:hover {
    background-color: #ccc;
    color: #070B2B;
}








/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 900px) {
    .noticia-card {
        flex-direction: column;
        gap: 40px;
    }


    .cabecalho {
        position: relative; /* Para garantir o alinhamento */
    }

    /* Mostra o ícone de hambúrguer */
    .btn-abrir-menu {
        display: block;
        font-size: 30px;
        margin-right: 2rem;
    }

    /* Configuração da tela que cobre o site quando o menu abre */
    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Começa escondido fora da tela */
        width: 100vw;
        height: 100vh;

        z-index: 1000;
        display: flex;
        justify-content: flex-end;
        padding: 20px;
        transition: right 0.4s ease-in-out; /* Animação suave */
    }

    /* Classe ativada pelo JavaScript para mostrar o menu */
    nav.ativo {
        right: 0;
    }

    /* Alinha os itens do menu para a direita */
    .menu-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    /* Botão 'X' baseado no protótipo */
    .btn-fechar-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #24284b; /* Azul ligeiramente mais claro para destacar */
        width: 71px;
        height: 71px;
        border-radius: 8px;
        font-size: 40px;
        margin-bottom: 15px;
    }

    /* A caixa azul escura com os links */
    nav ul {
        display: flex;
        flex-direction: column;
        gap: 35px; /* Espaçamento entre os links */
        background-color: #05053f; /* Azul escuro do seu tema */
        padding: 40px 30px;
        border-radius: 8px;
        width: 260px;
        box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* Ajuste da fonte dos links no mobile */
    nav ul li a {
        font-size: 18px;
        letter-spacing: 1px;
    }


    .secao-inovacao {
        flex-direction: column;

    }


    .grid-cards{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .card{
        flex-direction: column;
    }

    .noticia-texto h2 {
        font-size: 26px;
    }

    .rodape_caixa {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 24px;
    }

    .rodape_info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .rodape_logo img {
        height: 100px;
        padding-left: 0;
    }

    .rodape_texto p {
        font-size: 16px;
    }

    .rodape_social {
        padding-right: 0px;
        justify-content: center;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-top: 20px;
        width: 100%;
    }

    .rodape_esquerda {
        flex-direction: column;
    }
}