@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&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');
@import url(header.css);
@import url(sobre.css);
@import url(projetosindex.css);
@import url(rodape.css);
@import url(colaboradores.css);
@import url(projetos.css);
@import url(historia.css);

*{
    margin: 0;
    padding: 0;
}

:root{
    --cor-header: #08273A;
    --cor-principal: #153448;
    --cor-secundaria: #EE3137;
    --cor-fundo: #FBF9F1;
    --cor-rodape: #EAEAEA;
    --cor-rodape-fonte: black;
    --cor-rodape-hover: #959595;
    --fonte-logo: "PT Serif", serif;
    --fonte-principal: "Poppins", sans-serif;
}


/*Foto da fundação e Bordão*/
.foto-fund{
    background-image: url(../img/FachadaFFA.png);
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
}
.foto-fund-texto{
    margin-left: 8em;
    height: 50%;
}
.foto-fund h2{
    position: relative;
    top: 40%;
    text-align: center;
    font-weight: 200;
    line-height: 70px;
    font-family: var(--fonte-logo);
    font-size: 60px;
    color: var(--cor-fundo);  
    animation: flutuar 2s linear infinite alternate-reverse; 
}
.foto-fund h3{
    position: relative;
    top: 40%;
    text-align: center;
    font-weight: 300;
    line-height: 42px;
    font-family: var(--fonte-logo);
    font-size: 30px;
    color: var(--cor-fundo);  
    animation: flutuar 2s linear infinite alternate-reverse; 
}

.foto-fund b{
    font-size: 70px;
    font-weight: 600;
}



@keyframes flutuar {
    0%{ 
        top: 25%;
    }
    100%{
        top: 35%
    }
}
@media (width <= 1024px) {
    .foto-fund{
        align-items: center;
        background-position: center right -500px;
    }
    .foto-fund-texto{
        margin-left: 0;
    }
}
@media (width <= 420px) {
    .foto-fund{
        align-items: center;
        background-position: center right -410px;
    }
    .foto-fund h2{
        font-size: 50px;
    }
    .foto-fund b{
        font-size: 60px;
        font-weight: 600;
    }
}