main#maincontent {
    margin: 0;
/*     display: none; */
}
/* ============ Banner Principal - Home ============ */
#main-banners-desktop {
    margin-top: 140px;
    position: relative;
    margin-bottom: 95px;
}
#main-banners-desktop .banner-home {
    height: 28.64vw;
    background-size: cover;
}
#main-banners-mobile {
    display: none;
    margin-top: 60px;
    margin-bottom: 50px;
}
#main-banners-mobile .banner-home {
    height: 78.13vw;
    background-size: cover;
}
.banner-linhas-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 95px auto;
}
.banner-linhas-container .banner-linha {
    width: 100%;
    padding-bottom: 36.15%;
    background-size: cover;
    display: block;
}
#main-banners-desktop .navigation{
    position:absolute;
    bottom: 35px;
    display: flex;
    gap: 20px;
    top: unset;
    background: transparent;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
}
#main-banners-desktop .navigation div p {
    width: 10px;
    height: 10px;
    background-color: white;
    opacity: .5;
    border-radius: 50%;
    transition: opacity var(--hover-transition);
    cursor: pointer;
}
#main-banners-desktop .navigation .tns-nav-active p,
#main-banners-desktop .navigation div:hover p {
    opacity: 1;
}
/* ============ Product Slider ============ */
.product-slider-title {
    margin-bottom: 70px;
}
/* ============ Blog Posts ============ */
.blog-home-container {
    margin-top: 150px;
}
.blog-home-container .slider-container {
    position: relative;
}
.blog-home-container .blog-title {
    margin-bottom: 60px;
}
.blog-posts {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 100%;
    margin-bottom: 40px;
}
.blog-posts .post {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: block;
    max-height: 370px;
}
.blog-posts .post .post-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 370px;
}
.blog-posts .post .blue-background{
    position: absolute;
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue-90);
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: var(--blog-transition);
}
.blog-posts .post:hover .blue-background {
    opacity: 1;
}
.blog-posts .post .post-description {
    color: white;
    font-weight: bold;
    line-height: 32px;
    width: 50%;
}
.blog-posts .post .post-description .category {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.blog-posts .post .post-description .post-name {
    font-size: 26px;
    text-decoration: underline;
}
.go-to-blog-div {
    display: flex;
    justify-content: flex-end;
}
.blog-home-container .go-to-blog {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    color: var(--secondary-dark);
    position: relative;
}
.blog-home-container .go-to-blog::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    height: 6px;
    opacity: .6;
    width: 0;
    z-index: -1;
    transition: width var(--hover-transition);
}
.blog-home-container .go-to-blog:hover::before{
    width: 100%;
}
.blog-slider-controls {
    display: none;
}
footer.page-footer {
    margin-top: 150px;
}
@media screen and (max-width: 2560px){
    .product-card:hover {
        border-color: transparent;
    }
}
@media screen and (max-width: 1920px){
    .product-card:hover {
        border-color: var(--secondary-dark);
    }
}
@media screen and (max-width: 1440px){
    .blog-posts .post .post-description {
        width: 75%;
    }
}
@media screen and (max-width: 1200px){
    .blog-posts .post .post-description {
        line-height: 24px;
    }
    .blog-posts .post .post-description .category {
        font-size: 12px;
    }
    .blog-posts .post .post-description .post-name {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px){
    /* ============ Banner Principal -Home ============ */
    #main-banners-desktop {
        margin-top: 60px;
    }
    #main-banners-desktop {
        display: none;
    }
    #main-banners-mobile {
        display: block;
    }
    .banner-linhas-container {
        margin: 50px auto;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .banner-linhas-container {
        width: 100%;
    }
    .banner-linhas-container .banner-linha {
        padding-bottom: 40.8%;
    }
    .product-slider-title {
        margin-bottom: 16px;
    }
    /* ============ Blog Posts ============ */
    .blog-home-container {
        margin-top: 50px;
    }
    .blog-home-container .blog-title {
        margin-bottom: 16px;
    }
    .blog-posts {
        display: flex;
        gap: 0;
        margin-bottom: 20px;
    }
    .blog-posts .post .post-description {
        line-height: 20px;
    }
    .blog-posts .post .post-description .category {
        font-size: 10px;
    }
    .blog-posts .post .post-description .post-name {
        font-size: 16px;
    }
    .blog-slider-controls {
        display: block;
    }
    .blog-home-container .go-to-blog {
        font-size: 16px;
    }
    footer.page-footer {
        margin-top: 50px;
    }
}
@media screen and (max-width: 425px){
    .banner-linhas-container .banner-linha {
        background-size: contain;
        background-repeat: no-repeat;
    }
    .blog-posts .post {
        max-height: 166px;
    }

}
