/* build: v8-logo140 */
/* ==========================================================================
   FAJOANIS — Folha de estilo principal
   Estilo baseado no protótipo aprovado · paleta extraída do logo (roxo + ciano)
   Site estático multipágina · mobile-first · CSS puro com variáveis.

   ÍNDICE
   1.  Tokens de design (:root)  ← ÚNICO lugar de cores/tipografia
   2.  Base e reset
   3.  Utilidades (wrap, eyebrow, botões)
   4.  Header e navegação (dropdown + menu mobile)
   5.  Hero (+ blob, faixa de credibilidade, onda)
   6.  Seções e títulos
   7.  Pilares
   8.  Linhas de produto
   9.  Soluções por segmento
   10. Faixa de CTA
   11. Footer
   12. Botão flutuante de WhatsApp
   13. Reveal (animação de entrada)
   14. Acessibilidade
   15. Responsividade

   >>> Cores extraídas do logo: roxo #401080 (wordmark) + ciano #00A0F0 (redemoinho). <<<
   ========================================================================== */

/* ==========================================================================
   1. TOKENS DE DESIGN
   ========================================================================== */
:root {
  /* Roxo (cor escura primária — wordmark do logo) */
  --roxo-900: #2A0A55; /* base mais escura (hero/footer) */
  --roxo-800: #350D6C;
  --roxo-700: #401080; /* PRIMÁRIA */
  --roxo-600: #54199E; /* hover/realce */

  /* Ciano (destaque — redemoinho do logo) */
  --ciano-600: #0089D6;
  --ciano-500: #00A0F0; /* DESTAQUE */
  --ciano-400: #29B3F5;
  --ciano-300: #6FCBF7; /* claro p/ texto em gradiente */

  /* Neutros (levemente puxados para o roxo, p/ harmonia) */
  --white:     #ffffff;
  --mist:      #F5F2FC; /* fundo de seção claro */
  --mist-2:    #ECE5FA;
  --line:      #E4DCF3;
  --slate-800: #241B36; /* texto */
  --slate-600: #574E68;
  --slate-400: #8A8198;

  /* Sombras (tom roxo) */
  --shadow-sm: 0 2px 10px rgba(42, 10, 85, .06);
  --shadow-md: 0 12px 36px rgba(42, 10, 85, .12);
  --shadow-lg: 0 26px 60px rgba(42, 10, 85, .20);

  /* Tipografia */
  --font-title: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:  'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r: 18px;
  --maxw: 1180px;
  --header-h: 152px;
}

/* ==========================================================================
   2. BASE E RESET
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: var(--font-title); line-height: 1.1; letter-spacing: -.02em; color: var(--roxo-900); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   3. UTILIDADES
   ========================================================================== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ciano-500);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .98rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ciano-500), var(--roxo-700));
  color: #fff;
  box-shadow: 0 10px 24px rgba(64, 16, 128, .30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(64, 16, 128, .42); }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1.5px solid rgba(255, 255, 255, .4); }
.btn-ghost:hover { background: rgba(255, 255, 255, .18); }
.btn-light { background: #fff; color: var(--roxo-700); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ==========================================================================
   4. HEADER E NAVEGAÇÃO
   Header branco fixo (logo roxo/ciano sempre legível); fica compacto ao rolar.
   ========================================================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, box-shadow .3s ease, border-color .3s ease;
  padding: 6px 0;
}
header.scrolled {
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
  padding: 4px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Logo */
.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 140px; width: auto; transition: height .3s ease; }
header.scrolled .logo img { height: 100px; }

/* Links */
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links > a,
.nav-drop-toggle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--slate-800);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .25s;
}
.nav-links > a:hover,
.nav-drop-toggle:hover { color: var(--ciano-500); }

.caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .25s;
}

/* Dropdown (desktop: hover/focus) */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  margin-top: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 246px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
/* Ponte invisível: cobre o vão entre o botão e a lista para o :hover não se perder */
.dropdown::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -18px;
  height: 20px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--slate-600);
}
.dropdown a:hover { background: var(--mist); color: var(--roxo-700); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative;
}
.menu-toggle span {
  position: absolute; left: 0;
  width: 100%; height: 2.5px;
  background: var(--roxo-800);
  border-radius: 3px;
  transition: all .3s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9.5px; }
.menu-toggle span:nth-child(3) { top: 19px; }
.menu-toggle.open span:nth-child(1) { top: 9.5px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 9.5px; transform: rotate(-45deg); }

