/* ==========================================================================
   AmberTech · Design System
   Paleta oficial da marca:
   Azul-marinho #172983 · Verde-limão #79B51C · Magenta #811C75
   ========================================================================== */

:root {
  --navy: #172983;
  --navy-dark: #0f1c5e;
  --navy-800: #1d2f96;
  --green: #79b51c;
  --green-dark: #689e14;
  --magenta: #811c75;
  --magenta-dark: #6a1761;

  --ink: #1a2233;
  --body: #4a5568;
  --muted: #7a869a;
  --line: #e4e8f0;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-soft-2: #eef1f8;

  --shadow-sm: 0 2px 8px rgba(23, 41, 131, .06);
  --shadow-md: 0 10px 30px rgba(23, 41, 131, .10);
  --shadow-lg: 0 24px 60px rgba(23, 41, 131, .16);

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --header-h: 88px;

  --ff-head: "Montserrat", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}

/* Layout helpers --------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #dfe4ff; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--green); }
.section--navy .eyebrow { color: #9fd45a; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 16px 0 14px; }
.section-head p { font-size: 1.08rem; color: var(--body); }
.section--navy .section-head p { color: #c3cbf5; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  --bg: var(--navy); --fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 700; font-size: .95rem;
  background: var(--bg); color: var(--fg);
  padding: 15px 30px; border-radius: 60px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--green { --bg: var(--green); --fg: #16340a; }
.btn--magenta { --bg: var(--magenta); }
.btn--ghost { --bg: transparent; --fg: var(--navy); border-color: var(--navy); box-shadow: none; }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--light { --bg: #fff; --fg: var(--navy); }
.btn--outline-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.5); box-shadow: none; }
.btn--outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn .ico { width: 18px; height: 18px; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--ff-head); font-weight: 600; font-size: .96rem;
  color: var(--ink); padding: 10px 14px; border-radius: 8px;
  position: relative; transition: color .15s ease, background .15s ease;
  /* sem isto "Quem Somos" e "Blog e Notícias" quebram em duas linhas e
     empurram a altura do header */
  white-space: nowrap;
}
.nav a:hover { color: var(--navy); background: var(--bg-soft); }
.nav a.active { color: var(--navy); }
.nav a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 3px; border-radius: 3px;
  background: var(--green);
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--navy);
  margin: 0 auto; position: relative; transition: .25s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative; color: #eaeeff; overflow: hidden;
  background: var(--navy);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
}
.hero .container { position: relative; z-index: 2; }

