<!-- start Simple Custom CSS and JS -->
<style type="text/css">
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  @keyframes fadeInPage {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  body {
    font-family: var(--font-body);
    color: var(--gray-900);
  }

  main {
    animation: fadeInPage 0.45s ease both;
  }

  p { line-height: 1.65; }

  a { text-decoration: none; }

  :root {
    --blue: #1356B0;
    --blue-dark: #0D3F85;
    --blue-deeper: #082D60;
    --blue-light: #E8F1FB;
    --blue-mid: #1976D2;
    --accent: #F5A623;
    --accent-dark: #D4861A;
    --white: #ffffff;
    --gray-100: #F4F6F9;
    --gray-200: #E8ECF2;
    --gray-400: #9BA8BB;
    --gray-700: #3D4A5C;
    --gray-900: #1A2232;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

  /* ===== HERO ===== */
  .hero {
    max-width: 1200px;
    padding-top: 64px;
    /* background: var(--blue-deeper); */
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
  }
  /* .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 48px,
        rgba(255,255,255,0.025) 48px,
        rgba(255,255,255,0.025) 49px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 48px,
        rgba(255,255,255,0.025) 48px,
        rgba(255,255,255,0.025) 49px
      );
    pointer-events: none;
  } */
  /* .hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(19,86,176,0.35) 0%, transparent 70%);
    pointer-events: none;
  } */
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
  }
  .hero-tag::before { content: '●'; font-size: 7px; }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }
  .hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
    justify-content: flex-start;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-accent {
    background: var(--accent);
    color: var(--blue-deeper);
  }
  .btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(245,166,35,0.35);
  }
  .btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
  }
  .btn-whats-hero {
    width: 100%;
    margin-top: 30px;
	  justify-content: center;
  }
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeUp 0.6s 0.4s ease both;
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
  }
  .hero-stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  /* Hero card side */
  .hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .feature-list { list-style: none; }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(19,86,176,0.4);
    border: 1px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .feature-check svg { width: 10px; height: 10px; stroke: var(--accent); stroke-width: 2.5; fill: none; }
  .hero-cta-card {
    margin-top: 1.5rem;
    background: var(--accent);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
  }
  .hero-cta-card:hover { background: var(--accent-dark); }
  .hero-cta-card span {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-deeper);
  }
  .hero-cta-card svg { width: 18px; height: 18px; stroke: var(--blue-deeper); fill: none; stroke-width: 2.5; }

  /* ===== ICON BAR ===== */
  .icon-bar {
    background: var(--blue);
    padding: 0;
  }
  .icon-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .icon-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .icon-bar-item:last-child { border-right: none; }
  .icon-bar-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .icon-bar-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; }
  .icon-bar-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
  }
  .icon-bar-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 80px 2rem; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-desc {
    font-size: 16px;
    color: var(--gray-700);
    max-width: 560px;
    line-height: 1.65;
  }

  /* ===== PRODUCTS ===== */
  .products-section { background: var(--gray-100); }
  .products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .prod-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  .prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13,63,133,0.12);
  }
  .prod-card-thumb {
    height: 140px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .prod-card-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, #c9dff5 100%);
  }
  .prod-thumb-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .prod-thumb-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.6; }
  .prod-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
  .prod-card-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
  }
  .prod-card-body p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
  }
  .prod-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .prod-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.2s; }
  .prod-card:hover .prod-card-link svg { transform: translateX(3px); }

  /* ===== SEGMENTS ===== */
  .segments-section { background: #fff; }
  .segments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 3rem;
  }
  .seg-card {
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    cursor: default;
  }
  .seg-card:hover {
    border-color: var(--blue);
    background: var(--blue-light);
  }
  .seg-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
  }
  .seg-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
  .seg-card p { font-size: 12px; font-weight: 600; color: var(--gray-700); line-height: 1.3; }

.why-section {
  position: relative;
  background-image: url('https://www.jbrtelasealambrados.com.br/wp-content/uploads/2026/05/bg-home-agiidade.jpg');
  background-size: cover;
  background-position: center;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 40, 0.75);
  z-index: 0;
}
rgba(10, 22, 40, 0.5)
.why-section > * {
  position: relative;
  z-index: 1;
}

  /* ===== WHY JBR ===== */
  /* .why-section {
    position: relative;
    overflow: hidden;
  }
  .why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.015) 30px,
      rgba(255,255,255,0.015) 31px
    );
    pointer-events: none;
  } */
  .why-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
  }
  .why-left .section-label { color: var(--accent); }
  .why-left .section-title { color: #fff; }
  .why-left .section-desc { color: rgba(255,255,255,0.65); max-width: 420px; }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 2.5rem;
  }
  .why-card {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
  }
  .why-card-icon {
    width: 36px;
    height: 36px;
    background: rgba(245,166,35,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .why-card-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; }
  .why-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }
  .why-card p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }

  .why-right-box {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 2rem;
  }
  .why-coverage {
    text-align: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
  }
  .why-coverage-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }
  .why-coverage-unit { font-size: 28px; color: var(--accent); }
  .why-coverage-txt {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
  }
  .why-list { list-style: none; }
  .why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
  }
  .why-list li:last-child { border-bottom: none; }
  .why-list li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 13px; }

  /* ===== REVIEWS ===== */
  .reviews-section { background: var(--gray-100); }
  .reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
  }
  .google-badge .stars { color: #FFA000; font-size: 14px; }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .review-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 24px;
    position: relative;
  }
  .review-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    color: var(--blue-light);
    position: absolute;
    top: 8px;
    right: 20px;
    line-height: 1;
  }
  .review-stars { color: #FFA000; font-size: 14px; margin-bottom: 10px; }
  .review-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }
  .reviewer-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
  .reviewer-type { font-size: 11px; color: var(--gray-400); }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: var(--blue);
    padding: 60px 2rem;
  }
  .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .cta-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); }
  .cta-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
  .btn-white {
    background: #fff;
    color: var(--blue);
    font-weight: 700;
  }
  @media (max-width: 767px) {
	.cta-actions {
	  flex-direction: column;  
	}
  }

  .btn-white:hover { background: var(--blue-light); transform: translateY(-1px); }
  .btn-whatsapp {
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-whatsapp:hover { background: #1db955; color: #fff; }
  .btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== MOBILE ===== */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .icon-bar-inner { grid-template-columns: 1fr 1fr; }
    .icon-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .segments-grid { grid-template-columns: repeat(3, 1fr); }
    .why-inner { grid-template-columns: 1fr; }
    .why-right-box { display: none; }
    .cta-inner { flex-direction: column; }
    .reviews-grid { grid-template-columns: 1fr; }
    .products-head { flex-direction: column; align-items: flex-start; }
    nav.jbr-nav .nav-links { display: none; }

    .hero-btns { justify-content: center; }
    .hero-content { text-align: center; }
  }

  @media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .segments-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .icon-bar-inner { grid-template-columns: 1fr; }
    section { padding: 56px 1.25rem; }
    .hero-inner { padding: 4rem 1.25rem 3rem; }
    .hero h1 { font-size: 36px; }
  }

