/* === From modelo-produtos.html === */
/* ═══════════════════ CSS VARIABLES ═══════════════════ */
/* :root removed - defined in main.css */

/* ═══════════════════ RESET ═══════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ═══════════════════ HEADER ═══════════════════ */

.icon-svg { width: 20px; height: 20px; fill: currentColor; }

.header-social a { color: rgba(255,255,255,.7); display: flex; transition: color .2s; }
.header-social a:hover { color: var(--white); }
.header-social .icon-svg { width: 16px; height: 16px; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 0 24px;
}
.hero-content h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-content p {
  font-size: clamp(.85rem, 2vw, 1rem);
  opacity: .9;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
}

/* ═══════════════════ BREADCRUMB ═══════════════════ */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--gray5);
}
.breadcrumb a { color: var(--gray6); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; }

/* ═══════════════════ FILTER BAR ═══════════════════ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 32px;
  justify-content: center;
}
.filter-pill {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--gray3);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray8);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.filter-pill:hover {
  border-color: var(--red);
  color: var(--red);
}
.filter-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ═══════════════════ PRODUCT GRID ═══════════════════ */
.products-section {
  padding: 0 0 80px;
  background: var(--light-bg);
}
.products-section .container {
  padding-top: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray11);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-body .tagline {
  font-size: 14px;
  color: var(--gray6);
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  transition: gap .3s ease;
}
.product-card:hover .card-link {
  gap: 10px;
}

/* ═══════════════════ FOOTER ═══════════════════ */

.footer-icon { width: 16px; height: 16px; fill: currentColor; margin-right: 8px; flex-shrink: 0; vertical-align: middle; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  
}
@media (max-width: 768px) {
  
  
  
  
  .header-social { display: none; }
  
  
  
  .hero { height: 140px; }
  .product-grid { grid-template-columns: 1fr; }
  
  .filter-pill { padding: 8px 18px; font-size: 13px; }
}

/* === From modelo-produto-detalhe.html === */
/* ═══════════════════ CSS VARIABLES ═══════════════════ */
/* :root removed - defined in main.css */

/* ═══════════════════ RESET ═══════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ═══════════════════ HEADER ═══════════════════ */

.icon-svg { width: 20px; height: 20px; fill: currentColor; }

.arrow { width: 10px; height: 6px; }

.header-social { display: flex; gap: 10px; align-items: center; }
.header-social a { color: rgba(255,255,255,.7); display: flex; transition: color .2s; }
.header-social a:hover { color: var(--white); }
.header-social .icon-svg { width: 16px; height: 16px; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative; height: 175px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; padding: 0 24px; }
.hero-content h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 8px; text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-content p { font-size: clamp(.85rem, 2vw, 1rem); opacity: .9; font-weight: 300; }

/* ═══════════════════ BREADCRUMB ═══════════════════ */
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--gray5); }
.breadcrumb a { color: var(--gray6); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; }

/* ═══════════════════ PRODUCT OVERVIEW ═══════════════════ */
.product-overview {
  padding: 48px 0 64px;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray1);
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-thumb {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--red); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.overview-info {}
.quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.spec-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  background: var(--gray1);
  border-radius: 10px;
}
.spec-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.spec-icon svg { width: 20px; height: 20px; fill: var(--white); }
.spec-label { font-size: 11px; color: var(--gray5); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.spec-value { font-size: 15px; font-weight: 700; color: var(--gray11); }

.overview-desc {
  font-size: 15px; line-height: 1.7; color: var(--gray8);
  margin-bottom: 28px;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-size: 16px; font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200,16,46,.25);
  border: none; cursor: pointer;
}
.btn-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,.35);
}

