:root{
    --cor-fundo: rgb(15, 113, 170);
    --cor-hover: rgb(125, 164, 196);
    --cor-primaria: rgb(255, 255, 255);
    --cor-footer:rgb(68, 163, 241);
    --cor-facebook: rgba(86, 123, 245, 0.795);
    --cor-instagram: linear-gradiente(to right, rose, yellow)
    --cor-youtube: rgb(179, 28, 8);
    

}
body {
    font-family: Arial, Helvetica, sans-serif ;
    color: #1c1c1c;
    background: rgba(161, 186, 207, 0.836);
}
h1, h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
}
.botao {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgba(75, 114, 241, 0.993);
    font-size: .9em;
    border-radius: 8px;
}
/*Navegação*/

nav {
    display:flex ;
    flex-direction: column;
    align-items: center;
    background-color: rgba(75, 114, 241, 0.993);
    padding-top: 6px;
}
nav > a {

    text-decoration:  none;
    color: #ffffff;
    font-weight: 900;
    font-size: 28px;
    font-family: Yellowtail, serif;
    
}

nav ul {
    display: flex;
    flex-direction: column;
    align-items: center ;
    list-style: none;
    padding: 0;
    width: 100%;
}
nav ul li {

    text-align: center;
    width: 100%;
}
nav ul li a {
    display: inline-block;
    padding: 10px 0;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;    
}
/*cabeçalho*/

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;   
}
header h1 {
    color: #ffffff;    
}

header img{
    box-shadow: 2px 2px 8px rgb(54, 53, 53);
}
.aside a{
    position: absolute;
    right: -80px;
    transition: .2s;
    padding: 15px;
    width: 100px;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    border-radius: 15px 0 0 15px;
    margin-top: 120px;
    position: fixed;
}
.aside a:hover{
    right: 0;
}

#canal{
    top: 80px;
    background-color: var(--cor-facebook);
}
#insta{
    top: 13px;
    background-image: linear-gradient(to bottom, rgb(211, 90, 175), rgb(230, 220, 136));
}
#contatos{
    top: 145px;
    background-image: linear-gradient(to top, white, rgb(255, 11, 11));
}
#historia{
    width: 80%;
    background-image: linear-gradient(to bottom, rgb(163, 153, 153), rgb(229, 210, 147));
    text-align: center;
    margin: 5%;
    padding: 20px;
    box-shadow: 2px 2px 5px #413b3b;
    border-radius: 7px;
}
#historia img{
    box-shadow: 3px 3px 10px #0f0f0f; 
}

#historia p{
    text-align: justify;
    text-indent: 20px;
}
#somos{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    padding: 20px 20px 20px 20px;
    box-shadow: 2px 2px 8px rgb(54, 53, 53); 
    background-color: rgba(212, 204, 204, 0.856);
    color: #413b3b;
    border-radius: 50px;
    width: 80%;
    margin: auto;
    text-indent: 25px;
}
/*texto de referencia a praça do comercio*/
#sobre, #sobre2{
    display: flex;
    flex-direction: column;
    align-items: center ;
    text-align: justify; 
    padding: 30px 30px 30px 30px;
    background-color: rgba(212, 204, 204, 0.856);
    color: #181717; 
    border-radius: 50px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    box-shadow: 2px 2px 8px rgb(54, 53, 53);
    text-indent: 25px;
}
    
#sobre p{
    max-width: 1000px;
}

#sobre1{
    font-size: 20px;
    margin-left: 60px;
}

#serviços {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}
#serviços div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
}
#serviços div img{
    box-shadow: 2px 2px 8px rgb(54, 53, 53);
}

#contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: rgba(204, 204, 204, 0.658);
    border-radius: 20px;
    box-shadow: 2px 2px 9px rgb(71, 70, 70);    
}
#contato h2 {
    color: #000000;
}
#contato a{
    text-decoration: none;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(75, 114, 241, 0.993);
    color:#ffffff;
    margin-top: 10px;
}
footer a {
    text-decoration: none;
    color: var(--cor-primaria)
}
.maps{
    width: 99%;
}

@media screen and (min-width: 768px) {
    /*nave*/
    nav {
        flex-direction: row;
        justify-content: space-around;
           
    }
    nav ul {
        flex-direction: row;
        width: 70%;       
    }
    /*cabeçalho*/

    header {
        height: 600px;
        height: 80vh;
        justify-content: center;
    }
    #somos{
        height: 250px;
        height: 30vh;
        justify-content: center;
        min-height: 250px;
    }
    /*sobre*/

    #sobre {
        height: 350px;
        height: 30vh;
        justify-content: center;
        min-height: 250px;
    }
    /*serviços*/

    #serviços {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        max-width: 1000px;
        margin: 0 auto;

    }
    #serviços h2 {
        text-align: center;
        width: 100%;

    }
    #serviços div {
        flex-grow: 1;
        flex-basis: 150px;
        padding: 0 10px;

    }
    /*fotos*/

    #fotos {
        flex-direction: row;
        flex-wrap: wrap;
        
    }
    #fotos h2 {
        width: 100%;
        text-align: center;        
    }
    #fotos img {
        width: 33.3333333%;

    }
    /*contato*/

    #contato {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 500px;
        margin:0 auto;

    }
    #contato h2, #contato p {
        width: 100%;

    }



}


