/*
Theme Name: Loja Julio Petri Tema
Theme URI: https://loja.juliopetri.com.br
Description: Tema minimalista e focado em performance para venda de software. Usa Tailwind CSS via CDN.
Version: 1.0.0
Author: Júlio Luiz Petri Júnior
Author URI: https://loja.juliopetri.com.br
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meu-software
*/

body {
    margin: 0;
}

/* Footer */
.site-footer {
    background-color: #F8FAFC;
    margin-top: auto;
    border-top: 1px solid #E2E8F0;
}

.footer-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #64748B;
    margin: 0;
}

.footer-links-legal {
    font-size: 0.75rem;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.footer-links-legal a {
    color: #64748B;
    text-decoration: none;
}

.footer-links-legal a:hover {
    text-decoration: underline;
}

.footer-credits {
    font-size: 0.75rem;
    color: #64748B;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: #64748B;
    text-decoration: none;
}

/* Product Cards */
.products-grid .product-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.products-grid .product-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.products-grid .product-card .product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.products-grid .product-card .product-card-body .product-card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(2, 132, 199, 0.1));
    border-radius: 2rem;
    width: fit-content;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.products-grid .product-card .product-card-body .product-card-category::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: linear-gradient(135deg, #059669, #0284C7);
    border-radius: 50%;
}

.products-grid .product-card .product-card-body .product-card-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    text-decoration: none;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.2s;
    margin: 0;
}

.products-grid .product-card .product-card-body .product-card-title:hover {
    color: #059669;
}

.products-grid .product-card .product-card-body .product-card-desc {
    font-size: 0.9375rem;
    color: #000000;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.products-grid .product-card .product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.products-grid .product-card .product-card-footer .product-card-price {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #059669 !important;
    white-space: nowrap;
}

.products-grid .product-card .product-card-footer .product-card-link-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #059669;
    background: #F0FDF4;
    text-decoration: none;
    border: 1px solid #86EFAC;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.products-grid .product-card .product-card-footer .product-card-link-btn:hover {
    background: #059669;
    color: white;
    border-color: #059669;
}