/* =====================================================
   VARIÁVEIS + RESET GLOBAL
===================================================== */
:root {
    --projing-orange: #e67526;
    --projing-darkgray: #090909;
    --projing-lightgray: #F5F5F5;
    --projing-green: #28A745;
    --white: #FFFFFF;
    --gray-600: #4B5563;
    --gray-700: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--projing-darkgray);
    background: var(--projing-lightgray);
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =====================================================
   HEADER / NAV (IGUAL AO SITE)
===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    z-index: 50;
    padding: .5rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 3.5rem;
}

.nav {
    display: none;
    gap: 3rem;
}

.nav-link {
    color: var(--projing-darkgray);
    font-weight: 500;
    letter-spacing: 4px;
}

.nav-link:hover {
    color: var(--projing-orange);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}

/* =====================================================
   BOTÕES
===================================================== */
.btn-primary {
    background: var(--projing-orange);
    color: var(--white);
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    border: none;
    cursor: pointer;
    transition: background .3s;
}

.btn-primary:hover {
    background: #d9641e;
}

/* =====================================================
   TÍTULOS / TEXTOS
===================================================== */
.section-title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.section-divider {
    width: 4rem;
    height: .25rem;
    background: var(--projing-orange);
    margin: 1rem auto;
}

.text-center {
    text-align: center;
}

/* =====================================================
   CONTEÚDO PRINCIPAL - ATERRAMENTO
===================================================== */
.services {
    padding: 8rem 0 5rem;
    background: #fbfbfb;
}

/* =====================================================
   GRID DE PRODUTOS
===================================================== */
.products-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   CARD DE PRODUTO
===================================================== */
.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: transform .3s;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* =====================================================
   CONTEÚDO DO CARD
===================================================== */
.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: .75rem;
}

.product-content p {
    font-size: .95rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* =====================================================
   ESPECIFICAÇÕES
===================================================== */
.product-specs {
    list-style: none;
    margin-bottom: 1rem;
}

.product-specs li {
    font-size: .85rem;
    margin-bottom: .4rem;
}

/* =====================================================
   OBSERVAÇÃO DO PRODUTO
===================================================== */
.product-note {
    font-size: .8rem;
    font-weight: 600;
    color: var(--projing-orange);
    margin-bottom: 1rem;
}

/* =====================================================
   BOTÃO SEMPRE NO FUNDO
===================================================== */
.product-content .btn-primary {
    margin-top: auto;
    width: 100%;
}

/* =====================================================
   FOOTER (IGUAL AO SITE)
===================================================== */
.footer {
    background: var(--projing-darkgray);
    color: rgba(255,255,255,.8);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-logo {
    height: 4rem;
}

.footer a {
    color: rgba(255,255,255,.8);
}

.footer a:hover {
    color: var(--projing-orange);
}

/* =====================================================
   RESPONSIVO
===================================================== */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .product-card img {
        height: 180px;
    }
}
