/* Estilos Home Premium */
.product-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: #cbd5e1;
}
.product-card img {
    transition: transform 0.5s ease;
}
.product-card:hover img {
    transform: scale(1.04);
}
.product-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card .card-title {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.product-card .card-text {
    flex-grow: 1;
    font-size: 0.925rem;
    line-height: 1.5;
}
.product-card .btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}
.product-card .btn-primary:hover {
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.25);
    transform: translateY(-1px);
}
.product-card .btn-outline-primary {
    border-color: #cbd5e1;
    color: #4f46e5;
    transition: all 0.2s ease;
}
.product-card .btn-outline-primary:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    color: #4338ca;
    transform: translateY(-1px);
}
