@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@700;800&family=Nunito+Sans:wght@400;600;700&display=swap');

:root {
  --blue:        #102D5E;
  --blue-dark:   #091e42;
  --blue-mid:    #1a4a8a;
  --blue-light:  #e6ecf5;
  --blue-xlight: #f0f4fa;
  --red:         #cc2222;
  --dark:        #0e1624;
  --gray-800:    #374151;
  --gray-500:    #6b7280;
  --gray-300:    #d1d5db;
  --gray-100:    #f3f4f6;
  --white:       #ffffff;
  --border:      #e5e7eb;
  --font-display: 'Urbanist', system-ui, sans-serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 3px rgba(14,22,36,.06), 0 1px 2px rgba(14,22,36,.04);
  --shadow-md:  0 4px 16px rgba(14,22,36,.08), 0 2px 6px rgba(14,22,36,.05);
  --shadow-lg:  0 12px 40px rgba(16,45,94,.12), 0 4px 12px rgba(14,22,36,.06);
  --max-w: 1140px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); font-size: 1.125rem; line-height: 1.3; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.img-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--gray-500);
  font-size: 0.8125rem; font-weight: 500; letter-spacing: .3px;
  position: relative; overflow: hidden;
}
.img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 10px,rgba(0,0,0,.02) 10px,rgba(0,0,0,.02) 20px);
}
.img-placeholder svg { width: 36px; height: 36px; stroke: var(--gray-300); fill: none; stroke-width: 1.5; stroke-linecap: round; position: relative; }
.img-placeholder span { position: relative; }
.img-card  { width: 100%; aspect-ratio: 4/3; }
.img-hero  { width: 100%; aspect-ratio: 4/3; max-height: 520px; }
.img-thumb { width: 100%; aspect-ratio: 1/1; }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--nav-h); background: var(--white); border-bottom: 1px solid var(--border); display: flex; align-items: center; }
.header-inner { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-placeholder { height: auto; width: auto; background: transparent; border-radius: 0; display: inline-flex; align-items: center; justify-content: center; font-family:'Urbanist', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; }
.site-nav { display: flex; gap: 2rem; margin-left: auto; }
.site-nav a { font-size: 1rem; font-weight: 500; color: var(--gray-500); transition: color .15s; white-space: nowrap; }
.site-nav a:hover, .site-nav a.active { color: var(--blue-dark); font-weight: 600; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

.hero-home { background: var(--blue); color: var(--white); padding: 5rem 2rem 4rem; position: relative; overflow: hidden; }
.hero-home::after { content: ''; position: absolute; bottom: 0; right: 0; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); transform: translate(30%,30%); }
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: 0.8125rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.829); margin-bottom: .75rem; }
.hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3.5rem); line-height: 1.1; letter-spacing: -.5px; margin-bottom: 1.25rem; }
.hero-desc { font-size: 1.0625rem; color: rgb(255, 255, 255); font-weight: 400; line-height: 1.4; margin-bottom: 2rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.85); font-size: 0.875rem; font-weight: 500; padding: 5px 14px; border-radius: 100px; }
.hero-img-wrap { position: relative; z-index: 1; }
.hero-img-wrap .img-placeholder { aspect-ratio: 4/3; border-radius: var(--radius-xl); border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); }
.hero-img-wrap .img-placeholder svg { stroke: rgba(255,255,255,.2); }

.section { padding: 5rem 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow { font-size: 0.8125rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem,3vw,2.8rem); line-height: 1.15; letter-spacing: -.3px; margin-bottom: 1rem; }
.section-desc { font-size: 1.0625rem; color: var(--gray-800); max-width: 700px; line-height: 1.3; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sobre-text h2 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; font-size: 2rem; margin-bottom: 1rem; }
.sobre-text p { font-size: 1.125rem; color: var(--gray-800); line-height: 1.3; margin-bottom: 1rem; }


