/* ===================================================================
   FIXLAB — Sistema de design próprio
   Identidade azul (logo) · Space Grotesk + Inter · header pill + hero gradiente
   =================================================================== */
:root {
  /* Tipografia */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --fs-base: 17px;
  --lh: 1.65;

  /* Paleta azul Fixlab — profunda e sofisticada */
  --c-900: #052032;   /* navy mais profundo (footer)        */
  --c-800: #0a3a55;   /* azul-petróleo escuro (headings)    */
  --c-700: #0e4d6e;
  --c-600: #15608a;   /* azul primário (links/botões)       */
  --c-500: #2f8fbf;
  --c-400: #6fa6bf;   /* azul claro suave                   */
  --c-azure: #34a8d6; /* acento vivo (uso pontual)          */
  --c-100: #cfe2ee;
  --c-50:  #f3f7f9;   /* fundo de seção (off-white quente)  */

  --ink: #16242e;        /* texto principal  */
  --ink-soft: #586875;   /* texto secundário */
  --line: #e4ebf0;       /* bordas           */
  --white: #ffffff;

  --grad-azul: linear-gradient(140deg, #0e4d6e 0%, #052032 100%);
  --grad-overlay: linear-gradient(135deg, rgba(8,46,68,.90) 0%, rgba(5,32,50,.95) 100%);
  --shadow-sm: 0 2px 10px rgba(5,32,50,.07);
  --shadow-md: 0 16px 40px rgba(5,32,50,.13);
  --radius: 14px;
  --pill: 999px;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--fs-base); scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: var(--lh); }
img,svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: var(--c-600); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-800); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; color: var(--c-800); letter-spacing: -.01em; }

.fx-container { width: min(1140px, 100% - 3rem); margin-inline: auto; }

/* ===================================================================
   TOPO — header pill flutuante
   =================================================================== */
.fx-header { position: fixed; top: 16px; left: 0; right: 0; z-index: 1000; pointer-events: none; }
.fx-pill {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
  padding: 0 .6rem 0 1.4rem;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(15,68,115,.10);
  border-radius: var(--pill);
  box-shadow: 0 14px 40px rgba(8,42,77,.16);
}
.fx-brand { display: inline-flex; align-items: center; }
.fx-brand img { height: 34px; width: auto; }

.fx-nav { display: flex; align-items: center; justify-content: center; gap: .1rem; }
.fx-nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem .7rem; border-radius: var(--pill);
  font-size: .9rem; font-weight: 600; color: var(--c-800);
  white-space: nowrap; transition: background .15s, color .15s;
}
.fx-nav-link:hover, .fx-nav-trigger[aria-expanded="true"] { background: var(--c-50); color: var(--c-600); }
.fx-nav-item { position: relative; }
.fx-caret { width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-1px); opacity: .7; }

.fx-drop {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 240px; padding: .45rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md);
}
/* ponte invisível: cobre o vão entre o gatilho e o dropdown para o hover não quebrar */
.fx-drop::before {
  content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; background: transparent;
}
.fx-has-drop:hover .fx-drop, .fx-has-drop:focus-within .fx-drop { display: block; }
.fx-drop a { display: block; padding: .6rem .8rem; border-radius: 9px; font-size: .9rem; font-weight: 500; color: var(--ink); }
.fx-drop a:hover { background: var(--c-50); color: var(--c-600); }

.fx-header-actions { display: flex; align-items: center; gap: .5rem; }
.fx-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.2rem; border-radius: var(--pill);
  background: var(--grad-azul); color: #fff; font-size: .88rem; font-weight: 600;
  box-shadow: 0 6px 18px rgba(5,32,50,.22);
}
.fx-cta:hover { color: #fff; filter: brightness(1.07); }
.fx-cta-ico { font-size: .9rem; }

.fx-menu-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--pill); }
.fx-menu-toggle span { width: 20px; height: 2px; background: var(--c-800); border-radius: 2px; transition: .2s; }

/* ===================================================================
   HERO (home) e BANNER (demais páginas) — gradiente azul
   =================================================================== */
.fx-hero, .fx-banner { background: var(--grad-azul); color: #fff; position: relative; overflow: hidden; }
/* textura sutil (pontos) para dar vida ao degradê */
.fx-hero::before, .fx-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.fx-hero::after, .fx-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 88% -20%, rgba(52,168,214,.28), transparent 60%);
}
/* banner com foto + degradê escuro por cima */
.fx-banner--photo { background: var(--grad-overlay), var(--banner-img) center/cover no-repeat; }

