/* TARJETAS */
.tarjetas li {
    background-color: var(--color-text-light);
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 20px;
}

.tarjetas li:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.tarjetas img {
    border-bottom: 2px solid var(--color-primary-medium);
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: height 0.5s ease, object-fit 0.5s ease;
    border-radius: 10px 10px 0 0;
}

.tarjetas li:hover img,
.tarjetas li:active img {
    height: 300px;
    object-fit: cover;
}

.tarjetas h3 {
    margin: 20px 0 10px;
}

.tarjetas p {
    font-size: 1em;
    color: var(--color-text-dark);
}