.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cat-card { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); transition: box-shadow .25s, transform .25s; display: block;background: var(--white); }
.cat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cat-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.cat-card-img .img-placeholder { height: 100%; border-radius: 0; border: none; }
.cat-card-badge { position: absolute; top: 1rem; left: 1rem; background: var(--blue); color: var(--white); font-size: 0.8125rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.cat-card-body { padding: 1.4rem; }
.cat-card-body h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: .5rem; overflow-wrap: anywhere; }
.cat-card-body p { font-size: 1rem; color: var(--gray-800); margin-bottom: 1rem; }
.cat-card-count { font-size: 0.9375rem; font-weight: 700; color: var(--white); background: var(--blue); display: inline-flex; align-items: center; padding: 8px 18px; border-radius: var(--radius-sm); }

.filters-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 7px 18px; font-size: 0.9375rem; font-weight: 500; color: var(--gray-500); cursor: pointer; transition: all .15s; }
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.product-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card-img { position: relative; }
.product-card-img .img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 0; border: none; border-bottom: 1px solid var(--border); background: var(--gray-100); }
.product-card-badge { position: absolute; top: .75rem; left: .75rem; font-size: 0.625rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
.badge-launch { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; }
.badge-table  { background: #fefce8; color: #854d0e; border: 1px solid #fde68a; }
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-sub { font-size: 0.8125rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: .4rem; }
.product-card-name { font-size: 1.3rem; font-weight: 800; color: var(--black); line-height: 1.3; margin-bottom: .5rem; }
.product-card-desc { font-size: 1.0rem; color: var(--gray-800); line-height: 1.3; flex: 1; margin-bottom: 1rem; }
.product-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: .75rem; border-top: 1px solid var(--border); }
.anvisa-tag { font-size: 0.75rem; color: var(--gray-500); background: var(--gray-100); padding: 2px 8px; border-radius: var(--radius-sm); }
.btn-ver { font-size: 0.9375rem; font-weight: 700; color: var(--white); background: var(--blue); border: none; padding: 6px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block; }
.btn-ver:hover { background: var(--blue-mid); color: var(--white); }

.section-products { background: var(--gray-100); }

.em-dev-banner { text-align: center; padding: 4rem 2rem; border-top: 1px solid var(--border); }
.em-dev-banner h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--gray-500); margin-bottom: .5rem; }
.em-dev-banner p { font-size: 1rem; color: var(--gray-800); }

.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: var(--max-w); margin: 0 auto; padding: 3rem 2rem; }
.breadcrumb { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--gray-300); }
.product-category-tag { display: inline-block; font-size: 0.8125rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: var(--blue-light); padding: 4px 12px; border-radius: 100px; margin-bottom: 1rem; }
.product-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem,3vw,2.4rem); line-height: 1.1; letter-spacing: -.4px; margin-bottom: 1rem; }
.product-desc { font-size: 1.0625rem; color: var(--gray-800); line-height: 1.3; margin-bottom: 1.5rem; }
.anvisa-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--gray-100); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.875rem; color: var(--gray-800); font-weight: 500; margin-bottom: 1.5rem; }
.composicao-list { list-style: none; margin-bottom: 1.5rem; }
.composicao-list li { display: flex; align-items: center; gap: 8px; font-size: 1rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
.composicao-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.btn-orcamento { display: inline-block; background: var(--blue); color: var(--white); font-size: 1.0625rem; font-weight: 700; padding: 14px 32px; border-radius: var(--radius-md); border: none; cursor: pointer; transition: background .15s; text-align: center; width: 100%; }
.btn-orcamento:hover { background: var(--blue-dark); }

.specs-section { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem 4rem; }
.specs-section h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin-bottom: 1.25rem; }
.specs-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.specs-table thead tr { background: var(--blue); color: var(--white); }
.specs-table thead th { padding: 12px 16px; text-align: left; font-size: 0.8125rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.specs-table tbody tr { border-bottom: 1px solid var(--border); transition: background .12s; }
.specs-table tbody tr:hover { background: var(--blue-xlight); }
.specs-table tbody tr:last-child { border-bottom: none; }
.specs-table td { padding: 12px 16px; color: var(--dark); vertical-align: top; }
.specs-table td:first-child { font-weight: 600; color: var(--blue); }

.category-banner { background: var(--blue); color: var(--white); padding: 4rem 2rem; overflow: hidden; }
.category-banner-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; min-width: 0; }
.category-banner h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem,3.5vw,2.2rem); letter-spacing: -.5px; overflow-wrap: anywhere; }
.category-banner p { font-size: 1.0625rem; color: rgba(255,255,255,.7); margin-top: .5rem; max-width: 480px; }
.category-count { font-size: 3rem; font-weight: 300; color: rgba(255,255,255,.2); font-family: var(--font-display); line-height: 1; }

