@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    width: 100%;
    min-height: 100vh;

    /* background: #081020;
    background: -webkit-linear-gradient(to right, #243B55, #081020);
    background: linear-gradient(to right, #243B55, #081020); */

    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/examenes/elrecurso/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

}

/* HOLA */


.main {
    width: 100%;
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* logo */
.logo {
    width: 400px;
    top: 0;
    right: 0;
    position: absolute;

}



/* global */
.global {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* textos */
.textos {
    z-index: 99;
    margin: 20px 5px;
    font-weight: 700;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* card */
.botones {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* position: absolute; */
    position: relative;
}

.evaluaciones_container {
    position: absolute;
    bottom: -60px;
    left: 0px;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.evaluaciones {
    padding: 7px 20px;
    border-radius: 25px;
    background: hsla(31, 100%, 50%, 1);

    background: linear-gradient(90deg, hsla(31, 100%, 50%, 1) 0%, hsla(47, 61%, 59%, 1) 100%);

    background: -moz-linear-gradient(90deg, hsla(31, 100%, 50%, 1) 0%, hsla(47, 61%, 59%, 1) 100%);

    background: -webkit-linear-gradient(90deg, hsla(31, 100%, 50%, 1) 0%, hsla(47, 61%, 59%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FF8500", endColorstr="#D6BA55", GradientType=1);

    color: white;
    font-weight: 500;
    text-decoration: none;
}

.card {
    --blur: 16px;
    --size: clamp(300px, 50vmin, 600px);
    width: var(--size);
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    color: #000;
    margin: 8px 25px;
    transform: translateZ(0);
}

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(calc(1 + (var(--hover, 0) * 0.25))) rotate(calc(var(--hover, 0) * -5deg));
    transition: transform 0.2s;
}


.proximamente {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: grayscale(80%);
}



.card__footer {
    color: #000;
    padding: 0 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: red;
    display: grid;
    grid-template-rows: auto auto;
    gap: 0.5ch;
    background: hsl(0 0% 100% / 0.5);
    backdrop-filter: blur(var(--blur));
    height: 30%;
    align-content: center;
}

.card__action {
    position: absolute;
    aspect-ratio: 1;
    width: calc(var(--size) * 0.15);
    bottom: 30%;
    right: 1.5rem;
    transform: translateY(50%) translateY(calc((var(--size) * 0.4))) translateY(calc(var(--hover, 0) * (var(--size) * -0.4)));
    background: purple;
    display: grid;
    place-items: center;
    border-radius: 0.5rem;
    background: hsl(0 0% 100% / 0.5);
    /*   backdrop-filter: blur(calc(var(--blur) * 0.5)); */
    transition: transform 0.2s;
}

.card__action svg {
    aspect-ratio: 1;
    width: 50%;
}

.card__footer span:nth-of-type(1) {
    font-size: calc(var(--size) * 0.065);
}

.card__footer span:nth-of-type(2) {
    font-size: calc(var(--size) * 0.035);
}

.card:is(:hover, :focus-visible) {
    --hover: 1;
}

.nombre {
    text-align: center;
}

.titulo {
    font-size: 35px;
}

@media screen and (max-width:715px) {
    .textos {
        display: none;
    }
}