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

.topo {
    width: 100%;
    background-color: #ffffffc4;
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.link a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    padding: 20px;
}

.link a:hover {
    text-decoration: underline;
}

.banner {
    width: 100%;
    height: 80vh;
    background-image: url(imagens/bg-estacao.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: sans-serif;
    font-size: 32px;
}

.topo-area {
    font-family: sans-serif;
    font-size: 22px;
    text-align: center;
    margin: 40px;
}

.topo-area img {
    width: 100%;
    margin-top: 20px;
}

.sobre {
    max-width: 1024px;
    margin: auto;
    margin-bottom: 40px;
}

article {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    margin: auto;
    line-height: 2em;
    font-family: sans-serif;
}

article p::first-letter {
    font-size: 26px;
}

#ponto {
    background-color: rgb(244, 242, 242);
    padding: 8px;
}

#ponto img {
    width: 70%;
}

.lista {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

ul {
    padding: 0;
}

li {
    display: flex;
    align-items: center;
    margin: 12px 0 0 0;
}

li::before {
    content: "";
    background-image: url(imagens/seta.png);
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

#galeria {
    max-width: 1024px;
    position: relative;
    margin: auto;
    text-align: center;
}

#galeria h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.fotos {
    position: relative;
    max-width: 1024px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.fotos img {
    width: 300px;
    margin: 2px;
    opacity: 0.5;
}

.fotos img:hover {
    opacity: 1;
}

footer {
    background-color: rgb(255, 208, 0);
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-align: center;
    padding: 8px;
    margin-top: 30px;
}

