/* ==========================================================================
   BioLife — folha de estilo principal (v2, fidelidade ao Figma)
   Azul #009FE3 · Navy #0E3A55 · Lima #A6E85C · Verde #8DC63F · Inter
   ========================================================================== */

:root {
  --azul: #009FE3;
  --azul-2: #38b6ea;
  --navy: #0E3A55;
  --navy-2: #123A52;
  --navy-escuro: #0A2536;
  --lima: #A6E85C;          /* destaque de texto / detalhes */
  --verde: #8DC63F;         /* botões primários */
  --verde-escuro: #77b02f;
  --texto: #1B3A4B;
  --texto-suave: #56707F;
  --cinza-bg: #F3F8FB;      /* seções alternadas */
  --borda: #E4ECF1;
  --branco: #fff;
  --sombra: 0 12px 34px rgba(14,58,85,.09);
  --sombra-hover: 0 22px 48px rgba(14,58,85,.16);
  --raio: 18px;
  --raio-sm: 12px;
  --container: 1180px;
  --header-h: 86px;
  font-synthesis: none;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--texto); background: var(--branco); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn-verde { background: var(--verde); color: #14330a; }
.btn-verde:hover { background: var(--verde-escuro); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(141,198,63,.4); }
.btn-azul { background: var(--azul); color: #fff; }
.btn-azul:hover { background: #0089c4; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,159,227,.35); }
.pm-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.pm-actions .btn { flex: 1 1 auto; justify-content: center; min-width: 150px; padding: 13px 20px; font-size: 14px; }
.pm-fab { margin: 0 0 12px; font-size: 13.5px; color: var(--texto-suave); }
.pm-fab strong { color: var(--azul); font-weight: 700; }
.btn-navy { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-navy:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-navy .wpp-ico { color: var(--lima); }
.btn-outline { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn-outline:hover { background: var(--azul); color: #fff; transform: translateY(-2px); }

/* ---------- títulos ---------- */
.section { padding: 62px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--azul); margin-bottom: 12px; }
.section-title { font-size: clamp(23px, 2.8vw, 33px); font-weight: 700; color: var(--texto); margin: 0 0 14px; line-height: 1.18; text-transform: uppercase; letter-spacing: .4px; }
.section-sub { color: var(--texto-suave); font-size: 17px; margin: 0; }
.center { text-align: center; margin-top: 48px; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(255,255,255,.97); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 4px 22px rgba(14,58,85,.08); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 50px; width: auto; display: block; filter: brightness(0) invert(1); transition: filter .3s; }
.site-header.scrolled .brand img { filter: none; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14.5px; font-weight: 500; color: #fff; position: relative; padding: 6px 0; white-space: nowrap; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--lima); transition: width .2s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.site-header.scrolled .nav a { color: var(--texto); }
.site-header.scrolled .nav a:hover, .site-header.scrolled .nav a.active { color: var(--azul); }
.nav-search { background: none; border: none; cursor: pointer; color: #fff; padding: 6px; display: grid; place-items: center; }
.site-header.scrolled .nav-search { color: var(--texto); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }
.site-header.scrolled .nav-toggle span { background: var(--texto); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 720px; display: flex; align-items: center;
  padding: calc(var(--header-h) + 30px) 0 60px; overflow: hidden; color: #fff;
  background:
    radial-gradient(1100px 700px at 78% 38%, rgba(0,159,227,.55), transparent 60%),
    radial-gradient(900px 600px at 15% 90%, rgba(0,159,227,.25), transparent 60%),
    linear-gradient(120deg, var(--navy-escuro) 0%, var(--navy) 55%, #0f4e73 100%);
}
/* malha de constelação (SVG) */
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .85; pointer-events: none;
  background: url('../img/hero-mesh.svg') center/cover no-repeat;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(34px, 4.4vw, 54px); line-height: 1.06; font-weight: 600; margin: 0 0 24px; letter-spacing: -.5px; }
.hero-copy h1 .destaque { color: var(--lima); }
.hero-copy p { font-size: clamp(17px, 1.5vw, 21px); font-weight: 400; color: rgba(255,255,255,.9); max-width: 560px; margin: 0 0 34px; }

/* diagrama circular de produtos (donut) */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.hero-donut { position: relative; width: min(460px, 92%); aspect-ratio: 1; }
.hero-donut .ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,159,227,.28), rgba(10,37,54,0) 68%);
  border: 1px solid rgba(255,255,255,.14);
  animation: spin 44s linear infinite;
}
.hero-donut .ring::after { content: ""; position: absolute; inset: 16%; border-radius: 50%; border: 1px dashed rgba(255,255,255,.2); }
.hero-donut .core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 34%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--azul), #0f4e73);
  display: grid; place-items: center; box-shadow: 0 0 40px rgba(0,159,227,.5), inset 0 0 30px rgba(255,255,255,.12);
  z-index: 3;
}
.hero-donut .core img { width: 78%; height: 78%; object-fit: contain; }
.hero-chip {
  position: absolute; top: 50%; left: 50%; width: 92px; height: 92px; margin: -46px 0 0 -46px;
  border-radius: 20px; background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.28);
  display: grid; place-items: center; padding: 5px; overflow: hidden;
  transform: rotate(var(--a)) translateY(calc(-1 * min(180px, 40vw))) rotate(calc(-1 * var(--a)));
  animation: spin-rev 44s linear infinite;
}
.hero-chip img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; }
.hero-chip svg { width: 100%; height: 100%; display: block; }
.hero-donut.paused .ring, .hero-donut.paused .hero-chip { animation-play-state: paused; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: rotate(var(--a)) translateY(calc(-1 * min(180px,40vw))) rotate(calc(-1 * var(--a))); }
  to { transform: rotate(calc(var(--a) - 360deg)) translateY(calc(-1 * min(180px,40vw))) rotate(calc(360deg - var(--a))); } }