.fx-hero-inner { width: min(1140px, 100% - 3rem); margin-inline: auto; position: relative; z-index: 1; padding: 9rem 0 4.5rem; }
.fx-banner-inner { width: min(1140px, 100% - 3rem); margin-inline: auto; position: relative; z-index: 1; padding: 8rem 0 3.5rem; }

.fx-eyebrow { font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-azure); margin-bottom: .9rem; }
.fx-hero-title { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.1; letter-spacing: -.02em; max-width: 17ch; }
.fx-hero-sub { font-size: clamp(1.02rem, 1.8vw, 1.18rem); color: #c4d6e2; margin-top: 1.1rem; max-width: 50ch; }
.fx-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.fx-banner-title { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.15; letter-spacing: -.02em; max-width: 22ch; }
.fx-banner-sub { color: #c4d6e2; margin-top: .8rem; max-width: 58ch; font-size: 1.05rem; }

/* Botões */
.fx-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.6rem; border-radius: var(--pill); font-family: var(--font-head); font-weight: 600; font-size: .95rem; transition: .15s; }
.fx-btn--light { background: #fff; color: var(--c-700); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.fx-btn--light:hover { color: var(--c-800); transform: translateY(-1px); }
.fx-btn--ghost { border: 1.5px solid rgba(255,255,255,.55); color: #fff; }
.fx-btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ===================================================================
   CONTEÚDO
   =================================================================== */
.fx-main { padding: 3.5rem 0 4.5rem; }
.fx-main h1 { font-size: clamp(1.7rem,4vw,2.3rem); margin-bottom: 1.2rem; }
.fx-main h2 { font-size: 1.55rem; margin: 2.2rem 0 .8rem; }
.fx-main h3 { font-size: 1.2rem; margin: 1.6rem 0 .5rem; color: var(--c-700); }
.fx-main p { margin-bottom: 1.05rem; font-size: 1.05rem; color: var(--ink); }
.fx-main ul, .fx-main ol { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.05rem; }
.fx-main li { margin-bottom: .4rem; }
.fx-main a { font-weight: 500; }
.fx-main a:hover { text-decoration: underline; }
.fx-main strong { color: var(--c-800); }
.fx-main img { border-radius: var(--radius); margin: 1.4rem auto; box-shadow: var(--shadow-sm); }

/* CTAs dentro do conteúdo — apenas links com classe .custom viram botão */
.fx-main a.custom {
  display: inline-block; background: var(--grad-azul); color: #fff !important;
  padding: .75rem 1.6rem; border-radius: var(--pill); font-weight: 600; margin: .4rem 0;
  box-shadow: 0 6px 18px rgba(5,32,50,.22);
}
.fx-main a.custom:hover { text-decoration: none; filter: brightness(1.07); }

/* ===================================================================
   LISTAGENS (categoria / tag) e POST
   =================================================================== */
.post-list { display: grid; gap: 1.1rem; padding-left: 0 !important; list-style: none !important; }
.post-card { border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .15s, border-color .15s, transform .15s; }
.post-card:hover { box-shadow: var(--shadow-md); border-color: var(--c-400); transform: translateY(-2px); }
.post-card > a { display: flex; gap: 1.2rem; align-items: stretch; padding: 0; overflow: hidden; }
.post-card-thumb { flex: 0 0 200px; display: block; background: var(--c-50); overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; min-height: 120px; object-fit: cover; display: block; }
.post-card-body { display: block; padding: 1.3rem 1.5rem 1.3rem 0; }
.post-card h2 { font-size: 1.12rem; margin: 0 0 .35rem; }
.post-card:hover h2 { color: var(--c-600); }
.post-card p { font-size: .9rem; color: var(--ink-soft); margin: .4rem 0 0; }
.post-card-meta { font-size: .78rem; color: #93a3b5; font-family: var(--font-head); }

/* Capa do post (banner) */
.post-cover { margin: 0 0 1.8rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.post-cover img { width: 100%; max-height: 380px; object-fit: cover; display: block; }

@media (max-width: 600px) {
  .post-card > a { flex-direction: column; }
  .post-card-thumb { flex-basis: auto; width: 100%; aspect-ratio: 16/9; }
  .post-card-body { padding: 1.1rem 1.3rem; }
}

.pagination { display: flex; align-items: center; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.pagination a { padding: .55rem 1.3rem; background: var(--grad-azul); color: #fff; border-radius: var(--pill); font-size: .88rem; font-weight: 600; }
.pagination a:hover { color: #fff; filter: brightness(1.08); }
.pagination-info { color: var(--ink-soft); font-size: .88rem; font-family: var(--font-head); }

.post { max-width: 800px; }
.post-content { line-height: 1.78; }
.post-content h2, .post-content h3 { margin: 2rem 0 .7rem; }
.post-content p { margin-bottom: 1.1rem; }
.post-content ul, .post-content ol { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.1rem; }
.post-content img { border-radius: var(--radius); margin: 1.3rem auto; box-shadow: var(--shadow-sm); }
.post-meta { font-family: var(--font-head); font-size: .85rem; color: #93a3b5; margin-bottom: 1.8rem; }
.post-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.back-link { font-weight: 600; font-family: var(--font-head); }

/* ===================================================================
   RODAPÉ + menu inferior
   =================================================================== */
.fx-footer { background: var(--c-900); color: #aebfd2; }
.fx-footer-top { width: min(1140px, 100% - 3rem); margin-inline: auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 3rem; padding: 3.5rem 0 2.5rem; }
.fx-footer-brand img { height: 38px; margin-bottom: 1rem; }
.fx-footer-brand p { font-size: .92rem; line-height: 1.6; margin-bottom: 1.2rem; max-width: 38ch; }
.fx-footer-wa { display: inline-flex; align-items: center; gap: .4rem; padding: .6rem 1.3rem; border: 1.5px solid rgba(255,255,255,.25); border-radius: var(--pill); color: #fff; font-weight: 600; font-size: .88rem; }
.fx-footer-wa:hover { background: rgba(255,255,255,.1); color: #fff; }

.fx-footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fx-footer-col h2 { font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: .9rem; }
.fx-footer-col ul li { margin-bottom: .5rem; }
.fx-footer-col a { color: #aebfd2; font-size: .92rem; }
.fx-footer-col a:hover { color: #fff; }
.fx-footer-col address { font-style: normal; font-size: .92rem; line-height: 1.7; }
.fx-footer-col address a { color: #aebfd2; }
.fx-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.fx-footer-bottom p { width: min(1140px, 100% - 3rem); margin-inline: auto; padding: 1.3rem 0; font-size: .8rem; color: #7f93ab; text-align: center; }

/* WhatsApp flutuante */
.fx-wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 1000; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: #25d366; border-radius: 50%; box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform .15s; }
.fx-wa-float:hover { transform: scale(1.07); }

/* ===================================================================
   RESPONSIVO
   =================================================================== */
@media (max-width: 920px) {
  .fx-menu-toggle { display: flex; }
  .fx-nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: .6rem; box-shadow: var(--shadow-md); display: none;
  }
  .fx-header.is-open .fx-nav { display: flex; }
  .fx-nav-link { justify-content: space-between; padding: .75rem .9rem; }
  .fx-drop { position: static; transform: none; display: none; box-shadow: none; border: none; background: var(--c-50); margin: .2rem 0 .2rem .6rem; min-width: 0; }
  .fx-has-drop.is-open .fx-drop { display: block; }
  .fx-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .fx-footer-nav { grid-template-columns: 1fr 1fr; }
  .fx-hero-inner { padding: 8.5rem 0 4rem; }
}
@media (max-width: 560px) {
  .fx-header { top: 10px; }
  .fx-cta { display: none; }
  .fx-footer-nav { grid-template-columns: 1fr; }
}

/* ===================================================================
   HOME — seções
   =================================================================== */
.fx-main--full { padding: 0; }
.fx-section { padding: 4rem 0; }
.fx-section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.fx-kicker { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-600); margin-bottom: .6rem; }
.fx-section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.fx-section-lead { color: var(--ink-soft); margin-top: .7rem; font-size: 1.05rem; }
.fx-center { text-align: center; margin-top: 2.2rem; }

/* Faixa de confiança (sobrepõe o hero) */
.fx-trust { padding: 0; margin-top: -2.5rem; position: relative; z-index: 5; }
.fx-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 1.5rem; }
.fx-trust-item { display: flex; align-items: center; gap: .8rem; }
.fx-trust-item svg { width: 32px; height: 32px; flex-shrink: 0; fill: none; stroke: var(--c-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fx-trust-item strong { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--c-800); }
.fx-trust-item span { font-size: .82rem; color: var(--ink-soft); }

/* Cards de serviço */
.fx-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.fx-card { display: flex; flex-direction: column; padding: 1.8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .15s, box-shadow .15s, border-color .15s; }
.fx-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-400); }
.fx-card-ico { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 14px; background: var(--c-50); margin-bottom: 1.1rem; }
.fx-card-ico svg { width: 28px; height: 28px; fill: none; stroke: var(--c-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.fx-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.fx-card p { color: var(--ink-soft); font-size: .95rem; flex-grow: 1; margin-bottom: 1rem; }
.fx-card-link { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--c-600); }
.fx-card:hover .fx-card-link { color: var(--c-800); }

/* Como funciona */
.fx-steps-wrap { background: var(--c-50); }
.fx-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fx-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center; }
.fx-step-n { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--grad-azul); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 1rem; }
.fx-step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.fx-step p { color: var(--ink-soft); font-size: .95rem; }

/* Marcas */
.fx-brands { text-align: center; }
.fx-brands img { margin: 1rem auto 0; max-width: 600px; width: 100%; height: auto; opacity: .92; }

/* Posts recentes */
.fx-posts-wrap { background: var(--c-50); }
.fx-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.fx-post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .15s, box-shadow .15s; }
.fx-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fx-post-thumb { display: block; aspect-ratio: 16/9; background: var(--c-50); overflow: hidden; }
.fx-post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fx-post-body { display: flex; flex-direction: column; flex-grow: 1; padding: 1.4rem; }
.fx-post-date { font-family: var(--font-head); font-size: .78rem; color: #93a3b5; margin-bottom: .5rem; }
.fx-post-card h3 { font-size: 1.05rem; line-height: 1.35; margin-bottom: .5rem; }
.fx-post-card p { color: var(--ink-soft); font-size: .9rem; flex-grow: 1; margin-bottom: .8rem; }

/* Botão outline */
.fx-btn--outline { border: 1.5px solid var(--c-600); color: var(--c-600); }
.fx-btn--outline:hover { background: var(--c-600); color: #fff; }

/* Faixa de CTA */
.fx-cta-band { background: var(--grad-azul); color: #fff; padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.fx-cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 0%, rgba(25,168,232,.4), transparent 55%); }
.fx-cta-band > .fx-container { position: relative; z-index: 1; }
.fx-cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.fx-cta-band p { color: #dbe8f6; max-width: 56ch; margin: .9rem auto 0; }
.fx-cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }

@media (max-width: 920px) {
  .fx-trust-grid { grid-template-columns: 1fr 1fr; }
  .fx-services, .fx-steps, .fx-posts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fx-trust-grid, .fx-services, .fx-steps, .fx-posts { grid-template-columns: 1fr; }
  .fx-section { padding: 3rem 0; }
}

/* ===================================================================
   LANDING PAGE (vendas) — standalone
   =================================================================== */
.lp-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.lp-header-in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.lp-brand img { height: 34px; width: auto; display: block; }

.lp-hero { background: var(--grad-azul); color: #fff; position: relative; overflow: hidden; }
.lp-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 0%, rgba(25,168,232,.45), transparent 55%); }
.lp-hero .fx-container { position: relative; z-index: 1; padding: 4.5rem 0; }
.lp-eyebrow { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c-100); margin-bottom: 1rem; }
.lp-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); max-width: 20ch; }
.lp-sub { color: #dbe8f6; font-size: clamp(1.05rem,2vw,1.2rem); margin-top: 1rem; max-width: 56ch; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.lp-section { padding: 4rem 0; }
.lp-section--alt { background: var(--c-50); }
.lp-head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.lp-head h2 { font-size: clamp(1.6rem,3.5vw,2.1rem); }

.lp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.lp-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; transition: transform .15s, box-shadow .15s, border-color .15s; }
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-400); }
.lp-ico { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 14px; background: var(--c-50); margin-bottom: 1.1rem; }
.lp-ico svg { width: 28px; height: 28px; fill: none; stroke: var(--c-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.lp-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.lp-card p { color: var(--ink-soft); font-size: .95rem; }

.lp-models-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.lp-models-grid > div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.lp-models-grid h3 { color: var(--c-800); margin-bottom: .5rem; }
.lp-models-grid p { color: var(--ink-soft); font-size: .95rem; }

.lp-cta { background: var(--grad-azul); color: #fff; text-align: center; padding: 4rem 0; position: relative; overflow: hidden; }
.lp-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 0%, rgba(25,168,232,.4), transparent 55%); }
.lp-cta .fx-container { position: relative; z-index: 1; }
.lp-cta h2 { color: #fff; font-size: clamp(1.6rem,3.5vw,2.2rem); }
.lp-cta p { color: #dbe8f6; max-width: 54ch; margin: .9rem auto 0; }
.lp-cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }

.lp-footer { background: var(--c-900); color: #aebfd2; text-align: center; padding: 3rem 0 2rem; }
.lp-footer img { height: 36px; margin: 0 auto 1rem; }
.lp-footer p { font-size: .92rem; margin-bottom: .5rem; max-width: 60ch; margin-inline: auto; }
.lp-footer-info a { color: #dbe8f6; }
.lp-footer-copy { color: #7f93ab; font-size: .8rem; margin-top: 1rem; }

@media (max-width: 920px){ .lp-grid, .lp-models-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .lp-grid, .lp-models-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   PÁGINA A FIXLAB — intro, local, FAQ
   =================================================================== */
.fx-btn--primary { background: var(--grad-azul); color: #fff; box-shadow: 0 8px 22px rgba(5,32,50,.22); }
.fx-btn--primary:hover { color: #fff; filter: brightness(1.07); }

.fx-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.fx-intro-text h2 { font-size: clamp(1.6rem,3.2vw,2.1rem); margin-bottom: 1rem; }
.fx-intro-text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1rem; }
.fx-intro-text strong { color: var(--c-800); }
.fx-intro-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.fx-intro-img { margin: 0; }
.fx-intro-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.fx-local { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.fx-local-img { margin: 0; }
.fx-local-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); object-fit: cover; }
.fx-local-text h2 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 1rem; }
.fx-local-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.fx-local-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.fx-local-list li { padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .98rem; color: var(--ink); }
.fx-local-list strong { color: var(--c-800); }
.fx-local-list a { color: var(--c-600); }

.fx-faq-wrap { max-width: 820px; }
.fx-faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .8rem; overflow: hidden; }
.fx-faq summary { cursor: pointer; padding: 1.1rem 1.4rem; font-family: var(--font-head); font-weight: 600; color: var(--c-800); list-style: none; position: relative; padding-right: 3rem; }
.fx-faq summary::-webkit-details-marker { display: none; }
.fx-faq summary::after { content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--c-600); font-weight: 400; }
.fx-faq details[open] summary::after { content: "−"; }
.fx-faq details[open] summary { color: var(--c-600); }
.fx-faq details p { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 860px) {
  .fx-intro, .fx-local { grid-template-columns: 1fr; gap: 2rem; }
  .fx-local-img { order: 2; }
}

/* ===================================================================
   BANNER — altura uniforme em todas as páginas (navegação fluida)
   =================================================================== */
.fx-banner { display: flex; align-items: flex-end; min-height: 360px; }
.fx-banner .fx-banner-inner { padding: 6rem 0 2.8rem; width: 100%; }
@media (max-width: 600px){ .fx-banner { min-height: 300px; } .fx-banner .fx-banner-inner { padding: 5rem 0 2rem; } }

/* ===================================================================
   MEGA-MENU (Assistência Técnica) — submenus agrupados
   =================================================================== */
.fx-drop--mega {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: .2rem 1.6rem;
  width: min(900px, calc(100vw - 2rem));
  padding: 1.2rem 1.4rem;
}
/* só vira grid quando o dropdown está aberto (hover/foco) */
.fx-has-drop:hover .fx-drop--mega,
.fx-has-drop:focus-within .fx-drop--mega { display: grid; }
.fx-mega-col { display: flex; flex-direction: column; }
.fx-mega-h {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-azure);
  padding: .3rem .6rem; margin-bottom: .2rem; border-bottom: 1px solid var(--line);
}
.fx-drop--mega a { padding: .45rem .6rem; border-radius: 8px; font-size: .88rem; }

@media (max-width: 920px) {
  .fx-drop--mega {
    grid-template-columns: 1fr 1fr; width: 100%; gap: .2rem .8rem; padding: .6rem;
  }
}
@media (max-width: 560px) {
  .fx-drop--mega { grid-template-columns: 1fr; }
}
