@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    font-family: 'Poppins',sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    margin: 0;
    line-height: 1.4375rem; /* 23px */
}

header {
    position: fixed;
    width: 100%;
    border-bottom: 0.0625rem solid #00000026;
    top: 0%;
    z-index: 1;
    background-color: #ffffff31;
    backdrop-filter: blur(1.25rem); /* 20px */
    color: #fbfbfb;
    text-align: center;
    padding: 0.9375rem 0; /* 15px */
}

header .logo {
    font-size: 2.0625rem; /* 33px */
    font-weight: bold;
    cursor: pointer;
}

.container {
    width: 62.5rem; /* 1000px */
    max-width: 100%;
    margin: 3.75rem auto; /* 60px */
}

.container .banner {
    width: 100%;
    height: 15.625rem; /* 250px */
    position: relative;
}

.container .banner .title {
    position: absolute;
    top: 0;
    background-color: #1976d2;
    background-image: linear-gradient(to top right, #000, #1976d2);
    width: 100%;
    height: 7.8125rem; /* 125px */
    border-radius: 2.5rem; /* 40px */
    text-align: center;
    padding-top: 3.125rem; /* 50px */
    font-weight: bold;
    color: #fbfbfb;
    font-size: 2.1875rem; /* 35px */
}

span {
    color: #ffd100;
}

.container .banner .detail {
    position: absolute;
    top: 40%;
    background-color: #ffffff31;
    backdrop-filter: blur(1.25rem); /* 20px */
    width: calc(90%);
    left: 5%;
    border-radius: 2.5rem; /* 40px */
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 6.25rem; /* 100px */
    padding: 0.3125rem 0; /* 5px */
    box-shadow: 0 3.125rem 3.125rem #0000004a; /* 50px */
}

.container .banner .detail .info h2 {
    color: #ffd100;
    font-weight: bold;
    font-size: 1.5625rem; /* 25px */
}

.container .banner .detail .info ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.container .banner .detail .info .Menu a {
    position: relative;
    width: 100%;
    height: 70%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    list-style: none;
    text-decoration: none;
    padding: 0.625rem; /* 10px */
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
    color: rgb(11, 11, 114);
    font-size: 1.5625rem; /* 25px */
    -webkit-text-stroke: 0.03rem yellow;
    text-shadow: 0rem 0.3rem 0.2rem black;
}

.container .banner .detail .info .Menu a:hover {
    color: #ffd100;
    font-size: 2rem;
}


.container .container-carrusel {
    position: relative;
    width: 53.26785714285714rem; /* 850px */
    height: 30rem; /* 480px */
    background-color: transparent;
    box-shadow: 0 0.5rem 2rem 0 rgba(250, 245, 245, 0.66); /* 8px 32px */
    border-radius: 3.125rem; /* 50px */
    overflow: hidden;
    left: 4.5rem;
}

.container .container-carrusel .carrusel {
    width: 372.875rem;
    height: 30rem;
    display: flex;
    background-color: transparent;
    border-radius: 3.125rem; /* 50px */
}

.container .container-carrusel .carrusel .slider-box {
    width: calc(100% / 7);
    height: 100%;
    background-color: transparent;
    border-radius: 3.125rem; /* 50px */
}

.container .container-carrusel .carrusel .slider-box img{
    width: 53.26785714285714rem; /* 850px */
    height: 30rem; /* 480px */
    object-fit: cover;
    border-radius: 3.125rem; /* 50px */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}


.container .container-carrusel .carrusel .slider-box #separador{
    width: 53.26785714285714rem;  /* 850px */
    height: 53rem;  
}

.btn-left, .btn-right {
    display: flex;
    position: absolute;
    top: 50%;
    font-size: 2.5rem;
    background-color: transparent;
    border-radius: 60%;
    font-weight: 600;
    cursor: pointer;
    color: #fcfcf5;
    transform: translate(0, -50%);
    transition: 0.5s ease;
}

.btn-left:hover,
.btn-right:hover {
    background-color: #333333d4;
    color: #7ffcf1;
}

.btn-left {
    left: 1.875rem; /* 30px */
}

.btn-right {
    right: 1.875rem; /* 30px */
}

