/* Filtros */
.lp-filter-btn {
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lp-filter-btn.active {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.lp-filter-btn.btn-outline-secondary {
    border-color: #e2e8f0;
    color: #64748b;
}

.lp-filter-btn.btn-outline-secondary:hover {
    background: #f8fafc;
    color: #134e4a;
    border-color: rgba(15, 118, 110, 0.2);
}

/* Cards de Produtos */
.lp-product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(15, 118, 110, 0.3);
}

.lp-product-image {
    width: 100%;
    height: 180px;
    border-radius: 1rem;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-product-category {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d9488;
}

.lp-product-title {
    font-size: 1.25rem;
    color: #134e4a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lp-product-desc {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.lp-btn-outline {
    border: 1px solid #e2e8f0;
    color: #0f766e;
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.lp-btn-outline:hover {
    background: #0f766e;
    color: #fff;
    border-color: #0f766e;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}