/* EFEITOS GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

/* TIPOGRAFIA */
h1 { 
    font-family: 'Fraunces', serif; 
    font-size: 60px; 
    color: #fff; 
    text-align: center; /* Titulo principal centralizado */
    width: 100%;
}

h2 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 18px; 
    color: #c4a47c; 
    margin-bottom: 20px; 
}

h3 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 16px; 
    color: #fff; 
}

p { 
    font-family: 'Lato', sans-serif; 
    font-size: 16px; 
    color: #666; 
    line-height: 34px; 
}

.italico {
    font-style: italic; /* Classe para os subtítulos em itálico */
}

/* TOPO FIXO */
.container-topo {
    width: 100%;
    height: 80px;
    background-color: #604829;
    position: fixed;
    top: 0;
    z-index: 10;
}

.limitador-header {
    max-width: 1024px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.logo {
    width: 100px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

nav {
    position: absolute;
    right: 0;
    top: 35%;
}

nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #c4a47c;
    text-decoration: none;
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombreado nos links */
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}

/* PARALLAX GERAL */
.container-parallax1, .container-parallax2, .container-parallax3, 
.container-parallax4, .container-parallax5, .container-banner {
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* BANNER */
.container-banner {
    height: 100vh;
    background-image: url("../imagens/parallax-imagem1.png");
}

/* INFORMAÇÕES (TEXTOS) */
.container-texto {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* Ajuste de espaço entre Informações e Contatos */
#informacoes .container-texto:last-of-type {
    padding-bottom: 40px; 
}

/* SUB-SEÇÕES PARALLAX */
.container-parallax2 {
    height: 50vh;
    background-image: url("../imagens/parallax-imagem2.jpg");
}

.container-parallax3 {
    height: 50vh;
    background-image: url("../imagens/parallax-imagem3.jpg");
}

.container-parallax2 h3, .container-parallax3 h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    background-color: #604829;
    width: 500px;
    padding: 10px;
    text-align: center;
}

/* CONTATOS */
.container-parallax4 {
    min-height: 100vh;
    background-image: url("../imagens/parallax-imagem4.png");
    padding-top: 40px; /* Reduzido para diminuir espaço branco */
    padding-bottom: 80px;
}

.faixa-titulo {
    background-color: #604829;
    width: 500px;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.faixa-titulo h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}

.mapa {
    width: 100%;
    max-width: 1024px;
    padding: 0 10px; /* Pequeno respiro nas laterais em celulares */
}

.mapa iframe {
    width: 100%;
    height: 300px;
    border: 0px solid #604829;
}

.box-contatos {
    background-color: #604829;
    width: 500px;
    padding: 15px;
    text-align: center;
    margin-top: 30px;
}

.box-contatos p {
    color: #fff;
    line-height: 24px;
}

/* HORÁRIOS */
.container-parallax5 {
    height: 85vh;
    background-image: url("../imagens/cafeteria.jpg");
}

.quadro-horarios {
    width: 768px;
    max-width: 90%;
}

.lista {
    list-style: none;
}

.lista li {
    position: relative;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lista li h3 {
    background-color: #000; /* Preenchimento para cobrir a linha */
    padding-right: 10px;
    position: relative;
    z-index: 2;
}

/* A linha decorativa fica atrás do texto */
.lista li div {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 50%;
    background-color: #acacac;
    z-index: 1;
}

.lista li p, .lista li .fechado {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #000; /* Preenchimento para cobrir a linha */
    padding-left: 10px;
    position: relative;
    z-index: 2;
}

.lista li .fechado {
    color: #c4a47c;
}

/* RODAPÉ */
.container-rodape {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.container-rodape p {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.autor { color: #c4a47c; }

.btn-topo {
    width: 60px;
    height: 60px;
    background-color: #c4a47c;
    position: absolute;
    right: 50px;
    bottom: 80px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-topo img {
    width: 30px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    h1 { font-size: 45px; }
    .limitador-header { padding: 0 10px; }
    nav a { font-size: 14px; margin-left: 10px; }
    .faixa-titulo, .box-contatos, .container-parallax2 h3, .container-parallax3 h3 {
        width: 90%;
    }
    .quadro-horarios { width: 95%; }
    .lista li h3, .lista li p, .lista li .fechado { font-size: 14px; }
}