.site-footer { background: var(--blue-dark); color: rgba(255, 255, 255, 0.601); padding: 3rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand .logo-placeholder { margin-bottom: 1rem; background: rgba(255,255,255,.08); }
.footer-brand p { font-size: 0.9375rem; line-height: 1.3; }
.footer-col h4 { font-size: 0.875rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 1rem; color: rgba(255,255,255,.6); margin-bottom: .5rem; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max-w); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.256); display: flex; justify-content: space-between; font-size: 0.875rem; color: rgba(255, 255, 255, 0.431); font-weight: 700;}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9375rem; font-weight: 500; color: var(--gray-800); }
.form-group input, .form-group select, .form-group textarea { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 14px; font-size: 1rem; font-family: var(--font-body); color: var(--dark); background: var(--white); transition: border-color .15s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { background: var(--blue); color: var(--white); border: none; border-radius: var(--radius-md); padding: 14px; font-size: 1.0625rem; font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: background .15s; margin-top: .5rem; }
.btn-submit:hover { background: var(--blue-dark); }
.contact-info h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin-bottom: 1.5rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.info-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.125rem; }
.info-item strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.info-item span { font-size: 0.9375rem; color: var(--gray-500); }

.btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; font-size: 1.0625rem; font-weight: 500; padding: 14px 24px; border-radius: var(--radius-md); border: none; cursor: default; width: 100%; margin-top: 1rem; }

.launch-banner { background: linear-gradient(135deg,#1a0505,#3d0a0a); color: var(--white); text-align: center; padding: 3rem 2rem; }
.launch-banner h2 { font-family: var(--font-display); font-weight: 800; font-size: 3.0rem; letter-spacing: -1px; margin-bottom: .5rem; }
.launch-badge { display: inline-block; background: var(--red); color: var(--white); font-size: 1.2rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 20px; border-radius: 100px; margin-bottom: 1rem; }
.tag-sterile { display: inline-block; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; font-size: 0.8125rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }

@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .5s ease both; }


/* ── ALTERAÇÕES v2 ── */

/* Launch badge verde */
.launch-badge { background: #1FA88C !important; }

/* Banner HemoDry com imagem de fundo */
.launch-banner {
  background-image: url('img/banner-hemodry.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
}
.launch-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,18,36,0.61);
  z-index: 0;
}
.launch-banner > * { position: relative; z-index: 1; }

/* WhatsApp */
.btn-whatsapp {
  width: fit-content !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  background: #25D366 !important;
  color: #fff !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  padding: 12px 18px !important;
  border-radius: var(--radius-md) !important;
  border: none !important;
  cursor: default !important;
  margin-top: 0 !important;
}

/* Ícones de contato flat azul */
.info-icon-flat {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon-flat svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* section-products */
.section-products { background: var(--gray-100); }

/* ── v1.0 FINAL ── */

/* Logo sem moldura */
.logo-placeholder {
  background: transparent !important;
  border: none !important;
  color: var(--blue) !important;
}
.site-footer .logo-placeholder {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,.9) !important;
}

/* Barra de busca no nav */
.nav-search { position: relative; margin-left: auto; }
.search-wrap-nav { position: relative; width: 210px; }
.search-inp {
  width: 100%; padding: 7px 14px 7px 34px;
  border: 1.5px solid var(--blue); border-radius: 100px;
  font-size: 0.9375rem; background: var(--white); color: var(-- blue-dark);
  outline: none; transition: border-color .15s;
  font-family: var(--font-body);
}
.search-inp:focus { border-color: var(--blue-dark); }
.search-ico-nav {
  position: absolute; left: 11px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-700); pointer-events: none;
}
.ac-dropdown {
  position: absolute; top: calc(100% + 6px); left: auto; right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 500; display: none;
  max-height: 300px; overflow-y: auto;
  min-width: 320px;
}
.ac-row {
  padding: 9px 14px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9375rem; border-bottom: 0.5px solid var(--border);
  transition: background .1s;
}
.ac-row:last-child { border-bottom: none; }
.ac-row:hover, .ac-row.sel { background: var(--blue-xlight); }
.ac-badge {
  font-size: 0.5625rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 2px 7px; border-radius: 100px;
  background: var(--blue-light); color: var(--blue);
  white-space: nowrap; flex-shrink: 0;
}
.ac-row mark { background: none; color: var(--blue); font-weight: 600; }
.ac-empty { padding: 12px 14px; font-size: 0.9375rem; color: var(--gray-500); text-align: center; }

