*{
    padding:0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
/* limite de tela */
.limite-tela{
    max-width: 1024px;
    margin: 10px auto;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
ul{
    display: flex;
    gap: 20px;
}
a{
    color: gray;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
}
a:hover{
    color: green;
    background-color: yellow;
    padding: 10px;
    border-radius: 10px;
}
/* Acaba o header aqui*/

/*Banner*/
.banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(assets/img/bg-estacao.jpg);
    background-size: cover;
    height: 500px;
    width: 100vw;
    color: white;
    position: relative;
}
.banner::before{
    content:"";
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.titulo{
    text-shadow: 0.1em 0.1em 0.2em black;
}
h1{
    font-size: 70px;
    z-index: 1;
    text-shadow: #000;
}
h2{
    font-size: 35px;
    z-index: 1;

}
/*FIM BANNER*/

/*SOBRE*/
.sobre{
    margin: 100px auto;
}
h3{
    text-align: center;
    font-size: 30px;
    margin:50px auto
}
img{
    width: 100%;
}
p{
    text-align: left;
    margin: 50px 0 0 0 ;
}
.sobre p::first-letter{
    font-size: 20px;
    font-weight: bold;
}
/*FIM SOBRE*/

/*PONTOS-TURISTICOS*/
.pontos-turisticos{
    background-color: rgb(226, 226, 226);
    padding: 50px 0;
}
.lista-turistica{
    margin: 35px auto;
    display: flex;
    flex-direction: column;
}
.seta::before{
    content: "";
    background-image: url(assets/img/seta.png);
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}
/*FIM PONTOS TURISTICOS*/

/*GALERIA*/
article{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto;
}
.fotos{
    width: 300px;
    opacity: 0.5;
}
.fotos:hover{
    opacity: 1;
}
/*FIM GALERIA*/

/*FOOTER*/
footer{
    background-color: rgba(248, 203, 0, 0.986);
    display: flex;
    align-items: center;
    justify-content: center;
}
footer p{
    margin:10px auto;
    font-size: 17px;
}
/*FIM FOOTER*/