p {
    color: #052630;
    font-size: 16px;
}

.hr2 {
    background-color: #8AC440;
    opacity: 1;
    border: none;
    height: 3px;
    width: 40%;
    margin: 0;
    margin-bottom: 20px;
}

.title {
    color: #052630E5;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

/* ============================
   HERO
   ============================ */

.hero {
    padding: 80px 0 0 0;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* ============================
   SECTION SOLUÇÕES EM DATA CENTERS
   ============================ */

.section-solucoes-data {
    margin-top: 70px;

    article {
        display: flex;
        justify-content: space-between;
        gap: 40px;

        div {
            max-width: 650px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

    }
}

/* ============================
   SECTION SOLUÇÕES
   ============================ */

.section-solucoes {
    margin-top: 80px;

    article:nth-of-type(1),
    article:nth-of-type(2) {
        text-align: center;

        h2 {
            color: #D9D8D6;
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 40px;

            span {
                color: #052630;
                font-weight: 800;
            }
        }
    }
}

.section-solucoes2 {
    width: 100%;

    .hr2 {
        margin: 30px 0 0 0;
    }

    article:nth-of-type(1),
    article:nth-of-type(2) {
        margin-top: 60px;
        justify-content: space-between;

        div {
            h2 {
                font-size: 24px;
                color: #8AC440;
                font-weight: 800;
                line-height: 25px;
                margin-bottom: 20px;
            }

            p {
                max-width: 300px;
            }
        }
    }

    article:nth-of-type(3) {
        margin-top: 50px;

        hr {
            width: 23%;
        }

        h2 {
            color: #D9D8D6;
            font-weight: 800;
            font-size: 64px;
        }

        div {
            display: flex;
            flex-direction: row;
            justify-content: center;
            margin-top: 35px;

            img {
                height: 100%;
                margin: 0;
                box-shadow: -2px 1px 7.7px 0px #00000012;
                border-radius: 10px 0 0 10px;
            }

            div {
                display: flex;
                flex-direction: row;
                align-items: center;
                border-radius: 0 10px 10px 0;
                background-color: #F5F5F5;
                box-shadow: 4px 1px 7.7px 0px rgba(0, 0, 0, 0.1);
                padding: 20px 40px;
                margin: 0;

                p {
                    margin: 0;
                }
            }
        }
    }
}

.produtos-swiper,
.produtos-swiper2 {
    padding-bottom: 30px;
    margin: 0 !important;
}

.swiper-wrapper {
    justify-content: end;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.swiper-slide.card {
    background-color: #F5F5F5;
    border-radius: 10px;
    box-shadow: 1px 1px 7.2px 1px #00000012;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border: none;
    max-height: 60%;

    p {
        font-size: 15px;
    }
}

.swiper-slide h2 {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    color: #8AC440 !important;

    span {
        font-weight: 300;
        color: #052630 !important;
    }
}

.swiper-pagination {
    height: 4px;
    border-radius: 10px;
    top: 99% !important;
    width: 90% !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #8AC440 !important;
}

/* ============================
   SECTION BANNER
   ============================ */
.section-banner {
    padding: 30px 0 0 0;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 10px;

    img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    article {
        position: absolute;
        max-width: 345px;
        right: 100px;

        h2 {
            text-transform: uppercase;
            font-size: 24px;
            color: #052630;
            line-height: 30px;

            span {
                color: #8AC440;
                font-weight: 800;
            }
        }

        p {
            line-height: 20px;
        }
    }
}

/* ============================
   SECTION DIFERENCIAIS
   ============================ */

.section-diferenciais {
    margin-top: 80px;

    article:nth-of-type(1) {
        h2 {
            font-weight: 800;

            span {
                font-weight: 800;
            }
        }

        p {
            margin-top: 20px;
        }
    }

    article:nth-of-type(2) {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;

        div {
            background: #f6f6f6;
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: transform .3s ease, box-shadow .3s ease;

            img {
                height: 48px;
                margin-bottom: 16px;
            }

            h3 {
                color: #6bbf2d;
                font-size: 15px;
                font-weight: 700;
                margin: 0;
            }

            p {
                font-size: 15px;
                line-height: 1.5;
                color: #1b2b34;
            }
        }

        div:hover {
            transform: translateY(-20px);
            box-shadow: 0 25px 12px rgba(0, 0, 0, 0.15);
        }
    }
}

/* ============================
   RESPONSIVO
   ============================ */
@media (max-width: 1204px) {
    .swiper-wrapper {
        justify-content: flex-start !important;
    }

    .swiper-slide.card {
        max-height: 69%;
    }
}

@media (max-width: 992px) {
    .section-solucoes-data {
        article {
            flex-direction: column;
            align-items: center;
        }
    }

    .section-solucoes {
        article:nth-of-type(1) {
            span {
                color: #052630;
                font-weight: 800;
                font-size: 30px;
            }
        }
    }

    .section-solucoes2 {

        article:nth-of-type(1),
        article:nth-of-type(2) {
            div {
                p {
                    max-width: none;
                    margin-bottom: 40px;
                }
            }
        }

        article:nth-of-type(3) {
            hr {
                width: 40% !important;
            }

            h2 {
                font-size: 47px;
            }

            div {
                flex-direction: column;
            }
        }
    }

    .section-banner {
        padding: 20px;
        display: flex;
        flex-direction: column;

        article {
            max-width: 100%;
            text-align: center;
            margin-top: 20px;
            position: inherit;
            left: 0;
        }
    }

    .section-diferenciais {
        div {
            flex-direction: column;

            article:nth-of-type(1) {
                hr {
                    width: 40% !important;
                }
            }

            article:nth-of-type(2) {
                margin-top: 20px;
                grid-template-columns: repeat(2, 1fr);
            }
        }
    }
}

@media (max-width: 520px) {
    .section-diferenciais {
        div {
            article:nth-of-type(2) {
                padding: 0px 20px;
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }

    .swiper-slide.card {
        max-height: 72%;
    }

    .produtos-swiper,
    .produtos-swiper2 {
        padding-left: 10px !important;
    }

    .swiper-pagination {
        left: 10px !important;
    }
}

@media (min-width: 1653px) {
    .swiper-slide.card {
        max-height: 63%;
    }
}