/*estilos gerais*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root{
    --azul: #5bcefa;
    --rosa: #f5a9b8;
    --branco: #f0f0f0;
    --cinza: #4f4f4f;
    --preto: #121212;
    --Poppins: 'Poppins', sans-serif;
    --Inter: 'Inter', sans-serif;
    --gradiente: linear-gradient(90deg, rgba(245,169,184,1) 0%, rgba(245,169,184,1) 38%, rgba(91,206,250,1) 100%);
}


/*navbar*/

header {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 20px 60px;
    background: var(--preto);
    position: fixed;
    font-family: var(--Poppins);
    text-transform: capitalize;

}


header ul {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 60px;
    list-style: none;
}

header .navigation li a {
    text-decoration: none;
    color: var(--branco);
    justify-content: none;
    font-weight:500;
}

header .navigation li a:hover{
    text-decoration: underline;
    text-decoration-color: var(--azul);
    text-decoration-thickness: 1.5px;
}

header .navigation li a i{
    font-size: 1.7rem;
}


.logo{
    margin-left: -10rem;
}

.logoMb{
    display: none;
}

.logo img{
    width: 60%;
}

body {
    background-color: var(--branco);
}


footer {
    background-color: var(--preto);
    font-family: var(--fonteTitulo);
    padding: 2rem;
    margin-top: 5rem;
}

footer .logo, .logoUnicamp{
    justify-self: center;
    text-align: center;
    justify-content: center;
    margin-left: 0;
}

.logoUnicamp img{
    width: 50% !important;
    margin-bottom: 1.5rem;
    margin-top: 2rem;

}

.nav{
    justify-self: center;
}

.nav .navFooter {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    list-style: none;
    font-family: var(--Poppins);
}

.nav .navFooter li a{
    text-decoration: none;
    color: var(--branco);
    font-weight: 500;
}

.nav .navFooter li a:hover{
    text-decoration: underline;
    text-decoration-color: var(--azul);
    text-decoration-thickness: 1.5px;
}

.copyright{
    font-size: 1rem;
    color: var(--branco);
    font-family: var(--Poppins);
    text-align: center;
    border-top: 1px solid var(--cinza);
    padding-top: 1rem;
}

.copyright a{
    color: var(--azul);
}