/* Rotação do diagrama do topo mantida mesmo com "reduzir movimento" (a pedido). */

/* ==========================================================================
   PRODUTOS
   ========================================================================== */
.produtos {
  background:
    linear-gradient(rgba(243,248,251,.93), rgba(240,247,251,.96)),
    url('https://images.pexels.com/photos/15456810/pexels-photo-15456810.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
/* ---- Carrossel coverflow de produtos ---- */
.produtos-carousel {
  position: relative; height: 400px; margin: 10px auto 0; max-width: 1080px;
  perspective: 1700px; overflow: hidden; touch-action: pan-y;
  -webkit-user-select: none; user-select: none;
}
.pc-track { position: absolute; inset: 0; transform-style: preserve-3d; }
.pc-slide {
  position: absolute; top: 50%; left: 50%; width: 300px; height: 356px;
  margin: -178px 0 0 -150px; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--borda); border-radius: 18px; overflow: hidden;
  box-shadow: 0 14px 34px rgba(14,58,85,.14); text-decoration: none; cursor: pointer;
  transition: transform .55s cubic-bezier(.22,.61,.36,1), opacity .55s, box-shadow .3s;
  will-change: transform, opacity; backface-visibility: hidden;
}
.pc-slide .pc-img { display: block; flex: 1; background: #eaf3f8; overflow: hidden; }
.pc-slide .pc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-slide .pc-name {
  padding: 15px 16px; font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--texto);
  text-align: center; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-slide.is-center { box-shadow: 0 26px 60px rgba(14,58,85,.30); cursor: pointer; }
.pc-slide.is-center::after {
  content: ""; position: absolute; inset: 0; border: 2px solid var(--azul); border-radius: 18px;
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.pc-slide.is-center:hover::after { opacity: 1; }
.pc-dots { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.pc-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(14,58,85,.22); transition: background .25s, transform .25s;
}
.pc-dot:hover { background: rgba(14,58,85,.4); }
.pc-dot.is-active { background: var(--azul); transform: scale(1.3); }

/* ==========================================================================
   DIFERENCIAIS (seção azul + cards de vidro)
   ========================================================================== */
.porque {
  background:
    linear-gradient(135deg, rgba(210,233,248,.94) 0%, rgba(186,221,242,.93) 130%),
    url('https://images.pexels.com/photos/32026163/pexels-photo-32026163.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
.section-title .hl { color: var(--azul); }
.produtos .section-sub { font-size: 18.5px; line-height: 1.6; }
.porque .section-head { max-width: 880px; }
.porque-texto { text-align: center; font-size: 18.5px; line-height: 1.6; }
.porque-texto p { margin: 0 0 12px; }
.porque-texto p:last-child { margin: 0; }
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dif-card { display: flex; flex-direction: column; align-items: flex-start; background: #fff; border: 1px solid var(--borda); border-radius: 14px; padding: 20px 20px; transition: transform .2s, box-shadow .2s, border-color .2s; box-shadow: 0 6px 20px rgba(14,58,85,.04); }
.dif-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); border-color: #cfe3ee; }
.dif-card .ico { width: 38px; height: 38px; margin-bottom: 14px; color: var(--navy); }
.dif-card .ico svg { width: 38px; height: 38px; }
.dif-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; color: var(--texto); }
.dif-card p { margin: 0; color: var(--texto-suave); font-size: 13.5px; line-height: 1.55; }

/* ==========================================================================
   ÁREAS DE ATUAÇÃO  (esquerda: título + subtítulo + foto | direita: lista)
   ========================================================================== */
.areas {
  background:
    linear-gradient(155deg, rgba(231,242,250,.93), rgba(234,244,251,.96)),
    url('https://images.pexels.com/photos/30964696/pexels-photo-30964696.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
.areas .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: stretch; }
.areas-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.areas-head .section-title { text-align: center; }
.areas-head .section-sub { text-align: center; margin: 0; }
.areas .foto { border-radius: var(--raio); box-shadow: var(--sombra); position: relative;
  background: linear-gradient(160deg, var(--azul), var(--navy)); }
.areas .foto::before { content: ""; position: absolute; left: -20px; bottom: -20px; width: 60%; height: 60%; background: rgba(141,198,63,.45); border-radius: var(--raio); z-index: 0; }
.areas .foto .ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.5); z-index: 1; }
.areas .foto .ph svg { width: 120px; height: 120px; }
.areas .foto img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; border-radius: var(--raio); }
.areas-list { display: grid; gap: 22px; padding-top: 0; }
.areas-cta { text-align: center; margin-top: 88px; }
.area-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.area-item .ico { width: 56px; height: 56px; border-radius: 50%; background: #EAF6FC; color: var(--azul); display: grid; place-items: center; }
.area-item .ico svg { width: 26px; height: 26px; }
.area-item h3 { margin: 4px 0 6px; font-size: 18px; color: var(--texto); }
.area-item p { margin: 0; color: var(--texto-suave); font-size: 15px; }

/* ==========================================================================
   FABRICANTES / PARCEIROS — marquee
   ========================================================================== */
.parceiros-unificado {
  position: relative; overflow: hidden;
  background:
    linear-gradient(120deg, rgba(224,240,250,.95) 0%, rgba(203,229,246,.93) 130%),
    url('https://images.pexels.com/photos/16571733/pexels-photo-16571733.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
.parceiros-unificado .section-title .destaque { color: var(--azul); }
.parceiros-unificado .section-head { max-width: 940px; margin-bottom: 38px; }
.parceiros-unificado .section-sub { font-size: 15.5px; }
.parceiros-unificado { overflow: hidden; }
.parceiros-unificado .marquee { margin: 8px 0; }
.parceiros-unificado .center { margin-top: 40px; }
.marquee { position: relative; width: 100%; }
.marquee-track { display: flex; flex-wrap: nowrap; align-items: center; gap: 52px; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { flex: 0 0 auto; }
.marquee-item img { height: 46px; width: auto; opacity: 1; transition: transform .25s; }
.marquee-item:hover img { transform: scale(1.06); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* bloco institucional */
.institucional {
  background:
    linear-gradient(120deg, rgba(230,244,251,.95) 0%, rgba(212,236,249,.92) 130%),
    url('https://images.pexels.com/photos/16571733/pexels-photo-16571733.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: var(--texto); position: relative; overflow: hidden; padding: 46px 0;
}
.institucional::before { content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(600px 400px at 15% 20%, rgba(0,159,227,.06), transparent 60%); }
.institucional .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.institucional h2 { font-size: clamp(22px, 2.8vw, 31px); margin: 0 0 18px; line-height: 1.2; text-transform: uppercase; letter-spacing: .4px; }
.institucional h2 .destaque { color: var(--azul); }
.institucional p { color: var(--texto-suave); font-size: 16px; margin: 0 0 24px; }
.institucional .foto { border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra); min-height: 230px; max-height: 300px; position: relative;
  background: linear-gradient(160deg, #eaf3f8, #dceaf2); border: 1px solid var(--borda); }
.institucional .foto .ph { position:absolute; inset:0; display:grid; place-items:center; color: rgba(255,255,255,.45); }
.institucional .foto .ph svg { width: 130px; height: 130px; }
.institucional .foto img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
.quemsomos {
  background:
    linear-gradient(135deg, rgba(210,233,248,.94) 0%, rgba(186,221,242,.93) 120%),
    url('https://images.pexels.com/photos/4483327/pexels-photo-4483327.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
.quemsomos .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.quemsomos .qs-texto { padding-top: 4px; }
.quemsomos .qs-form .contato-form { height: auto; margin: 0; }
.quemsomos .eyebrow { margin-top: 0; }
.quemsomos .section-title { text-align: left; }
.quemsomos .qs-texto p { color: var(--texto-suave); font-size: 17px; margin: 0 0 18px; max-width: 560px; }
.quemsomos .qs-texto strong { color: var(--texto); }
.quemsomos .qs-sub { font-size: 15px !important; color: #7f95a2 !important; }
.quemsomos .qs-art { display: grid; place-items: center; }
.quemsomos .qs-art img { width: min(420px, 90%); height: auto; }

/* ==========================================================================
   NOTÍCIAS
   ========================================================================== */
.noticias {
  padding: 50px 0;
  background:
    linear-gradient(rgba(255,255,255,.93), rgba(240,247,251,.96)),
    url('https://images.pexels.com/photos/33812023/pexels-photo-33812023.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
.noticias .section-head { margin-bottom: 22px; }
.news-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 22px; }
.news-featured { background: #fff; border: 1px solid var(--borda); border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra); transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.news-featured:hover { transform: translateY(-5px); box-shadow: var(--sombra-hover); }
.news-featured .img { flex: 0 0 auto; aspect-ratio: 21/9; max-height: 215px; background: var(--navy); }
.news-featured .body { flex: 0 0 auto; }
.news-featured .img img { width: 100%; height: 100%; object-fit: cover; }
.news-featured .body { padding: 16px; }
.news-featured .data { color: var(--azul); font-size: 12px; font-weight: 700; letter-spacing: .3px; }
.news-featured h3 { font-size: 18px; margin: 8px 0 7px; color: var(--texto); line-height: 1.3; }
.news-featured p { color: var(--texto-suave); font-size: 14px; margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-featured .btn { padding: 8px 18px; font-size: 13px; }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-list .news-item { flex: 1; min-height: 0; }
.news-item { display: grid; grid-template-columns: 104px 1fr; gap: 12px; background: #fff; border: 1px solid var(--borda); border-radius: var(--raio-sm); overflow: hidden; box-shadow: var(--sombra); transition: transform .2s; }
.news-item:hover { transform: translateY(-3px); }
.news-item .img { background: linear-gradient(160deg, var(--azul), var(--navy)); }
.news-item .img img { width: 100%; height: 100%; object-fit: cover; }
.news-item .body { padding: 9px 10px 9px 0; display: flex; flex-direction: column; justify-content: center; }
.news-item .data { color: var(--azul); font-size: 11px; font-weight: 700; }
.news-item h4 { font-size: 14px; margin: 4px 0 4px; color: var(--texto); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-item p { font-size: 12.5px; color: var(--texto-suave); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ==========================================================================
   LOCALIZAÇÃO / CONTATO
   ========================================================================== */
.local { background: radial-gradient(700px 480px at 0% 0%, rgba(0,159,227,.05), transparent 60%), #fff; }
.local .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: stretch; }
.local .info { display: flex; flex-direction: column; }
.local .info h2 { font-size: clamp(22px, 2.8vw, 31px); margin: 0 0 26px; text-transform: uppercase; letter-spacing: .4px; }
.contato-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contato-item .ico { flex: 0 0 48px; height: 48px; border-radius: 14px; background: #EAF6FC; color: var(--azul); display: grid; place-items: center; }
.contato-item .ico svg { width: 22px; height: 22px; }
.contato-item strong { display: block; color: var(--texto); margin-bottom: 2px; }
.contato-item span, .contato-item a { color: var(--texto-suave); font-size: 15px; }
.local .map { border-radius: var(--raio); overflow: hidden; min-height: 360px; box-shadow: var(--sombra); }
.local .map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-escuro); color: rgba(255,255,255,.78); padding: 60px 0 0; font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
.site-footer, .site-footer a, .site-footer p, .site-footer li, .site-footer h4 { font-family: inherit; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.site-footer .brand-footer img { height: 52px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.site-footer .brand-footer p { font-size: 14.5px; max-width: 340px; }
.site-footer h4 { color: #fff; font-size: 16px; margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 11px; font-size: 14px; }
.site-footer a:hover { color: var(--lima); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.55); }
.footer-dev { text-align: center; padding: 0 0 18px; font-size: 12.5px; color: rgba(255,255,255,.42); }
.footer-dev strong { color: rgba(255,255,255,.72); font-weight: 700; }

/* WhatsApp flutuante */
.wpp-float { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: transform .2s; }
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 30px; height: 30px; }

/* ==========================================================================
   ACESSIBILIDADE / ANIMAÇÕES / COMPONENTES NOVOS
   ========================================================================== */
.skip-link { position: absolute; left: 12px; top: -60px; background: #fff; color: var(--azul); padding: 10px 16px; border-radius: 8px; z-index: 200; box-shadow: var(--sombra); transition: top .2s; font-weight: 600; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--azul); outline-offset: 2px; border-radius: 4px; }

.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

.btn-ghost { background: transparent; color: var(--texto); border: 1px solid var(--borda); }
.btn-ghost:hover { background: var(--cinza-bg); transform: translateY(-2px); }

/* busca */
.nav-search[data-icon] svg { width: 20px; height: 20px; }
.search-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(10,37,54,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); display: none; padding: 12vh 16px 16px; }
.search-overlay.open { display: block; }
.search-box { width: min(640px, 100%); margin: 0 auto; background: #fff; border-radius: var(--raio); box-shadow: var(--sombra-hover); overflow: hidden; }
.search-field { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--borda); }
.search-field .search-ico svg { width: 22px; height: 22px; color: var(--azul); }
.search-field input { flex: 1; border: 0; font-size: 17px; outline: none; font-family: inherit; color: var(--texto); background: transparent; }
.search-close { background: none; border: 0; cursor: pointer; color: var(--texto-suave); padding: 4px; }
.search-close svg { width: 22px; height: 22px; }
.search-results { max-height: 52vh; overflow: auto; }
.search-hit { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--borda); }
.search-hit:hover { background: var(--cinza-bg); }
.sh-nome { font-weight: 600; color: var(--texto); }
.sh-cat { font-size: 12px; color: var(--azul); text-transform: uppercase; letter-spacing: .4px; white-space: nowrap; }
.search-empty { padding: 20px 18px; color: var(--texto-suave); }

/* indicadores */
.stats-band { background: #fff; border-bottom: 1px solid var(--borda); }
/* seções desativadas no admin (applySecoes) */
.section[hidden], .stats-band[hidden] { display: none !important; }
.stats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 56px; padding: 52px 0; }
.stat { text-align: center; flex: 0 1 190px; }
.stat-num { font-size: clamp(34px, 4.2vw, 52px); font-weight: 800; color: var(--azul); line-height: 1; }
.stat-num .suf { font-size: .5em; font-weight: 700; color: var(--navy); }
.stat-num .ct { font-variant-numeric: tabular-nums; }
.stat-label { margin-top: 10px; color: var(--texto-suave); font-size: 15.5px; }

/* certificações */
.certificacoes { background: var(--cinza-bg); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cert-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--borda); border-radius: var(--raio); padding: 22px; box-shadow: var(--sombra); }
.cert-card .ico { flex: 0 0 44px; height: 44px; border-radius: 12px; background: #EAF6FC; color: var(--azul); display: grid; place-items: center; }
.cert-card .ico svg { width: 24px; height: 24px; }
.cert-card h3 { margin: 2px 0 6px; font-size: 16px; color: var(--texto); }
.cert-card p { margin: 0; font-size: 13.5px; color: var(--texto-suave); }

/* formulário de contato */
.contato-form { margin-top: 0; height: 100%; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--borda); border-radius: var(--raio); padding: 24px; box-shadow: var(--sombra); }
.contato-form h3 { margin: 0 0 16px; font-size: 18px; color: var(--texto); }
.contato-form textarea { flex: 1; min-height: 140px; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contato-form input, .contato-form textarea { width: 100%; margin-bottom: 12px; padding: 12px 14px; border: 1px solid var(--borda); border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--texto); background: #fdfefe; }
.contato-form textarea { resize: vertical; }
.contato-form input:focus, .contato-form textarea:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 3px rgba(0,159,227,.15); }
.contato-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.contato-form .btn { width: 100%; justify-content: center; }
.form-status { margin: 12px 0 0; font-size: 14px; min-height: 1em; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #c0392b; }
.form-status a { color: var(--azul); text-decoration: underline; }

/* ---------- Contato + mapa ---------- */
.contato-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contato-col { display: flex; flex-direction: column; }
.contato-dados { list-style: none; padding: 0; margin: 16px 0 0; color: var(--texto-suave); font-size: 14px; }
.contato-dados li { padding: 5px 0; }
.contato-dados strong { color: var(--texto); }
.contato-dados a { color: var(--azul); text-decoration: none; }
.contato-dados a:hover { text-decoration: underline; }
.contato-mapa { width: 100%; flex: 1; min-height: 360px; border: 0; border-radius: var(--raio); box-shadow: var(--sombra); }
@media (max-width: 860px) { .contato-wrap { grid-template-columns: 1fr; } .contato-mapa { min-height: 260px; } }

/* ---------- filtro de fabricante (catálogo) ---------- */
.cat-selects { display: flex; gap: 12px; flex-wrap: wrap; }
.cat-fab select { border: 1px solid var(--borda); border-radius: 999px; padding: 9px 16px; font-family: inherit; font-size: 14px; color: var(--texto); background: #fff; cursor: pointer; max-width: 240px; }
.cat-fab select:focus { outline: 2px solid var(--azul); border-color: var(--azul); }

/* ---------- página do fabricante ---------- */
/* páginas internas de fundo claro: header sempre sólido e legível */
.inner-page .site-header { background: rgba(255,255,255,.97); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 4px 22px rgba(14,58,85,.08); }
.inner-page .site-header .brand img { filter: none; }
.inner-page .site-header .nav a { color: var(--texto); }
.inner-page .site-header .nav a:hover, .inner-page .site-header .nav a.active { color: var(--azul); }
.inner-page .site-header .nav-search { color: var(--texto); }
.inner-page .site-header .nav-toggle span { background: var(--texto); }

.parceiro-page { padding-top: calc(var(--header-h) + 26px); }
.parceiro-back { display: inline-block; margin-bottom: 18px; color: var(--azul); text-decoration: none; font-size: 14px; font-weight: 600; }
.parceiro-back:hover { text-decoration: underline; }
.parceiro-header { display: flex; align-items: center; gap: 24px; background: #fff; border: 1px solid var(--borda); border-radius: var(--raio); padding: 26px 28px; box-shadow: var(--sombra); margin-bottom: 30px; flex-wrap: wrap; }
.parceiro-header .par-logo { flex: 0 0 auto; width: 130px; height: 90px; display: grid; place-items: center; background: #f4f8fb; border-radius: 12px; padding: 10px; }
.parceiro-header .par-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.parceiro-header .par-info { flex: 1; min-width: 240px; }
.parceiro-header .par-info h1 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 32px); color: var(--navy); }
.parceiro-header .par-info p { margin: 0; color: var(--texto-suave); font-size: 16px; line-height: 1.6; }
.parceiro-sub { font-size: 14px; text-transform: uppercase; letter-spacing: .5px; color: var(--azul); font-weight: 700; margin: 0 0 16px; }

/* footer: social + legal */
.social { display: flex; gap: 12px; margin-top: 16px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: #fff; transition: background .2s, color .2s; }
.social a:hover { background: var(--verde); color: #14330a; }
.social svg { width: 20px; height: 20px; }
.footer-bottom { display: flex; flex-direction: column; gap: 4px; }

/* banner LGPD */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 160; background: #fff; border: 1px solid var(--borda); border-radius: var(--raio); box-shadow: var(--sombra-hover); padding: 18px 22px; display: none; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 14px; color: var(--texto-suave); }
.cookie-banner a { color: var(--azul); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-actions .btn { padding: 10px 20px; font-size: 14px; }

/* ==========================================================================
   PÁGINA DE PRODUTOS
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: calc(var(--header-h) + 46px) 0 50px;
  background:
    radial-gradient(700px 380px at 80% 20%, rgba(0,159,227,.45), transparent 60%),
    linear-gradient(120deg, var(--navy-escuro) 0%, var(--navy) 55%, #0f4e73 100%);
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: url('../img/hero-mesh.svg') center/cover no-repeat; opacity: .5; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .crumb { font-size: 13px; color: rgba(255,255,255,.72); margin: 0 0 12px; }
.page-hero .crumb a:hover { color: var(--lima); }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 12px; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 660px; margin: 0 auto; font-size: 16px; }

.catalogo { background: #fff; }
.catalog-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.cat-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--borda); background: #fff; color: var(--texto-suave); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: background .2s, color .2s, border-color .2s; font-family: inherit; }
.cat-chip:hover { border-color: var(--azul); color: var(--azul); }
.cat-chip.active { background: var(--azul); border-color: var(--azul); color: #fff; }
.cat-search { position: relative; }
.cat-search .cs-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--texto-suave); display: grid; }
.cat-search .cs-ico svg { width: 18px; height: 18px; }
.cat-search input { padding: 11px 16px 11px 40px; border: 1px solid var(--borda); border-radius: 999px; font-family: inherit; font-size: 14px; min-width: 240px; color: var(--texto); background: #fff; }
.cat-search input:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 3px rgba(0,159,227,.15); }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prod-card { background: #fff; border: 1px solid var(--borda); border-radius: var(--raio-sm); overflow: hidden; box-shadow: var(--sombra); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); }
.prod-card .img { aspect-ratio: 4/3; background: #eaf3f8; overflow: hidden; }
.prod-card .img img { width: 100%; height: 100%; object-fit: cover; }
.prod-card .body { padding: 13px 14px; display: flex; flex-direction: column; flex: 1; }
.prod-card .cat { font-size: 10px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--azul); margin-bottom: 4px; }
.prod-card h3 { font-size: 14.5px; margin: 0 0 6px; color: var(--texto); line-height: 1.3; }
.prod-card p { font-size: 12.5px; color: var(--texto-suave); margin: 0 0 12px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card .btn { align-self: flex-start; padding: 7px 14px; font-size: 12.5px; }
.prod-empty { text-align: center; color: var(--texto-suave); padding: 40px 0; }
.prod-card { cursor: pointer; }

/* modal de detalhes do produto */
body.no-scroll { overflow: hidden; }
.prod-modal { position: fixed; inset: 0; z-index: 200; display: none; background: rgba(10,37,54,.6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 5vh 16px; overflow-y: auto; }
.prod-modal.open { display: block; }
.prod-modal-box { width: min(940px, 100%); margin: 0 auto; background: #fff; border-radius: var(--raio); box-shadow: var(--sombra-hover); position: relative; overflow: hidden; }
.pm-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); cursor: pointer; display: grid; place-items: center; color: var(--texto); box-shadow: var(--sombra); }
.pm-close svg { width: 22px; height: 22px; }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; }
.pm-gallery { background: #eaf3f8; padding: 24px; }
.pm-main { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: var(--sombra); }
.pm-main img { width: 100%; height: 100%; object-fit: cover; }
.pm-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pm-thumbs img { width: 62px; height: 62px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; }
.pm-thumbs img.active, .pm-thumbs img:hover { border-color: var(--azul); }
.pm-info { padding: 34px 32px; }
.pm-info .cat { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--azul); }
.pm-info h2 { font-size: clamp(22px, 3vw, 28px); margin: 8px 0 16px; color: var(--texto); line-height: 1.25; }
.pm-desc { color: var(--texto-suave); font-size: 15px; line-height: 1.7; }
.pm-desc p { margin: 0 0 12px; }
.pm-specs { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 9px; }
.pm-specs li { position: relative; padding-left: 24px; color: var(--texto); font-size: 14.5px; }
.pm-specs li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--verde); }
.pm-info .btn { width: fit-content; }

/* ==========================================================================
   BLOG / NOTÍCIAS
   ========================================================================== */
.blog-list { background: #fff; }
.blog-featured { display: grid; grid-template-columns: 1.1fr .9fr; margin-bottom: 40px; }
.blog-featured .img { aspect-ratio: auto; height: 100%; min-height: 300px; }
.blog-featured .img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured .body { padding: 34px; display: flex; flex-direction: column; justify-content: center; }

.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.post-card { background: #fff; border: 1px solid var(--borda); border-radius: var(--raio-sm); overflow: hidden; box-shadow: var(--sombra); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); }
.post-card .img { aspect-ratio: 16/10; background: #eaf3f8; overflow: hidden; }
.post-card .img img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.post-meta .tag { font-size: 10px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; color: var(--azul); background: #eaf6fc; padding: 2px 8px; border-radius: 999px; }
.post-meta .data { font-size: 11.5px; color: var(--texto-suave); }
.post-card h3 { font-size: 14.5px; margin: 0 0 6px; color: var(--texto); line-height: 1.3; }
.post-card p { font-size: 12.5px; color: var(--texto-suave); margin: 0 0 10px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-more { color: var(--azul); font-weight: 600; font-size: 12.5px; }

/* artigo (page-hero em modo artigo) */
.page-hero.article-mode { text-align: left; }
.page-hero.article-mode h1 { text-transform: none; font-size: clamp(24px, 3.4vw, 36px); max-width: 900px; }
.page-hero .art-back { display: block; width: fit-content; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.page-hero .art-back:hover { color: var(--lima); }
.page-hero .art-tag { display: inline-block; background: rgba(255,255,255,.16); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 12px; }
.page-hero .art-date { color: rgba(255,255,255,.8); font-size: 14px; margin: 10px 0 0; }

.blog-article { background: #fff; }
.article { max-width: 820px; margin: 0 auto; }
.article-cover { border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra); margin-bottom: 28px; }
.article-cover img { width: 100%; height: auto; display: block; max-height: 440px; object-fit: cover; }
.article-body { color: var(--texto); font-size: 17px; line-height: 1.8; }
.article-body p { margin: 0 0 18px; }
.article-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.article-gallery img { width: 100%; border-radius: 12px; }
.article-related { max-width: 940px; margin: 56px auto 0; }
.article-related h3 { text-align: center; font-size: 22px; margin: 0 0 22px; color: var(--texto); }
.article-related .post-card h3 { font-size: 14px; text-align: left; margin: 0 0 6px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.article-related .post-card p { -webkit-line-clamp: 2; }

/* paginação */
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pager button { min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--borda); background: #fff; border-radius: 10px; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 14px; color: var(--texto-suave); transition: background .2s, color .2s, border-color .2s; }
.pager button:hover:not(:disabled) { border-color: var(--azul); color: var(--azul); }
.pager button.active { background: var(--azul); border-color: var(--azul); color: #fff; }
.pager button:disabled { opacity: .4; cursor: default; }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
/* Tablets e telas menores */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 320px; }
  .hero-donut { width: min(320px, 80%); }
  .institucional .wrap, .local .wrap, .news-grid, .areas .wrap, .quemsomos .wrap { grid-template-columns: 1fr; }
  .areas-cta { margin-top: 30px; }
  .areas .wrap { gap: 30px; }
  .areas .foto { height: 260px; margin-top: 4px; }
  .quemsomos .qs-art { order: -1; }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .news-featured .img { max-height: 260px; }
  /* menu hambúrguer já em tablets */
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 20px; box-shadow: var(--sombra); transform: translateY(-150%); transition: transform .3s; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav.open { transform: translateY(0); }
  .nav a { color: var(--texto) !important; padding: 13px 0; border-bottom: 1px solid var(--borda); }
  .nav a::after { display: none; }
}
/* Telefones */
@media (max-width: 720px) {
  .stats-row { gap: 24px 40px; }
  .cert-grid { grid-template-columns: 1fr; }
  .ff-row { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
  .nav-search { display: none; }
  .cards-grid, .dif-grid, .footer-grid { grid-template-columns: 1fr; }
  .card-produto { grid-template-columns: 112px 1fr; }
  .section { padding: 46px 0; }
  .parceiros .section-title { white-space: normal; }
  .marquee-item img { height: 38px; }
  .marquee-track { gap: 40px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-bar { flex-direction: column; align-items: stretch; }
  .cat-search input { width: 100%; min-width: 0; }
  .cat-selects { flex-direction: column; }
  .cat-fab, .cat-fab select { width: 100%; max-width: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-gallery { grid-template-columns: 1fr; }
  .pm-grid { grid-template-columns: 1fr; }
  .news-featured .img { max-height: 220px; }
  .produtos-carousel { height: 330px; perspective: 1200px; }
  .pc-slide { width: 230px; height: 292px; margin: -146px 0 0 -115px; }
  .pc-slide .pc-name { font-size: 13.5px; padding: 12px 12px; }
  /* evita o zoom automático do iOS ao focar campos */
  input, textarea, select { font-size: 16px; }
}
/* Telas bem pequenas */
@media (max-width: 480px) {
  .hero-copy h1 { font-size: 30px; }
  .section { padding: 36px 0; }
  .section-title { font-size: 22px; }
  .prod-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 20px 24px; padding: 30px 0; }
  .stat { flex-basis: 120px; }
  .stat-num { font-size: 32px; }
  .pm-info { padding: 22px 20px; }
  .container { padding: 0 18px; }
  .brand img { height: 42px; }
  .areas .foto { height: 220px; }
  .dif-grid { grid-template-columns: 1fr; }
  .produtos-carousel { height: 300px; perspective: 900px; }
  .pc-slide { width: 194px; height: 258px; margin: -129px 0 0 -97px; }
}
