@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
html, body {
    height: 100%;
}
body {
    align-items: center;
    /*background: linear-gradient(to bottom, #c6426e, #642b73);*/
    background: linear-gradient(to bottom, #000, #01d101);
    display: flex;
    font-family: 'Open Sans', sans;
    justify-content: center;
    overflow: hidden;
    perspective: 1800px;
    text-align: center;
    margin: 0 20px;
}
.h1-CL {
    color: #3e3e42;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 30px;
    transform: translateZ(35px);
}
.h3-CL {
    color: #eb285d;
    font-size: 16px;
    margin-bottom: 6px;
    transform: translateZ(25px);
}
.cards-CL {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 20px 20px rgba(0, 0, 0, 0.17);
    display: inline-block;
    padding: 30px 35px;
    perspective: 1800px;
    text-align: left;
    transform-origin: 50% 50%;
    transform-style: preserve-3d;
    transform: rotateX(11deg) rotateY(16.5deg);
    min-width: 595px;
}
.card-CL {
    border-radius: 15px;
    box-shadow: 5px 5px 20px -5px rgba(0, 0, 0, 0.6);
    display: inline-block;
    height: 250px;
    overflow: hidden;
    perspective: 1200px;
    position: relative;
    transform-style: preserve-3d;
    transform: translatez(35px);
    transition: transform 200ms ease-out;
    width: 175px;
    text-align: center;
}
.card-CL:not(:last-child) {
    margin-right: 30px;
}
.card__img-CL {
    position: relative;
    height: 100%;
}
.card__bg-CL {
    bottom: -50px;
    left: -50px;
    position: absolute;
    right: -50px;
    top: -50px;
    transform-origin: 50% 50%;
    transform: translateZ(-50px);
    z-index: 0;
}
.pixelar{
    image-rendering: pixelated; /*Escalado nítido para mantener la apariencia pixelada*/
    image-rendering: -moz-crisp-edges; /*Firefox*/
    image-rendering: -webkit-crisp-edges; /*WebKit (Chrome, Safari)*/
    image-rendering: crisp-edges; /*Otros navegadores */
}
.card__Volver-CL .card__img-CL {
    top: 15%;
    height: 60%;
}
.card__Volver-CL .card__bg-CL {
    background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/62105/3dr_monobg.jpg') center / cover no-repeat;
}

/*FILAS*/
       
.row { /*Nuevas reglas de estilo para las filas */
    display: flex;
    justify-content: space-between; /* Ajustar el espaciado entre las tarjetas */
    margin-top: 30px; /* Espacio entre las filas */
}
.row .card-CL {/* Ajustar el ancho de las tarjetas para que quepan dos por fila */
    width: calc((100% - 60px) / 3); /* Calcular el ancho de las tarjetas */
    margin-right: 0; /* Eliminar el margen derecho de la última tarjeta en cada fila */
}
.row .card-CL:not(:last-child) {/* Ajustar el margen derecho de las tarjetas para que haya espacio entre ellas */
    margin-right: 20px; /* Espacio entre las tarjetas */
}
/*FIN*/

.card__text-CL {
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 70px;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.card__title-CL {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 0 10px;
    margin-bottom: 3px;
}
