/* ===== PRODUTOS ===== */

.products-page {
    padding: 100px 0;
    background: #f8f9fb;
}

.products-header {
    padding-top: 300px;
    padding-bottom: 100px;
}

.product-category {
    margin-bottom: 90px;
}

.product-category h2 {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 35px;
    position: relative;
}

.product-category h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #1e88e5;
    display: block;
    margin-top: 12px;
    border-radius: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery a {
    overflow: hidden;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.products-header .lead{
    margin: auto;
    color: rgba(255,255,255,.9);
}

.products-header h1{
    font-size: 55px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* RESPONSIVO */
@media(max-width:768px) {

    .products-header {
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .products-page {
        padding: 70px 0;
    }

    .product-category h2 {
        font-size: 28px;
    }

    .gallery img {
        height: 240px;
    }
}