.contenedor-tarjetas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.tarjeta-custom {
    width: calc(25% - 1.5rem);
    min-width: 280px;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.tarjeta-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.tarjeta-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.tarjeta-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tarjeta-badge {
    background-color: #6c757d;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 0.75rem;
}

.tarjeta-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.tarjeta-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tarjeta-footer {
    margin-top: auto;
}

.tarjeta-precio {
    font-size: 1.4rem;
    font-weight: 800;
    color: #198754;
    margin-bottom: 1rem;
}

.tarjeta-btn {
    background-color: #f8f9fa;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.tarjeta-btn:hover {
    background-color: #0d6efd; 
    color: #ffffff; 
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}