/* Estilos iniciales para aviso y términos y condiciones */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/
    --text-color: hsl(228, 15%, 50%);
    --text-color-white: #ffffff;


    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Poppins', sans-serif;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Opacity background ==========*/
    --opacity--bkg: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
input,
textarea {
    font-family: "Poppins", sans-serif;
}

body {
    position: relative;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /*background-image: url(../img/bkg_logosSch.png);*/
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: auto auto; */
    color: var(--text-color);
    transition: .3s;
}

body::before {
    z-index: -3;
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: var(--opacity--bkg);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* EMPIEZA NUEVO PINTADO */
.container_apps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 4rem;
    color: #222327;
}

.apps {
    display: flex;
    align-items: center;
}

.card_app {
    /* margin-left: 2rem; */
    width: 350px;
    position: relative;
    margin: 2rem 1rem;
    background-color: var(--text-color-white);
    box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
    padding: 2rem 2rem;
    border-radius: 2rem;
}

.container_card h3 {
    margin-left: 3.5rem;
}

.container_card img {
    position: absolute;
    width: 50px;
    top: 1rem;
    /* border-radius: 50%; */
}

.container_card p {
    margin-top: 1rem;
    text-align: justify;
}

.container_card span {
    display: none;
}

.btnApp {
    width: 10rem;
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, 5%);
    padding: 5px 30px;
    border-radius: 30px;
    text-align: center;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--text-color-white);
    background-color: #222327;
    box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
}

/* Todos los titulos de las secciones excepto aviso */
.titleInfoLegal {
    padding: 2rem 0rem;
    text-align: center;
    color: #222327;
}

.app {
    /* margin-left: 2rem; */
    width: 350px;
    position: relative;
    margin: 2rem 1rem;
    background-color: var(--text-color-white);
    box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
    padding: 2rem 2rem;
    border-radius: 2rem;
}

.container_app h3 {
    margin-left: 3.5rem;
}

.container_app img {
    position: absolute;
    width: 50px;
    top: 1rem;
    /* border-radius: 50%; */
}

.container_app p {
    margin-top: 1rem;
    text-align: justify;
}

/*SMALL SMARTPHONE RESPONSIVE */
@media screen and (max-width: 390px) {
    .app {
        margin: 2rem 0rem;
    }
}