@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700;800;900&family=Roboto:wght@400;500;600;700;800&display=swap');

/* =========================
   VITRINE / CARDS
========================= */

.vp-container-vitrine {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px);
    column-gap: 25px;
    row-gap: 15px;
    padding: 10px;
    justify-content: start;
}

.vp-card-industrial {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 260px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    
}

.vp-card-industrial:hover {
    transform: scale(1.01);
    transition: transform 0.5s ease;
    
}

.vp-card-header {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-top-seal {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ff6b1a;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

/* base */
.vp-card-header img {
    display: block;
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* escalas */
.scale-100 img { padding: 0;    }
.scale-95  img { padding: 2.5%; }
.scale-90  img { padding: 5%;   }
.scale-85  img { padding: 7.5%; }
.scale-80  img { padding: 10%;  }

.vp-card-footer {
    padding: 12px 15px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vp-product-name {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.2;
    min-height: 38px;
}

.vp-price-box {
    margin: 5px 0 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vp-old-price {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1;
    color: #9b9b9b;
    font-family: 'Roboto', sans-serif;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.vp-main-price {
    font-size: 23px;
    color: #FF4D00;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

/*GARANTE QUE OS PREÇOS TENHAM A MESMA ALTURA E ALINHAMENTO*/

.vp-price-box {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vp-main-price,
.vp-old-price {
  text-align: left;
  width: 100%;
}

.vp-installment-line {
    font-size: 16px;
    margin-top: 4px;
    font-family: 'Roboto', sans-serif;
}

.vp-prefix-em {
    color: #000000;
    margin-right: 3px;
}

.vp-green-text {
    color: #28a745;
    font-weight: 400;
}

.vp-button-wrapper {
    margin-top: auto;
    width: 100%;
}

.btn-veja-mais {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #48ef70;
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 12px !important;
    padding: 8px 0;
    border-radius: 6px;
    width: 100%;
    transition: background 0.3s;
}

.btn-veja-mais:hover {
    background-color: #FF4D00;
    color: #ffffff !important;
}

.btn-veja-mais svg {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    fill: white;
}


@media (max-width: 767px) {
    .vp-container-vitrine {
        grid-template-columns: repeat(1, 1fr);
        gap:12px;
        align-items: center;
        padding: 10px;
        justify-items: center;
    }
    .vp-card-industrial {
        width: 110%;
    }

    .vp-card-header {
        height: 250px;
    }

    .vp-card-header img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    }

}

