/*========= Modificacoes Gerais =========*/

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Montserrat', sans-serif !important;
}

p{
    font-size: 1rem;
}

.textoTopo{
    position: absolute; 
    bottom: 10%; 
    left: 12%;
    width: 60%;
}

.topo-pagina{
    position: relative; 
    padding: 0px;
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat; 
    padding-bottom: 20%;
}

.sessao{
    padding: 5% 15%;
}

.tituloSessao{
    font-size: 2rem; 
    border-left: solid 3px;
    padding-left: 1%; 
    font-weight: bold;
    margin-bottom: 5%;
}

.tituloPagina{
    font-size: 4rem; 
    font-weight: bold; 
    color: white; 
    border-left: solid; 
    border-color: white;
    padding-left: 1%;
}

.clippedText{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tituloPost{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.textoPost1{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*========= Menu =========*/

.menu{
    background-color: rgb(0,0,0);
    opacity: 0.9;
    z-index: 9999;
    padding-left: 1%;
    padding-right: 1%;
}

.nav-link{
    margin-right: 40px;
    font-size: 1.2rem;
}

.dropdown-menu{
    background-color: rgba(44, 44, 44, 0.8);
}

.dropdown-item{
    color: white;
}

.dropdown-item:hover{
    background-color: rgba(88, 88, 88, 0.8);
}

/*======== Footer e links ========*/

.link-contato-footer{
    color: black;
}

.link-contato-footer2{
    color: white;
}

.link-contato-footer, .link-contato-footer2{
    font-size: 2rem;
}

.link-contato-footer2:hover{
    color: #444444;
}

.link-contato-footer:hover{
    color: #444444;
}

.email-link{
    color: black;
}

.email-link:hover{
    text-decoration: none;
    color: #444444;
}

.email-link2{
    color: white;
}

.email-link2:hover{
    text-decoration: none;
    color: #444444;
}

/*========= MOBILE =========*/

@media screen and (max-width: 600px) {

    /*========= Modificacoes Gerais =========*/

    p{
        font-size: 0.7rem !important;
    }

    .tituloSessao{
        font-size: 1rem !important; 
        border-left: solid 1px;
    }

    .tituloPagina{
        font-size: 1.5rem !important; 
    }

    /*========= Menu =========*/

    .nav-link{
        font-size: 1rem !important;
        margin-left: 2%;
    }


    /*======== Blog ========*/

    .textoPost1{
        -webkit-line-clamp: 1;
    }

}

@media screen and (max-width: 1400px) {

    /*========= Menu =========*/

    .nav-link{
        font-size: 1rem !important;
    }

}