/* ═══════════════════ PAS SECTION ═══════════════════ */
.pas-section {
  padding: 64px 0;
  background: var(--gray1);
}
.pas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.pas-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
}
.pas-problem {
  border-left: 4px solid var(--red);
}
.pas-solution {
  border-left: 4px solid var(--green);
}
.pas-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.pas-problem h3 { color: var(--red); }
.pas-solution h3 { color: var(--green); }
.pas-card p { font-size: 15px; line-height: 1.7; color: var(--gray8); }
.pas-card ul { margin-top: 12px; }
.pas-card ul li {
  font-size: 14px; line-height: 1.7; color: var(--gray8);
  padding: 4px 0 4px 20px;
  position: relative;
}
.pas-card ul li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
}
.pas-problem ul li::before { background: var(--red); opacity: .3; }
.pas-solution ul li::before { background: var(--green); opacity: .4; }

/* ═══════════════════ SPEC TABLE ═══════════════════ */
.specs-section { padding: 64px 0; }
.specs-section h2 {
  font-size: 28px; font-weight: 800; margin-bottom: 8px;
}
.specs-section .subtitle { color: var(--gray6); margin-bottom: 32px; font-size: 15px; }
.spec-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.spec-table thead th {
  background: var(--gray11); color: var(--white);
  padding: 14px 20px; font-size: 13px; font-weight: 700;
  text-align: left; text-transform: uppercase; letter-spacing: .5px;
}
.spec-table tbody td {
  padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--gray2);
}
.spec-table tbody tr:nth-child(even) { background: var(--gray1); }
.spec-table tbody tr:hover { background: #fef2f2; }

/* ═══════════════════ ADVANTAGES (unified 10-card grid) ═══════════════════ */
.advantages-section {
  padding: 64px 0;
  background: var(--gray1);
}
.advantages-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; text-align: center; }
.advantages-section .subtitle { color: var(--gray6); margin-bottom: 40px; font-size: 15px; text-align: center; }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.advantage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--red);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.advantage-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.advantage-icon svg { width: 24px; height: 24px; fill: var(--white); }
.advantage-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--gray11); }
.advantage-card p { font-size: 13px; color: var(--gray6); line-height: 1.55; }

/* ═══════════════════ APPLICATIONS ═══════════════════ */
.applications-section { padding: 64px 0; }
.applications-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.applications-section .subtitle { color: var(--gray6); margin-bottom: 40px; font-size: 15px; }
.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.application-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.application-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.application-card:hover img { transform: scale(1.08); }
.application-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.8) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.application-card-overlay h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.application-card-overlay p { font-size: 13px; opacity: .8; }

/* ═══════════════════ FAQ ACCORDION ═══════════════════ */
.faq-section { padding: 64px 0; }
.faq-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.faq-section .subtitle { color: var(--gray6); margin-bottom: 32px; font-size: 15px; }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--gray2); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--gray11);
  font-family: var(--font); text-align: left; gap: 16px;
  border-left: 4px solid var(--red); padding-left: 20px;
  transition: color .2s;
}
.faq-question:hover { color: var(--red); }
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; background: var(--gray1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--gray8);
  transition: var(--transition);
}
.faq-item.active .faq-toggle { background: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner {
  padding: 0 20px 20px 24px;
  background: var(--gray1);
  border-radius: 0 0 8px 8px;
  margin-bottom: 8px;
  font-size: 15px; line-height: 1.7; color: var(--gray8);
}
.faq-item.active .faq-answer { max-height: 500px; }

/* ═══════════════════ CROSS-SELL CALLOUT ═══════════════════ */
.cross-sell-callout {
  background: #f0f4f8;
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  font-size: 14px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 28px;
  color: var(--gray8);
  line-height: 1.6;
}
.cross-sell-callout a { color: var(--red); font-weight: 600; transition: color .2s; }
.cross-sell-callout a:hover { color: var(--red-dark); }

/* ═══════════════════ COMPATIBILIDADE NOTE ═══════════════════ */
.compat-note {
  font-size: 14px;
  color: var(--gray6);
  line-height: 1.7;
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--gray1);
  border-radius: 8px;
  border-left: 3px solid var(--gray3);
}