.container-app {
    width: 100%;
    max-width: 50rem; /* 800px */
    padding: 1.5625rem 1.5625rem 0; /* 25px 25px 0px */
    margin: 3.75rem auto 0; /* 60px */
    display: flex;
}

.container-app .list {
    max-width: 25rem; /* 400px */
}

.container-app .list p {
    color: aliceblue;
    font-size: 1.5625rem; /* 25px */
    margin-top: 12.5rem; /* 200px */
    line-height: 1.5625rem; /* 25px */
}

.container-app .list a {
    max-width: 10.9375rem; /* 175px */
    height: 3.75rem; /* 60px */
    display: inline-flex;
    align-items: start;
    margin: 0.625rem; /* 10px */
    border-radius: 1.25rem; /* 20px */
}

.container-app .list a img {
    border-radius: 1.25rem; /* 20px */
    max-width: 10.9375rem; /* 175px */
    height: 3.75rem; /* 60px */
}

.container-app .list a:hover {
    box-shadow: 0.125rem 0.125rem 2.5rem 0.125rem #7ffcf1; /* 2px 40px 2px */
}

.container-app .app {
    position: relative;
    width: 12.5rem; /* 200px */
    padding: 0.625rem 0.625rem 0; /* 10px 10px 0px */
}

.container-app .app img {
    width: 27.5rem; /* 440px */
    margin-top: 0.625rem; /* 10px */
}

.container-app .app .texto img {
    width: 25rem; /* 400px */
    height: 25rem; /* 400px */
    position: absolute;
    top: 21%;
    left: 13%;
}

footer {
    width: 62.5rem; /* 1000px */
    max-width: 100%;
    margin: auto;
    height: 18.75rem; /* 300px */
    position: relative;
}

footer .title {
    background-color: #ffffff31;
    position: absolute;
    width: 90%;
    left: 5%;
    padding: 3.125rem 0 6.25rem; /* 50px 100px */
    text-align: center;
    font-weight: bold;
    font-size: 2.5rem; /* 40px */
    border-radius: 2.5rem; /* 40px */
    z-index: 2;
    backdrop-filter: blur(1.25rem); /* 20px */
    color: #fbfbfb;
}

footer .Footer {
    background-color: #1976d2;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    border-radius: 2.5rem; /* 40px */
    z-index: 1;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    list-style: none;
    color: #000;
}

