@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/********************/
/* 1. Configurações globais
/* 2. Header
/* 3. Seção capa
/* 4. Seção destaque
/* 5. Seção galeria
/* 6. Footer
/* 7. Media queries
/********************/

/********************/
/* 1. Configurações globais
/********************/

.limita-secao {
    margin: 0 auto;
    max-width: 1024px;
}

section {
    padding: 60px 20px;
}

/********************/
/* 2. Header
/********************/

header div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

header img {
    width: 150px;
}

header nav {
    font-size: 18px;
}

header a {
    margin: 0 5px;
    text-decoration: none;
    color: #000000;
    padding: 5px;
}

header a:hover {
    border-bottom: 3px solid #5f5e5e;
}

/********************/
/* 3. Seção capa
/********************/

.secao-capa {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-estacao.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.secao-capa::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    background-color: #000000;
}

.secao-capa div {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-transform: uppercase;
    padding: 60px 20px;
    z-index: 1;
}

.secao-capa h1 {
    font-size: 80px;
}

.secao-capa h2 {
    font-size: 35px;
}

.secao-capa h1,
.secao-capa h2 {
    margin: 0;
    color: #ffffff;
    text-shadow: 1px 1px 5px #000000;
}

/********************/
/* 4. Seção destaque
/********************/

.secao-destaque img:first-of-type {
    width: 100%;
}

.secao-destaque p::first-letter {
    font-size: 18px;
    font-weight: bold;
}

#pontos {
    background-color: #e9e9e9;
}

p {
    line-height: 32px;
    margin: 20px 0;
}

h3 {
    font-size: 32px;
    text-align: center;
    margin: 0 0 40px 0;
}

ul {
    list-style: none;
    padding: 0;
}

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

li::before {
    content: "";
    background-image: url("../img/seta.png");
    width: 20px;
    height: 20px;
    margin: 0 6px 0 0;
}

/********************/
/* 5. Seção galeria
/********************/

.galeria {
    width: 100%;
}

.galeria img {
    width: calc((100% / 3) - 3px);
    opacity: 0.6;
}

.galeria img:hover {
    opacity: 1;
}

/********************/
/* 6. Footer
/********************/

footer {
    width: 100%;
    height: 50px;
    background-color: #f5c002;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0 0 0;
}

/********************/
/* 7. Media queries
/********************/

@media (max-width: 600px) {
    header img {
        margin-right: 40px;
    }

    header nav {
        display: flex;
        font-size: 0.83rem;
        font-weight: 500;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}