.banner{
    width: 100%;
    position: relative;
    align-items: center;
}
.banner picture{
    height: 100%;
}
.banner picture:after{
    content: "";
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #00000082;
}
.banner picture,
.banner picture img{
    width: 100%;
    display: flex;
}
.banner .absolute-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 151px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    pointer-events: none;
}
.banner .absolute-container .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    gap: 20px;
}
.banner .absolute-container .container h2{
    font-size: 40px;
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
.banner .absolute-container .container h2::after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
}


.relacionados{
    width: 100%;
    background-color: var(--bg1);
    position: relative;
}
.relacionados::before{
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50px;
    width: 440px;
    height: 230px;
    background-image: url(../imagens/home/bg2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}
.relacionados::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -50px;
    width: 389px;
    height: 208px;
    background-image: url(../imagens/home/bg1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}
.relacionados .container{
    gap: 100px;
    position: relative;
}
.relacionados .titulo{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.relacionados .titulo h2{
    width: 200px;
}
.relacionados .titulo p{
    max-width: 771px;
}
.relacionados .blog-div{
    width: 100%;
    gap: 20px;
}
.relacionados .blog-div .box:hover{
    transform: translateY(-10px);
    transition: transform .3s;
}
.relacionados .blog-div .box{
    width: calc(100% - 66% - 22px);
    margin: 0 auto;
	align-content: baseline;
    position: relative; 
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 2px 1px 15px 3px rgba(0, 0, 0, 0.15);
    transition: transform .3s;
}
.relacionados .blog-div .box .img{
    width: 100%;
    height: 225px; 
    position: relative;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.relacionados .blog-div .box  .img .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    pointer-events: none;
}
.relacionados .blog-div .box .img a,
.relacionados .blog-div .box .img img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}
.relacionados .blog-div .box .texto{
    width: 100%;
    padding: 30px 30px 10px;
    gap: 20px;
}
.relacionados .blog-div .box .texto p{
    text-transform: uppercase;
}
.relacionados .blog-div .box .texto h4{
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 18px;
}


#modalMidia{
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    padding: 0 2.5%;
    z-index: 999;
}
.modal-content {
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}
.fechar {
    position: absolute;
    top: -24px;
    right: -4px;
    font-size: 50px;
    cursor: pointer;
    color: red;
}
.videoIframe {
    max-width: 800px;
    width: 100%;
    height: 500px;
}


/* MEDIA DESKTOP */
@media screen and (max-width: 1650px){
    
}

@media screen and (max-width: 1440px){
    
}

@media screen and (max-width: 1366px){
        
}

@media screen and (max-width: 1280px){
	
}

@media screen and (max-width: 1200px){
	.relacionados .titulo p{
        max-width: calc(100% - 230px);
    }
}

@media screen and (max-width: 1100px){
   
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .relacionados .blog-div .box{
        width: calc(100% - 50% - 10px);
    }
}

@media screen and (max-width: 900px) {
	
}

@media screen and (max-width: 800px){
    .relacionados::before,
    .relacionados::after{
        display: none;
    }
}

@media screen and (max-width: 600px){
    .relacionados .titulo{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.relacionados .titulo h2{
		width: fit-content;
	}
	.relacionados .titulo p{
		max-width: 100%;
	}

	.relacionados .blog-div .box{
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}
