
/*TÍTULO DO CATÁLOGO */
.titulo-catalogo{
    font-size: 1.7rem;
    font-weight: bold;
    display: block;
    text-align: center;

}


/* GRID DOS PRODUTOS */
.container-produtos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas fixas no desktop */
    gap: 20px;
    padding: 20px;
}

/* CARD */
.card-produto {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.25s;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card-produto:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGEM — menor que antes */
.foto-capa {
    width: 100%;
    height: 260px; /* era 260px */
    overflow: hidden;
    background-color: #f7f7f7;
}

.foto-capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.card-produto:hover .foto-capa img {
    transform: scale(1.03);
}

/* INFORMAÇÕES */
.info-produto {
    padding: 10px 12px;
}

.info-produto h3 {
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* PREÇO */
.preco {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--green-primary);
    letter-spacing: -0.5px;
}

/* SEM FOTO */
.sem-foto {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* BOTÃO */
.btn-carrinho {
    margin: 0 10px 10px;
    height: 42px;
    background-color: var(--green-primary);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.2s;
    text-decoration: none;
}
.btn-indisponivel{
    background-color: gray;
}
.btn-carrinho:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* SEM PRODUTOS */
.sem-produtos {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
}


/* RESPONSIVO — tablet */
@media (max-width: 1024px) {
    .container-produtos {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* RESPONSIVO — mobile (estilo Shopee: 2 por linha) */
@media (max-width: 768px) {
    .container-produtos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .foto-capa {
        height: 160px;
    }

    .info-produto {
        padding: 8px 10px;
    }

    .info-produto h3 {
        font-size: 0.82rem;
    }

    .preco {
        font-size: 1rem;
    }
}