/* TRUST */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 14px 0;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 24px; border-right: 1px solid var(--gray-border);
}
.trust-item:last-child { border-right: none; }
.trust-item .ico { font-size: 1.6rem; }
.trust-item .txt strong { display: block; font-size: 12px; font-weight: 700; color: var(--blue-dark); }
.trust-item .txt span { font-size: 11px; color: var(--gray-text); }

/* BREADCRUMB */
.breadcrumb {
  max-width: 1200px; margin: 0 auto; padding: 12px 16px 0;
  font-size: 12px; color: var(--gray-text);
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--blue-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* PAGE TITLE */
.page-header { max-width: 1200px; margin: 0 auto; padding: 16px 16px 0; }
.page-header h1 { font-size: 21px; font-weight: 800; color: var(--blue-dark); }
.page-header p { color: var(--gray-text); font-size: 13px; margin-top: 4px; }

/* GRID */
.cat-section { max-width: 1200px; margin: 20px auto 40px; padding: 0 16px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.cat-card:hover {
  box-shadow: 0 6px 24px rgba(26,82,118,0.13);
  transform: translateY(-2px);
  border-color: var(--blue-light);
}

.cat-card-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: #eaf2f8;
}
.cat-card-img-placeholder {
  width: 100%; aspect-ratio: 1; display: none;
  align-items: center; justify-content: center; font-size: 3.5rem;
  background: linear-gradient(135deg, #eaf2f8 0%, #d6eaf8 100%);
}

.cat-card-body { padding: 16px; display: flex; flex-direction: column; align-items: flex-start; }
.cat-card-title { font-size: 15px; font-weight: 800; color: var(--blue-dark); margin-bottom: 12px; }



.cat-card-footer {
  border-top: 1px solid var(--gray-border); padding-top: 10px; margin-top: 4px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.cat-card-footer .count { font-size: 11px; color: var(--gray-text); }
.btn-ver {
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 4px; transition: background 0.2s;
}
.btn-ver:hover { background: var(--blue-dark); }

/* FOOTER */
footer { background: var(--blue-dark); color: rgba(255,255,255,0.7); padding: 32px 16px 20px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
}
.footer-brand .logo-text { color: #fff; font-size: 20px; }
.footer-brand p { font-size: 12px; margin-top: 10px; line-height: 1.8; }
.footer-brand p a { color: #aed6f1; }
footer h4 { color: #fff; font-size: 12px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.07em; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 6px; }
footer ul li a { font-size: 12px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 24px auto 0; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px; color: rgba(255,255,255,0.4); text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .topbar { display: none; }
  .search-bar { max-width: none; }
  .btn-whatsapp { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-item { padding: 8px 14px; border-right: none; border-bottom: 1px solid var(--gray-border); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
}