@charset "UTF-8";

@font-face{
    font-family: bebas neue;
    src: url(../fonts/BebasNeue\ Regular.otf);
}

@font-face{
    font-family: aristotelica;
    src: url(../fonts/Aristotelica\ Display\ DemiBold\ Trial.ttf)
}

*{
    margin: 0;
}

/* Formatação do Cabeçalho */

.container-header{
    box-shadow: 0px 3px 7px -5px grey;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: aliceblue;
}

.container-headeralt{
    box-shadow: 0px 3px 7px -5px grey;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: aliceblue;
}

.menu-nav ul{
    list-style: none;
    justify-content: space-around;
    margin-right: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: fit-content;
}

.menu-nav a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0px 10px;
    background-color: aliceblue;
    color: steelblue;
    text-decoration: none;
    width: 75px;
    height: 100px;
    font-family: bebas neue;
    font-size: 1.5em;
    transition: .3s;
}

.menu-nav a:hover{
    background-color: steelblue;
    color: aliceblue;
}

.menu-nav li{
    margin: 0px 25px 0px 25px;
}

.logo-header{
    width: 75px;
    height: 75px;
    margin-left: 75px;
}

.logo-header img{
    transition: .3s;
}

.logo-header img:hover{
    transform: scale(1.05);
}

/* Formatação Index */

.index{
    background: url(../img/wallpaper-home.jpg);
    background-size: cover;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.index h1{
    font-family: bebas neue;
    color:aliceblue;
    font-size: 5em;
    text-shadow: 3px 3px 10px rgb(0, 0, 0);
    margin: 50px 0px;
}

.index img{
    width: 200px;
    height: 200px;
    margin-bottom: 250px;
}

/* Formatação do Sobre */

.container-sobre{
    margin: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.container-sobre .mvv{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 50px 0px;
}

.container-sobre .mvv .mvvquadrado{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 1050px;
    margin: 10px 0px;
}

.container-sobre .mvv .mvvquadrado div{
    width: 956px;
}

.container-sobre img{
    width: 100px;
    height: 100px;
    margin-right: 25px;
}
.container-sobre h1{
    font-family: aristotelica;
    font-size: 3.0em;
    margin: 10px 0px;
}

.container-sobre p{
    width: 70%;
    font-family: Century Gothic;
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 7px;
}

/* Formatação do Contato*/

.container-contato{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-flow: wrap column;
    align-items: center;
    justify-content: center;
}

.container-contato div{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 800px;
    margin: 30px 0px;
}

.container-contato div p{
    margin-left: 25px;
    max-width: 690px;
    width: 100%;
    font-size: 1.3em;
}

.container-contato img{
    width: 100px;
    height: 100px;
    transition: .3s;
}

.container-contato img:hover{
    transform: scale(1.1);
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}

.container-contato p{
    font-family: Century Gothic;
}

/* Formatação do Rodapé */

footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: column nowrap;
    height: fit-content;
    width: 100%;
    font-family: Century Gothic;
    color: aliceblue;
}

.footer-content{
    justify-content: space-around;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    width: 100%;
    padding: 20px 0px;
    background-color: steelblue;
    font-size: 1.2em;
    margin-top: 50px;
}

.footer-contentalt{
    justify-content: space-around;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    width: 100%;
    padding: 20px 0px;
    background-color: steelblue;
    font-size: 1.2em;
}

.footer-content h1,
.footer-contentalt h1{
    font-family: bebas neue;
    margin-bottom: 5px;
}

.footer-content p,
.footer-contentalt p{
    margin: 5px 0px;
}

.atalhosfooter{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.atalhosfooter a{
    text-decoration: none;
    color: aliceblue;
    margin: 5px 0px;
    width: 90px;
    text-align: center;
    border-radius: 25px;
    transition: .3s;
}

.atalhosfooter a:hover{
    background-color: aliceblue;
    color: steelblue;
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}

.copyright{
    display: flex;
    align-items: center;
    width: 100%;
    height: fit-content;
    background-color: #386890;
}

.copyright p{
    padding: 10px 30px;
    color: #71a0c8;
}