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

.solutions {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: transparent;
}

/* TÍTULO SUPERIOR */
.solutions-smart {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
    color: #fff;
}

.solutions-title span {
    color: #fbbf24;
}

/* BLOCO DO MEIO — IMG + TEXTO */
.solutions-inner {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.solutions-left {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
}

.solutions-hero-img {
    width: 100%;
    max-width: 520px;
    display: block;
}

.solutions-subtitle-wrap {
    flex: 0 0 40%;
    max-width: 25%;
}

.solutions-accent {
    width: 90px;
    height: 5px;
    border-radius: 25px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
}

.solutions-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: #e5e7eb;
}

.solutions-subtext strong {
    color: #fff;
    font-weight: 500;
}



/* ============================================================
   CALLOUT
   ============================================================ */

.solutions-callout {
    width: min(1280px, 100% - 4rem);
    margin: 4rem auto 0;

    padding: 25px 2px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 100px;
    border: 1px solid #313131;

    background: linear-gradient(
        90deg,
        rgba(30, 30, 30, 0) 0%,
        #313131 50%,
        rgba(30, 30, 30, 0) 100%
    );
}

.callout-icon img {
    width: 25px;
    height: 25px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.callout-text {
    text-align: justify;
    font-size: 20px;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

/* ============================================================
   TEXTO FINAL
   ============================================================ */

.solutions-text-block {
    width: 100%;
    max-width: 48%;
    margin: 10rem auto 10rem 32rem;
    padding-inline: 1.5rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solutions-text-title {
    margin-bottom: 2rem;
    font-weight: 650;
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
}

.solutions-text-body {
    font-size: 20px;
    line-height: 24px;
    max-width: 560px;
    color: white;
}

.solutions-text-body strong {
    font-weight: 520;
}

/* ============================================================
   DIVIDER CTA (FRASE FINAL)
   ============================================================ */

.divider-cta {
    width: min(976px, 100% - 2rem);
    margin: 4rem auto 0;

    padding: 0.8% 2%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    border-radius: 100px;
    border: 1px solid #313131;

    background: linear-gradient(
        90deg,
        rgba(30, 30, 30, 0) 0%,
        #313131 50%,
        rgba(30, 30, 30, 0) 100%
    );
}

.divider-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.divider-text {
    font-size: 18px;
    font-weight: 500;
}

.divider-button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 1% 2%;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    border-radius: 100px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: black;
}

.divider-button-icon{
    transform: translateY(3px);
}
/* ============================================================
   MOBILE RESPONSIVE — SECTION 2
   ============================================================ */

@media (max-width: 1023px) {

    .solutions {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .solutions-title {
        font-size: 28px;
    }

    .solutions-inner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .solutions-left {
        justify-content: center;
    }

    .solutions-subtitle-wrap {
        max-width: 100%;
        padding-inline: 1.5rem;
        text-align: left;
    }

    .solutions-callout {
        width: calc(100% - 2rem);
        padding: 2% 4%;
        display: grid;
        grid-template-columns: 20% 75% 5%;
        text-align: center;
    }

    .callout-text {
        font-size: 14px;
        letter-spacing: 0.08em;
        line-height: 1.4;
    }

    .solutions-text-block {
        padding-top: 6rem;
        max-width: 100%;
        margin: inherit;
    }

    .solutions-text-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .solutions-text-body {
        font-size: 18px;
        line-height: 1.5;
    }
       .divider-cta {
        border: none;
        background: none;
        flex-direction: column;
        padding: 2.5% 4%;
        gap: 10px;
        text-align: center;
    }

    .divider-left {
        text-size-adjust: 75%;
        justify-content: center;
        text-align: center;
        gap: 0px;
    }
}

@media (max-width: 640px) {

    .solutions-text-title {
        font-size: 22px;
    }

    .solutions-text-body {
        font-size: 16px;
    }
}

