/* =========================================
   SEÇÃO 4 — O QUE ESTÁ INCLUSO
========================================= */

.included-section {
    position: relative;

    overflow: hidden;

    /* padding: 120px 0; */

    background: #eaf8f6;

    color: #0f1b26;
}


/* =========================================
   ELEMENTOS DECORATIVOS
========================================= */

.included-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -260px;
    top: -260px;

    border-radius: 50%;

    border: 1px solid rgba(2, 190, 178, .15);

    pointer-events: none;
}


.included-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(2, 190, 178, .08);

    filter: blur(20px);

    pointer-events: none;
}


/* =========================================
   INTRODUÇÃO
========================================= */

.included-intro {
    position: relative;

    z-index: 2;

    padding-right: 45px;
}


.included-eyebrow {
    color: #008679;
}


.included-title {
    margin-bottom: 22px;

    color: #0f1b26;
}


.included-description {
    margin: 0;

    color: #5e6d73;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   DESTAQUE
========================================= */

.included-highlight {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 30px;

    color: #008679;

    font-size: 14px;
    font-weight: 700;
}


.included-highlight i {
    color: #02beb2;

    font-size: 33px;
}


/* =========================================
   LISTA
========================================= */

.included-list-wrapper {
    position: relative;

    z-index: 2;

    padding: 40px;

    background: rgba(255, 255, 255, .65);

    border: 1px solid rgba(0, 134, 121, .12);

    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(15, 27, 38, .06);
}


.included-list-header {
    margin-bottom: 24px;

    color: #0f1b26;

    font-size: 18px;
    font-weight: 700;
}


.included-list {
    list-style: none;

    margin: 0;
    padding: 0;
}


.included-list li {
    display: flex;
    align-items: center;

    gap: 13px;

    min-height: 55px;

    padding: 10px 0;

    color: #263740;

    /* font-size: 14px; */
    line-height: 1.4;
    font-weight: 500;

    border-bottom: 1px solid rgba(15, 27, 38, .07);
}


.included-list li:last-child {
    border-bottom: 0;
}


/* =========================================
   CHECK
========================================= */

.check-icon {
    flex: 0 0 auto;

width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #02beb2;

    font-size: 30px;

    box-shadow:
        0 5px 12px rgba(2, 190, 178, .18);
}


/* =========================================
   HOVER
========================================= */

.included-list li {
    transition:
        color .25s ease,
        padding-left .25s ease;
}


.included-list li:hover {
    padding-left: 5px;

    color: #008679;
}


.included-list li:hover .check-icon {
    background: #008679;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 991.98px) {

    .included-section {
        padding: 90px 0;
    }

    .included-intro {
        padding-right: 0;

        margin-bottom: 50px;
    }

}


@media (max-width: 767.98px) {

    .included-section {
        padding: 75px 0;
    }

    .included-list-wrapper {
        padding: 30px 25px;
    }

}


@media (max-width: 575.98px) {

    .included-section {
        padding: 65px 0;
    }

    .included-list-wrapper {
        padding: 25px 20px;
    }

    .included-list li {
        min-height: 52px;

        font-size: 13px;
    }

    .check-icon {
        width: 26px;
        height: 26px;

        font-size: 14px;
    }

}