/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Evita rolagem horizontal */
}

/* Menu fixo */
.menu-fix {
    position: fixed;
    top: 0;
    width: 100%;
    background: #604829;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    z-index: 1;
    flex-wrap: wrap; /* Permite que o conteúdo se ajuste em telas menores */
}

.menu-fix img {
    width: 50px; /* Redimensiona a logo */
    margin-right: auto; /* Move a logo para a esquerda */
}

.menu-fix a {
    color: #c4a47c;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
    transition: color 0.3s;
}

.menu-fix a:hover {
    color: #ffcc00;
}

/* Seções com imagens em efeito Parallax */
.banner {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('img/parallax-imagem1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(218, 44, 44);
    text-align: center;
}

.banner h1 {
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 100px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Ajustes responsivos para o banner */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 60px; /* Diminui o tamanho da fonte em telas menores */
    }
}

/* Seções informativas */
.informacoes {
    background-color: #fff;
    box-shadow: #fff;
}

.informacoes h2 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 18px; 
    text-align: center;
    color: #c4a47c;
}

.informacoes p { 
    font-family: 'Lato', sans-serif; 
    font-size: 16px;
    color: #666;
    text-align: center;
}

/* Ajuste para a imagem de parallax */
.img2 {
    background-image: url(img/parallax-imagem2.jpg);
    height: 50vh;
    position: relative;
    background-attachment: fixed;
}

/* Responsividade para img2 */
@media (max-width: 768px) {
    .img2 h3 {
        width: 90%; /* Ajusta a largura em telas pequenas */
        font-size: 18px; /* Reduz o tamanho da fonte */
    }
}

.img2 h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    padding: 10px;
    text-align: center;
    background-color: #604829;
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-style: italic;
}

/* Ajuste para a imagem de parallax */
.img3 {
    background-image: url(img/parallax-imagem3.jpg);
    height: 50vh;
    position: relative;
    background-attachment: fixed;
}

.img3 h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    padding: 10px;
    text-align: center;
    background-color: #604829;
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-style: italic;
}

/* Responsividade para a imagem de parallax */
@media (max-width: 768px) {
    .img3 h3 {
        width: 90%;
        font-size: 18px;
    }
}

.contatos {
    background-image: url(img/parallax-imagem4.png);
    height: 100vh;
    position: relative;
    background-attachment: fixed;
}

.contatos h2 {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    padding: 10px;
    text-align: center;
    background-color: #604829;
    color: #fff;
    font-family: 'Oswald', serif;
    font-size: 24px;
}

/* Responsividade para a seção de contato */
@media (max-width: 768px) {
    .contatos h2 {
        width: 80%; /* Ajusta a largura em telas menores */
        font-size: 18px;
    }
}

.endereco {
    background-color: #604829;
    color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    text-align: center;
}

.endereco p {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    margin: 10px 0;
    color: #fff;
}

/* Responsividade para o endereço */
@media (max-width: 768px) {
    .endereco {
        width: 80%; /* Ajusta a largura do endereço */
    }
}

.horarios {
    background-image: url('img/cafeteria.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
    text-align: center;
    color: #fff;
    position: relative;
    height: 85vh;
    display: flex;
    background-attachment: fixed;
    flex-direction: column;
    align-items: center;
}

.horarios h2 {
    position: absolute;
    margin: 0 auto;
    top: 4%;
    right: 0;
    left: 0;
    font-family: "Oswald", sans-serif;
    text-align: center;
    letter-spacing: 8px;
    color: white;
}

/* Responsividade para os horários */
@media (max-width: 768px) {
    .horarios h2 {
        font-size: 18px; /* Ajusta o tamanho da fonte */
    }
}

.lista {
    list-style-type: none;
    padding: 60px;
    margin: 0;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lista li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 1px 300px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.lista li h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}

.lista li p {
    font-size: 16px;
    color: #fff;
    margin-left: 10px;
}

.lista li div {
    flex-grow: 1;
    height: 3px;
    background-color: #fff;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 4px;
}

/* Responsividade para a lista */
@media (max-width: 768px) {
    .lista li {
        margin: 1px 20px; /* Ajusta a margem */
    }

    .lista li h3, .lista li p {
        font-size: 14px; /* Reduz o tamanho da fonte */
    }
}

/* Rodapé */
.rodape {
    background-color: #604829;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.rodape p {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    margin: 5px 0;
    color: white;
}

.contatos iframe {
    position: absolute;
    max-width: 1024px;
    height: 300px;
    top: 25%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* Responsividade para o iframe */
@media (max-width: 768px) {
    .contatos iframe {
        width: 100%;
        height: 250px; /* Ajusta a altura */
    }
}
