.header__titulo_larc {
    background-image: url("/theme/larc/images/contenido/wallet/hero_banner.jpg");
}
.intro__wallet {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto !important;

    & .intro__wallet_header {
        display: flex;
        align-items: center;
        justify-content: center;

        & img {
            width: 100%;
            max-width: 280px;
            padding: 20px;
            border-right: 1px solid var(--gris);
        }

        & div {
            padding: 20px;
        }
    }
}
.wallet__pagos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    & .wallet__pagos_item {
        width: 340px;

        background: var(--gray-light);
        border-radius: 20px;
        overflow: hidden;

        & img {
            width: 100%;
        }
        & h3 {
            text-align: center;
            height: 80px;
            align-content: center;
        }
    }
}
.wallet__funciona {
    background: #f7f7f7;

    & > div {
        padding-top: 20px;
    }
    & .wallet__funciona_cont {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;

        & .wallet__funciona_img {
            padding: 0 40px;
            width: 40%;

            & img {
                width: 100%;
                max-width: 450px;
            }
        }
        & .wallet__funciona_pasos {
            width: 60%;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;

            & .wallet__funciona_item {
                width: 380px;
                gap: 20px;
                display: flex;
                align-items: center;
                justify-content: center;

                & img {
                    width: 120px;
                }
            }
        }
    }
}
.wallet__funciona_leyenda {
    background: var(--naranja);
    text-align: center;
    padding: 40px 0;

    & p {
        color: white;
    }
}
.wallet__donde {
    & .wallet__donde_separador {
        width: 100%;
        position: relative;
        margin: 40px 0;
        text-align: center;

        &::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 40%;
            height: 1px;
            background: var(--naranja);
        }
        &::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            width: 40%;
            height: 1px;
            background: var(--naranja);
        }

        & img {
            width: 160px;
        }
    }
    .wallet__donde_items {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;

        & .wallet__donde_item {
            width: 380px;
            background: var(--gray-light);
            border-radius: 20px;
            overflow: hidden;

            & img {
                width: 100%;
            }
            & h3 {
                height: 80px;
                text-align: center;
                align-content: center;
            }
        }
    }
}

footer.wallet__footer {
    width: 100%;
    position: relative;
    text-align: center;

    & .wallet__footer_logo {
        & img {
            width: 250px;
        }
    }
}

@media screen and (max-width: 720px) {
    .intro__wallet {
        & .intro__wallet_header {
            flex-wrap: wrap;
            text-align: center;

            & img {
                border-right: none;
            }
        }
    }

    .wallet__funciona {
        & .wallet__funciona_cont {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            flex-wrap: wrap;
            flex-direction: column-reverse;

            & .wallet__funciona_img {
                width: 100%;
                text-align: center;
            }
            & .wallet__funciona_pasos {
                width: 100%;

                & .wallet__funciona_item {
                    & img {
                        width: 120px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 420px) {
    .wallet__funciona {
        & .wallet__funciona_cont {
            & .wallet__funciona_pasos {
                & .wallet__funciona_item {
                    & img {
                        width: 80px;
                    }
                }
            }
        }
    }
}