/* Formas geométricas decorativas (cores chapadas) */
.hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-deco span { position: absolute; display: block; }
.hero-deco .ring {
  border-radius: 50%; border: 10px solid var(--green); background: transparent;
}
.hero-deco .ring.magenta { border-color: var(--magenta); }
.hero-deco .dot { border-radius: 50%; }
.hero-deco .dot.green { background: var(--green); }
.hero-deco .dot.magenta { background: var(--magenta); }
.hero-deco .arc {
  border-radius: 50%; border: 9px solid transparent; border-top-color: #4658c9;
  transform: rotate(45deg);
}
.hero-deco .d1 { width: 190px; height: 190px; top: -60px; right: 24%; }
.hero-deco .d2 { width: 26px; height: 26px; bottom: 60px; left: 46%; }
.hero-deco .d3 { width: 120px; height: 120px; bottom: -30px; right: 8%; }
.hero-deco .d4 { width: 240px; height: 240px; top: 30%; right: -60px; opacity: .5; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
  padding: 96px 0 104px;
}
.hero-center {
  max-width: 830px; margin-inline: auto; text-align: center;
  padding: 104px 0 112px;
}
.hero-center .eyebrow { justify-content: center; }
.hero-center p.lead { margin-inline: auto; }
.hero-center .hero-actions { justify-content: center; }
.hero-center .hero-stats { justify-content: center; border-top: 1px solid rgba(255,255,255,.16); }
.hero .eyebrow { color: #9fd45a; }
.hero h1 {
  color: #fff; font-size: clamp(2.3rem, 5vw, 3.9rem); margin: 18px 0 20px;
}
.hero h1 .hl { color: var(--green); }
.hero p.lead { font-size: 1.18rem; color: #c7cef4; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats {
  display: flex; gap: 30px; margin-top: 46px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats .num { font-family: var(--ff-head); font-weight: 800; font-size: 1.9rem; color: #fff; }
.hero-stats .lbl { font-size: .82rem; color: #aab4ee; letter-spacing: .02em; }

.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 18px; }
.hero-card .feat { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.12); }
.hero-card .feat:first-of-type { border-top: 0; }
.hero-card .feat .ic {
  flex: 0 0 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(121,181,28,.18); color: #b6e46a;
}
.hero-card .feat b { color: #fff; font-family: var(--ff-head); display: block; font-size: .98rem; }
.hero-card .feat span { font-size: .86rem; color: #b7bff0; }

/* Trust strip ------------------------------------------------------------ */
.trust { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.trust .container { display: flex; flex-wrap: wrap; gap: 14px 40px; padding: 22px 24px; justify-content: center; }
.trust .item { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: var(--ink); font-family: var(--ff-head); }
.trust .item svg { color: var(--green-dark); }

/* Cards / grids ---------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; margin-bottom: 20px; background: var(--navy);
}
.card .ic.green { background: var(--green); color: #16340a; }
.card .ic.magenta { background: var(--magenta); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: .98rem; }

/* Product cards ---------------------------------------------------------- */
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product .top { padding: 26px 28px; color: #fff; position: relative; }
.product .top.navy { background: var(--navy); }
.product .top.green { background: var(--green); }
.product .top.magenta { background: var(--magenta); }
.product .top .tag { font-size: .74rem; font-family: var(--ff-head); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.product .top h3 { color: #fff; font-size: 1.35rem; margin-top: 6px; }
.product .body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product .body p { font-size: .95rem; }
.product .body .more {
  margin-top: auto; font-family: var(--ff-head); font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 7px; font-size: .92rem;
}
.product .body .more svg { transition: transform .2s ease; }
.product:hover .body .more svg { transform: translateX(4px); }

/* Split / feature -------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .media {
  border-radius: var(--radius-lg); min-height: 420px; position: relative; overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.split .media::before {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  border: 12px solid rgba(121,181,28,.5); top: -70px; left: -70px;
}
.split .media::after {
  content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%;
  background: var(--magenta); opacity: .35; bottom: -40px; right: -30px;
}
.split .media .badge {
  position: absolute; padding: 18px 22px; border-radius: 16px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(4px); color: #fff;
}
.check-list { display: grid; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.check-list .tick {
  flex: 0 0 26px; height: 26px; border-radius: 8px; background: rgba(121,181,28,.15);
  color: var(--green-dark); display: grid; place-items: center; margin-top: 2px;
}
.check-list b { color: var(--ink); font-family: var(--ff-head); }

/* Value / diff grid ------------------------------------------------------ */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diff {
  padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  position: relative; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.diff:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.diff .n { font-family: var(--ff-head); font-weight: 800; font-size: .9rem; color: var(--green-dark); }
.diff h3 { font-size: 1.12rem; margin: 8px 0 8px; }
.diff p { font-size: .94rem; }

/* CTA band --------------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg); padding: 56px; color: #fff; position: relative; overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.cta-band::before {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  border: 14px solid rgba(121,181,28,.4); top: -80px; right: 8%;
}
.cta-band::after {
  content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: var(--magenta); opacity: .5; bottom: -50px; right: -30px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-band p { color: #ecdcf1; margin: 12px 0 26px; max-width: 560px; }

/* Blog cards ------------------------------------------------------------- */
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post .cover { height: 200px; display: grid; place-items: center; color: #fff; font-family: var(--ff-head); font-weight: 800; }
.post .cover.a { background: var(--navy); }
.post .cover.b { background: var(--green); }
.post .p-body { padding: 24px 26px 28px; }
.post .date { font-size: .8rem; color: var(--muted); font-weight: 600; }
.post h3 { font-size: 1.18rem; margin: 8px 0 10px; }

/* Page hero (inner pages) ------------------------------------------------ */
.page-hero {
  color: #fff; padding: 64px 0 72px; position: relative; overflow: hidden;
  background: var(--navy);
}
.page-hero::before {
  content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  border: 12px solid rgba(121,181,28,.35); top: -70px; right: 10%; pointer-events: none;
}
.page-hero::after {
  content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: var(--magenta); opacity: .3; bottom: -50px; right: 4%; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: .86rem; color: #b4bdf0; margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #c7cef4; margin-top: 12px; max-width: 640px; font-size: 1.08rem; }

/* Prose (long text) ------------------------------------------------------ */
.prose p { margin-bottom: 18px; }
.prose h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 12px; }
.prose ul { display: grid; gap: 10px; margin: 12px 0 20px; }
.prose ul li { display: flex; gap: 12px; }
.prose ul li::before { content: ""; flex: 0 0 8px; height: 8px; border-radius: 50%; background: var(--green); margin-top: 10px; }

/* Contact ---------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(23,41,131,.10);
}
.field textarea { min-height: 140px; resize: vertical; }
.info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-item .ic { flex: 0 0 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); }
.info-item b { font-family: var(--ff-head); color: var(--ink); display: block; }
.info-item a, .info-item span { color: var(--body); font-size: .96rem; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--navy-dark); color: #b9c1ec; padding-top: 66px; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { font-size: .93rem; color: #9aa4d8; max-width: 320px; }
.site-footer h2, .site-footer h4 { color: #fff; font-family: var(--ff-head); font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }

/* Título só para leitor de tela: mantém a hierarquia de headings sem
   inserir um título visível onde o desenho não pede um. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: .94rem; }
.footer-contact li { display: flex; gap: 11px; font-size: .92rem; margin-bottom: 13px; color: #a6afe0; }
.footer-contact svg { flex: 0 0 18px; color: #7fd53a; margin-top: 3px; }
.social { display: flex; gap: 12px; margin-top: 8px; }
.social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .2s; }
.social a:hover { background: var(--green); color: #16340a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .86rem; color: #8a94cc; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* Cookie banner ---------------------------------------------------------- */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200; max-width: 1160px;
  margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 22px 26px; display: flex; gap: 22px; align-items: center;
  transform: translateY(0); transition: transform .35s ease, opacity .35s ease;
}
.cookie.hide { transform: translateY(160%); opacity: 0; pointer-events: none; }
.cookie .ic { flex: 0 0 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(121,181,28,.15); color: var(--green-dark); }
.cookie p { font-size: .9rem; color: var(--body); }
.cookie p b { color: var(--ink); font-family: var(--ff-head); }
.cookie .actions { display: flex; gap: 10px; margin-left: auto; flex-shrink: 0; }
.cookie .btn { padding: 11px 22px; font-size: .88rem; }

/* Article (post do blog) ------------------------------------------------- */
.article-hero .meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 18px;
  font-size: .9rem; color: #c7cef4;
}
.article-hero .meta .cat {
  font-family: var(--ff-head); font-weight: 700; font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: #16340a; background: var(--green);
  padding: 6px 12px; border-radius: 50px;
}
.article-hero .meta .sep { width: 4px; height: 4px; border-radius: 50%; background: #7c86c8; }
.article-wrap { max-width: 820px; margin-inline: auto; }
.article-cover {
  height: 300px; border-radius: var(--radius-lg); background: var(--navy); color: #fff;
  display: grid; place-items: center; position: relative; overflow: hidden;
  margin: -60px auto 44px; box-shadow: var(--shadow-md);
}
.article-cover .big { font-family: var(--ff-head); font-weight: 800; font-size: 3rem; letter-spacing: -.02em; }
.article-cover::before {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  border: 14px solid rgba(121,181,28,.4); top: -80px; left: -60px;
}
.article-cover::after {
  content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%;
  background: var(--magenta); opacity: .4; bottom: -50px; right: -30px;
}
.article-body { font-size: 1.08rem; }
.article-body .lead { font-size: 1.22rem; color: var(--ink); font-weight: 500; margin-bottom: 26px; }
.pull-quote {
  border-left: 5px solid var(--green); background: var(--bg-soft);
  padding: 22px 26px; border-radius: 0 12px 12px 0; margin: 30px 0;
  font-family: var(--ff-head); font-weight: 600; color: var(--ink); font-size: 1.15rem;
}
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-head); font-weight: 700; color: var(--navy); margin-top: 40px; }
.back-link svg { transition: transform .2s ease; }
.back-link:hover svg { transform: translateX(-4px); }
.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.article-tags .tag { font-size: .82rem; font-weight: 600; color: var(--body); background: var(--bg-soft); border: 1px solid var(--line); padding: 7px 14px; border-radius: 50px; }
@media (max-width: 640px) {
  .article-cover { height: 200px; margin-top: -40px; }
  .article-cover .big { font-size: 2rem; }
}

/* Testimonials (depoimentos) --------------------------------------------- */
.testi-grid { display: grid; gap: 22px; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 26px; box-shadow: var(--shadow-sm); position: relative;
}
.testi .qmark { font-family: Georgia, serif; font-size: 3.4rem; line-height: .4; color: var(--green); height: 26px; display: block; }
.testi p { font-size: 1rem; color: var(--body); margin-bottom: 18px; }
.testi p + p { margin-top: -6px; }
.testi .who { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi .avatar {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 1rem; background: var(--navy);
}
.testi .avatar.green { background: var(--green); color: #16340a; }
.testi .avatar.magenta { background: var(--magenta); }
.testi .who b { font-family: var(--ff-head); color: var(--ink); display: block; font-size: .98rem; }
.testi .who span { font-size: .84rem; color: var(--muted); }
.testi.feature { border-left: 5px solid var(--green); }

/* Reveal animation ------------------------------------------------------- */
/* Só esconde se o JS estiver ativo — sem JS o conteúdo aparece normalmente. */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in { opacity: 1; transform: none; }
/* Fallback quando o Motion não carrega: transição em CSS puro. */
.js .reveal { transition: opacity .6s ease, transform .6s ease; }
/* Com o Motion ativo quem anima é ele, então a transição do CSS sai de cena. */
.motion .reveal { transition: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Ritmo e cor
   Diagnóstico: 129 seções brancas, 39 cinza, 3 azuis e nenhuma verde ou
   magenta — o site herdou o ritmo branco-cinza do v1. O briefing pede
   "melhorar equilíbrio entre azul, verde e roxo" e "composição moderna e
   limpa". Aqui entram fundos de marca, faixas de imagem sangrando de ponta a
   ponta e uma escala de título maior. Nenhuma seção muda de lugar.
   ========================================================================== */

/* Fundos de marca ---------------------------------------------------------- */
.section--magenta {
  background: linear-gradient(160deg, #8f1f82 0%, var(--magenta) 55%, #5f1457 100%);
  color: #f4e3f2;
}
.section--magenta h2, .section--magenta h3, .section--magenta b { color: #fff; }
.section--magenta .eyebrow { color: #f0b8e8; }
.section--magenta .eyebrow::before { background: #f0b8e8; }
.section--magenta .section-head p { color: #edd3ea; }

.section--verde {
  background: linear-gradient(160deg, #8ccc2a 0%, var(--green) 55%, #5d8f11 100%);
  color: #1d3d0b;
}
.section--verde h2, .section--verde h3, .section--verde b { color: #122806; }
/* Sobre o verde da marca só passa texto bem escuro: a 4,5:1 do WCAG reprova
   qualquer tom médio. Medido, não estimado. */
.section--verde .eyebrow { color: #16300a; }
.section--verde .eyebrow::before { background: #16300a; }
.section--verde .section-head p { color: #16300a; }
.section--verde .card { background: rgba(255, 255, 255, .92); border-color: transparent; }

/* Nos fundos de marca, o card vira vidro em vez de caixa branca chapada. */
.section--magenta .card {
  background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px); color: #edd3ea;
}
.section--magenta .card p { color: #e6c6e2; }
.section--magenta .card .ic { background: rgba(255, 255, 255, .16); color: #fff; }

/* Aplicações: o que nasce da química ---------------------------------------- */
/* Um catálogo de peróxido é abstrato para quem não é do ramo. Mostrar a peça
   final — piscina, banheira, bancada, casco — é o que torna o portfólio
   concreto. Foto manda, texto só nomeia. */
.aplicacoes {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}
/* A primeira ocupa duas colunas e duas linhas: quebra a grade regular e dá
   hierarquia sem precisar de mais elementos. */
.aplicacoes > :first-child { grid-column: span 2; grid-row: span 2; }

.aplic {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 210px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease;
}
.aplic:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.aplic img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}
.aplic:hover img { transform: scale(1.06); }
.aplic::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 69, 0) 35%, rgba(10, 18, 69, .82) 100%);
}
.aplic .rotulo {
  position: relative; z-index: 1; padding: 20px 22px; color: #fff;
  font-family: var(--ff-head); font-weight: 800; font-size: 1.12rem;
  letter-spacing: -.01em; text-shadow: 0 1px 12px rgba(0, 0, 0, .4);
}
.aplicacoes > :first-child .rotulo { font-size: 1.5rem; padding: 26px 28px; }
.aplic .rotulo small {
  display: block; font-weight: 600; font-size: .84rem;
  color: #cfd7ff; margin-top: 4px; letter-spacing: 0; text-shadow: none;
}
.aplic:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

@media (max-width: 900px) {
  .aplicacoes { grid-template-columns: repeat(2, 1fr); }
  .aplicacoes > :first-child { grid-column: span 2; grid-row: span 1; min-height: 260px; }
}
@media (max-width: 560px) {
  .aplicacoes { grid-template-columns: 1fr; }
  .aplicacoes > :first-child { grid-column: span 1; }
}

/* Faixa de imagem sangrando ------------------------------------------------ */
/* O quebra-ritmo mais forte que existe sem tocar na estrutura: uma foto de
   ponta a ponta da tela, com uma afirmação curta por cima. */
.faixa-imagem {
  position: relative; overflow: hidden;
  min-height: clamp(300px, 42vh, 440px);
  display: flex; align-items: center;
}
.faixa-imagem > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.faixa-imagem::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(11, 20, 73, .93) 0%, rgba(11, 20, 73, .78) 45%, rgba(11, 20, 73, .35) 100%);
}
.faixa-imagem .container { position: relative; z-index: 2; }
.faixa-imagem .frase {
  max-width: 640px; color: #fff;
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(1.5rem, 3.1vw, 2.4rem); line-height: 1.18;
  letter-spacing: -.02em; text-wrap: balance;
}
.faixa-imagem .frase em { font-style: normal; color: var(--green); }
.faixa-imagem .apoio { color: #c7cef4; margin-top: 14px; max-width: 520px; }

/* Escala maior: parte da sensação de "igual ao v1" era o tamanho do título. */
.section { padding: 104px 0; }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-size: clamp(2.05rem, 3.9vw, 3.2rem); }
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }
  .faixa-imagem { min-height: 280px; }
}

/* ==========================================================================
   Movimento no site
   Regra que segui: cada animação precisa ter função — revelar conteúdo,
   indicar progresso ou dar retorno ao toque. Nada de movimento decorativo
   competindo com a leitura. Tudo cai fora sob prefers-reduced-motion.
   ========================================================================== */

/* 1. Foto que revela de baixo para cima quando o bloco entra em cena.
      O transform continua na lista para não matar o zoom de hover. */
.js .reveal img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path .85s cubic-bezier(.16, 1, .3, 1) .08s, transform .5s ease;
}
.js .reveal.in img { clip-path: inset(0 0 0 0); }

/* 2. Itens de lista entram em cascata (páginas de segurança e de produto). */
@keyframes sobe-item {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
/* O atraso vai no próprio <li>: dentro de .prose eles são netos (.prose > ul >
   li), então um `> :nth-child()` acertaria o <ul> e todos sairiam juntos. */
.js .reveal.in :is(.prose, .check-list) li { animation: sobe-item .45s both cubic-bezier(.16, 1, .3, 1); }
.js .reveal.in :is(.prose, .check-list) li:nth-child(1) { animation-delay: .04s; }
.js .reveal.in :is(.prose, .check-list) li:nth-child(2) { animation-delay: .10s; }
.js .reveal.in :is(.prose, .check-list) li:nth-child(3) { animation-delay: .16s; }
.js .reveal.in :is(.prose, .check-list) li:nth-child(4) { animation-delay: .22s; }
.js .reveal.in :is(.prose, .check-list) li:nth-child(5) { animation-delay: .28s; }
.js .reveal.in :is(.prose, .check-list) li:nth-child(6) { animation-delay: .34s; }
.js .reveal.in :is(.prose, .check-list) li:nth-child(7) { animation-delay: .40s; }

/* 3. O traço verde do eyebrow se desenha. */
.js .reveal .eyebrow::before { width: 0; transition: width .6s cubic-bezier(.16, 1, .3, 1) .18s; }
.js .reveal.in .eyebrow::before { width: 26px; }

/* 4. Zoom de hover nas fotos de produto (faltava no card de SKU). */
.sku .shot { overflow: hidden; }
.sku .shot img { transition: transform .5s ease; }
.sku:hover .shot img { transform: scale(1.06); }

/* 5. Header encolhe ao rolar, devolvendo altura de tela ao conteúdo. */
.site-header .container { transition: height .28s ease; }
.brand img { transition: height .28s ease; }
.site-header.is-scrolled .container { height: 68px; }
.site-header.is-scrolled .brand img { height: 38px; }

/* 6. Barra de progresso de leitura — útil nas páginas longas. */
.progresso {
  position: fixed; top: 0; left: 0; z-index: 300; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--green), #b6e46a);
  pointer-events: none;
}

/* 7. Botões e cards com retorno mais claro ao toque. */
.btn:active { transform: translateY(0) scale(.985); }
.cat-card, .sku, .hl-card, .card, .line-item {
  transition: transform .22s cubic-bezier(.16, 1, .3, 1), box-shadow .22s ease, border-color .2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal img { clip-path: none; transition: none; }
  .js .reveal.in :is(.prose, .check-list) li { animation: none; }
  .js .reveal .eyebrow::before { width: 26px; transition: none; }
  .site-header .container, .brand img { transition: none; }
  .progresso { display: none; }
}

/* Float whatsapp --------------------------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 150; width: 58px; height: 58px;
  border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 70px 0 78px; }
  .hero-card { max-width: 520px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid-3, .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 20px 22px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .3s ease;
  }
  .nav-open .nav { transform: translateY(0); display: flex; }
  .nav a { padding: 13px 12px; font-size: 1.02rem; }
  .nav a.active::after { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 26px; }
  .cookie { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie .actions { margin-left: 0; width: 100%; }
  .cookie .actions .btn { flex: 1; justify-content: center; }
  .hero-stats { gap: 22px; }
}

/* ==========================================================================
   v2 — alinhamento com a linguagem visual Polystell
   Curvas orgânicas entre seções, hero com imagem circular, destaques
   sobrepostos, diferenciais em cor chapada e navegação de produtos em
   3 níveis (categoria -> família -> produto).
   ========================================================================== */

/* Foto dentro do .media (as formas geométricas continuam por cima) -------- */
.split .media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.split .media .badge { z-index: 2; }

/* Header depois de rolar -------------------------------------------------- */
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(23, 41, 131, .08); }

/* Confirmação de envio de formulário ------------------------------------- */
.form-ok {
  display: flex; gap: 13px; align-items: flex-start;
  background: rgba(121, 181, 28, .12); border: 1px solid rgba(121, 181, 28, .4);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 20px;
}
.form-ok[hidden] { display: none; }
.form-ok .ic { flex: 0 0 22px; color: var(--green-dark); margin-top: 2px; }
.form-ok p { font-size: .93rem; color: var(--ink); }

/* Seletor de idioma ------------------------------------------------------- */
/* Visual apenas: a tradução em si fica com o plugin do WordPress. */
.lang { display: flex; gap: 2px; align-items: center; }
.lang a {
  font-family: var(--ff-head); font-weight: 700; font-size: .76rem;
  letter-spacing: .08em; padding: 6px 9px; border-radius: 7px; color: var(--muted);
  transition: color .15s ease, background .15s ease;
}
.lang a:hover { color: var(--navy); background: var(--bg-soft); }
.lang a.active { color: var(--navy); background: var(--bg-soft-2); }

/* Curvas de transição ---------------------------------------------------- */
/* ponytail: elipse em border-radius em vez de SVG — mesmo resultado, zero markup. */
.curve-bottom { position: relative; }
.curve-bottom::after {
  content: ""; position: absolute; z-index: 3; pointer-events: none;
  left: -6%; right: -6%; bottom: -1px; height: 76px;
  background: var(--curve-color, #fff);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.curve-top { position: relative; }
.curve-top::before {
  content: ""; position: absolute; z-index: 3; pointer-events: none;
  left: -6%; right: -6%; top: -1px; height: 76px;
  background: var(--curve-color, #fff);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.curve-soft { --curve-color: var(--bg-soft); }

/* Hero v2 — texto + imagem em orbe --------------------------------------- */
.hero--split .hero-grid {
  grid-template-columns: 1.06fr .94fr;
  padding: 84px 0 168px;
  align-items: center;
}
.hero--split h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.hero--split p.lead { max-width: 520px; }

.hero-orb { position: relative; aspect-ratio: 1 / 1; max-width: 470px; margin-inline: auto; width: 100%; }
.hero-orb .shot {
  position: absolute; inset: 5%;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}
.hero-orb .shot img { width: 100%; height: 100%; object-fit: cover; }
/* Anel externo que gira levemente no scroll (via Motion). */
/* Anel externo que gira levemente no scroll (via Motion). */
.hero-orb .orb-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .28);
}
.hero-orb .orb-chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .26);
  backdrop-filter: blur(8px); color: #fff; border-radius: 50px;
  padding: 10px 18px; font-family: var(--ff-head); font-weight: 700; font-size: .84rem;
  box-shadow: var(--shadow-md);
}
.hero-orb .orb-chip svg { color: var(--green); }
.hero-orb .orb-chip.c1 { top: 8%; left: -6%; }
.hero-orb .orb-chip.c2 { bottom: 12%; right: -8%; }

/* ==========================================================================
   Hero v4 — presença e composição gráfica
   Diagnóstico do hero anterior: baixo demais e liso demais. A referência
   (Polystell) resolve isso com altura de tela cheia, gradiente radial e
   formas geométricas NÍTIDAS sangrando pelas bordas — nada de desfoque.
   ========================================================================== */
.hero--v4 {
  background: radial-gradient(125% 95% at 20% 38%, #24399f 0%, #172983 40%, #0a1245 100%);
  display: flex; align-items: center;
  /* Teto em vh para os CTAs nunca caírem abaixo da dobra em telas baixas. */
  min-height: clamp(560px, 78vh, 800px);
}
.hero--v4::after { display: none; } /* a malha vem dentro do SVG */
.hero--v4 .container { position: relative; z-index: 2; width: 100%; }

/* Composição geométrica: um SVG só, cobrindo o hero e cortado nas bordas. */
.hero-arte {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  width: 100%; height: 100%;
}
.hero-arte .gira-lento { transform-origin: 1215px 250px; animation: gira 90s linear infinite; }
@keyframes gira { to { transform: rotate(360deg); } }

/* Tipografia em dois níveis: a mensagem do briefing é longa demais para uma
   manchete única — em corpo grande ela virava sete linhas. A lista de
   produtos fica no h1 e o segmento vem numa linha de apoio logo abaixo. */
.hero--v4 h1 {
  font-size: clamp(2rem, 3.8vw, 3.05rem); line-height: 1.08;
  letter-spacing: -.03em; margin: 18px 0 0;
}
.hero--v4 .hero-sub {
  display: block; margin: 10px 0 20px;
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem); line-height: 1.25;
  color: var(--green); letter-spacing: -.01em;
}
.hero--v4 p.lead { font-size: 1.1rem; max-width: 560px; }
.hero--v4 .hero-actions { margin-top: 30px; }
.hero--v4 .hero-grid { grid-template-columns: 1.16fr .84fr; padding: 52px 0 116px; }

/* Foto maior e ancorada, com anel de contorno em vez de brilho */
.hero--v4 .hero-orb { max-width: 440px; }
.hero--v4 .hero-orb .shot { inset: 0; box-shadow: 0 40px 90px rgba(0, 0, 0, .5); }
.hero--v4 .hero-orb .orb-ring {
  inset: -5.5%; border: 2px solid rgba(255, 255, 255, .2);
}
.hero--v4 .hero-orb .orb-arco {
  position: absolute; inset: -5.5%; border-radius: 50%;
  border: 3px solid transparent; border-top-color: var(--green);
  rotate: -28deg;
}
.hero--v4 .orb-chip { background: rgba(10, 18, 69, .58); border-color: rgba(255, 255, 255, .22); }

@media (prefers-reduced-motion: reduce) {
  .hero-arte .gira-lento { animation: none; }
}
@media (max-width: 980px) {
  .hero--v4 { min-height: 0; }
  .hero--v4 .hero-grid { padding: 56px 0 128px; }
  .hero--v4 .hero-orb { max-width: 380px; }
}

/* ==========================================================================
   Hero v3 — profundidade e movimento (desativado: ficou com cara de startup)
   Mantém a linguagem geométrica da Poly, mas troca o fundo chapado por
   camadas: blobs de cor desfocados em deriva lenta, malha, grão, anel em
   gradiente cônico e parallax de ponteiro. Tudo desligado sob
   prefers-reduced-motion.
   ========================================================================== */
.hero--v3 {
  background: linear-gradient(158deg, #0b1449 0%, var(--navy) 46%, #1d31ab 100%);
  isolation: isolate;
}
.hero--v3::after { display: none; } /* a malha agora é uma camada própria */

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

.hero-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(84px); opacity: .55;
  will-change: transform;
}
.hero-bg .blob.b1 {
  width: 34vw; min-width: 340px; aspect-ratio: 1;
  background: radial-gradient(circle, #79b51c 0%, rgba(121,181,28,0) 70%);
  top: -12%; left: -6%; animation: deriva-a 26s ease-in-out infinite;
}
.hero-bg .blob.b2 {
  width: 40vw; min-width: 380px; aspect-ratio: 1;
  background: radial-gradient(circle, #a11d92 0%, rgba(161,29,146,0) 70%);
  bottom: -26%; right: -8%; animation: deriva-b 32s ease-in-out infinite;
}
.hero-bg .blob.b3 {
  width: 26vw; min-width: 260px; aspect-ratio: 1;
  background: radial-gradient(circle, #2f47d6 0%, rgba(47,71,214,0) 70%);
  top: 26%; left: 40%; animation: deriva-c 29s ease-in-out infinite;
}
@keyframes deriva-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(5vw, 3vw, 0) scale(1.14); }
}
@keyframes deriva-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.06); }
  50%      { transform: translate3d(-4vw, -3vw, 0) scale(.94); }
}
@keyframes deriva-c {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.96); }
  50%      { transform: translate3d(-3vw, 4vw, 0) scale(1.1); }
}

/* Malha técnica */
.hero-bg .malha {
  position: absolute; inset: -10%; opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 78%);
  will-change: transform;
}

/* Grão: tira o aspecto "degradê de banco de imagem" */
.hero-bg .grao {
  position: absolute; inset: 0; opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23r)'/%3E%3C/svg%3E");
}

/* Formas geométricas de contorno, herdadas da linguagem Poly */
.hero-bg .forma { position: absolute; border-radius: 50%; will-change: transform; }
.hero-bg .forma.anel {
  width: 190px; height: 190px; border: 9px solid rgba(121,181,28,.55);
  top: -58px; right: 26%;
}
.hero-bg .forma.arco {
  width: 250px; height: 250px; border: 9px solid transparent;
  border-top-color: rgba(120,140,255,.5);
  /* propriedade `rotate` e não `transform`: o parallax do Motion escreve
     transform, e usar as duas no mesmo elemento apagaria esta rotação. */
  rotate: 45deg;
  top: 28%; right: -70px;
}
.hero-bg .forma.ponto-verde {
  width: 22px; height: 22px; background: var(--green); bottom: 32%; left: 44%;
}
.hero-bg .forma.ponto-magenta {
  width: 96px; height: 96px; background: rgba(161,29,146,.8);
  filter: blur(2px); bottom: 8%; right: 12%;
}

/* Coluna de texto e orbe acima das camadas */
.hero--v3 .container { position: relative; z-index: 2; }

/* Eyebrow em pílula de vidro */
.hero--v3 .eyebrow {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); padding: 8px 16px 8px 14px; border-radius: 50px;
  color: #cfe9a3;
}
.hero--v3 .eyebrow::before { background: var(--green); }

/* Destaque do h1 em gradiente */
.hero--v3 h1 .hl {
  background: linear-gradient(96deg, #9fd45a 0%, #d7f08e 50%, #79b51c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Orbe: halo, anel cônico girando e foto com profundidade.
   Tudo escopado em .hero--v3: tirar a classe do <section> devolve o hero
   anterior por inteiro, sem sobra. */
.hero--v3 .hero-orb .halo {
  position: absolute; inset: -14%; border-radius: 50%;
  background: radial-gradient(circle, rgba(121,181,28,.28) 0%, rgba(23,41,131,0) 68%);
  filter: blur(24px);
}
.hero--v3 .hero-orb .orb-ring {
  position: absolute; inset: 0; border-radius: 50%; border: 0;
  background: conic-gradient(from 0deg,
    rgba(255,255,255,0) 0deg, rgba(255,255,255,0) 120deg,
    var(--green) 200deg, #d7f08e 250deg, rgba(255,255,255,0) 320deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  animation: gira 20s linear infinite;
}
.hero--v3 .hero-orb .orb-ring-2 {
  position: absolute; inset: -7%; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.22);
  animation: gira-inverso 46s linear infinite;
}
@keyframes gira { to { transform: rotate(360deg); } }
@keyframes gira-inverso { to { transform: rotate(-360deg); } }

.hero--v3 .hero-orb .shot {
  box-shadow:
    0 34px 80px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.16);
}
.hero--v3 .hero-orb .shot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(200deg, rgba(23,41,131,0) 35%, rgba(11,20,73,.55) 100%);
}
.hero--v3 .hero-orb .orb-chip { will-change: transform; }

/* Ticker de aplicações reais */
.hero-ticker {
  margin-top: 38px; padding-top: 26px; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.16);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.hero-ticker .trilha {
  display: flex; gap: 34px; width: max-content;
  animation: correr 38s linear infinite;
}
.hero-ticker:hover .trilha, .hero-ticker:focus-within .trilha { animation-play-state: paused; }
.hero-ticker span {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: #b3bdf2;
}
.hero-ticker span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex: 0 0 auto;
}
@keyframes correr { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .hero-bg .blob, .hero--v3 .hero-orb .orb-ring, .hero--v3 .hero-orb .orb-ring-2, .hero-ticker .trilha {
    animation: none !important;
  }
}
@media (max-width: 640px) {
  .hero-bg .blob { filter: blur(58px); }
  .hero-ticker { margin-top: 28px; padding-top: 20px; }
}

/* Destaques sobrepondo o hero (padrão Polystell) ------------------------- */
.highlights { position: relative; z-index: 6; margin-top: -118px; }
.hl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hl-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.hl-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(23, 41, 131, .2); }
.hl-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft-2); }
.hl-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hl-card:hover .thumb img { transform: scale(1.05); }
.hl-card .hl-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hl-card .kicker {
  font-family: var(--ff-head); font-weight: 700; font-size: .72rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--green-dark);
}
.hl-card h3 { font-size: 1.06rem; line-height: 1.3; }
.hl-card .more {
  margin-top: auto; font-family: var(--ff-head); font-weight: 700; font-size: .9rem;
  color: var(--navy); display: inline-flex; align-items: center; gap: 7px;
}
.hl-card .more svg { transition: transform .2s ease; }
.hl-card:hover .more svg { transform: translateX(4px); }
.highlights .all { display: flex; justify-content: center; margin-top: 34px; }

