.store-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;    
    width: 100%;
    height: 74vh;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.store-banner__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    text-transform: uppercase;
    color: #fff;    
}

.store-banner__title {
    font-size: 2.625rem;
    width: 100%;
    max-width: 658px;    
}

.store-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  justify-items: center;
}

@media (min-width: 1024px) {
  .store-products__grid .store-product:nth-child(n + 5) {
    margin-top: 100px;
  }
}

.store-products__intro {
    width: 100%;
    max-width: 862px;
    margin: 0 auto;
    padding: 56px 0;
}

.store-products__intro p {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    line-height: 33px;    
}

.store-product__title {
    color: #fff;
    text-align: center;
    font-size: bold;
    font-size: 1.5rem;
    /* font-weight: bold; */
    margin-top: 23px;    
}

.store-product__subtitle {
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    display: block;    
}

/* ================================
   RESPONSIVO
   ================================ */

@media (max-width: 1200px) {
    .store-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .store-banner__content {
        flex-direction: column;
        gap: 24px;
        margin-top: 80px;
    }

    .store-banner__title {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .store-products__intro {
        padding: 48px 16px;
    }
}

@media (max-width: 900px) {
    .store-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .store-products__intro p {
        font-size: 1.3rem;
        line-height: 30px;
    }

    .store-banner {
        height: 70vh;
    }
}

@media (max-width: 600px) {
    .store-products__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .store-product {
        margin: 0 auto;
    }

    .store-products__intro {
        padding: 40px 20px;
    }

    .store-products__intro p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .store-product__title {
        font-size: 1.3rem;
        margin-top: 18px;
    }

    .store-product__subtitle {
        font-size: 1rem;
    }

    .store-banner {
        height: 60vh;
        background-position: center top;
    }
}