@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

:root{
    --background-color1: black;
    --background-color2: #5e5e5e;
    --font-color: #af924d;
    --font-color2:white;
    --shadow-color1: black;
    --shadow-color2: #8a6c3b;
    --shadow-color3: white;
}

body{
    font-family: "Cinzel", serif;
    background-color: var(--background-color2);
}

/* HEADER */

.menu{
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 6px solid var(--font-color);
    padding: 0px 30px;
}

.logo-header{
    width: 800px;
}

.logo-header img{
    width: 250px;
}

.pages-menu a{
    color: var(--font-color);
    font-size: 2em;
    font-weight: 700;
    text-shadow: 2px 2px 8px var(--shadow-color2);
    text-decoration: none;
    text-transform: uppercase;
    margin: 20px;
}

.pages-menu a:hover{
    color: var(--font-color2);
}

/* MAIN */

main{
    font-family: 'Times New Roman', Times, serif;
    background-color: var(--background-color2);
}

.horario{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px;
}

.horario h2{
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5em;
    text-decoration: underline;

}

.horario li,ul{
    font-size: 1.15em;
    text-align: center;
    padding-right: 15px;   
}


.localizaçao-contato{
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.localizaçao-contato iframe{
    padding: 20px 30px;
    width: 1500px;
    height: 350px;
}

.contato{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px;
}

.contato h2{
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5em;
    text-decoration: underline;
}

.contato li,ul{
    font-size: 1.15em;
    text-align: center;
    list-style-type: none;
    padding-right: 15px;
}

/* FOOTER */

.conteudo-footer{
    background-color: var(--background-color1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 5px solid var(--font-color);
    border-bottom: 5px solid var(--font-color);
    padding: 10px 30px;
}

.logo-footer{
    width: 300px;
}

.logo-footer img{
    width: 25%;
}

.copyright p{
    color: var(--font-color);
    text-shadow: 2px 2px 8px var(--shadow-color2);
    font-weight: 500;
}

.menu-footer{
    width: 300px;
    display: flex;
    justify-content: space-around
}

.menu-footer a{
    color: var(--font-color);
    text-decoration: none;
    font-weight: 500;
    text-shadow: 2px 2px 8px var(--shadow-color2);
    padding: 0px 10px;
}

.menu-footer a:hover{
    color: var(--font-color2);
    
}

.redes-sociais img{
    width: 25px;
    gap: 10px;
}

/* RESPONSIVIDADE */

/* TABLET */
@media screen and (min-width: 768px) and (max-width: 1023px)  {
/*HEADER*/
.menu{
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 6px solid var(--font-color);
    padding: 0px 30px;
}

.logo-header{
    width: 364px;
}

.logo-header img{
    width: 50%;
}

.pages-menu{
    width: 364px;
    display: flex;
    flex-direction: column;
}

.pages-menu a{
    font-size: 1.5em;
    display: grid;
}

.nav-menu a:hover{
    color: var(--font-color2);
}

/* MAIN */

.localizaçao-contato iframe{
    width: 650px;
}

/* FOOTER */

.logo-footer{
    width: 300px;
}

.logo-footer img{
    width: 25%;
}

.copyright p{
    font-size: 1em;
    text-align: center;
}

.menu-footer{
    width: 300px;
    display: flex;
    justify-content: space-around
}

.menu-footer a{
    display: grid;
    grid-column: 1fr;
    margin: 5px 0px;
}


.redes-sociais img{
    margin: 2px 0px;
}
}

/* CELULAR */
@media screen and (max-width: 767px)  {
/*HEADER*/

.logo-header{
    width: auto;
}

.logo-header img{
    width: 50%;
}

.pages-menu{
    width: auto;
    display: flex;
    flex-direction: column;
}

.pages-menu a{
    font-size: 1em;
    display: grid;
}


/* MAIN */

.horario h2{
    font-size: 1.2em;
}

.horario li{
    font-size: 1em;
}

.localizaçao-contato iframe{
    width: 300px;
}

.contato h2{
    font-size: 1.2em;
}

.contato li{
    font-size: 1em;
}

/* FOOTER */

.logo-footer{
    width: 150px;
}

.logo-footer img{
    width: 75%;
}

.copyright p{
    font-size: .8em;
    text-align: center;
}

.menu-footer{
    width: 300px;
    display: flex;
    justify-content: space-around
}

.menu-footer a{
    font-size: .8em;
    display: grid;
    grid-column: 1fr;
    margin: 3px 0px;
}


.redes-sociais img{
    margin: 2px 0px;
}

}