.soluciones-banner {
    width: 90%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #D9D9D9;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    gap: 1rem;

    .normal-container {
        height: 100%;
        padding: 1rem;

        .normal-header {
            font-size: 20px;
            font-weight: 700;
            color: var(--wp--preset--color--blue-normal);
        }

        .normal-paragraph {
            font-size: 14px;
            font-weight: light;
        }

        .normal-list-items {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 0.4rem;
            
            @media screen and (min-width: 768px) {
                grid-template-columns: repeat(2, 1fr);
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 0.4rem;
                line-height: 14px;
                font-weight: light;

                i {
                    font-size: 16px;
                    color: #1C4ED8;
                }
            }
        }
    }

    .blue-container {
        height: 100%;
        background-color: #172554;
        color: #FFFFFF;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

        .blue-header {
            font-size: 20px;
            font-weight: 700;
        }

        .blue-paragraph {
            font-size: 16px;
            font-weight: lighter;
        }

        .blue-contact-button {
            background-color: white;
            text-align: center;
            padding: 0.5rem;
            border-radius: 10px;
            text-decoration: none;
            color: #172554;
            margin: 1rem 0;
            text-transform: capitalize;
        }
    }

    @media screen and (min-width: 768px) {
        height: auto;
        flex-direction: row;

        .normal-container {
            width: 50%;
            padding: 1.5rem;

            .normal-header {
                font-size: 28px;
                line-height: 28px;
            }

            .normal-list-items {
                li {
                    i {
                        font-size: 1.2rem;
                    }
                }
            }
        }

        .blue-container {
            width: 50%;
            padding: 1.5rem;

            .blue-header {
                font-size: 28px;
                line-height: 28px;
            }

            .blue-contact-button {
                margin: 0;
            }
        }
    }
}