footer .Footer .foot{
    display: grid;
    grid-template-rows: 5rem 2rem;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

footer .Footer .redes-sociales{
    display: inline-flex;
}

footer .Footer .foot .redes-sociales .redes{
    margin: 2rem;
}

footer .Footer .foot .redes-sociales .redes a img{
    width: 2.5rem;
    height: 2.5rem;
    filter: drop-shadow(1px 3px 2px #000);
}

footer .Footer .foot .redes-sociales .redes a img:hover{
    width: 3.2rem;
    height: 3.2rem;
    transition: ease-in-out 0.5s;
    filter: drop-shadow(0 0 1px #fefefe)
            drop-shadow(0 0 1px #fefefe)
            drop-shadow(0 0 1px #fefefe)
            drop-shadow(0 0 1px #fefefe)
            drop-shadow(0 0 1px #fefefe);  
}

footer .Footer .copy{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

footer .menubottom li a:hover {
    color: #ffd100;
}
/* Ajustes para pantallas de 900px */
@media (max-width: 900px) {
    header .logo {
        font-size: 1.875rem; /* Ajuste del logo */
    }

    .container {
        width: 90%; /* Ajustar el contenedor al 90% del ancho */
    }

    .container .banner .title {
        font-size: 2rem; /* Reducir el tamaño del título */
        padding-top: 2.5rem; /* Ajustar padding superior */
    }

    .container .container-carrusel {
        width: 48.75rem; /* 780px */
        height: 27.5rem; /* 440px */
    }

    .container .container-carrusel .carrusel .slider-box img {
        width: 48.75rem; /* Ajustar ancho de la imagen */
        height: 27.5rem; /* Ajustar altura de la imagen */
    }
}

/* Ajustes para pantallas de 720px */
@media (max-width: 720px) {
    header .logo {
        font-size: 1.625rem;
    }

    .container .banner .title {
        font-size: 1.75rem; /* Reducir más el tamaño del título */
        padding-top: 2.25rem;
    }

    .container .banner .detail {
        grid-template-columns: 1fr; /* Hacer que la sección de detalles ocupe una sola columna */
        padding: 1.5rem 0; /* Reducir padding vertical */
    }

    .container .banner .detail .info ul{
        margin-right:2rem;
        margin-left: 2rem;
    }

    .container .banner .detail .info .Menu a{
        text-align:center;
    }

    .container .container-carrusel {
        width: 34.75rem; /* 700px */
        height: 21rem; /* 400px */
        margin-top: 3rem;
    }

    .container .container-carrusel .carrusel .slider-box img {
        width: 34.75rem;
        height: 21rem;
    }

    .container-app .list{
        width: 22rem;
    }

    .container-app .app .texto img{
        width: 15rem;
        height: 15rem;
        top: 25%;
        left: 10%;
    }

    .container-app .list a{
        width: 8rem;
        height: 3rem;
    }

    .container-app .list a img{
        width: 8rem;
        height: 3rem;
    }

    .container-app .app{
        width: 18rem;
    }

    .container-app {
        display: grid;
        flex-direction: column; /* Mostrar elementos de la app en columna */
        /* align-items: center; */
        grid-template-columns: 17rem 17rem;
        width: 79%;
    }

    .container-app .app img{
        width: 17.5rem;
    }

    .container-app .list p {
        margin-top: 3.25rem; /* Reducir margen superior */
    }
}

/* Ajustes para pantallas de 540px */
@media (max-width: 540px) {
    header {
        padding: 0.625rem 0; /* Reducir padding del header */
    }

    .container{
        width: 33rem;
    }

    .container .banner .title {
        font-size: 1.625rem; /* Ajustar tamaño del título */
        padding-top: 2rem;
    }

    .container .banner .detail {
        padding: 1.25rem 0;
    }
    
    .container .banner .detail .info .Menu a{
        font-size: 1.10rem;
        /* margin-right: 0rem; */
    }

    .container .banner .detail .info ul{
        margin-right:2rem;
        margin-left: 1rem;
    }

    .container .container-carrusel {
        width: 28.5rem; /* 600px */
        height: 14.875rem; /* 350px */
        margin-top: 2rem;
    }

    .container .container-carrusel .carrusel{
        width: 199.875rem;
        height: 15rem;
    }

    .container .container-carrusel .carrusel .slider-box img {
        width: 28.5rem;
        height: 16.875rem;
        object-fit: cover;
    }

    .container-app {
         /* Reducir padding de la app */
         width: 30rem;
    }

    .container-app .list p{
        margin-top: 0rem;
    }

    .container-app .app img {
        width: 20.5rem; /* 360px */
        margin-left: -6rem;
    }
    .container-app .app .texto img{
        width: 20rem;
        height: 20rem;
        left: 1rem;
    }
}

/* Ajustes para pantallas de 480px */
@media (max-width: 480px) {
    header {
        padding: 0.5rem 0; /* Reducir más el padding */
    }

    .container {
        margin: 2.5rem auto; /* Reducir margen superior */
    }

    .container .banner .title {
        font-size: 1.5rem; /* Ajustar tamaño del título */
        padding-top: 1.5rem;
        height: 7rem;
    }

    .container .banner .detail{
        top: 32.5%;
        height: 15rem;
    }

    .container .banner .detail .info .Menu{
        display: grid;
        margin-top: 50%;
        margin-left: 50%;
        transform: translate(-55%, -90%);
    }

    .container .banner .detail .info .Menu a{
        font-size: 2rem;
        line-height: 2rem;
    }

    .container .container-carrusel {
        width: 23.25rem; /* 500px */
        height: 13.75rem; /* 300px */
        top: 50%;
        left: 50%;
        transform: translate(-50%, 52%);
    }

    .container .container-carrusel .carrusel .slider-box img {
        width: 23.25rem;
        height: 13.75rem;
    }

    .container .container-carrusel .carrusel .slider-box #separador{
        width: 23.25rem;
        height: 23.75rem;
    }

    .container-app {
        width: 24rem;
        display: flex;
    }

    .container-app .list{
        width: 23.5rem;
        inset: 0;
    }

    .container-app .app{
        width: 9.5rem;
        left: 8.5rem;
    }

    .container-app .app img{
        width: 15rem; /* 320px */
    }

    .container-app .app .texto img{
        width: 15rem; /* 320px */
        height: 15rem;
        top: 20%;
        left: 5%;
    }

    .container-app .list p {
        font-size: 1.25rem; /* Ajustar tamaño del texto */
        margin-top: 4rem;
        text-align: center;
    }

    .container-app .list a{
        max-width: 8.9375rem;
        margin-left:2rem;
    }

    .container-app .list a img{
        max-width: 8.9375rem;
    }
    
    footer{
        height: 19rem;
    }
}
@media (max-width: 440px) {
    header {
        padding: 0.5rem 0; /* Mantener el padding reducido */
    }

    .container {
        margin: 2rem auto; /* Reducir más el margen superior */
    }

    .container .banner .title {
        font-size: 1.375rem; /* Reducir tamaño de la fuente del título */
        padding-top: 1.25rem; /* Ajustar padding superior */
        height: 6.25rem; /* Ajustar altura del título */
    }

    .container .banner .detail {
        top: 30%;
        height: 11rem; /* Reducir altura */
    }

    .container .banner .detail .info .Menu{
        margin-top: 50%;
        margin-left: 50%;
        transform: translate(-52.5%,-100%);
    }

    .container .banner .detail .info .Menu a{
        font-size: 1.5rem;
        line-height: 1.6rem;
    }
    
    .container .container-carrusel {
        width: 23rem;
        height: 13.5rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%,25%);
    }    

    .container .container-carrusel .carrusel .slider-box img {
        width: 23rem;
        height: 13.5rem; /* Ajustar el tamaño de las imágenes */
    }

    .container-app{
        width: 24rem;
        display: flex;
        margin-top: 0%;
        margin-left: 50%;
        transform: translate(-50%,-1%);
        padding: 10% 0 0 0;
    }

    .container-app .list p{
        margin-top:2rem;
    }

    .container-app .list a{
        max-width: 8.9375rem;
        height: 2.75rem;
        display: inline-flex;
        align-items: start;
        margin-left: 2.625rem;
        border-radius: 1.25rem;
    }

    .container-app .list a img{
        border-radius: 1.25rem;
        max-width: 8.9375rem;
        height: 2.75rem;
    }

    .container-app .app {
        width: 8rem; /* 320px */
        left: 7.5rem;
    }

    .container-app .app .texto img{
        width: 18rem;
        height: 18rem;
        top: 18%;
        left: 3%;
    }

    .container-app .app img {
        width: 18rem; /* 288px */
    }

    footer {
        height: 18rem; /* Reducir altura del footer */
    }

    footer .title{
        padding: 3.125rem 0 4.25rem;
    }

    footer .Footer .redes-sociales{
        width: 19rem;
    }

    footer .Footer .foot .redes-sociales .redes{
        margin: 1.2rem;
    }
}
@media (max-width: 400px) {
    header {
        padding: 0.375rem 0; /* Reducir padding */
    }

    .container {
        margin: 1.875rem auto; /* Reducir margen superior */
    }

    .container .banner .title {
        font-size: 1.25rem; /* Reducir más el tamaño de la fuente */
        padding-top: 1rem; /* Reducir padding superior */
        height: 6rem;
    }

    .container .banner .detail {
        top: 28%;
        height: 10.5rem;
    }

    .container .banner .detail .info .Menu{
        margin-top: 50%;
        margin-left: 50%;
        transform: translate(-50%, -92.5%);
    }

    .container .container-carrusel {
        width: 20rem;
        height: 11rem;
        top: 50%;
        left: 50%;
    }

    .container .container-carrusel .carrusel{
        width: 140rem;
        height: 11rem;
    }

    .container .container-carrusel .carrusel .slider-box img {
        width: 20rem;
        height: 11rem;
    }

    .container .container-carrusel .carrusel .slider-box #separador {
        width: 20rem;
        height: 19rem;
    }

    .container-app .list{
        width: 20rem;
    }

    .container-app{
        width: 20rem;
    }

    .container-app .list p{
        margin-top:2rem;
    }

    .container-app .list a{
         max-width: 7.9375rem;
         height: 2.75rem;
         display: inline-flex;
         align-items: start;
         margin-left: 1rem;
         border-radius: 1.25rem;
    }

    .container-app .list a img{
        border-radius: 1.25rem;
        max-width: 7.9375rem;
        height: 2.75rem;
    }

    .container-app .app .texto img{
        width: 17rem;
        height: 17rem;
        top: 14%;
        left: 1%;
    }
    
    .container-app .app {
        width: 7.75rem;/* 300px */
        left: 6.5rem;
    }

    .container-app .app img {
        width: 16rem; /* 256px */
    }

    footer {
        height: 18rem;
    }

    footer .title{
        padding: 3.125rem 0 3.25rem;
    }

}


/* Ajustes para pantallas de 360px */
@media (max-width: 360px) {
    header {
        padding: 0.375rem 0; /* Mantener padding reducido */
    }

    .container {
        margin: 1.5rem auto; /* Ajustar margen superior */
    }

    .container .banner{
        height: 17rem;
    }

    .container .banner .title {
        font-size: 1.125rem; /* Reducir más el tamaño de la fuente */
        padding-top: 0.875rem; /* Reducir padding superior */
        height: 6.5rem; /* Reducir altura del título */
    }

    .container .banner .detail {
        top: 26%;
        height: 11.5rem;
    }

    .container .banner .detail .info .Menu {
        padding-right: 0rem;
        margin-top: 50%;
        margin-left: 50%;
        transform: translate(-52.5%, -80.5%);
    }

    .container .container-carrusel {
        width: 18.726rem;
        height: 11rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%,25%);
    }

    .container .container-carrusel .carrusel{
        width: 131.088rem;
        height: 11rem;
    }

    .container .container-carrusel .carrusel .slider-box img{
        width: 18.726rem;
        height: 11rem;
        object-fit: cover;
    }

    .container .container-carrusel .carrusel .slider-box #separador{
        width: 18.726rem;
        height: 19rem;
    }

    .container-app{
        width: 19rem;
        display: flex;
        height: 32.5rem;
    }

    .container-app .list {
        width: 19rem;
        text-align: center;
        margin-top: 50%;
        margin-left: 50%;
        transform: translate(-50%,-70%);
    }

    .container-app .list a {
        max-width: 6.9375rem; /* 175px */
        height: 2.75rem; /* 60px */
        display: inline-flex;
        align-items: start;
        margin: 0.625rem; /* 10px */
        border-radius: 1.25rem; /* 20px */
    }

    .container-app .list p{
        margin-top: 0rem;
    }
    
    .container-app .list a img {border-radius: 1.25rem; /* 20px */max-width: 6.9375rem; /* 175px */height: 1.75rem; /* 60px */}
    
    .container-app .list a:hover {
        box-shadow: 0.125rem 0.125rem 2.5rem 0.125rem #7ffcf1; /* 2px 40px 2px */
    }

    .container-app .app {
        width: 8rem;
        margin-top: 50%;
        margin-left: 50%;
        transform: translate(-92%,-37%);
    }

    .container-app .app img {
        width: 14rem;
        margin-top: 50%;
        margin-left: 50%;
        transform: translate(-77.5%,-55%);
    }

    .container-app .app .texto img{
        width: 15rem;
        height: 15rem;
        top: 50%;
        left: 50%;
        transform: translate(-109%,-132%);
    }

    footer .title{
        width: 80%;
        left: 10%;
        top: 7%;
        padding: 2.125rem 0 2.25rem;
    }

    footer {
        height: 15rem;
    }

    footer .Footer .redes-sociales{
        width: 19rem;
    }

    footer .Footer .foot .redes-sociales .redes{
        margin: 1.2rem;
    }
}
@media (max-width: 320px) {
    header {
        padding: 0.25rem 0; /* Reducir padding aún más */
    }

    .container {
        margin: 1.25rem auto; /* Reducir margen superior */
    }

    .container .banner .title {
        font-size: 1rem; /* Ajustar fuente del título */
        padding-top: 0.75rem; /* Reducir padding superior */
        height: 5rem;
    }

    .container .banner .detail {
        top: 24%;
        height: 11rem;
    }

    .container .container-carrusel {
        width: 16rem; /* 256px */
        height: 9rem; /* 144px */
        top: 1rem;
        left: 2rem;
    }

    .container .container-carrusel .carrusel .slider-box img {
        width: 16rem;
        height: 9rem;
    }

    .container-app{
        max-width: 16rem;
        margin-top: 1.5rem;
    }

    .container-app .list{
        width: 16rem;
    }

    .container-app .list p{
        margin-top: 0rem;
    }
    
    .container-app .list a {
        max-width: 5.9375rem;
        height: 2.75rem;
        display: inline-flex;
        align-items: start;
        margin: 0.625rem;
        border-radius: 1.25rem;
    }

    .container-app .list a img {
        border-radius: 1.25rem;
        max-width: 5.9375rem;
        height: 1.75rem;
    }

    
    .container-app .app {
        width: 14rem; /* 224px */
        top: 50%;
        left: 50%;
        transform: translate(-50%, 5%);
    }

    .container-app .app img {
        width: 12rem; /* 192px */
        margin-left: 0rem;
    }

    .container-app .app .texto img {
        width: 13rem;
        height: 13rem;
        top: 18%;
        left: 1%;
    }

    footer {
        height: 14rem;
    }header {
        padding: 0.25rem 0; /* Reducir padding aún más */
    }

    .container {
        margin: 1.25rem auto; /* Reducir margen superior */
    }

    .container .banner .title {
        font-size: 1rem; /* Ajustar fuente del título */
        padding-top: 0.75rem; /* Reducir padding superior */
        height: 5rem;
    }

    .container .banner .detail {
        top: 24%;
        height: 11rem;
    }

    .container .container-carrusel {
        width: 16rem; /* 256px */
        height: 9rem; /* 144px */
        top: 1rem;
        left: 2rem;
    }

    .container .container-carrusel .carrusel .slider-box img {
        width: 16rem;
        height: 9rem;
    }

    .container-app{
        max-width: 16rem;
        margin-top: 1.5rem;
    }

    .container-app .list{
        width: 16rem;
    }

    .container-app .list p{
        margin-top: 0rem;
    }
    
    .container-app .list a {
        max-width: 5.9375rem;
        height: 2.75rem;
        display: inline-flex;
        align-items: start;
        margin: 0.625rem;
        border-radius: 1.25rem;
    }

    .container-app .list a img {
        border-radius: 1.25rem;
        max-width: 5.9375rem;
        height: 1.75rem;
    }

    
    .container-app .app {
        width: 14rem; /* 224px */
        top: 50%;
        left: 50%;
        transform: translate(-50%, 5%);
    }

    .container-app .app img {
        width: 12rem; /* 192px */
        margin-left: 0rem;
    }

    .container-app .app .texto img {
        width: 13rem;
        height: 13rem;
        top: 18%;
        left: 1%;
    }

    footer {
        height: 14rem;
    }
}
@media (max-width: 280px) {
    header {
        padding: 0.25rem 0; /* Mantener padding reducido */
    }

    .container {
        margin: 1rem auto; /* Reducir margen superior */
    }

    .container .banner .title {
        font-size: 0.875rem; /* Reducir más la fuente del título */
        padding-top: 0.625rem; /* Reducir padding superior */
        height: 4.5rem;
    }

    .container .banner .detail {
        top: 22%;
        height: 8.5rem;
    }

    .container .container-carrusel {
        width: 14rem; /* 224px */
        height: 8rem; /* 128px */
        top: 4.5rem;
    }

    .container .container-carrusel .carrusel .slider-box img {
        width: 14rem;
        height: 8rem;
    }

    .container-app .app {
        width: 12.5rem; /* 200px */
    }

    .container-app .app img {
        width: 11rem; /* 176px */
    }

    footer {
        height: 9rem;
    }
}
