/* =========================
   HOME
========================= */

/* Sección */
.st-section{
  padding:48px 0;
}

.st-section__head{
  text-align:center;
  margin-bottom:18px;
}

.st-section__title{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.1;
  text-align:center;
  font-weight:600;              /* ← más editorial */
  letter-spacing:-0.01em;  
}

.st-section__subtitle{
  margin:0;
  color:var(--st-muted);
}

/* Grid productos */
.st-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(4,minmax(0,1fr));
}

@media (max-width: 980px){
  .st-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px){
  .st-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
  .st-section{ padding:34px 0; }
  .st-section__title{
    font-size:28px;
    line-height:1.05;
    margin-bottom:6px;
  }
  .st-section__subtitle{ font-size:13px; }
}

/* Card producto */
.st-card__img img{
  width:100%;
  height:auto;
  display:block;
  border-radius:2px;
  transition:transform .3s ease;
}

.st-card__img:hover img{
  transform:scale(1.03);
}

.st-card__body{ padding-top:10px; }

.st-card__name{
  display:inline-block;
  text-decoration:none;
  font-size:14px;
  line-height:1.3;
  opacity:.85;
}

.st-card__price{
  margin-top:4px;
  font-weight:700;
  font-size:14px;
}

@media (max-width: 640px){
  .st-card__name{ font-size:13px; opacity:.9; }
  .st-card__price{ font-size:14px; }
}

/* CTA de sección */
.st-section__cta{
  text-align:center;
  margin-top:28px;
}

.st-section__btn{
  display:inline-block;
  padding:10px 22px;
  border:1.5px solid #111;
  border-radius:3px;
  text-decoration:none;
  font-size:12.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:all .25s ease;
}

.st-section__btn:hover{
  background:var(--st-orange);
  color:#fff;
  border-color:var(--st-orange);
}

@media (max-width: 640px){
  .st-section__cta{ margin-top:18px; }
  .st-section__btn{
    width:100%;
    max-width:260px;
    text-align:center;
    padding:12px 18px;
    border-radius:8px;
    letter-spacing:.14em;
  }
}


/* =========================
   FOOTER
========================= */

.site-footer{
  margin-top:56px;
  padding:46px 0 28px;
  border-top:1px solid #ff6a00;
  background:#fff;
}

.st-footer__grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:28px;
}

.st-footer__title{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  opacity:.85;
}

.st-footer__links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.st-footer__links a{
  text-decoration:none;
  font-size:14px;
  opacity:.85;
}

.st-footer__links a:hover{
  opacity:1;
  color:var(--st-orange);
}

.st-footer__social{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:14px;
}

.st-social{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-size:14px;
  opacity:.85;
}

.st-social:hover{
  opacity:1;
  color:var(--st-orange);
}

.st-footer__wa{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #ededed;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.st-footer__wa:hover{
  border-color:var(--st-orange);
  color:var(--st-orange);
}

.st-footer__bottom{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid #ff6a00;
  display:flex;
  justify-content:space-between;
  gap:14px;
  font-size:13px;
  opacity:.8;
}

.st-footer__tiny{ opacity:.75; }

@media (max-width: 768px){
  .st-footer__grid{ grid-template-columns:1fr; }
  .st-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}