/* =============================================
   GRUPOAIZ v5 — Design System
   Referência visual: Randon (espaçamentos, sidebar, topbar)
   Cores / fontes / conteúdo: Grupo AIZ
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Reset estrutural — impede CSS externo (WP core, plugins) de limitar largura */
html { width: 100%; }
body {
  width: 100%;
  max-width: 100%;
}
.pw, .sec, .hero, .ph, .stats, .cta, .sf {
  width: auto;
  max-width: none;
}

:root {
  /* Brand */
  --navy:       #152653;
  --navy-deep:  #0d1a3a;
  --blue:       #359BD6;
  --blue-light: #e8f4fb;
  --cat-yellow: #FFCD11;
  /* Grays */
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #64748b;
  --gray-500: #475569;
  --gray-700: #334155;
  /* Layout (inspirado Randon) */
  --sw:  150px;   /* largura sidebar — estilo marketplace */
  --tbh: 56px;    /* altura topbar */
  --r:   10px;
  --r-lg: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─────────────────────────────────────────────
   SIDEBAR — Grid 7 rows (1 logo + 6 itens)
───────────────────────────────────────────── */
.sidebar {
  position: fixed;
  left: 0; top: 0;
  width: var(--sw);
  height: 100vh;
  background: var(--navy);
  z-index: 200;
  display: grid;
  grid-template-rows: auto repeat(6, 1fr);
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.07);
}

.sb-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  min-height: 90px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.sb-logo-link {
  display: flex;
  align-items: center;
}
.sb-logo-link img,
.sb-logo-img {
  height: 48px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
  display: block;
}
.sb-logo-link .no-logo {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sb-nav {
  display: contents;
}

.sb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  color:rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  border-left: 4px solid transparent;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .18s;
  cursor: pointer;
}
.sb-item:last-child { border-bottom: none; }
.sb-item:nth-child(odd) { background: var(--navy); }
.sb-item:nth-child(even) { background: #1e3575; }
.sb-item:hover {
  background: rgba(53,155,214,.12);
  color: #fff;
  border-left-color: rgba(53,155,214,.5);
}
.sb-item.active {
  background: rgba(53,155,214,.18);
  color: #fff;
  border-left-color: var(--blue);
}
.sb-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-icon svg { width: 20px; height: 20px; }
.sb-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ─────────────────────────────────────────────
   TOPBAR
───────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0;
  left: var(--sw);
  right: 0;
  height: var(--tbh);
  background: var(--navy);
  z-index: 190;
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  /* garante que não fica atrás da sidebar */
  margin-left: 0;
}

.tb-spacer {
  /* Alinha com a sidebar — pode ficar vazio */
  width: 0;
  flex-shrink: 0;
}

.tb-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  padding-left: 16px;
  overflow: hidden;
}

.tb-link {
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color:rgba(255,255,255,.72);
  border-radius: 6px;
  transition: all .18s;
  white-space: nowrap;
  letter-spacing: .005em;
}
.tb-link:hover, .tb-link.active {
  background: rgba(53,155,214,.2);
  color: #fff;
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.tb-search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color:rgba(255,255,255,.78);
  padding: 7px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .18s;
}
.tb-search-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.tb-search-btn svg { width: 18px; height: 18px; }

.tb-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: all .18s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.tb-cta:hover { background: #2a7fb3; }
.tb-cta.w-full { width: 100%; justify-content: center; margin-top: 8px; }

.tb-catalog {
  margin-left: 8px;
  padding: 6px 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}
.tb-catalog:hover, .tb-catalog.active { background: #fff; color: var(--blue); }

.tb-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  background: transparent;
  border: none;
}
.tb-ham span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .25s;
}
.tb-ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.tb-ham.open span:nth-child(2) { opacity: 0; }
.tb-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Search overlay */
.tb-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21,38,83,.92);
  z-index: 500;
  align-items: flex-start;
  padding-top: 80px;
}
.tb-search-overlay.open { display: flex; justify-content: center; }
.tb-search-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  width: min(600px, 90vw);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.tb-search-inner svg { width: 20px; height: 20px; color: var(--gray-400); flex-shrink: 0; }
#tbSearchInput {
  flex: 1; border: none; outline: none;
  font-size: 16px; font-family: inherit; color: var(--navy);
}
#tbSearchClose {
  background: var(--gray-100); border: none; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 14px; color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
#tbSearchClose:hover { background: var(--navy); color: #fff; }

