@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

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

body{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal; 
    background-color: #f4f4f4;
}

header{
    background-image: url(./images/banner.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

h1{
    color: #f4f4f4;
    text-transform: uppercase;
    font-size: 4rem;
}

.nav-bar{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

a{
    text-decoration: none;
    color: #f4f4f4;
}

.nav-button{
    list-style-type: none;
    padding: 10px;
    color: #f4f4f4;
    font-weight: 200;
}

.selecionado{
    border: 1px solid #f4f4f4;
    border-radius: 20px;
    padding: 10px;
}

main{
    display: flex;
    flex-direction: column;
    
}

.secao-superior{
    display: flex;
    flex-direction: row;
    padding: 2rem;
    gap: 2rem;
}

h2{
    color: #5a5a5a;
    text-transform: uppercase;
    font-size: 2.5rem;
}

.welcome-page{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.paragrafo-principal{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

h3{
    color: #5a5a5a;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.div-esquerda{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data{
    color: #8c8c8c;
}

.conteudo-inferior{
    display: flex;
    flex-direction: row;
    gap: 1rem;

}

hr{
    color: #8c8c8c;
}

.secao-inferior{
    background-color: #dfdfdf;
    display: flex;
    flex-direction: row;
    padding: 2rem;
}

.caixa{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.botao-detalhes{
    background-color: rgb(225, 99, 53);
    border: none;
    padding: 1rem;
    border-radius: 30px;
    cursor: pointer;
    color: #f4f4f4;
    font-size: 1rem;
    width: fit-content;
}

footer{
    background-color: #2b2b2b;
    display: flex;
    flex-direction: row;
    padding: 3rem;
    justify-content: space-between;
    
}

.h3-footer{
    color: #f4f4f4;
    
}

.link-footer a{
    font-weight: 100;
}

.caixa-footer{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
