.carta-web{
    background-color: var(--cartas);
    border: .5px solid rgb(255 255 255 / .4);
    padding: 20px;
    width: 290px;
    border-radius: 8px;
    margin: 30px;
    transition: all .3s ease;
}

.cont-icono-web{
    font-size: 60px;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.titulo-carta-web{
    font-family: roboto;
    font-weight: 700;
    text-align: center;
    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.cont-descripcion-web-carta{
    font-family: rubik;
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.description-title{
    font-family: roboto;
    font-size: 21px;
    color: var(--azul-primario);
    padding-bottom: 10px;
}
.list-caracteristicas{
    list-style: none;
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.list-caracteristicas span{
    font-size: 25px;
    position: relative;
    top: 3px;
    margin-right: 7px;
    color: var(--azul-oscuro);
}
.list-caracteristicas li{
    font-family: rubik;
    font-size: 17px;
    margin-bottom: 7px;
}
.btn-carta-web{
    background-color: var(--azul-oscuro);
    padding: 7px 12px;
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 15px;
    color: var(--blanco);
    font-family: roboto;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-carta-web:hover{
    background-color: var(--azul-primario);
    box-shadow: 0px 0px 20px rgb(13 72 161 / .7);
    transform: translateY(3px);
}
.carta-web:hover{
    border: .5px solid rgb(13 72 161 / 1);
    box-shadow: 0px 0px 20px rgb(13 72 161 / .4);
}
.contenedor-cartas-web{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}