/* css - conteudo da pagina blog */

.link-blog{
    color: white;
    text-decoration: none;
}

.link-blog:hover{
    color: darkgray;
    text-decoration: none;
}

.link-blog2{
    color: black;
    text-decoration: none;
}

.link-blog2:hover{
    color: darkgray;
    text-decoration: none;
}

.postHome2{
    width: 100%;
    height: 10vw;
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
    position: relative; 
}

.postHome3{
    width: 100%;
    height: 25vw;
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
    position: relative; 
}

.postHome3:hover, .postHome2:hover{
    opacity: 0.6;
}

.postHomeText{
    position: absolute;
    width: 100%;
    left: 0%;
    bottom: 0%;
    background-color: rgba(55, 55, 55, 0.6);
    padding: 5% 10%;
}

.postHomeText2{
    position: absolute;
    width: 60%;
    height: 100%;
    right: 0%;
    top: 0%;
    background-color: rgba(55, 55, 55, 0.6);
    padding: 5%;
}

.tituloPost1{
    font-size: 1.2rem;
    font-weight: bold;
}

.tituloSugestao{
    margin: 4% 5%; 
    font-size: 1.5rem;
}



.img-post-principal{
    position: relative; 
    padding-left: 0%; 
    padding-right: 0%; 
    margin-bottom: 3%;
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    min-height: 30vw;
}

.info-post-principal{
    position: absolute; 
    width: 100%; 
    bottom: 0px; 
    background-color: rgba(0, 0, 0, 0.8); 
    padding: 4% 6%;
    white-space: nowrap;
    text-overflow: hidden;
}

.img-post-secundario{
    position: relative; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    min-height: 25vh;
    margin-bottom: 3%;
}

.info-post-secundario{
    position: absolute; 
    width: 60%; 
    height: 100%; 
    right: 0px; 
    background-color: rgba(0, 0, 0, 0.8); 
    padding: 5%;
}

.titulo-post-secundario{
    font-size: 2vw;
}

.form-contact{
    margin: 4% 0% 6% 5%;
}

.texto-sessao2{
    font-size: 2.5vw;
    margin-bottom: 0%;
}

.input-texto{
    margin-bottom: 1%;
    color: white;
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
    padding: 1%;
    font-weight: lighter;
}


/* formulario de sugestao */

.input1{
    width: 75%;
}

.input-texto::placeholder{
    color: white;
}

.input-botao{
    background-color: black;
    color: white;
    border: none;
    border-radius: 500px;
    padding: 1%;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 3%;
    margin-left: 63%;
}

.input-botao:hover{
    color: darkgray;
    background-color: lightgray;
}

/* article */

.articleText{
    white-space: pre-wrap;
    padding: 5%;
}

.playerYoutube{
    margin-left: 10%; 
    width: 80%; 
    height: 50vh;
}


@media screen and (max-width: 600px) {

    .postHome3{
        height: 45vw;
    }

    .postHome2{
        height: 25vw;
    }

    .input-botao{
        font-size: 0.7rem;
    }


    .playerYoutube{
        margin-left: 0% !important;
        width: 100% !important;
        height: 20vh;
    }
}