
  @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
   
    display: grid;
    grid-template-areas:
        "header header header"
        "main main main"
        "footer footer footer";

    grid-template-columns: 20vw auto auto;
    grid-template-rows: 6vh 91vh 3vh;
     
}

.cabecalho{
    grid-area: header;
    background-color: #F5F5F5;
    box-shadow: inset 0px 4px 19px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 24px;
}

#cabecalho-logo{
    height: 30px;
    width: 30px;
}

.cabecalho-links{
    display: flex;
    gap: 15vw;

    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;    
}

a:hover{
    color: rgb(91, 19, 19);
    background-color: #c8bfbf29;
}

a:link{
    text-decoration: none;
    color: #000000;
}

a:visited{
    color: rgb(63, 61, 61);
}

.conteudo-principal{
    grid-area: main;
    background-color: #D9D9D9;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.conteudo-principal-sobre{
    grid-area: main;
    background-color: #D9D9D9;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.conteudo-principal-contatos{
    grid-area: main;
    background-color: #D9D9D9;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.h1bemvindo{
    text-align: center;
    padding: 6%;

    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;    
}

.pbemvindo{
    text-align: center;
    padding: 6%;

    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px; 
}

#div-home{
    text-align: center;
    padding: 10%;

    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 30px; 
}

#link-home{
    color: red;
}

.img-home{
    width: 50%;
    height: 50%;
}


.rodape{
    grid-area: footer;
    background-color: #F5F5F5;
    box-shadow: inset 0px 4px 19px rgba(0, 0, 0, 0.05);
    text-align: center;

    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;

    color: #000000;
}

#text-sobre > h3{
    color: rgb(34, 33, 33);
    margin: 5%;
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-size: 20px;
    font-weight: 700;
    line-height: 15px;

    color: #1f1e1e;
}

#text-sobre > p{
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: center;

    color: #000000;
}

#text-contato > p{
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 40px;
    text-align: center;

    color: #000000;
}

#img-contato{
    width: 3%;
}

#text-sobre{
    padding: 5%;
}

#img-global{
    width: 150x;
    height: 150px;
    margin: 8%;
}