/* ============================================================
   PRODUTOS — Supreme Glass DJW Ultra 2025
   Desenvolvido por Djalma Junior
============================================================ */

/* ============================================================
   HEADER DA PÁGINA
============================================================ */

.produtos-header {
    padding: 90px 0 40px;
    background: linear-gradient(180deg, #013a7a, #275c9c);
    color: #fff;
    text-align: center;
    border-bottom: 4px solid rgba(255,255,255,0.15);

    box-shadow:
        inset 0 -18px 32px rgba(0,0,0,0.25),
        0 8px 22px rgba(0,0,0,0.22);
}

/* Títulos */
.prod-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.prod-subtitle {
    margin-top: 12px;
    font-size: 1.15rem;
    opacity: 0.90;
}

/* ============================================================
   GRID DE PRODUTOS
============================================================ */

.produtos-container {
    padding: 80px 0;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Card Supreme Glass */
.prod-card {
    background: rgba(255,255,255,0.78);
    border-radius: 24px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.38);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 22px 55px rgba(0,0,0,0.22),
        inset 0 0 22px rgba(255,255,255,0.25);

    text-align: center;
    transition: .35s ease;
}

.prod-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 32px 75px rgba(0,0,0,0.32),
        inset 0 0 24px rgba(255,255,255,0.35);
}

/* Imagem */
.prod-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 18px;

    box-shadow:
        0 12px 28px rgba(0,0,0,0.22);
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.prod-card:hover img {
    transform: scale(1.06);
}

/* Textos */
.prod-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #013a7a;
}

.prod-desc {
    font-size: 1rem;
    color: #333;
    margin-bottom: 22px;
}

/* Botão */
.btn-prod {
    display: inline-block;
    background: #0057d9;
    padding: 12px 26px;
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s ease;

    box-shadow:
        0 6px 18px rgba(0,87,217,0.35);
}

.btn-prod:hover {
    background: #003fa3;
    box-shadow:
        0 10px 28px rgba(0,87,217,0.45);
    transform: translateY(-3px);
}

/* ============================================================
   MARCA D'ÁGUA — Página de Produtos
   Supreme Glass Ultra — DJW 2025
============================================================ */

body.produtos-page {
    position: relative;
    overflow-x: hidden;
}

body.produtos-page::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* CAMINHO CORRETO NA RAIZ */
    background: url('/assets/img/fort.png') no-repeat center center;
    background-size: 50%;

    opacity: 0.10;
    width: 100%;
    height: 100%;

    pointer-events: none;
    z-index: -1;
}

/* ============================================================
   RESPONSIVIDADE
============================================================ */

@media (max-width: 768px) {
    .prod-title {
        font-size: 2.1rem;
    }

    .produtos-container {
        padding: 55px 0;
    }
}

@media (max-width: 576px) {
    .prod-title {
        font-size: 1.7rem;
    }

    .prod-img {
        height: 160px;
    }
}
