/* ================= SECTION ================= */
.solution {
    padding: 40px 6%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* ================= CONTAINER ================= */
.solution-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    width: 100%;
    max-width: 1300px;
}

/* ================= IMAGEM ================= */
.solution-image {
    width: 100%;
    max-width: 650px;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.15));
}

/* ================= LADO DIREITO ================= */
.solution-right {
    flex: 1;
    max-width: 560px;
}

/* ================= TITULO ================= */
.solution-right h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 700;
    color: #02306D;
    line-height: 1.2;
    margin-bottom: 45px;
}

/* ================= LISTA ================= */
.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ================= ITEM ================= */
.solution-list li {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #425a80;
    position: relative;
    padding-left: 34px;
}

/* ================= CHECK ================= */

.solution-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    font-weight: bold;
    color: #0a2f6b;
}

/* ================= DESTAQUE ================= */
.solution-list span {
    font-weight: 700;
    color: #02306D;
}

/* ================= TABLET ================= */
@media (max-width:1024px){

    .solution{
        padding:20px 6%;
        margin-bottom:60px;
    }

    .solution-container{
        flex-direction:column;
        text-align:center;
        gap:60px;
    }

    .solution-image{
        max-width:420px;
    }

    .solution-right{
        max-width:700px;
    }

    .solution-list li{
        padding-left:0;
    }

    .solution-list li::before{
        display:none;
    }

}

/* ================= MOBILE ================= */
@media (max-width:600px){

    .solution{
        padding:20px 22px;
        margin-bottom:40px;
    }

    .solution-container{
        gap:40px;
    }

    .solution-image{
        max-width:100%;
    }

    .solution-right h2{
        font-size:28px;
    }

    .solution-list{
        gap:20px;
    }

    .solution-list li{
        font-size:17px;
    }

}

.fade-left,
.fade-right{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.fade-left.show,
.fade-right.show{
    opacity:1;
    transform:translateY(0);
}

