* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html, body{height:100%}

.container {
    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%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
}

#img-home {
    width: 100%;
    height: 100%;
    z-index: 0;
}

#slogan {
    position: absolute;
    height: auto;
    z-index: 1;
    color: #ffffff;
}

.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;
}
/* Responsividade - Inicio */

@media screen and (max-width: 767px) {
    #slogan {
        font-size: large;
    }

    .botoes-upper-menu {
        width: 65%;
        font-size: medium;
    }

    #logo-menu {
        width: 104px;
    }

    
}

/* Responsividade - Fim */