/* Botão voltar — só tablet e mobile */
.footer-voltar { display: none; text-align: center; padding: 2rem 2rem 0; }
.btn-voltar { background: white !important; color: #102D5E !important; }

/* ── Layout: tablet + mobile ── */
@media (max-width:900px) {
  .footer-voltar { display: block; }
}
@media (max-width:1366px) {
  .cat-card { box-shadow: var(--shadow-md); }
  .cat-card-img { aspect-ratio: 4/3; }
}
@media (max-width:900px) {
  .hero-home {
    background-image: url('img/hero-home.jpg');
    background-size: cover;
    background-position: center top;
  }
  .hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16,45,94,0.73);
    z-index: 0;
  }
  .hero-inner { grid-template-columns:1fr; position: relative; z-index: 1; }
  .hero-img-wrap { display:none; }
  .sobre-grid { grid-template-columns:1fr; }
  .cat-grid { grid-template-columns:1fr; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .product-hero { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; gap:1.5rem; text-align: center; }
  .footer-col { text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 4px; }
  .footer-brand { text-align: center; }
  .logo-placeholder { margin: 0 auto; }
  .category-banner-inner { flex-direction:column; gap:1rem; align-items:flex-start; }
  .site-nav { display:none; }
  .hamburger { display:none; }
  .header-inner { gap: 1rem; padding: 0 1rem; }
  .nav-search { flex: 1; margin-left: auto; }
  .search-wrap-nav { width: 100%; }
  .search-inp { font-size: 16px; }
}

/* ── Tablet: 769px–1366px ── */
/* html base 24px → todos os rem escalam 1.5x vs desktop */
@media (min-width:769px) and (max-width:1366px) {
  html { font-size: 24px; }
  .search-wrap-nav { width: 340px; }
  .logo-placeholder { font-size: 1.5rem; }
  .category-banner h1 { font-size: clamp(1.4rem,5vw,2.2rem); }
}

/* ── Mobile: até 768px ── */
/* html base 20px → todos os rem escalam 1.25x vs desktop */
@media (max-width:768px) {
  html { font-size: 20px; }
  .product-grid { grid-template-columns:1fr; }
  .form-grid-2 { grid-template-columns:1fr; }
  .search-inp { font-size: 16px; }
  .logo-placeholder { font-size: 1.1rem; }
  .cat-card-body h3 { font-size: 1.3rem; }
  .category-banner h1 { font-size: clamp(1.4rem,5vw,1.9rem); }
}