/* @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    /* margin: 0;
    padding: 0;
    box-sizing: border-box; */
    font-family: "Poppins", sans-serif;
}

body {
    background-image: url(..//img/buteco.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -100px;
    background-attachment: fixed;
    /* Faz o fundo ficar fixo ao rolar a página */
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
}



/* ESSA PARTE AQUI CRIA UM FUNDO MAIS ESCUTO EM CIMA DA IMAGEM E FAZ COM QUE PARECA OPACIDADE  */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(90, 81, 81, 0.5); */
    /* Cor de fundo com opacidade */
    z-index: -1;
    /* Coloca o pseudo-elemento atrás do conteúdo */
}

.whatsapp {

    display: flex;
    justify-content: center;
    padding: 10px;
    width: 30px;
    height: 30px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    border: 1px solid rgb(51, 211, 51);
    border-radius: 30px;
    background: rgb(27, 197, 35);
    background-image: url(imgRestaurante/);
    transition: all 0.9s ease;
    /* Aplica a transição suave para todas as propriedades */
}

.whatsapp:hover {
    background: rgb(51, 211, 51);
    transition: 0.9s;
    transition-duration: 0, 9s;
    padding: 24px;
}

/* ================================================= */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border: 1px solid rgb(110, 19, 19);
    background: rgb(110, 19, 19);
    font-family: "Libre Baskerville", serif;
    color: white;
}

nav img {
    width: 100px;
    border-radius: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

.conteiner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    gap: 40px;
    /* aqui é o espaço entre o texto de um lado e a img  */
}

.texto {
    color: black;
    flex: 1;
    padding: 10px;
    margin-right: 28px;
    margin-bottom: 0px;
    background-color: white;
    border-radius: 30px;
}

.imagem {
    flex: 1;
    text-align: center;
}

.imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}