/* ============================================================
   ANIMAÇÕES DE SCROLL
   ============================================================ */

/* Estados iniciais */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-anim="up"]    { transform: translateY(38px); }
[data-anim="left"]  { transform: translateX(-44px); }
[data-anim="right"] { transform: translateX(44px); }
[data-anim="scale"] { transform: scale(0.88); transition-duration: 0.55s; }

/* Elemento visível após entrar na tela */
[data-anim].in-view {
  opacity: 1;
  transform: none;
}

/* Delays de escalonamento */
[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"] { transition-delay: 0.40s; }
[data-delay="5"] { transition-delay: 0.50s; }
[data-delay="6"] { transition-delay: 0.60s; }

/* Sublinhado deslizante no rótulo de seção */
.section-label[data-anim] {
  position: relative;
  display: inline-block;
}
.section-label[data-anim]::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.5s ease 0.45s;
}
.section-label[data-anim].in-view::after {
  width: 100%;
}

.shortcode {
    text-align: center;
}

/* Número "120km" salta ao entrar na tela */
.why-right-box.in-view .why-coverage-num {
  animation: jbr-pop 0.55s 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes jbr-pop {
  0%   { transform: scale(0.55); opacity: 0; }
  100% { transform: scale(1);    opacity: 1; }
}

/* Transição suave nos cards */
.prod-card,
.why-card,
.review-card,
.seg-card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.55s ease;
}

/* ============================================================
   PÁGINAS INTERNAS
   ============================================================ */

/* ----- Page Hero ----- */
.page-hero {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
  background: #1a2232 !important;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,255,255,0.025) 48px, rgba(255,255,255,0.025) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.025) 48px, rgba(255,255,255,0.025) 49px);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(19,86,176,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 !important;
  position: relative;
  z-index: 1;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  list-style: none;
  padding: 0;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li + li::before { content: '›'; margin-right: 6px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lead {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
}

/* ----- Product split layout ----- */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,63,133,0.15);
}
.product-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-photo:hover img { transform: scale(1.03); }

/* ----- Check list ----- */
.check-list { list-style: none; margin: 1rem 0; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}
.check-list li::before {
  content: '✔';
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ----- Malha cards ----- */
.malha-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.malha-card {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 22px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.malha-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(19,86,176,0.08); }
.malha-size {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.malha-card h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.malha-card p { font-size: 13px; color: var(--gray-700); line-height: 1.5; margin: 0; }

/* ----- Tech table ----- */
.tech-table-wrap { overflow-x: auto; margin-top: 2rem; border-radius: 10px; border: 1px solid var(--gray-200); }
.tech-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tech-table th { background: var(--blue-deeper); color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; white-space: nowrap; }
.tech-table td { padding: 11px 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.tech-table tr:last-child td { border-bottom: none; }
.tech-table tr:nth-child(even) td { background: var(--gray-100); }

/* ----- Photo gallery ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2.5rem;
}
.gallery-item { border-radius: 10px; overflow: hidden; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall img { height: 340px; }

/* ----- Other products links ----- */
.other-products { background: var(--blue-light); }
.other-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.other-prod-link {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.other-prod-link:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(19,86,176,0.1); transform: translateY(-2px); }
.other-prod-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.other-prod-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.other-prod-link span { font-size: 14px; font-weight: 600; color: var(--gray-900); line-height: 1.3; }

/* ----- Tables grid ----- */
.tables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.table-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-light);
}
.tables-grid .tech-table-wrap { margin-top: 0; }

/* ----- Responsive páginas internas ----- */
@media (max-width: 900px) {
  .product-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .other-products-grid { grid-template-columns: repeat(2, 1fr); }
  .tables-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .malha-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .other-products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CLASSES UTILITÁRIAS — páginas internas
   ============================================================ */
.bg-white  { background: #fff !important; }
.bg-gray-100 { background: var(--gray-100) !important; }
.section-header { margin-bottom: 2rem; }

/* Aliases de ícone nos why-cards das páginas internas */
.why-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,166,35,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.why-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; }

/* ----- Feature cards (fundo claro) ----- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.feat-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(19,86,176,0.08); }
.feat-icon {
  width: 42px; height: 42px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feat-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.feat-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.feat-card p  { font-size: 14px; color: var(--gray-700); margin: 0; }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }</style>
<!-- end Simple Custom CSS and JS -->