/* ═══════════════════ DOWNLOADS ═══════════════════ */
.downloads-section { padding: 64px 0; background: var(--gray1); }
.downloads-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.downloads-section .subtitle { color: var(--gray6); margin-bottom: 32px; font-size: 15px; }
.downloads-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.download-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 28px; box-shadow: var(--shadow-sm);
  transition: var(--transition); min-width: 280px;
  text-decoration: none; color: var(--gray11);
}
.download-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.download-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #fef2f2; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.download-icon svg { width: 24px; height: 24px; fill: var(--red); }
.download-info { flex: 1; }
.download-info span { font-size: 15px; font-weight: 600; display: block; }
.download-info small { font-size: 12px; color: var(--gray5); }
.download-arrow { color: var(--gray5); transition: color .2s; }
.download-card:hover .download-arrow { color: var(--red); }

/* ═══════════════════ RELATED PRODUCTS ═══════════════════ */
.related-section {
  padding: 64px 0;
  background: var(--gray1);
}
.related-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 32px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.related-card-img {
  aspect-ratio: 16/9; overflow: hidden;
}
.related-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.related-card:hover .related-card-img img { transform: scale(1.06); }
.related-card-body { padding: 16px; }
.related-card-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.related-card-body p { font-size: 13px; color: var(--gray6); margin-bottom: 12px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 600; font-size: 14px; transition: gap .3s ease;
}
.related-card:hover .card-link { gap: 10px; }

/* ═══════════════════ FOOTER ═══════════════════ */

.footer-icon { width: 16px; height: 16px; fill: currentColor; margin-right: 8px; flex-shrink: 0; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1200px) {
  .advantages-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  
}
@media (max-width: 768px) {
  
  
  
  
  .header-social { display: none; }
  
  
  
  .hero { height: 140px; }
  .quick-specs { grid-template-columns: 1fr; }
  .pas-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .downloads-grid { flex-direction: column; }
  
  .spec-table { font-size: 13px; }
  .spec-table thead th, .spec-table tbody td { padding: 10px 12px; }
}

/* === From modelo-cases.html === */
/* ═══════════════════ CSS VARIABLES ═══════════════════ */
/* :root removed - defined in main.css */

/* ═══════════════════ RESET ═══════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ═══════════════════ HEADER ═══════════════════ */

.icon-svg { width: 20px; height: 20px; fill: currentColor; }

.arrow { width: 10px; height: 6px; }

.header-social { display: flex; gap: 10px; align-items: center; }
.header-social a { color: rgba(255,255,255,.7); display: flex; transition: color .2s; }
.header-social a:hover { color: var(--white); }
.header-social .icon-svg { width: 16px; height: 16px; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative; height: 175px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.72) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; padding: 0 24px; }
.hero-content h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 8px; text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-content p { font-size: clamp(.85rem, 2vw, 1rem); opacity: .9; font-weight: 300; max-width: 540px; margin: 0 auto; }

/* ═══════════════════ BREADCRUMB ═══════════════════ */
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--gray5); }
.breadcrumb a { color: var(--gray6); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; }

/* ═══════════════════ STATS BAR ═══════════════════ */
.stats-bar {
  background: var(--gray11);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-weight: 400;
}

/* ═══════════════════ CASES GRID ═══════════════════ */
.cases-section {
  padding: 48px 0 80px;
}
.cases-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.case-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.case-card-img {
  position: relative;
  overflow: hidden;
}
.case-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
  min-height: 240px;
}
.case-card:hover .case-card-img img { transform: scale(1.05); }
.case-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,.15) 0%, transparent 60%);
}
.case-card-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.case-tag {
  display: inline-block;
  background: rgba(200,16,46,.08);
  color: var(--red);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}
.case-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray11);
  margin-bottom: 6px;
  line-height: 1.3;
}
.case-meta {
  font-size: 13px;
  color: var(--gray5);
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.case-meta span {
  display: flex; align-items: center; gap: 5px;
}
.case-meta svg { width: 14px; height: 14px; fill: var(--gray5); }
.case-result {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray8);
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--gray1);
  border-radius: 8px;
  border-left: 3px solid var(--red);
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  transition: gap .3s ease;
}
.case-card:hover .case-link { gap: 10px; }

