
.navbar #logo-v1{
    display: none;
}
.navbar #logo-v2{
    display: initial;
}

header{
    background-color: #F2E9F2;
}

header .container p:nth-child(1){
    font-weight: 700;
    font-size: 10rem;
    line-height: 114.69%;
    letter-spacing: -0.045em;

    color: #EDDDED;
}
header .container{
    flex-direction: column;
}
header .container .titulo-section{
    font-weight: 700;
    margin-top: -75px;
}

header .container .row:nth-child(1){
    max-width: 600px;
}

header .container .row:last-child,
header .container .row p.subtitulo{
    margin-top: 1rem;
}

header .container .row:last-child{
    margin-bottom: 10rem;
}

section.posts{
    padding-top: 0 !important;
}
section.posts .container{
    margin-top: -5rem;
    margin-left: 10%;
    margin-right: 10%;
    display: block;
}

section.posts .paginacao{
    margin: 3rem 0;
    display: flex;   
    justify-content: center;
}
section.posts .paginacao ul{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    list-style: none;
    gap: 10px;
}

section.posts .paginacao ul li:not(.active):hover{
    background-color: #f7bd6c;
    
}
section.posts .paginacao ul li:not(.active){
    cursor: pointer;
}
section.posts .paginacao ul li{
    width: 40px;
    height: 40px;

    border: 1px solid #F2E8F2;
    box-sizing: border-box;
    border-radius: 20px;

    font-weight: 600;
    font-size: 16px;
    line-height: 37px;
    text-align: center;
    color: #45555C;
}
section.posts .paginacao ul li:last-child{
    background-image: url(../assets/arrow_forward_ios.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
}
section.posts .paginacao ul li.active{
    background-color: #FF9400;
    color: #FFFFFF;
}

@media screen and (max-width: 500px) {
    header .container .row:last-child{
        margin-bottom: 7rem;
    }
}


@media screen and (max-width: 992px) {
    header .container .titulo-section{
        font-size: 1.7rem;
    }
    header .container p:nth-child(1){
        font-size: 5rem;
    }
    
    header .container .row:first-child > *{
        text-align: center;
    }
    header .container{
        margin-left: 5%;
        margin-right: 5%;
    }
    header .container .titulo-section{
        font-weight: 700;
        margin-top: -30px;
    }
}