/* Marcos institucionais --------------------------------------------------- */
/* Sem contadores que envelhecem: só capacidade e estrutura. */
.marcos { padding: 54px 0; background: var(--bg-soft); border-block: 1px solid var(--line); }
.marcos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.marco { display: flex; gap: 14px; align-items: flex-start; }
.marco .ic {
  flex: 0 0 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
}
.marco b { display: block; font-family: var(--ff-head); color: var(--ink); font-size: 1rem; }
.marco span { font-size: .88rem; color: var(--body); }

/* Diferenciais em cor chapada -------------------------------------------- */
.diff--solid {
  background: var(--navy); border: 0; color: #e7ebff; padding: 34px 28px 30px;
  border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.diff--solid.green { background: var(--green); color: #1d3d0b; }
.diff--solid.magenta { background: var(--magenta); color: #f7e6f5; }
.diff--solid h3 { color: #fff; font-size: 1.1rem; margin: 0 0 9px; }
.diff--solid.green h3 { color: #16340a; }
.diff--solid p { font-size: .94rem; color: inherit; opacity: .92; }
/* Selo de check no topo, como nos boxes da Poly. */
.diff--solid .seal {
  width: 50px; height: 50px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}
.diff--solid .seal svg { color: var(--green-dark); }
.diff--solid.green .seal svg { color: var(--navy); }
.diff--solid.magenta .seal svg { color: var(--magenta); }
/* Marca d'água geométrica no canto. */
.diff--solid::after {
  content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%;
  border: 16px solid rgba(255, 255, 255, .1); bottom: -70px; right: -50px;
}

/* Linhas de produto: lista + imagem grande (padrão Polystell) ------------- */
.lines { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; }
.line-list { display: grid; gap: 14px; }
.line-item {
  display: block; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--navy);
  border-radius: 12px; padding: 20px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}
.line-item:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.line-item.green { border-left-color: var(--green); }
.line-item.magenta { border-left-color: var(--magenta); }
.line-item .head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.line-item h3 { font-size: 1.12rem; }
.line-item .qtd {
  font-family: var(--ff-head); font-weight: 700; font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.line-item p { font-size: .93rem; margin-top: 8px; }
.line-media {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg); position: relative;
}
.line-media img { width: 100%; height: 100%; object-fit: cover; }

/* Navegação de produtos: categorias e famílias --------------------------- */
.cat-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft-2); }
.cat-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover .thumb img { transform: scale(1.06); }
.cat-card .cat-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.cat-card .tag {
  align-self: flex-start; font-family: var(--ff-head); font-weight: 700; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
  background: var(--bg-soft-2); color: var(--navy);
}
.cat-card .tag.green { background: rgba(121, 181, 28, .18); color: var(--green-dark); }
.cat-card .tag.magenta { background: rgba(129, 28, 117, .12); color: var(--magenta); }
.cat-card h3 { font-size: 1.22rem; }
.cat-card .more {
  margin-top: auto; font-family: var(--ff-head); font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 7px; font-size: .92rem;
}
.cat-card .more svg { transition: transform .2s ease; }
.cat-card:hover .more svg { transform: translateX(4px); }
.cat-card.soon { opacity: .82; }
.cat-card.soon .more { color: var(--muted); }

/* Card de produto (nível 3) ---------------------------------------------- */
.sku {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sku:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sku .shot { aspect-ratio: 1 / 1; background: var(--bg-soft); display: grid; place-items: center; padding: 18px; }
.sku .shot img { width: 100%; height: 100%; object-fit: contain; }
/* Marcador enquanto os packshots reais não estão na pasta. */
.sku .shot .mono {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.05rem; line-height: 1.25;
  text-align: center; color: var(--navy); opacity: .5; letter-spacing: -.01em;
}
.sku .sku-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.sku .fam {
  font-family: var(--ff-head); font-weight: 700; font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-dark);
}
.sku h3 { font-size: 1.14rem; }
.sku p { font-size: .92rem; }
.sku .more {
  margin-top: auto; font-family: var(--ff-head); font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 7px; font-size: .9rem;
}
/* Dado técnico de destaque no card, para comparar produtos sem abrir a ficha */
.sku-spec {
  font-size: .86rem; color: var(--body);
  background: var(--bg-soft); border-radius: 8px; padding: 7px 12px;
  align-self: flex-start;
}
.sku-spec b { font-family: var(--ff-head); color: var(--ink); }

/* Filtros da listagem de produtos ---------------------------------------- */
.filtros { display: grid; gap: 16px; margin-bottom: 38px; }
.filtro-grupo { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.filtro-grupo > .rotulo {
  font-family: var(--ff-head); font-weight: 700; font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-right: 4px;
}
.chip {
  font-family: var(--ff-head); font-weight: 600; font-size: .88rem;
  padding: 9px 18px; border-radius: 50px; cursor: pointer;
  background: #fff; color: var(--ink); border: 1.5px solid var(--line);
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.chip:hover { border-color: var(--navy); }
.chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.chip:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.filtro-contagem { font-size: .9rem; color: var(--muted); }
.sku[hidden], .secao-familia[hidden] { display: none; }
.sem-resultado {
  text-align: center; padding: 40px 20px; color: var(--body);
  border: 1.5px dashed var(--line); border-radius: var(--radius);
}

/* Tabela de dados técnicos ----------------------------------------------- */
.spec { width: 100%; border-collapse: collapse; margin: 8px 0 4px; }
.spec caption {
  text-align: left; font-family: var(--ff-head); font-weight: 700; color: var(--ink);
  font-size: 1.05rem; padding-bottom: 12px;
}
.spec th, .spec td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec th { width: 40%; font-family: var(--ff-head); font-weight: 600; color: var(--ink); background: var(--bg-soft); }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
.spec-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }

/* Opções em cartão (radio) e checkbox de consentimento ------------------- */
.opcoes { display: grid; gap: 14px; }
.opcao {
  display: flex; gap: 14px; align-items: flex-start; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: 12px; padding: 18px 20px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.opcao:hover { border-color: var(--navy); }
.opcao input { flex: 0 0 auto; margin-top: 4px; width: 18px; height: 18px; accent-color: var(--navy); }
.opcao b { display: block; font-family: var(--ff-head); color: var(--ink); font-size: 1rem; margin-bottom: 4px; }
.opcao span { font-size: .93rem; color: var(--body); }
.opcao:has(input:checked) { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(23, 41, 131, .09); }
.opcao:has(input:focus-visible) { outline: 2px solid var(--navy); outline-offset: 2px; }

.check-inline { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.check-inline input { flex: 0 0 auto; margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green-dark); }
.check-inline span { font-size: .94rem; color: var(--body); }
.check-inline a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* Dado ainda não confirmado pela base técnica --------------------------- */
/* Marcado em tela de propósito: ninguém deve confundir com dado real. */
.pendente {
  font-style: italic; color: #a2761f; background: #fdf6e6;
  border: 1px dashed #e0bd6d; border-radius: 6px; padding: 2px 9px;
  font-size: .88rem; display: inline-block;
}

/* Aviso legal (FDS/FISPQ) ------------------------------------------------ */
.alerta {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff8ec; border: 1px solid #f0d9ae; border-left: 5px solid #d99a2b;
  border-radius: 12px; padding: 20px 22px; margin: 26px 0;
}
.alerta .ic { flex: 0 0 26px; color: #b8792a; margin-top: 2px; }
.alerta p { font-size: .93rem; color: #6b4d1c; }
.alerta b { font-family: var(--ff-head); color: #503813; }
.section--navy .alerta {
  background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .2);
  border-left-color: var(--green);
}
.section--navy .alerta p { color: #d8dffb; }
.section--navy .alerta b, .section--navy .alerta .ic { color: #fff; }

/* Responsivo v2 ---------------------------------------------------------- */
@media (max-width: 980px) {
  .hero--split .hero-grid { grid-template-columns: 1fr; padding: 64px 0 150px; }
  .hero-orb { max-width: 380px; order: -1; }
  .hero-orb .orb-chip.c1 { left: 0; }
  .hero-orb .orb-chip.c2 { right: 0; }
  .hl-grid { grid-template-columns: 1fr 1fr; }
  .hl-grid > :last-child { grid-column: span 2; }
  .marcos-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lines { grid-template-columns: 1fr; gap: 34px; }
  .line-media { aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
  .highlights { margin-top: -90px; }
  .hl-grid { grid-template-columns: 1fr; }
  .hl-grid > :last-child { grid-column: auto; }
  .marcos-grid { grid-template-columns: 1fr; }
  .curve-bottom::after, .curve-top::before { height: 44px; }
  .hero--split .hero-grid { padding: 48px 0 128px; }
  .spec th { width: 46%; }
}
