/* Banner */
.banner .swiper .swiper-pagination {
    bottom: 0;
}
.banner .swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 1px solid #2F3C71;
    background: #FFFFFF;
    opacity: 1;
}
.banner .swiper .swiper-pagination-bullet-active {
    background: #2F3C71;
    border: 1px solid #FFFFFF;
}
.banner .swiper .swiper-button-prev,
.banner .swiper .swiper-button-next {
    width: inherit;
    height: inherit;
    margin-top: calc(0px - (60px / 2));
}
.banner .swiper .swiper-button-prev::after,
.banner .swiper .swiper-button-next::after {
    font-size: 1.75rem;
    font-weight: 900;
    border-radius: 5px;
    background: rgba(47,60,113,0.7);
    color: #FFFFFF;
    padding: 1rem;
}

/* Categorias */
.categories {
    padding-top: 3rem;
    padding-bottom: 5rem;
}
.categories .swiper .swiper-wrapper picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 6px 0.2px rgba(115, 115, 115, 0.35);
}
.categories .swiper .swiper-wrapper a:hover ~ picture {
    background-color: rgb(234, 234, 234);
}
.categories .swiper .swiper-wrapper h5 {
    font-family: "Montserrat Bold";
    font-size: 1.125rem;
    line-height: 1;
    color: #2f3c71;
    text-align: center;
    margin-bottom: 0;
}
@media(min-width: 1200px) {
    .categories .swiper {
        max-width: 1146px;
        padding-left: 54px;
        padding-right: 54px;
    }
    .categories .swiper .swiper-wrapper {
        padding: 1rem 0 0;
    }
    .categories .swiper .swiper-button-prev,
    .categories .swiper .swiper-button-next {
        width: inherit;
        height: inherit;
    }
    .categories .swiper .swiper-button-prev::after,
    .categories .swiper .swiper-button-next::after {
        font-size: 1.702rem;
        font-weight: 900;
        color: #2f3c71;
    }
    .categories .swiper .swiper-button-prev {
        left: 2px;
    }
    .categories .swiper .swiper-button-next {
        right: 2px;
    }
}
@media(max-width: 1199px) {
    .categories .swiper {
        display: flex;
        justify-content: center;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .categories .swiper .swiper-wrapper {
        position: relative;
        padding: 1rem 1rem 2.5rem;
        display: grid;
        grid-gap: 1.75rem;
        grid-template-columns: repeat(auto-fill, minmax(150px, 150px));
        grid-auto-columns: minmax(150px, 150px);
        grid-auto-flow: column;
        scrollbar-color: #c2c2c2 #eaeaea;
        scrollbar-width: thin;
        overflow-x: auto;
        width: auto;
    }
    .categories .swiper .swiper-wrapper::-webkit-scrollbar {
        height: 10px;
    }
    .categories .swiper .swiper-wrapper::-webkit-scrollbar-thumb {
        height: 10px;
        background-color: #c2c2c2;
        border-radius: 5px;
    }
}
@media(max-width: 767px) {
    .categories .swiper .swiper-wrapper {
        grid-gap: 1rem;
    }
}

/* Sobre Nós */
.about {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: rgb(30, 44, 103);
}
.about::after {
    content: "";
    background-image: url("../images/favicon-xl.png");
    background-repeat: no-repeat;
    background-position: center left;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    opacity: 0.15;
    z-index: 2;
}
.about .content {
    position: relative;
    z-index: 3;
}
.about .content .about-title {
    font-family: "Montserrat Medium";
    font-size: 1.75rem;
    color: #FFFFFF;
}
.about .content .about-title span {
    font-family: "Montserrat ExtraBold";
}
.about .content .about-description > * {
    font-family: "Montserrat Medium";
    font-size: 1rem;
    color: #FFFFFF;
}
.about .content .btn-green {
    max-width: 260px;
}
.about picture {
    z-index: 1020;
}
.about picture img {
    width: 95px;
}
@media(min-width: 576px) {
    .about::after {
        width: 480px;
    }
    .about picture img {
        width: inherit;
    }
}
@media(min-width: 768px) {
    .about::after {
        width: 440px;
    }
    .about .content {
        max-width: 400px;
    }
}
@media(min-width: 992px) {
    .about::before {
        content: "";
        background-image: url("../images/textura-quem-somos.png");
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: contain;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: 1;
    }
    .about .background {
        background-image: var(--background-image-var);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 75%;
        max-width: 1200px;
        /*opacity: 0.85;*/
    }
    .about .background::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(30, 44, 103);
        background: radial-gradient(circle, rgba(255,255,255,0) -25%, rgba(30,44,103,1) 100%);
    }
}
@media(min-width: 1200px) {
    .about {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    .about .background {
        width: 70%;
    }
}
@media(min-width: 1600px) {
    .about::after {
        width: 560px;
    }
}

/* Produtos */
.products {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f2f2f2;
}
.products .btn-outline-green {
    max-width: 300px;
    margin: 1rem auto 0;
}
.products .card {
    border: 0;
    border-radius: 5px;
    box-shadow: 0.5px 0.9px 9px 0.5px rgba(115, 115, 115, 0.35);
    overflow: hidden;
}
.products .card .card-img-top {
    width: 80%;
    margin: 2rem auto 0;
    transition: transform .3s ease;
}
.products .card:hover .card-img-top {
    transform: scale(1.2);
}
.products .card .card-body {
    position: relative;
    padding: 1.125rem 0 0;
    background-color: #FFFFFF;
}
.products .card .card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background-color: #112247;
}
.products .card .card-body::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background-color: #7db746;
}
.products .card .card-body .card-title {
    font-family: "Intelo Bold";
    text-transform: uppercase;
    font-size: 1.625rem;
    line-height: 1;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    margin-bottom: 1rem;
    background: rgb(0,55,128);
    background: linear-gradient(135deg, rgba(0,55,128,1) 75%, rgba(255,255,255,1) 75%);
}
.products .card .card-body .card-subtitle {
    font-family: "Montserrat Bold";
    font-size: 1rem;
    color: #1e1e1e;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.products .card .card-body ul {
    list-style-type: "\2022";
    text-align: left;
    line-height: 1.25;
    padding-left: 1.5rem;
    padding-right: 1.25rem;
}
.products .card .card-body ul li {
    font-family: "Montserrat Medium";
    font-size: 0.875rem;
    color: #1e1e1e;
    padding-left: 0.188rem;
}
.products .card .stretched-link {
    font-family: "Intelo Bold";
    font-size: 0.866rem;
    color: #82c341;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 1.25rem 1.25rem;
}
@media(max-width: 1199px) {
    .products .swiper {
        display: flex;
        justify-content: center;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .products .swiper .swiper-wrapper {
        position: relative;
        padding: 1rem;
        display: grid;
        grid-gap: 1.5rem;
        grid-template-columns: repeat(auto-fill, minmax(320px, 320px));
        grid-auto-columns: minmax(320px, 320px);
        grid-auto-flow: column;
        scrollbar-color: #c2c2c2 #eaeaea;
        scrollbar-width: thin;
        overflow-x: auto;
        width: auto;
    }
    .products .swiper .swiper-wrapper::-webkit-scrollbar {
        height: 10px;
    }
    .products .swiper .swiper-wrapper::-webkit-scrollbar-thumb {
        height: 10px;
        background-color: #c2c2c2;
        border-radius: 5px;
    }
}
@media(min-width: 1200px) {
    .products .swiper {
        padding: 1rem 1rem 2rem;
    }
    .products .swiper-button-prev {
        left: -1rem;
    }
    .products .swiper-button-next {
        right: -1rem;
    }
    .products .swiper-button-prev,
    .products .swiper-button-next {
        width: inherit;
        height: inherit;
    }
    .products .swiper-button-prev::after,
    .products .swiper-button-next::after {
        font-size: 1.702rem;
        font-weight: 900;
        color: #2f3c71;
    }
}
@media(min-width: 1440px) {
    .products .swiper-container {
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .products .swiper-button-prev {
        left: -1.5rem;
    }
    .products .swiper-button-next {
        right: -1.5rem;
    }
}

/* Qualidade e Tecnologia */
.quality {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.quality::before {
    content: "";
    background-image: url("../images/favicon-md.png");
    background-repeat: no-repeat;
    position: absolute;
    top: 32px;
    left: -180px;
    width: 559px;
    height: 593px;
    opacity: 0.07;
}
.quality .section-title {
    text-align: left;
}
.quality .section-title::before,
.quality .section-title::after {
    margin: 0;
}
.quality .description > * {
    font-family: "Montserrat Medium";
    font-size: 1rem;
    color: #2f3c71;
}
.quality .btn-green {
    max-width: 210px;
}
.quality .image {
    position: relative;
    padding-right: 8px;
    padding-bottom: 8px;
}
.quality .image::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    right: 0;
    bottom: 0;
    background-color: #82c341;
    z-index: -1;
}
@media(min-width: 992px) {
    .quality {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    .quality::before {
        top: 52px;
        left: -160px;
    }
}
@media(min-width: 1600px) {
    .quality::before {
        left: -90px;
    }
}