@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;700&display=swap');

* {
    font-family: 'Raleway', sans-serif;
}

body {

    background-color: #f9f9f9;
}

.titleRecursos {
    margin-top: 5.5em;
    text-align: center;
    padding-bottom: 0.5em;
    color: #000000;
    font-size: 48px;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    position: relative;
}

.titleRecursos::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.titleRecursos::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #256ED8;
    bottom: 0;
    left: calc(50% - 20px);
}

.container__cards {
    width: 100%;
    margin-top: 19em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -12em;
}

.card {
    width: 350px;
    margin: 80px;
    padding: 20px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 255, 0.096);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 300ms;
}

@media screen and (max-width:720PX) {
    .card {
        margin: 40px;
    }
}

.card a {
    text-decoration: none;
    /* Quitar la línea inferior (subrayado) */
    color: #000;
    /* Cambiar el color del texto del enlace a negro */
    /* Otros estilos que desees aplicar a los enlaces */
}

.card:hover {
    transform: translateY(-10px);
}

.card:hover .cover__card img {
    transform: scale(1.1);
}

.cover__card {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
}

.cover__card img {
    width: 100%;
    transition: all 300ms;
}

.card h2 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    color: #000000;
}

.card p {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.5px;
}

.card hr {
    margin-top: 30px;
    border: none;
    height: 0.2px;
    background: #41414138;
}

.footer__card {
    margin-top: 10px;
    display: flex;
    color: #fff;
    justify-content: space-between;
}

.footer__card h3 {
    font-size: 15px;
    font-weight: 500;
}

@media screen and (max-width:1200px) {
    .container__cards {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-top: 10px;
        padding-bottom: 200px;
    }
}