/* =========================
   CATALOG PREMIUM
========================= */

.catalog-section{
  padding:120px 0;
  background:#f5f5f5;
}

.catalog-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:42px;
}

/* CARD */
.catalog-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  transition:.35s ease;
  display:flex;
  flex-direction:column;
}
.catalog-content{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  text-align:center;
}
.catalog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(0,0,0,.12);
}

/* COVER */
.catalog-cover{
  aspect-ratio:3/4;
  background:#fafafa;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
}

.catalog-cover img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.catalog-card:hover img{
  transform:scale(1.05);
}

/* INFO */
.catalog-info{
  padding:26px 28px 30px;
  text-align:left;
}

.catalog-info h3{
  font-size:16px;
  font-weight:600;
  margin-bottom:18px;
  letter-spacing:.3px;
}

/* BUTTON */
.catalog-btn{
  display:inline-block;
  font-size:13px;
  letter-spacing:1px;
  padding:10px 18px;
  border:1px solid #111;
  color:#111;
  text-decoration:none;
  transition:.25s;
}

.catalog-btn:hover{
  background:#111;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .catalog-wrap{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .catalog-wrap{
    grid-template-columns:1fr;
  }

  .catalog-cover img{
    height:220px;
  }
}
.catalog-hero{
  padding:100px 0 90px;
  margin-top:50px;   /* tránh header */
}