* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    height: 1000%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

/* Menu Superior - Inicio */

.upper-menu {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background-color: #ffffff;
}

.botoes-upper-menu {
    display: flex;
    flex-direction: row;
    width: 30%;
    justify-content: space-between;
    align-items: center;
}

.botoes-upper-menu a {
    text-decoration: none;
    color: black;
}

#logo-menu {
    width: 164px;
}

/* Menu Superior - Fim */

/* Conteudo - Inicio */

.conteudo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#titulo-conteudo {
    color: #004E98;
}

/* Conteudo - Fim */

/* Textos - Inicio */

.container-textos {
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 50px;
}

.card-texto {
    margin-top: 20px;
}

.card-texto h1 {
    color: #FF6700;
}

.central-assinante-box {
    background-color: #004E98;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#button-central-assinante {
    background-color: #FF6700;
    padding: 4px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

/* Textos - Fim */

/* Responsividade - Inicio */

@media screen and (max-width: 767px) {
    .botoes-upper-menu {
        width: 65%;
        font-size: medium;
    }

    #logo-menu {
        width: 104px;
    }

}

/* Responsividade - Fim */