/* ═══════════════════ TESTIMONIAL ═══════════════════ */
.testimonial-section {
  background: var(--gray11);
  padding: 80px 24px;
  text-align: center;
}
.testimonial-quote {
  max-width: 800px;
  margin: 0 auto;
}
.quote-icon {
  width: 48px; height: 48px;
  margin: 0 auto 24px;
  opacity: .3;
}
.quote-icon svg { width: 100%; height: 100%; fill: var(--red); }
.testimonial-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.testimonial-author strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

/* ═══════════════════ FOOTER ═══════════════════ */

.footer-icon { width: 16px; height: 16px; fill: currentColor; margin-right: 8px; flex-shrink: 0; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .case-card { grid-template-columns: 320px 1fr; }
  
}
@media (max-width: 768px) {
  
  
  
  
  .header-social { display: none; }
  
  
  
  .hero { height: 140px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .case-card { grid-template-columns: 1fr; }
  .case-card-img img { min-height: 200px; max-height: 240px; }
  
  
}
/* ═══════════════════ TEMPLATE COMPATIBILITY ALIASES ═══════════════════ */
/* Bridge between model CSS class names and WP template class names */

/* Hero: templates use .page-hero.page-hero--short, models use .hero */
.page-hero--short {
  position: relative; height: 175px; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: var(--gray11, #222);
}
.page-hero--short .page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.4) 100%);
  z-index: 1;
}
.page-hero--short .page-hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 24px;
}
.page-hero--short .page-hero-content h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800; margin-bottom: 8px;
}
.page-hero--short .page-hero-content .hero-subtitle {
  font-size: clamp(.85rem, 2vw, 1rem); opacity: .85; font-weight: 400;
}
.page-hero--short .page-hero-tag {
  display: inline-block; background: var(--red, #c8102e); color: #fff;
  padding: 4px 14px; border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page-hero--short { height: 140px; }
}

/* Case horizontal cards: template uses .case-card-horizontal */
.case-card-horizontal {
  display: grid; grid-template-columns: 400px 1fr;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: all .3s ease;
}
.case-card-horizontal:hover {
  transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.case-card-horizontal .case-card-img {
  position: relative; overflow: hidden; height: 100%; min-height: 220px;
}
.case-card-horizontal .case-card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.case-card-horizontal:hover .case-card-img img { transform: scale(1.05); }
.case-card-horizontal .case-card-img-overlay {
  position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.15), transparent);
}
.case-card-horizontal 
.case-tag {
  display: inline-block; background: var(--red, #c8102e); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; width: fit-content;
}
.case-meta { display: flex; gap: 16px; font-size: 13px; color: #888; margin-bottom: 12px; }
.case-meta svg { width: 14px; height: 14px; fill: #888; margin-right: 4px; vertical-align: -2px; }
.case-result {
  border-left: 3px solid var(--red, #c8102e); padding-left: 16px;
  font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 16px;
}
.case-link {
  color: var(--red, #c8102e); font-weight: 600; font-size: 14px;
  text-decoration: none; transition: gap .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.case-link:hover { gap: 10px; }

@media (max-width: 768px) {
  .case-card-horizontal { grid-template-columns: 1fr; }
  .case-card-horizontal .case-card-img { min-height: 200px; }
  .case-card-horizontal 
}

/* Stats bar */
.stats-bar { background: var(--gray11, #222); padding: 40px 0; }
.stats-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center;
}
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--red, #c8102e); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Testimonial */
.testimonial-section { background: var(--gray11, #222); padding: 64px 0; }
.testimonial-quote { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 24px; }
.quote-icon { font-size: 48px; color: var(--red, #c8102e); line-height: 1; margin-bottom: 16px; }
.testimonial-text { font-size: 18px; color: rgba(255,255,255,.9); line-height: 1.7; font-style: italic; }
.testimonial-author { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,.5); }