/* Mobile menu */
.tb-mobile-menu {
  display: none;
  position: fixed;
  top: var(--tbh);
  left: 0; right: 0;
  background: var(--navy);
  z-index: 300;
  padding: 12px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  max-height: calc(100vh - var(--tbh));
  overflow-y: auto;
}
.tb-mobile-menu.open { display: block; }
.tb-mm-top {
  padding: 0 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tb-mm-link {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color:rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .18s;
}
.tb-mm-link:hover { color: var(--blue); }
.tb-mm-divider {
  padding: 14px 18px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color:rgba(255,255,255,.6);
}
.tb-mm-companies {
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.tb-mm-co {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: 13px;
  color:rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .18s;
}
.tb-mm-co:hover { background: rgba(53,155,214,.2); color: #fff; }
.tb-mm-co svg { width: 16px; height: 16px; flex-shrink: 0; }
.tb-mm-bottom { padding: 12px 18px 0; }

/* ─────────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────────── */
.pw {
  margin-left: var(--sw);
  padding-top: var(--tbh);
  min-height: 100vh;
  overflow-x: hidden;  /* evita scroll lateral interno */
}

/* ─────────────────────────────────────────────
   HERO — mais alto, mostra máquina inteira
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;   /* aumentado ainda mais para não cortar o equipamento */
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s;
  background-size: cover;
  background-position: center center; /* centralizado — não corta mais o topo/base da máquina */
}
.hero-slide.active { opacity: 1; }
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(21,38,83,.90) 0%, rgba(21,38,83,.52) 50%, rgba(21,38,83,.12) 100%);
}
.hero-cnt {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  max-width: 680px;
}
.sinoaiz-hero .hero-cnt { padding-top: 80px; padding-bottom: 80px; }
.sinoaiz-hero { justify-content: center; }
.hero-ey {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-ey::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.hero-cnt h1 {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.hero-cnt h1 span { color: var(--blue); }
.hero-cnt p {
  font-size: 16px;
  color:rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-nav {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 7px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer;
  transition: all .2s;
}
.hero-dot.active {
  width: 28px; border-radius: 4px;
  background: var(--blue);
}
.hero-arr {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.hero-arr:hover { background: rgba(255,255,255,.25); }
.ha-l { left: 18px; }
.ha-r { right: 18px; }

/* Page heroes (páginas internas) — também mais altos */
.ph {
  position: relative;
  min-height: 85vh;    /* aumentado */
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.ph-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(21,38,83,.92) 0%, rgba(21,38,83,.6) 55%, rgba(21,38,83,.15) 100%);
}
.ph-cnt {
  position: relative;
  z-index: 2;
  padding: 100px 64px 64px;
  max-width: 720px;
}
.ph-meta {
  font-size: 11px;
  color:rgba(255,255,255,.72);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ph-logo { height: 46px; width: auto; margin-bottom: 18px; }
.ph-cnt h1 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ph-cnt h1 span { color: var(--blue); }
.ph-cnt p {
  font-size: 16px;
  color:rgba(255,255,255,.8);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.ph-bs { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--navy); color: #fff; border: 1.5px solid rgba(255,255,255,.2); }
.btn-primary:hover { background: #1e3575; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #2a7fb3; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline-w:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }

/* ─────────────────────────────────────────────
   STATS
───────────────────────────────────────────── */
.stats { background: var(--navy); padding: 36px 64px; }
.stats-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat { text-align: center; padding: 20px; background: rgba(255,255,255,.06); border-radius: var(--r); border: 1px solid rgba(255,255,255,.08); }
.stat-v { font-size: 36px; font-weight: 800; color: var(--blue); margin-bottom: 4px; line-height: 1; }
.stat-l { font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.stat-d { font-size: 11px; color:rgba(255,255,255,.85); margin-top: 4px; line-height: 1.4; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
.sec { padding: 72px 64px; }
.sec-alt { background: var(--gray-50); }
.sec-dark { background: var(--navy); color: #fff; }
.sec-light-blue { background: #f0f7fc; }
.sec-ey { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--cat-yellow); margin-bottom: 10px; }
.sec-t { font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 12px; }
.sec-t.wh { color: #fff; }
.sec-sub { font-size: 16.5px; color: var(--gray-500); max-width: 560px; line-height: 1.8; }
.sec-sub.wh { color:rgba(255,255,255,.7); }
.sec-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; gap: 16px; }
.tc { text-align: center; }
.tb { color: var(--blue); }

/* ─────────────────────────────────────────────
   ANIMATE ON SCROLL
───────────────────────────────────────────── */
.anim-fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.anim-fade.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }

/* ─────────────────────────────────────────────
   COMPANIES GRID
───────────────────────────────────────────── */
.co-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.co-c {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 14px rgba(21,38,83,.07);
  text-align: center;
  transition: all .25s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.co-c:hover { box-shadow: 0 8px 32px rgba(21,38,83,.14); transform: translateY(-3px); border-color: var(--blue); }
.co-logo { display: flex; align-items: center; height: 44px; margin-bottom: 4px; }
.co-c img { height: 100%; max-height: 40px; width: auto; max-width: 140px; object-fit: contain; }
.co-nm { font-size: 15px; font-weight: 700; color: var(--navy); margin-top: 4px; }
.co-ds { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin-top: 3px; }
.co-lk { font-size: 12px; color: var(--blue); font-weight: 600; }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-g { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-g > div { min-width: 0; }
.vid { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.28); }
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ─────────────────────────────────────────────
   TIMELINE (Histórico)
───────────────────────────────────────────── */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.15);
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 40px;
  align-items: center;
}
.tl-left, .tl-right {
  padding: 0 32px;
}
.tl-left { text-align: right; }
.tl-right { text-align: left; }
.tl-year {
  width: 56px; height: 56px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 0 4px rgba(53,155,214,.25);
}
.tl-content {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 16px 20px;
}
.tl-content h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.tl-content p { font-size: 12px; color:rgba(255,255,255,.8); line-height: 1.6; }

/* ─────────────────────────────────────────────
   CLIENTS LOGOS
───────────────────────────────────────────── */
.clients-g {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 18px;
  align-items: center;
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 12px;
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--gray-200);
  transition: all .25s;
}
.client-logo:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(21,38,83,.1); }
.client-logo img { height: 28px; width: auto; max-width: 100px; filter: grayscale(0); opacity: 1; object-fit: contain; transition: all .3s; }
.client-logo:hover img { filter: grayscale(1); opacity: .6; }

/* ─────────────────────────────────────────────
   BENEFITS
───────────────────────────────────────────── */
.ben-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.ben-c {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200, #e6e9f0);
  border-radius: 20px;
  padding: 28px 16px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
  box-shadow: 0 2px 18px rgba(21,38,83,0.05);
}
.ben-c::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cat-yellow), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.ben-c:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(21,38,83,0.14); border-color: transparent; }
.ben-c:hover::before { transform: scaleX(1); }
.ben-ic { width: 66px; height: 66px; background: var(--blue-light); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: all .25s; }
.ben-c:hover .ben-ic { background: var(--blue); }
.ben-c:hover .ben-ic svg { color: #fff !important; }
.ben-ic svg { width: 28px; height: 28px; color: var(--blue); transition: color .25s; }
.ben-t { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.sec-dark .ben-c { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.sec-dark .ben-t { color: #fff; }

/* Nossa Estrutura — Sobre Nós (cards com borda, mais chamativos) */
.struct-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.struct-c {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: 16px;
  padding: 32px 22px; text-align: center; position: relative; overflow: hidden;
  transition: all .3s;
}
.struct-c::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cat-yellow), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.struct-c:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(21,38,83,.14); border-color: transparent; }
.struct-c:hover::before { transform: scaleX(1); }
.struct-ic { width: 66px; height: 66px; background: var(--blue-light); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: all .25s; }
.struct-c:hover .struct-ic { background: var(--blue); }
.struct-c:hover .struct-ic svg { color: #fff !important; }
.struct-ic svg { width: 28px; height: 28px; color: var(--blue); transition: color .25s; }
.struct-t { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.struct-d { font-size: 14.5px; color: var(--gray-500); line-height: 1.7; }
@media(max-width:900px) { .struct-g { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .struct-g { grid-template-columns: 1fr; } }
.struct-g--3 { grid-template-columns: repeat(3,1fr); }
@media(max-width:900px) { .struct-g--3 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .struct-g--3 { grid-template-columns: 1fr; } }
.struct-g--2 { grid-template-columns: repeat(2,1fr); max-width:700px; margin-left:auto; margin-right:auto; }
@media(max-width:480px) { .struct-g--2 { grid-template-columns: 1fr; } }
.ben-d { font-size: 14.5px; color: var(--gray-500); line-height: 1.7; }

/* ─────────────────────────────────────────────
   WHY-CARDS — versão "cartão" mais chamativa
   (usado em "Por que o Grupo AIZ?" — Trabalhe Conosco)
───────────────────────────────────────────── */
.why-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-c {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200, #e6e9f0);
  border-radius: 20px;
  padding: 36px 28px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
  box-shadow: 0 2px 18px rgba(21,38,83,0.05);
}
.why-c::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cat-yellow), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.why-c:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(21,38,83,0.14);
  border-color: transparent;
}
.why-c:hover::before { transform: scaleX(1); }
.why-ic {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all .3s;
}
.why-c:hover .why-ic { background: var(--blue); }
.why-c:hover .why-ic svg { color: #fff !important; }
.why-ic svg { width: 28px; height: 28px; color: var(--blue); transition: color .3s; }
.why-t { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -.01em; }
.why-d { font-size: 14.5px; color: var(--gray-500); line-height: 1.75; }

@media(max-width:768px) { .why-g { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .why-g { grid-template-columns: 1fr; } .why-c { padding: 28px 22px; } }

/* ─────────────────────────────────────────────
   FAIZ — ÁLBUNS DE DOAÇÕES
───────────────────────────────────────────── */
.faiz-page .btn-blue:hover { background: #00787a; }
.faiz-page .hero { aspect-ratio: 2101 / 400; min-height: 0; max-height: 70vh; }
.faiz-alb-filters {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.faiz-alb-filters select {
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--navy);
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: 8px;
  padding: 9px 14px; cursor: pointer;
}
.faiz-alb-filters select:hover { border-color: var(--blue); }
.faiz-alb-g {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px 20px;
}
.faiz-alb-c { text-align: center; }
.faiz-alb-meta { font-size: 12px; color: var(--gray-500); margin: -6px 0 12px; }
.faiz-alb-img {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 2px 14px rgba(21,38,83,.08);
  cursor: pointer;
  background: none;
}
.faiz-alb-img img {
  width: 100%; height: 170px;
  object-fit: cover; display: block;
  transition: transform .35s;
}
.faiz-alb-img:hover img { transform: scale(1.06); }
.faiz-alb-c h4 {
  font-size: 14px; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; line-height: 1.4;
}
.faiz-alb-c .btn { border: none; cursor: pointer; }
@media(max-width:900px) { .faiz-alb-g { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .faiz-alb-g { grid-template-columns: 1fr; } }

/* ─── Lightbox (abre foto dentro do próprio site) ─── */
.faiz-lb {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,20,25,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s;
}
.faiz-lb.active { opacity: 1; visibility: visible; }
.faiz-lb figure { margin: 0; max-width: 900px; max-height: 90vh; text-align: center; }
.faiz-lb img { max-width: 100%; max-height: 78vh; border-radius: 8px; display: block; margin: 0 auto; }
.faiz-lb figcaption { color: #fff; font-size: 15px; font-weight: 600; margin-top: 16px; }
.faiz-lb-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 28px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.faiz-lb-close:hover { background: rgba(255,255,255,.25); }
.faiz-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 32px; line-height: 1; cursor: pointer;
  align-items: center; justify-content: center;
  display: none;
}
.faiz-lb-nav:hover { background: rgba(255,255,255,.25); }
.faiz-lb-prev { left: 16px; }
.faiz-lb-next { right: 16px; }
.faiz-lb-counter { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 8px; }
@media(max-width:600px) {
  .faiz-lb-nav { width: 40px; height: 40px; font-size: 26px; }
  .faiz-lb-prev { left: 6px; } .faiz-lb-next { right: 6px; }
}

/* ─────────────────────────────────────────────
   PARTNERS
───────────────────────────────────────────── */
.par-r { display: flex; justify-content: center; align-items: center; gap: 72px; flex-wrap: wrap; }
.par-l img { height: 64px; width: auto; max-width: 180px; filter: grayscale(0); opacity: 1; transition: all .3s; object-fit: contain; }
.par-l:hover img { filter: grayscale(1) brightness(1.6); opacity: .75; }

/* ─────────────────────────────────────────────
   MACHINES GRID
───────────────────────────────────────────── */
.mac-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.mac-c { background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: 0 2px 12px rgba(21,38,83,.08); transition: all .25s; text-decoration: none; display: block; }
.mac-c:hover { box-shadow: 0 8px 32px rgba(21,38,83,.14); transform: translateY(-3px); }
.mac-th { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.mac-th img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mac-c:hover .mac-th img { transform: scale(1.05); }
.mac-bd { padding: 14px 16px; }
.mac-tg { font-size: 11.5px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; font-weight: 700; }
.mac-nm { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mac-lk { font-size: 13.5px; color: var(--blue); font-weight: 600; }

/* Card em destaque — Escavadeiras Anfíbias */
.mac-c--hl { position: relative; border: 2px solid var(--blue); box-shadow: 0 8px 28px rgba(53,155,214,.28); }
.mac-c--hl:hover { box-shadow: 0 12px 36px rgba(53,155,214,.4); transform: translateY(-3px); }
.mac-c__badge { position: absolute; top: 10px; left: 10px; z-index: 3; background: var(--blue); color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 5px 10px; border-radius: 20px; box-shadow: 0 3px 10px rgba(0,0,0,.2); }
.mac-th--video { position: relative; cursor: pointer; background: var(--gray-100); }
.mac-th--video::before { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.05) 0%,rgba(0,0,0,.35) 100%); z-index:2; pointer-events:none; }
.mac-th--video iframe { width: 100%; height: 100%; border: 0; display: block; }
.mac-c__thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.mac-c__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 68px; height: 68px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all .2s; box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.18); }
.mac-c__play svg { width: 26px; height: 26px; }
.mac-c__play:hover { background: #1e7fb8; transform: translate(-50%,-50%) scale(1.1); }
@keyframes macPlayPulse { 0%,100% { box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.18); } 50% { box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 14px rgba(255,255,255,.06); } }
.mac-c__play { animation: macPlayPulse 2.2s ease-in-out infinite; }
.mac-c__selo { position: absolute; bottom: 8px; right: 8px; width: 56px; height: 56px; object-fit: contain; z-index: 3; filter: drop-shadow(0 3px 8px rgba(0,0,0,.35)); }

/* ─────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────── */
.feat-g { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feat-c { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 22px; }
.feat-c.lt { background: var(--gray-50); border-color: var(--gray-200); }
.feat-t { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.feat-t.dk { color: var(--navy); }
.feat-d { font-size: 14.5px; color:rgba(255,255,255,.85); line-height: 1.65; }
.feat-d.dk { color: var(--gray-500); }

/* ─────────────────────────────────────────────
   FINANCING
───────────────────────────────────────────── */
.fin-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fin-c { background: #fff; border-radius: 14px; padding: 32px 22px; border: 2px solid var(--gray-200); position: relative; transition: all .25s; }
.fin-c:hover, .fin-c.pop { border-color: var(--blue); box-shadow: 0 8px 32px rgba(21,38,83,.14); }
.fin-bg { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.fin-n { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.fin-v { font-size: 48px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 3px; }
.fin-s { font-size: 12px; color: var(--gray-400); margin-bottom: 20px; }
.fin-ul { list-style: none; margin-bottom: 22px; }
.fin-ul li { font-size: 14.5px; color: var(--gray-500); padding: 7px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 7px; }
.fin-ul li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.con-g { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.con-ic { display: flex; align-items: flex-start; gap: 13px; padding: 16px; background: var(--gray-50); border-radius: var(--r); border: 1px solid var(--gray-200); margin-bottom: 12px; }
.con-ii { width: 40px; height: 40px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.con-ii svg { width: 18px; height: 18px; color: var(--blue); }
.con-social { display: flex; gap: 10px; }
.con-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.con-social a:hover { background: var(--blue); color: #fff; }
.con-social svg { width: 18px; height: 18px; }
.con-lb { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 3px; }
.con-vl { font-size: 14px; font-weight: 600; color: var(--navy); }
.con-fm { background: #fff; border-radius: var(--r-lg); padding: 34px; box-shadow: 0 8px 32px rgba(21,38,83,.12); border: 1px solid var(--gray-200); }
.fg { margin-bottom: 16px; }
.fl { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.fi, .fs, .ft { width: 100%; padding: 10px 14px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-family: inherit; font-size: 13px; color: var(--gray-700); outline: none; transition: border-color .18s; background: var(--gray-50); }
.fi:focus, .fs:focus, .ft:focus { border-color: var(--blue); background: #fff; }
.ft { resize: vertical; min-height: 120px; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cta { background: var(--navy); padding: 72px 64px; text-align: center; position: relative; overflow: hidden; }
.cta-g { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--blue); opacity: .07; filter: blur(90px); pointer-events: none; }
.cta-gl { top: -80px; left: -80px; }
.cta-gr { bottom: -80px; right: -80px; }
.cta h2 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.15; position: relative; }
.cta p { font-size: 16px; color:rgba(255,255,255,.7); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-bs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.sf { margin-left: var(--sw); background: var(--navy-deep); color:rgba(255,255,255,.8); padding: 56px 64px 28px; }
.sf-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 42px; }
.sf-br img { height: 28px; width: auto; max-width: 160px; margin-bottom: 14px; display: block; object-fit: contain; }
.sf-br .no-logo { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.sf-br p { font-size: 12px; line-height: 1.75; max-width: 230px; }
.sf-so { display: flex; gap: 8px; margin-top: 18px; }
.sf-so a { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: opacity .18s; }
.sf-so a:hover { opacity: .82; }
.sf-so svg { width: 16px; height: 16px; color: #fff; }
.sf-so-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.sf-so-fb { background: #1877F2; }
.sf-so-li { background: #0A66C2; }
.sf-so-ig, .sf-so-fb, .sf-so-li { color: #fff; }
.sf-so-ig svg, .sf-so-fb svg, .sf-so-li svg { color: #fff; }
.con-social a.sf-so-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.con-social a.sf-so-fb { background: #1877F2; }
.con-social a.sf-so-li { background: #0A66C2; }
.con-social a.sf-so-ig:hover, .con-social a.sf-so-fb:hover, .con-social a.sf-so-li:hover { opacity: .85; color: #fff; }
.sf-ct { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.sf-ul { list-style: none; }
.sf-ul li { margin-bottom: 8px; }
.sf-ul a { font-size: 12px; color:rgba(255,255,255,.8); transition: color .18s; }
.sf-ul a:hover { color: var(--blue); }
.sf-ci { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 12px; }
.sf-ci svg { width: 13px; height: 13px; margin-top: 2px; flex-shrink: 0; color: var(--blue); }
.sf-bt { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; flex-wrap: wrap; gap: 10px; }
.sf-ls { display: flex; gap: 14px; align-items: center; }
.sf-ls img { height: 18px; width: auto; object-fit: contain; }

/* ─────────────────────────────────────────────
   WHATSAPP
───────────────────────────────────────────── */
.wa { position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 500; transition: transform .2s; }
.wa:hover { transform: scale(1.1); }
.wa img { width: 28px; height: 28px; }

/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col > div, .con-g > div, .prod-detail-g > div { min-width: 0; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card { background: #fff; border-radius: var(--r); padding: 26px; border: 1px solid var(--gray-200); box-shadow: 0 2px 12px rgba(21,38,83,.08); transition: all .25s; }
.card:hover { box-shadow: 0 8px 32px rgba(21,38,83,.14); border-color: var(--blue); }
.pill { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.pill-nv { background: var(--navy); color: #fff; }
.pill-bl { background: var(--blue); color: #fff; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.img-r { border-radius: var(--r-lg); width: 100%; object-fit: cover; box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.mb8{margin-bottom:8px}.mb12{margin-bottom:12px}.mb16{margin-bottom:16px}.mb24{margin-bottom:24px}.mb32{margin-bottom:32px}
.mt16{margin-top:16px}.mt24{margin-top:24px}.mt32{margin-top:32px}
.w100{width:100%}.jc{justify-content:center}

/* ─────────────────────────────────────────────
   MOBILE NAV (bottom bar)
───────────────────────────────────────────── */
.mob-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); z-index: 400; padding: 6px 0; border-top: 1px solid rgba(255,255,255,.08); }
.mob-ni { display: flex; justify-content: space-around; }
.mob-it { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 5px 8px; color:rgba(255,255,255,.72); font-size: 9px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; transition: color .15s; }
.mob-it:hover, .mob-it.active { color: var(--blue); }
.mob-it svg { width: 21px; height: 21px; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

/* ─────────────────────────────────────────────
   CLASSES RESPONSIVAS REUTILIZÁVEIS
   (substituem inline grids dos templates)
───────────────────────────────────────────── */
.resp-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.resp-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.resp-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ─── 1440px — NOTEBOOKS GRANDES ─── */
@media(max-width:1440px) {
  .hero-cnt   { max-width: 620px; padding: 0 48px; }
}

/* ─── 1200px ─── */
@media(max-width:1200px) {
  .mac-g        { grid-template-columns: repeat(3,1fr); }
  .clients-g    { grid-template-columns: repeat(4,1fr); }
  .co-g         { grid-template-columns: repeat(3,1fr); }
  .sf-g         { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ─── 1024px ─── */
@media(max-width:1024px) {
  :root { --sw: 180px; }
  .hero-cnt h1  { font-size: 44px; }
  .hero-cnt     { max-width: 560px; padding: 0 36px; }
  .ph-cnt h1    { font-size: 38px; }
}

/* ─── 768px — TABLET (entre o breakpoint de notebook e o de mobile) ─── */
@media(max-width:768px) and (min-width:901px) {
  .hero-cnt   { max-width: 520px; padding: 0 32px; }
  .hero-cnt h1 { font-size: 36px; }
}
@media(max-width:768px) {
  .hero-cnt   { max-width: 480px; }
  .hero-cnt h1 { font-size: 32px; }
  .co-g       { grid-template-columns: 1fr 1fr; }
  .mac-g      { grid-template-columns: 1fr 1fr; }
  .ben-g      { grid-template-columns: 1fr 1fr; }
}

/* ─── LANDSCAPE DE CELULAR (viewport baixo e largo) — evita hero cortado ─── */
@media (max-height:480px) and (orientation:landscape) {
  .hero       { min-height: 100vh; padding: 90px 0 24px; }
  .hero-cnt h1 { font-size: 26px; }
  .hero-cnt p  { margin-bottom: 16px; }
  .hero-btns   { flex-direction: row; }
  .ph         { min-height: 100vh; }
}

/* ─── 900px — MOBILE ─── */
@media(max-width:900px) {
  /* Reset variáveis de layout */
  :root { --sw: 0px; --tbh: 56px; }

  /* Previne overflow horizontal global */
  html, body { overflow-x: hidden; max-width: 100vw; }
  * { box-sizing: border-box; }

  /* Sidebar some, topbar ocupa full width */
  .sidebar    { display: none !important; }
  .topbar     { left: 0 !important; right: 0; padding: 0 14px; }
  .tb-nav     { display: none !important; }
  .tb-ham     { display: flex !important; }
  .tb-search-btn { display: none; }

  /* Page wrapper sem margem esquerda */
  .pw         { margin-left: 0 !important; padding-top: var(--tbh); padding-bottom: 72px; }
  .sf         { margin-left: 0 !important; }

  /* Bottom nav mobile */
  .mob-nav    { display: block; }

  /* ── HERO ── */
  .hero       { min-height: 85vh; }
  .hero-cnt   { padding: 0 20px; max-width: 100%; }
  .hero-cnt h1 { font-size: 28px; line-height: 1.15; }
  .hero-cnt p  { font-size: 14px; }
  .hero-btns  { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* ── PAGE HERO (páginas internas) ── */
  .ph         { min-height: 60vh; }
  .ph-cnt     { padding: 80px 20px 40px; max-width: 100%; }
  .ph-cnt h1  { font-size: 26px; }
  .ph-bs      { flex-direction: column; gap: 10px; }
  .ph-bs .btn { width: 100%; justify-content: center; }

  /* ── STATS ── */
  .stats      { padding: 28px 20px; }
  .stats-g    { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .stat-v     { font-size: 26px; }

  /* ── SECTIONS ── */
  .sec        { padding: 48px 20px; }
  .cta        { padding: 48px 20px; }
  .cta h2     { font-size: 24px; }
  .cta-bs     { flex-direction: column; align-items: center; gap: 10px; }
  .cta-bs .btn { width: 100%; justify-content: center; }

  /* ── FOOTER ── */
  .sf         { padding: 40px 20px 24px; }
  .sf-g       { grid-template-columns: 1fr; gap: 28px; }
  .sf-bt      { flex-direction: column; align-items: center; text-align: center; gap: 12px; }

  /* ── GRIDS DE CONTEÚDO ── */
  .mac-g      { grid-template-columns: repeat(2,1fr); }
  .clients-g  { grid-template-columns: repeat(2,1fr); }
  .ben-g      { grid-template-columns: repeat(2,1fr); }
  .why-g      { grid-template-columns: repeat(2,1fr); }
  .co-g       { grid-template-columns: 1fr 1fr; }
  .fin-g      { grid-template-columns: 1fr; }
  .news-g     { grid-template-columns: 1fr; }
  .three-col  { grid-template-columns: 1fr; }
  .four-col   { grid-template-columns: repeat(2,1fr); }

  /* ── LAYOUTS DE DUAS COLUNAS ── */
  .about-g, .two-col, .dist-g, .con-g { grid-template-columns: 1fr; gap: 28px; }
  .feat-g     { grid-template-columns: 1fr; }

  /* ── TIMELINE ── */
  .timeline::before { display: none; }
  .tl-item    { grid-template-columns: 1fr; text-align: left !important; }
  .tl-left, .tl-right { padding: 0; text-align: left !important; }
  .tl-year    { margin: 12px 0; }

  /* ── CLASSES RESP-GRID ── */
  .resp-grid-2 { grid-template-columns: 1fr !important; }
  .resp-grid-3 { grid-template-columns: 1fr !important; }
  .resp-grid-4 { grid-template-columns: repeat(2,1fr) !important; }

  /* ── INLINE GRIDS (usados nos templates via style="") ── */
  /* Resolve grids hardcoded que não são cobertos pelas classes CSS */
  [style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="grid-template-columns:1fr 1fr"]  { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* direction:rtl nos projetos especiais — cancela em mobile */
  [style*="direction:rtl"] { direction: ltr !important; }

  /* Cards e formulários */
  .fr         { grid-template-columns: 1fr !important; }
  .con-fm     { padding: 20px; }

  /* Botão da topbar */
  .tb-cta     { font-size: 12px; padding: 7px 14px; }

  /* TZCO / parceiros em 2 colunas */
  [style*="grid-template-columns:1fr 1fr"][style*="max-width:900px"] { grid-template-columns: 1fr !important; }
}

/* ─── 480px — TELAS MUITO PEQUENAS ─── */
@media(max-width:480px) {
  .hero-cnt h1  { font-size: 24px; }
  .ph-cnt h1    { font-size: 22px; }
  .sec-t        { font-size: 26px; }
  .cta h2       { font-size: 22px; }

  .mac-g        { grid-template-columns: 1fr; }
  .ben-g        { grid-template-columns: 1fr; }
  .four-col     { grid-template-columns: 1fr; }
  .clients-g    { grid-template-columns: repeat(2,1fr); }
  .co-g         { grid-template-columns: 1fr; }
  .stats-g      { grid-template-columns: repeat(2,1fr); }

  /* Inline grids ainda menores */
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }

  /* Topbar CTA menor */
  .tb-cta { font-size: 11px; padding: 6px 10px; }

  /* Sidebar logo */
  .sb-logo-img { height: 30px; }

  /* Hero buttons empilhados */
  .btn-lg { padding: 12px 20px; font-size: 14px; }

  /* Cards de formulário */
  .con-fm { padding: 16px; }
  .fin-v  { font-size: 36px; }
}

/* ─────────────────────────────────────────────
   BANDEIRAS / IDIOMAS (topbar)
───────────────────────────────────────────── */
.tb-langs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}
.tb-lang {
  width: 26px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  opacity: .65;
  transition: opacity .18s, transform .18s;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}
.tb-lang:hover, .tb-lang.active { opacity: 1; transform: scale(1.1); border-color:rgba(255,255,255,.78); }

/* ─────────────────────────────────────────────
   VAGAS (Trabalhe Conosco)
───────────────────────────────────────────── */
.vagas-g {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.vaga-c {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(21,38,83,.07);
  transition: all .3s;
}
.vaga-c::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cat-yellow), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.vaga-c:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(21,38,83,.16); border-color: transparent; }
.vaga-c:hover::before { transform: scaleX(1); }
.vaga-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); background: var(--blue-light); padding: 5px 10px; border-radius: 20px; margin-bottom: 12px; }
.vaga-nm { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -.01em; }
.vaga-ds { font-size: 14.5px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.vaga-ft { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ─────────────────────────────────────────────
   PROJETOS ESPECIAIS — Slider/Fullwidth
───────────────────────────────────────────── */
.proj-photo-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.proj-photo-item { border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 2px 14px rgba(21,38,83,.08); }
.proj-photo-item img { width: 100%; height: 140px; object-fit: cover; display: block; }
.proj-photo-item span {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(21,38,83,.88), transparent);
  color: #fff; font-size: 11px; font-weight: 600; padding: 20px 10px 8px; text-align: center;
}
@media(max-width:900px) { .proj-photo-strip { grid-template-columns: repeat(3,1fr); } .proj-photo-item:nth-child(4), .proj-photo-item:nth-child(5) { display: none; } }
@media(max-width:480px) { .proj-photo-strip { grid-template-columns: repeat(2,1fr); } .proj-photo-item:nth-child(3) { display: none; } }

.proj-slider { position: relative; width: 100%; }
.proj-slide { display: none; }
.proj-slide.active { display: block; }
.proj-slide__img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}
.proj-slide__info {
  padding: 48px 64px;
  background: var(--navy);
  color: #fff;
}
.proj-slide__tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.proj-slide__title { font-size: 32px; font-weight: 800; margin-bottom: 12px; line-height: 1.15; }
.proj-slide__desc { font-size: 15px; color:rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 24px; max-width: 700px; }
.proj-slide__bs { display: flex; gap: 12px; }
.proj-nav { display: flex; gap: 8px; justify-content: center; padding: 20px; background: var(--navy-deep); }
.proj-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: all .2s; }
.proj-dot.active { width: 32px; border-radius: 5px; background: var(--blue); }
.proj-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; pointer-events: none; padding: 0 16px; }
.proj-arr { pointer-events: all; width: 46px; height: 46px; background: rgba(0,0,0,.45); border: 1.5px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.proj-arr:hover { background: rgba(53,155,214,.7); }

/* ─────────────────────────────────────────────
   AIZI — Cards de produtos (accordion)
───────────────────────────────────────────── */
.prod-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.prod-c {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(21,38,83,.06);
  transition: all .25s;
}
.prod-c:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(21,38,83,.12); }
.prod-c__hd {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
  background: #fff;
}
.prod-c__nm { font-size: 14px; font-weight: 700; color: var(--navy); }
.prod-c__ic { width: 24px; height: 24px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); font-size: 16px; transition: transform .25s; }
.prod-c.open .prod-c__ic { transform: rotate(45deg); }
.prod-c__bd { display: none; padding: 0 20px 18px; font-size: 13px; color: var(--gray-500); line-height: 1.7; border-top: 1px solid var(--gray-100); }
.prod-c.open .prod-c__bd { display: block; padding-top: 14px; }

/* Segmentos com imagem de bg */
.seg-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.seg-c {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  cursor: default;
}
.seg-c__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s; }
.seg-c:hover .seg-c__bg { transform: scale(1.06); }
.seg-c__ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(21,38,83,.85) 0%, rgba(21,38,83,.2) 100%); }
.seg-c__lb { position: relative; z-index: 2; padding: 16px; color: #fff; font-size: 14px; font-weight: 700; }

/* ─────────────────────────────────────────────
   AIZM — Galeria de imagens + vídeo
───────────────────────────────────────────── */
.gal-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gal-c { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; }
.gal-c img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gal-c:hover img { transform: scale(1.08); }

/* Galeria sofisticada — mosaico com destaque */
.gal-g--mosaic { grid-template-columns: repeat(4,1fr); grid-auto-rows: 130px; gap: 14px; }
.gal-g--mosaic .gal-c { aspect-ratio: auto; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.08); }
.gal-g--mosaic .gal-c--1 { grid-column: span 2; grid-row: span 2; }
.gal-g--mosaic .gal-c--4 { grid-column: span 2; grid-row: span 2; }
.gal-c__ov { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(0,0,0,.55) 100%); opacity: 0; transition: opacity .3s; }
.gal-c:hover .gal-c__ov { opacity: 1; }
@media (max-width:900px) {
  .gal-g--mosaic { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
  .gal-g--mosaic .gal-c--1, .gal-g--mosaic .gal-c--4 { grid-column: span 2; grid-row: span 1; }
}
.vid-yt { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; }
.vid-yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ─────────────────────────────────────────────
   LOGOS CLIENTES (sobre-nos)
───────────────────────────────────────────── */
.cl-logo-g { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; align-items: center; }
.cl-logo-i { background: #fff; border: 1px solid var(--gray-200); border-radius: 10px; padding: 12px 10px; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.cl-logo-i:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(21,38,83,.1); }
.cl-logo-i img { max-height: 32px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(0); opacity: 1; transition: all .3s; }
.cl-logo-i:hover img { filter: grayscale(1); opacity: .65; }

/* ─────────────────────────────────────────────
   AIZC — Cards de Guindastes
───────────────────────────────────────────── */
.crane-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.crane-c { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(21,38,83,.07); transition: all .25s; }
.crane-c:hover { box-shadow: 0 8px 28px rgba(21,38,83,.13); border-color: var(--blue); transform: translateY(-3px); }
.crane-c__img { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.crane-c__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.crane-c:hover .crane-c__img img { transform: scale(1.05); }
.crane-c__bd { padding: 18px; }
.crane-c__tag { display: flex; align-items: center; gap: 6px; color: var(--blue); margin-bottom: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.crane-c__tag svg { width: 16px; height: 16px; flex-shrink: 0; }
.crane-c__nm { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.crane-c__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
.crane-c__sp { font-size: 12.5px; color: var(--gray-500); }
.crane-c__sp strong { display: block; font-size: 13.5px; color: var(--navy); }

/* ─────────────────────────────────────────────
   SEJA UM PARCEIRO — LP
───────────────────────────────────────────── */
.parceiro-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 60%, #0d1a3a 100%);
  padding: 100px 64px 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.parceiro-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(53,155,214,.1);
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   RESPONSIVO — novos componentes
───────────────────────────────────────────── */
@media(max-width:900px) {
  .vagas-g     { grid-template-columns: 1fr; }
  .prod-g      { grid-template-columns: 1fr 1fr; }
  .seg-g       { grid-template-columns: repeat(2,1fr); }
  .gal-g       { grid-template-columns: 1fr 1fr; }
  .crane-g     { grid-template-columns: 1fr; }
  .cl-logo-g   { grid-template-columns: repeat(3,1fr); }
  .proj-slide__info { padding: 28px 20px; }
  .proj-slide__title { font-size: 22px; }
  .parceiro-hero { padding: 80px 20px 60px; }
}
@media(max-width:480px) {
  .prod-g    { grid-template-columns: 1fr; }
  .seg-g     { grid-template-columns: 1fr 1fr; }
  .gal-g     { grid-template-columns: 1fr; }
  .cl-logo-g { grid-template-columns: repeat(2,1fr); }
}

/* ─────────────────────────────────────────────
   TRADUÇÃO PT/EN
───────────────────────────────────────────── */
.en-text { display: none; }
.pt-text { display: inline; }
body.lang-en .en-text { display: inline; }
body.lang-en .pt-text { display: none; }
body.lang-en .en-block { display: block !important; }
body.lang-en .pt-block { display: none !important; }

/* ─────────────────────────────────────────────
   TIMELINE SLIDER (estilo Randon)
   Um slide por ano — imagem de fundo + texto
───────────────────────────────────────────── */
.tl-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.tl-slides {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  height: 340px;
}
.tl-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
}
.tl-slide__cnt {
  position: relative;
  z-index: 2;
  padding: 40px 64px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.tl-slide__year-big {
  font-size: 96px;
  font-weight: 900;
  color: var(--cat-yellow);
  line-height: 1;
  opacity: .3;
  flex-shrink: 0;
  letter-spacing: -.04em;
}
.tl-slide__info { flex: 1; }
.tl-slide__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.tl-slide__year-label {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.tl-slide__desc {
  font-size: 15px;
  color:rgba(255,255,255,.8);
  line-height: 1.75;
  max-width: 600px;
}

/* Navegação da timeline */
.tl-nav {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
}
.tl-nav::-webkit-scrollbar { display: none; }
.tl-nav::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(255,255,255,.12);
  z-index: 0;
}
.tl-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color:rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color .2s;
}
.tl-nav-btn::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 2px solid rgba(255,255,255,.25);
  display: block;
  transition: all .2s;
}
.tl-nav-btn.active {
  color: #fff;
}
.tl-nav-btn.active::before {
  background: var(--cat-yellow);
  border-color: var(--cat-yellow);
  box-shadow: 0 0 0 4px rgba(255,205,17,.35);
}
.tl-nav-btn:hover { color:rgba(255,255,255,.8); }

/* Setas */
.tl-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.tl-arr:hover { background: rgba(53,155,214,.5); }
.tl-arr-l { left: 16px; }
.tl-arr-r { right: 16px; }

@media(max-width:900px) {
  .tl-slides { height: 300px; }
  .tl-slide__cnt { padding: 24px 20px; gap: 16px; }
  .tl-slide__year-big { font-size: 56px; }
  .tl-slide__year-label { font-size: 20px; }
  .tl-slide__desc { font-size: 13px; }
  .tl-nav-btn { padding: 14px 16px; font-size: 11px; }
}
@media(max-width:480px) {
  .tl-slides { height: 280px; }
  .tl-slide__year-big { display: none; }
}

/* ─────────────────────────────────────────────
   AIZI — Cards de produtos 2 colunas grandes
───────────────────────────────────────────── */
.prod-detail-g { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; overflow: visible; }
.prod-detail-c {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21,38,83,.08);
  transition: all .28s;
}
.prod-detail-c:hover { box-shadow: 0 12px 40px rgba(21,38,83,.15); border-color: var(--blue); transform: translateY(-4px); }
.prod-detail-c__img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.prod-detail-c__img img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.prod-detail-c:hover .prod-detail-c__img img { transform: scale(1.05); }
.prod-detail-c__bd { padding: 24px; }
.prod-detail-c__tag { font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--blue);margin-bottom:8px; }
.prod-detail-c__nm { font-size:20px;font-weight:800;color:var(--navy);margin-bottom:12px;line-height:1.2; }
.prod-detail-c__desc { font-size:13px;color:var(--gray-500);line-height:1.75;margin-bottom:18px; }
.prod-detail-c__specs { display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:18px;padding:14px;background:var(--gray-50);border-radius:10px; }
.prod-detail-c__sp strong { display:block;font-size:13px;font-weight:700;color:var(--navy); }
.prod-detail-c__sp span { font-size:11px;color:var(--gray-400); }
.prod-detail-c__ft { display:flex;gap:10px;flex-wrap:wrap; }

@media(max-width:900px) {
  .tl-modern { overflow-x: scroll; padding: 20px 0; }
  .prod-detail-g { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────
   GOOGLE TRANSLATE — esconder UI padrão do Google
   e impedir que ele empurre o layout para baixo
───────────────────────────────────────────── */
.goog-te-banner-frame,
.skiptranslate.goog-te-gadget > span,
#google_translate_element {
  display: none !important;
}
body { top: 0 !important; }
body.translated-ltr, body.translated-rtl { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ── Clients grid (Home + Sobre Nós) ────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px 32px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  min-height: 72px;
  width: 100%;
  transition: box-shadow .2s, border-color .2s;
}
.client-logo-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-color: #c2c9d2;
}
@media (max-width:600px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .client-logo-item { padding: 8px; min-height: 60px; }
  .client-logo-item img { max-width: 100% !important; max-height: 44px !important; }
}

/* =============================================
   AJUSTE — Padronização de tamanho de texto (v11.1)
   Corpo de texto uniformizado em 17px para melhor legibilidade.
   Títulos (h1-h4, .sec-t, .mac-nm, .prod-detail-c__nm) e rótulos
   pequenos (eyebrows/tags em caixa alta) NÃO foram alterados de propósito
   -- ver observação para o cliente sobre esses dois grupos.
   ============================================= */
body { font-size: 17px; }

.ic-inline { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; vertical-align: -3px; margin-right: 5px; }
.ic-inline svg { width: 100%; height: 100%; }

.sec-sub,
.feat-d,
.ben-d,
.prod-detail-c__desc,
.tl-content p,
.cta p,
.con-ds,
p.sec-sub,
.two-col p,
.ph-cnt p,
.hero-cnt p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
