/*Formatação geral*/
* {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: calibri, arial, sans-serif;
}

html, body {
    height: 100%;
    -ms-scroll-behavior: smooth;
    -o-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth; /*como a página rola; quando precedido de -ms ajusta conforme o navegador do fabricante*/ 
} 

/*Formatação Menu*/
.menu {
    background-color: rgba(122, 21, 19, 0.5);
    position: fixed;
    width: 100%;
    height: 20px;
    margin: 0;
    padding: 20px 0;
}
.menu ul {
    display:flex;
}
.menu ul li {
    text-align: center;
    list-style: none;
    flex: 1;
}
.menu ul li a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}
.menu ul li a:hover {
    text-decoration: underline;
    color: rgba(255, 127, 80, 1);

}
/*Formatação Topo*/
#topo {
    background-image: url(../Imagem/dagostim.jpg);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    /*width: 100%;*/
    background-color: rgba(255, 255, 255, 1);
}
/*Formatação das seções*/
section {
    /*width: 100%;*/
    height: 420px;
    display: flex;
}
section>div {
    flex: 1;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}
section:nth-child(odd) {
    background-color: rgba(45, 30, 15, 1);
}
section:nth-child(even) {
    background-color: rgba(122, 21, 19, 1);
    /*flex-direction: row-reverse;*/
}
.imagem {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.texto {
    color: rgba(255, 255, 255, 1);
    text-align: center;

}
.texto h2 {
    margin-top: 80px;
    font-size: 30px;
}
.texto p {
    margin: 10px 100px 0px 100px;
    padding: 10px;
}
#quem .imagem {
    background-image: url(../Imagem/bar.jpg);
}
#paes .imagem {
    background-image: url(../Imagem/paes.jpg);
}
#bolos .imagem {
    background-image: url(../Imagem/bolos.jpg);
}
#cafes .imagem {
    background-image: url(../Imagem/cafe.jpg);
}
#sucos .imagem {
    background-image: url(../Imagem/sucos.jpg);
}
#sanduiches .imagem {
    background-image: url(../Imagem/sanduiches.jpg);
}
#cervejas .imagem {
    background-image: url(../Imagem/cervejas.jpg);
}
/*Formatação do rodapé*/

h3 {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    padding: 25px;
}
p {
    color: rgba(255, 255, 255, 1);
}

.rodape {
    height: 150px;
    display: flex;
}

.rodape>div {
    flex: 1;
    text-align: center;
}

.texto1 {
    background-color: rgba(45, 30, 15, 1);
}
.texto2 {
    background-color: rgba(122, 21, 19, 1);
}
.texto3 {
    background-color: rgba(45, 30, 15, 1);
}
/*WhatsApp*/
.whatsapp-link {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
}

.fa-whatsapp {
    margin-top: 16px;
}


