
main{
    overflow: hidden;
}
.banner-responsive picture{
    position: relative;
}
.banner-responsive picture::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-dark);
    opacity: 0.62;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.banner-responsive picture::after{
    content: "";
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 1;
    background-image: url(../imagens/locacoes/dots.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: clamp(150px, 8vw - 1rem, 300px);
    height: clamp(150px, 8vw - 1rem, 300px);
}

.banner-responsive .absolute-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 2;
}

.banner-responsive .absolute-container h1{
    font-size: clamp(1.6rem, 5vw - 1rem, 3.5rem);
    width: fit-content;
    color: #fff;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

/* TITULOS DAS SEÇÕES */

section{
    width: 100%;
    padding: 100px 0px;
}
section:first-of-type{
    padding: 0px;
}

section .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}
.container .title-container{
    max-inline-size: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container .title-container h4{
    color: var(--color-primary);
    width: fit-content;
    text-align: center;
    text-transform: uppercase;
}
.container .title-container h2{
    color: var(--text-color);
    width: fit-content;
    text-align: center;
}
.container .title-container p{
    color: var(--text-color-terciary);
    width: fit-content;
    text-align: center;
    font-size: clamp(14px, 2vw - 0.5rem, 16px);
}



.blog-container{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 0;
}

.blog-container::before{
    content: "";
    width: 300px;
    height: 300px;
    background-image: url(../imagens/geral/dots-orange.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 5%;
    top: 5%;
    pointer-events: none;
    z-index: -1;
}

.blog-container .container{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.blog-container .container img{
    margin: 30px 0;
    border-radius: 50px 0px 0px 0px;
}
.blog-container .container h4{
    color: var(--color-primary);
    font-size: clamp(18px, 2vw - 0.5rem, 20px);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.blog-container .container h2{
    color: var(--color-primary-dark);
    font-size: clamp(24px, 2.5vw - 0.5rem, 30px);;
}
.blog-container .container p{
    color: var(--text-color-terciary);
    font-size: clamp(14px, 2vw - 0.5rem, 16px);
}

.blog-container .container:nth-of-type(2) .compartilhe{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 30px var(--pading-inline);
    border-radius: 10px;
}

.blog-container .container:nth-of-type(2) .compartilhe .tags-section,
.blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section{
    justify-content: flex-end;
}

.blog-container .container:nth-of-type(2) .compartilhe .tags-section span,
.blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section span{
    font-size: clamp(16px, 2vw - 0.5rem, 18px);
    font-weight: bold;
}
.blog-container .container:nth-of-type(2) .compartilhe .tags-section ul{
    max-width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-container .container:nth-of-type(2) .compartilhe .tags-section ul li{
    font-size: clamp(16px, 2vw - 0.5rem, 18px);    
    font-weight: 400;
}

.blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section a{
    width: 24px;
    height: 24px;
}
.blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section a i{
    font-size: clamp(20px, 2.2vw - 0.5rem, 24px);
    transition: color .3s ease-in-out;
}
.blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section a svg{
    width: 100%;
    height: 100%;
    transition: fill .3s ease-in-out;
}

.blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section a:hover i{
    color: var(--color-primary-dark);
}
.blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section a:hover svg{
    fill: var(--color-primary-dark);
}


.blog-container .container:nth-of-type(3) .total-comentarios h3{
    color: var(--color-primary-dark);
    font-size: clamp(22px, 2.2vw - 0.5rem, 26px);
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.blog-container .container:nth-of-type(3) .comentarios{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-container .container:nth-of-type(3) .comentarios .comentario{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.blog-container .container:nth-of-type(3) .comentarios .comentario .usuario{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}
.blog-container .container:nth-of-type(3) .comentarios .comentario .usuario .avatar{
    width: 48px;
    height: 48px;
    color: #fff;
    background-color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(22px, 2vw - 0.5rem, 26px);
}

.blog-container .container:nth-of-type(3) .comentarios .comentario .usuario .nome-data{
    display: flex;
    flex-direction: column;
}
.blog-container .container:nth-of-type(3) .comentarios .comentario .usuario .nome-data span:first-of-type{
    font-weight: 600;
     font-size: clamp(14px, 2vw - 0.5rem, 16px);
}
.blog-container .container:nth-of-type(3) .comentarios .comentario .usuario .nome-data span:last-of-type{
    font-weight: 300;
     font-size: clamp(14px, 2vw - 0.5rem, 16px)
}

.blog-container .container:nth-of-type(3) .comentarios .comentario .responder-btn{
    color: var(--color-primary);
    background-color: transparent;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: color .3s ease-in-out;
}
.blog-container .container:nth-of-type(3) .comentarios .comentario .responder-btn:hover{
    color: var(--color-primary-dark);
}

.blog-container .container:nth-of-type(3) .comentar{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
}

.blog-container .container:nth-of-type(3) .comentar input,
.blog-container .container:nth-of-type(3) .comentar textarea{
    width: 100%;
    border-color: rgba(0, 0, 0, 0.2);
    transition: border .3s ease-in-out;
}

.blog-container .container:nth-of-type(3) .comentar input:hover,
.blog-container .container:nth-of-type(3) .comentar input:focus-within,
.blog-container .container:nth-of-type(3) .comentar textarea:hover,
.blog-container .container:nth-of-type(3) .comentar textarea:focus-within{
    border-color: var(--color-primary-dark);
}

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

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

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

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

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

}
@media screen and (max-width: 1100px){
    .banner-responsive {
        overflow-y: visible;
        overflow-x: clip;
        margin-bottom: 50px;
    }
    
}
/* MOBILE */
@media screen and (max-width: 1000px){
    section {
        width: 100%;
        padding: 50px 0px;
    }
    .blog-container .container:nth-of-type(2) .compartilhe{
        flex-direction: column;
        gap: 20px;
    }
    .blog-container .container:nth-of-type(2) .compartilhe .tags-section, .blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }
    .blog-container .container:nth-of-type(2) .compartilhe .compartilhe-section {
        justify-content: flex-start;
    }
    .blog-container .container:nth-of-type(2) .compartilhe .tags-section{
        flex-direction: column;
    }
    .blog-container::before {
        display: none;
    }
}
@media screen and (max-width: 768px){

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

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

}

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

}