/* ==========================================================================
   5. HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--roxo-900) 0%, var(--roxo-800) 45%, var(--ciano-600) 125%);
  color: #fff;
  padding: calc(var(--header-h) + 70px) 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(0, 160, 240, .38), transparent 65%);
  filter: blur(20px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  z-index: 2;
}
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); font-weight: 800; color: #fff; margin-bottom: 1.3rem; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--ciano-300), var(--ciano-400));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: 1.16rem; color: #D7CDEC; max-width: 33rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Visual / blob com selo "30+" */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 340px; }
.blob {
  position: relative;
  width: 340px; height: 340px;
  background: linear-gradient(140deg, rgba(0, 160, 240, .22), rgba(84, 25, 158, .14));
  border: 1.5px solid rgba(111, 203, 247, .42);
  border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%;
  display: flex; align-items: center; justify-content: center;
  animation: morph 9s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%; }
  50%      { border-radius: 58% 42% 44% 56% / 52% 58% 42% 48%; }
}
.blob .ring { position: absolute; inset: 34px; border: 1.5px dashed rgba(111, 203, 247, .4); border-radius: 50%; animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.blob .year { text-align: center; }
.blob .year b { font-family: var(--font-title); font-size: 3.6rem; font-weight: 800; display: block; color: #fff; line-height: 1; }
.blob .year small { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ciano-300); }

/* Faixa de credibilidade */
.cred {
  position: relative; z-index: 2;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.cred div { padding: 26px 18px; border-right: 1px solid rgba(255, 255, 255, .1); text-align: center; }
.cred div:last-child { border-right: none; }
.cred b { font-family: var(--font-title); display: block; font-size: 1.05rem; color: #fff; margin-bottom: 2px; }
.cred span { font-size: .86rem; color: #BBA9DA; }

.wave { display: block; width: 100%; height: auto; margin-top: -1px; position: relative; z-index: 2; }

/* ==========================================================================
   6. SEÇÕES E TÍTULOS
   ========================================================================== */
section { padding: 90px 0; }
.sec-head { max-width: 46rem; margin-bottom: 54px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; margin: .7rem 0 1rem; }
.sec-head p { color: var(--slate-600); font-size: 1.08rem; }

/* ==========================================================================
   7. PILARES
   ========================================================================== */
.pillars { background: var(--mist); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--ciano-300); }
.pillar .ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(135deg, var(--ciano-500), var(--roxo-700));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.pillar h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: .5rem; }
.pillar p { color: var(--slate-600); font-size: .96rem; }

/* ==========================================================================
   8. LINHAS DE PRODUTO (cards em gradiente roxo→ciano)
   ========================================================================== */
.lines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.line-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 230px;
  padding: 30px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
  background: linear-gradient(160deg, var(--roxo-800), var(--ciano-600));
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .3s, box-shadow .3s;
}
.line-card:nth-child(2) { background: linear-gradient(160deg, #3A1276, #1B8FD0); }
.line-card:nth-child(3) { background: linear-gradient(160deg, #33106A, var(--ciano-500)); }
.line-card:nth-child(4) { background: linear-gradient(160deg, #2C0C5C, #1E7FD6); }
.line-card:nth-child(5) { background: linear-gradient(160deg, #3A1276, #3AAEDD); }
.line-card::after {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  border: 1.5px solid rgba(255, 255, 255, .14); border-radius: 50%;
}
.line-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.line-card .ico { margin-bottom: auto; position: relative; z-index: 2; }
.line-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .4rem; color: #fff; position: relative; z-index: 2; }
.line-card p { font-size: .92rem; color: rgba(255, 255, 255, .85); position: relative; z-index: 2; }

/* Card-convite (catálogo completo) — fundo em gradiente e texto branco, como os demais */
.line-card--invite {
  background: linear-gradient(160deg, var(--roxo-700), var(--ciano-500));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  justify-content: center; align-items: center; text-align: center;
}
.line-card--invite h3 { color: #fff; }
.line-card--invite p { color: rgba(255, 255, 255, .9); }
.line-card--invite::after { display: none; }

/* ==========================================================================
   9. SOLUÇÕES POR SEGMENTO
   ========================================================================== */
.segments { background: linear-gradient(180deg, var(--mist), #fff); }
.seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.seg {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.seg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--ciano-300); }
.seg .ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--mist-2);
  color: var(--roxo-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background .3s, color .3s;
}
.seg:hover .ico { background: linear-gradient(135deg, var(--ciano-500), var(--roxo-700)); color: #fff; }
.seg h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .4rem; }
.seg p { color: var(--slate-600); font-size: .93rem; margin-bottom: 1rem; }
.seg .more {
  font-family: var(--font-title); font-weight: 600; font-size: .9rem;
  color: var(--ciano-600);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap .25s;
}
.seg:hover .more { gap: .7rem; }
.anchor-badge {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ciano-600); background: var(--mist-2);
  padding: .2rem .6rem; border-radius: 999px; margin-bottom: 12px;
}

/* ==========================================================================
   10. FAIXA DE CTA
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--roxo-900), var(--ciano-600));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(0, 160, 240, .32), transparent 50%); }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; color: #fff; margin-bottom: 1rem; position: relative; }
.cta-band p { color: #D7CDEC; font-size: 1.1rem; max-width: 34rem; margin: 0 auto 2rem; position: relative; }
.cta-band .btn { position: relative; }

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
footer { background: var(--roxo-900); color: #BBA9DA; padding: 64px 0 28px; }
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
footer h4 { font-family: var(--font-title); color: #fff; font-size: 1rem; margin-bottom: 1.1rem; font-weight: 600; }
footer a { display: block; color: #BBA9DA; font-size: .94rem; margin-bottom: .6rem; transition: color .25s; }
footer a:hover { color: var(--ciano-300); }
.foot-brand b { font-family: var(--font-title); color: #fff; font-size: 1.5rem; font-weight: 800; letter-spacing: .02em; }
.foot-brand .tag { color: var(--ciano-400); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin: .3rem 0 1rem; }
.foot-brand p { font-size: .92rem; max-width: 22rem; }
.foot-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .84rem; color: #8A77AD; }

/* ==========================================================================
   12. BOTÃO FLUTUANTE DE WHATSAPP
   ========================================================================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  animation: pulse 2.4s infinite;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   13. REVEAL (animação de entrada ao rolar)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ==========================================================================
   14. ACESSIBILIDADE
   ========================================================================== */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--roxo-700); color: #fff; padding: 12px 18px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--ciano-400); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, .blob, .ring, .wa-float { animation: none !important; }
  * { transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   15. RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; min-height: 240px; }
  .blob { width: 240px; height: 240px; }
  .blob .year b { font-size: 2.6rem; }
  .cred { grid-template-columns: repeat(2, 1fr); }
  .cred div:nth-child(2) { border-right: none; }
  .pillar-grid, .lines-grid, .seg-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  /* Header mais baixo e logo limitado no celular (senão 140px fica gigante no telefone) */
  :root { --header-h: 88px; }
  .logo img { height: 70px; }
  header.scrolled .logo img { height: 58px; }

  /* Menu mobile off-canvas */
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 80%; max-width: 320px;
    background: var(--roxo-900);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: calc(var(--header-h) + 14px) 32px 40px; gap: 1.2rem;
    transition: right .35s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links > a,
  .nav-drop-toggle { color: #fff !important; font-size: 1.1rem; width: 100%; justify-content: space-between; }
  .nav-drop-toggle:hover { color: var(--ciano-300) !important; }

  /* Dropdown vira acordeão no mobile */
  .nav-item { width: 100%; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; background: transparent; border: none; box-shadow: none;
    padding: 0 0 0 8px; margin-top: 8px;
    border-left: 2px solid rgba(255, 255, 255, .18);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  /* Reseta o transform do desktop (translateX -50%), que empurrava os links para a esquerda no mobile */
  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown,
  .dropdown.is-open { transform: none; }
  .dropdown.is-open { max-height: 520px; }
  .nav-item:hover .dropdown:not(.is-open) { max-height: 0; } /* desativa hover no mobile */
  .dropdown a { color: #C9BBE3; font-size: 1rem; padding: 8px 10px; }
  .dropdown a:hover { background: rgba(255, 255, 255, .06); color: #fff; }
  .nav-drop-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

  .menu-toggle { display: block; z-index: 110; }
  .menu-toggle span { background: var(--roxo-800); }
  .menu-toggle.open span { background: #fff; }
  .nav-cta .btn:not(.menu-toggle) { display: none; } /* CTA do header vira botão flutuante */

  .pillar-grid, .lines-grid, .seg-grid, .foot-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: calc(var(--header-h) + 40px) 0 0; }
}

/* ==========================================================================
   16. PÁGINAS INTERNAS (A Fábrica, Produtos, Soluções, Contato)
   ========================================================================== */

/* Hero interno (mais compacto que o da Home) */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--roxo-900) 0%, var(--roxo-800) 55%, var(--ciano-600) 130%);
  color: #fff;
  padding: calc(var(--header-h) + 56px) 0 70px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: -30%; right: -8%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(0, 160, 240, .32), transparent 65%);
  filter: blur(20px);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; max-width: 22ch; margin-bottom: 1rem; }
.page-hero h1 .accent {
  background: linear-gradient(120deg, var(--ciano-300), var(--ciano-400));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p.lead { font-size: 1.14rem; color: #D7CDEC; max-width: 42rem; }
.page-hero .hero-actions { margin-top: 1.8rem; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; margin-bottom: 1.1rem; color: #BBA9DA; }
.breadcrumb a { color: var(--ciano-300); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current] { color: #fff; }
.breadcrumb .sep { margin: 0 .45rem; opacity: .6; }

/* Bloco de conteúdo / prose */
.prose { max-width: 70ch; }
.prose p { color: var(--slate-600); font-size: 1.05rem; margin-bottom: 1.1rem; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 2.2rem 0 1rem; }
.prose h3 { font-size: 1.25rem; margin: 1.6rem 0 .6rem; }
.prose strong { color: var(--slate-800); }
.prose a { color: var(--ciano-600); font-weight: 600; }
.prose a:hover { color: var(--roxo-700); }

/* Layout duas colunas (texto + aside) */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 920px) { .split { grid-template-columns: 1.4fr .9fr; gap: 56px; } }

/* Lista com marcador ciano (check) */
.check-list { list-style: none; }
.check-list li {
  position: relative; padding-left: 2rem; margin-bottom: .9rem;
  color: var(--slate-600); font-size: 1.02rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ciano-500), var(--roxo-700));
}
.check-list li::after {
  content: ""; position: absolute; left: 5px; top: .62em;
  width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* Aside / card de destaque */
.aside-card {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.aside-card h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.aside-card p { color: var(--slate-600); font-size: .96rem; margin-bottom: 1.1rem; }
.aside-card .btn { width: 100%; justify-content: center; }

/* Itens de produto (páginas de linha) */
.product-list { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 1.5rem; }
@media (min-width: 720px) { .product-list { grid-template-columns: 1fr 1fr; } }
.product-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.product-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ciano-300); }
.product-item h3 { font-size: 1.15rem; color: var(--roxo-700); margin-bottom: .4rem; }
.product-item .sku { font-family: var(--font-title); font-weight: 700; color: var(--ciano-600); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.product-item p { color: var(--slate-600); font-size: .95rem; margin: .5rem 0 0; }

/* Tabela simples (aplicações/benefícios) */
.tbl { width: 100%; border-collapse: collapse; margin-top: 1.2rem; font-size: .96rem; }
.tbl th, .tbl td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.tbl th { font-family: var(--font-title); color: var(--roxo-700); }
.tbl td { color: var(--slate-600); }

/* Bloco CTA dentro de página (mini faixa) */
.inline-cta {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--r);
  padding: 36px; text-align: center; margin-top: 56px;
}
.inline-cta h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: .6rem; }
.inline-cta p { color: var(--slate-600); margin-bottom: 1.4rem; max-width: 46rem; margin-inline: auto; }

/* Grid de cards de navegação (visão geral de produtos/soluções) */
.overview-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 640px) { .overview-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .overview-grid { grid-template-columns: repeat(3, 1fr); } }

/* Contato: cards de informação + mapa */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; text-align: center; box-shadow: var(--shadow-sm);
}
.contact-card .ico {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px;
  background: linear-gradient(135deg, var(--ciano-500), var(--roxo-700));
  display: flex; align-items: center; justify-content: center;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-card p, .contact-card a { color: var(--slate-600); font-size: .96rem; }
.contact-card a:hover { color: var(--ciano-600); }
.map-embed {
  margin-top: 48px; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Unidades (fábrica + loja de fábrica) na página de contato */
.units-head { text-align: center; margin: 64px 0 8px; }
.units-head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.units-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 28px; }
@media (min-width: 860px) { .units-grid { grid-template-columns: 1fr 1fr; } }
.unit h3 {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.2rem; color: var(--roxo-700); margin-bottom: .5rem;
}
.unit h3 .badge {
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ciano-600); background: var(--mist-2);
  padding: .2rem .55rem; border-radius: 999px;
}
.unit p { color: var(--slate-600); margin-bottom: 14px; }
.unit p a { color: var(--ciano-600); font-weight: 600; }
.unit .map-embed { margin-top: 0; }
.unit .map-embed iframe { height: 300px; }

/* Tag de placeholder (conteúdo a confirmar pelo cliente) */
.placeholder-note {
  display: inline-block; font-size: .8rem; font-weight: 600;
  color: var(--roxo-700); background: var(--mist-2);
  border: 1px dashed var(--ciano-400); border-radius: 8px;
  padding: .35rem .7rem; margin: .4rem 0;
}
