/* Sauce Tecnologia — CSS da home */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
   /* Esconde o mouse padrão só em dispositivos com mouse; JS reativa se falhar */
   @media (hover: hover) and (pointer: fine) {
     body.custom-cursor-on, body.custom-cursor-on * { cursor: none !important; }
   }
   .cursor-dot, .cursor-outline { display: none; }
   body.custom-cursor-on .cursor-dot, body.custom-cursor-on .cursor-outline { display: block; }

  .cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    transition: width 0.2s ease-out, height 0.2s ease-out, background-color 0.2s ease-out, border-radius 0.2s ease-out;
  }

  .cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--yellow, #D4E600);
  }

  .cursor-outline {
    width: 36px;
    height: 28px;
    border: 1.5px solid var(--yellow, #D4E600);
    border-radius: 4px; /* Começa como um "quadrado/monitor" */
    box-shadow: 0 0 15px rgba(212, 230, 0, 0.3);
  }

  /* Efeito de Hover */
  .cursor-outline.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 230, 0, 0.1);
    border-radius: 50%; /* Fica circular no hover */
  }
  :root {
    --bg: #F4F3F0;
    --white: #FFFFFF;
    --g950: #0E0E0E;
    --g900: #1A1A1A;
    --g800: #2C2C2C;
    --g700: #3D3D3D;
    --g600: #555555;
    --g500: #717171;
    --g400: #9A9A9A;
    --g300: #C4C4C4;
    --g200: #DEDEDE;
    --g100: #EFEFEF;
    --g50: #F8F8F6;
    --yellow: #D4E600;
    --yellow-dark: #A8B800;
    --border: rgba(0,0,0,0.08);
    --border2: rgba(0,0,0,0.14);
    --f: 'Manrope', system-ui, -apple-system, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--g900); font-family: var(--f); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

  /* NAV */
  #main-nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 16px 52px; background: rgba(244,243,240,0.97); border-bottom: 1px solid var(--border); backdrop-filter: blur(10px); }
  .nav-logo img { height: 90px; width: 160px; display: block; object-fit: contain; }
  .nav-logo-fb { font-size: 19px; font-weight: 900; color: var(--g900); letter-spacing: -0.5px; }
  .nav-logo-fb span { color: var(--yellow-dark); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: var(--g500); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--g900); }
  .nav-links a.nav-quiz-link { background: var(--yellow); color: var(--g950); font-weight: 800; padding: 7px 14px; border-radius: 20px; }
  .nav-links a.nav-quiz-link:hover { filter: brightness(.95); color: var(--g950); }
  .nav-cta { background: var(--g900); color: var(--white); padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .2s; display: flex; align-items: center; gap: 7px; }
  .nav-cta:hover { background: var(--g800); }
  .nav-cta-dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--g900); border-radius: 2px; }

  /* HERO */
  .hero { position: relative; background: var(--g950); color: var(--white); padding: 130px 52px 90px; overflow: hidden; min-height: 96vh; display: flex; flex-direction: column; justify-content: center; }
  .hero-gfx { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .hero-grid-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .07; }
  .hero-arc { position: absolute; right: -80px; top: -80px; width: 600px; height: 600px; opacity: .06; }
  .hero-dots { position: absolute; bottom: 0; left: 0; width: 40%; height: 50%; opacity: .07; }
  .hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px; width: fit-content; }
  .tag-bar { width: 18px; height: 2px; background: var(--yellow); border-radius: 1px; flex-shrink: 0; }
  h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 900; line-height: 1.02; letter-spacing: -3px; max-width: 820px; margin-bottom: 28px; color: var(--white); }
  h1 .yl { color: var(--yellow); }
  .hero-sub { font-size: 17px; color: rgba(255,255,255,0.5); max-width: 520px; line-height: 1.8; margin-bottom: 52px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }
  .btn-primary { display: inline-flex; align-items: center; gap: 9px; background: var(--yellow); color: var(--g950); padding: 14px 28px; border-radius: 7px; font-size: 14px; font-weight: 800; text-decoration: none; transition: all .2s; }
  .btn-primary:hover { background: #c8d900; transform: translateY(-1px); }
  .btn-secondary { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); padding: 14px 22px; border-radius: 7px; font-size: 14px; font-weight: 500; text-decoration: none; border: 1px solid rgba(255,255,255,0.15); transition: all .2s; }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }
  .hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.1); }
  .hstat { padding: 28px 0; border-right: 1px solid rgba(255,255,255,0.08); }
  .hstat:not(:first-child) { padding-left: 36px; }
  .hstat:last-child { border-right: none; }
  .hstat-v { font-size: 36px; font-weight: 900; color: var(--white); letter-spacing: -1.5px; line-height: 1; }
  .hstat-v span { color: var(--yellow); }
  .hstat-l { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 5px; font-weight: 500; }

  /* LOGOS */
  .logos-strip { background: var(--white); padding: 24px 52px; border-bottom: 1px solid var(--border); }
  .logos-label { font-size: 11px; color: var(--g400); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 16px; }
  
  
  .lc:hover { border-color: var(--g700); color: var(--g700); }

  /* SHARED */
  .sec-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .eyebrow-bar { width: 24px; height: 3px; background: var(--yellow); border-radius: 2px; flex-shrink: 0; }
  .eyebrow-txt { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--g500); }
  .sec-h { font-size: clamp(28px, 3.2vw, 44px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; color: var(--g950); margin-top: 10px; }
  .btn-ghost-sm { display: inline-flex; align-items: center; gap: 6px; color: var(--g600); padding: 9px 18px; border-radius: 6px; font-size: 13px; font-weight: 500; text-decoration: none; border: 1px solid var(--g200); transition: all .2s; }
  .btn-ghost-sm:hover { border-color: var(--g400); color: var(--g900); }

  /* PAIN */
  .pain-sec { background: var(--white); padding: 96px 52px; }
  .pain-inner { max-width: 1200px; margin: 0 auto; }
  .pain-headline { font-size: clamp(28px, 3.2vw, 44px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: var(--g950); max-width: 700px; margin-bottom: 56px; margin-top: 10px; }
  .pain-headline em { font-style: normal; border-bottom: 2px solid var(--yellow); }
  .pain-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--g200); border-radius: 12px; overflow: hidden; }
  .pc { background: var(--white); padding: 36px 30px; position: relative; overflow: hidden; }
  .pc-num { font-size: 11px; font-weight: 700; color: var(--g300); letter-spacing: 2px; margin-bottom: 20px; font-family: monospace; }
  .pc-icon { margin-bottom: 18px; }
  .pc h3 { font-size: 16px; font-weight: 700; color: var(--g900); margin-bottom: 10px; letter-spacing: -.3px; }
  .pc p { font-size: 14px; color: var(--g500); line-height: 1.75; }
  .pc-accent { position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--yellow); transition: height .4s ease; }
  .pc:hover .pc-accent { height: 100%; }

  /* SOLUTIONS */
  .sol-sec { background: var(--bg); padding: 96px 52px; }
  .sol-inner { max-width: 1200px; margin: 0 auto; }
  .sol-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
  .sol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .sc { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px 26px; transition: all .25s; position: relative; overflow: hidden; }
  .sc:hover { border-color: var(--g300); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
  .sc.feat { border-color: var(--g200); background: var(--g950); }
  .sc-top-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
  .sc.feat .sc-top-line, .sc:hover .sc-top-line { transform: scaleX(1); }
  .feat-badge { display: inline-block; background: rgba(212,230,0,0.15); color: var(--yellow-dark); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px; }
  .feat .feat-badge { background: rgba(212,230,0,0.2); color: var(--yellow); }
  .sc-ico { width: 44px; height: 44px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--g100); border: 1px solid var(--g200); }
  .feat .sc-ico { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
  .sc-ico svg { width: 20px; height: 20px; stroke: var(--g700); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .feat .sc-ico svg { stroke: var(--yellow); }
  .sc h3 { font-size: 16px; font-weight: 700; color: var(--g900); letter-spacing: -.3px; margin-bottom: 9px; }
  .feat h3 { color: var(--white); }
  .sc p { font-size: 13px; color: var(--g500); line-height: 1.75; }
  .feat p { color: rgba(255,255,255,0.5); }
  .sc-lnk { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--g400); margin-top: 18px; text-decoration: none; opacity: 0; transition: all .2s; }
  .feat .sc-lnk { color: var(--yellow); opacity: 1; }
  .sc:hover .sc-lnk { opacity: 1; color: var(--g700); }
  .feat:hover .sc-lnk { color: var(--yellow); }

  /* DIFERENCIAIS */
  .diff-sec { background: var(--g950); padding: 96px 52px; position: relative; overflow: hidden; }
  .diff-gfx { position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: .05; }
  .diff-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .diff-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  .diff-left > p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.8; margin: 16px 0 36px; }
  .diff-items { display: flex; flex-direction: column; }
  .di { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; gap: 18px; align-items: flex-start; }
  .di:last-child { border-bottom: none; }
  .di-num { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.2); font-family: monospace; letter-spacing: 1px; padding-top: 2px; flex-shrink: 0; width: 24px; }
  .di h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 5px; letter-spacing: -.3px; }
  .di p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; }
  .di-accent { width: 2px; height: 0; background: var(--yellow); border-radius: 1px; flex-shrink: 0; margin-top: 4px; transition: height .3s ease; }
  .di:hover .di-accent { height: 48px; }

  /* CASES */
  .case-sec { background: var(--white); padding: 96px 52px; }
  .case-inner { max-width: 1200px; margin: 0 auto; }
  .case-card { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; }
  .case-body { padding: 52px; background: var(--white); }
  .case-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--g400); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
  .case-tag-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }
  .case-body h2 { font-size: clamp(20px, 2.2vw, 30px); font-weight: 800; color: var(--g950); letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px; }
  .case-body > p { font-size: 14px; color: var(--g500); line-height: 1.75; margin-bottom: 28px; }
  .kpis { display: flex; gap: 12px; margin-bottom: 32px; }
  .kpi { flex: 1; background: var(--g50); border: 1px solid var(--g200); border-radius: 8px; padding: 14px; text-align: center; }
  .kpi-v { font-size: 22px; font-weight: 900; color: var(--g950); letter-spacing: -1px; }
  .kpi-v span { color: var(--yellow-dark); }
  .kpi-l { font-size: 11px; color: var(--g400); margin-top: 3px; }
  .case-visual { background: var(--g100); display: flex; align-items: center; justify-content: center; min-height: 320px; }
  .cv-inner { text-align: center; padding: 40px; }
  .cv-inner p { font-size: 12px; color: var(--g400); margin-top: 12px; }

  /* SEGMENTS */
  .segs-sec { background: var(--bg); padding: 72px 52px; border-top: 1px solid var(--border); }
  .segs-inner { max-width: 1200px; margin: 0 auto; }
  .seg-grid { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 40px; }
  .sg { background: var(--white); border: 1px solid var(--border2); border-radius: 100px; padding: 9px 20px; font-size: 13px; font-weight: 500; color: var(--g600); transition: all .2s; display: flex; align-items: center; gap: 7px; cursor: default; }
  .sg:hover { background: var(--g900); border-color: var(--g900); color: var(--white); }
  .sg-dot { width: 5px; height: 5px; background: var(--g300); border-radius: 50%; flex-shrink: 0; transition: background .2s; }
  .sg:hover .sg-dot { background: var(--yellow); }

  /* CTA */
  .cta-sec { background: var(--g900); padding: 96px 52px; position: relative; overflow: hidden; }
  .cta-gfx { position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: .05; }
  .cta-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
  .cta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,230,0,0.12); border: 1px solid rgba(212,230,0,0.25); color: var(--yellow); padding: 5px 16px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; }
  .cta-sec h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 900; color: var(--white); letter-spacing: -2px; line-height: 1.05; margin-bottom: 18px; }
  .cta-sec p { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 40px; line-height: 1.75; }
  .btn-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--yellow); color: var(--g950); padding: 16px 36px; border-radius: 8px; font-size: 15px; font-weight: 800; text-decoration: none; transition: all .2s; }
  .btn-cta:hover { background: #c8d900; transform: translateY(-1px); }
  .cta-note { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 16px; }

    /* FOOTER */
  footer { background: var(--g950); border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 52px 36px; }
  .foot-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .foot-brand { display: flex; flex-direction: column; }
  .foot-logo img { width: 140px; height: 70px; display: block; object-fit: contain; }
  .foot-logo-fb { font-size: 17px; font-weight: 900; color: rgba(255,255,255,0.7); }
  .foot-logo-fb span { color: var(--yellow); }
  .foot-tagline { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
  .foot-socials { display: flex; gap: 10px; }
  .foot-social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .2s; flex-shrink: 0; }
  .foot-social:hover { border-color: var(--yellow); background: rgba(212,230,0,0.08); }
  .foot-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); transition: fill .2s; }
  .foot-social:hover svg { fill: var(--yellow); }
  .foot-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
  .foot-col-links { display: flex; flex-direction: column; gap: 10px; }
  .foot-col-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
  .foot-col-links a:hover { color: var(--white); }
  .foot-address { display: flex; flex-direction: column; gap: 4px; }
  .foot-address-city { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); margin-top: 16px; }
  .foot-address-city:first-child { margin-top: 0; }
  .foot-address p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; }
  .foot-address a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
  .foot-address a:hover { color: var(--yellow); }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
  .foot-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
  .foot-nman { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .foot-nman span { font-size: 11px; color: rgba(255,255,255,0.2); white-space: nowrap; }
  .foot-nman img { height: 20px; width: auto; opacity: .45;  transition: opacity .2s; }
  .foot-nman:hover img { opacity: .75; }
  .foot-nman { display: flex; align-items: center; gap: 10px; }
  .foot-nman span { font-size: 11px; color: rgba(255,255,255,0.2); white-space: nowrap; }
  .foot-nman img { height: 20px; width: auto; opacity: .45;  transition: opacity .2s; }
  .foot-nman:hover img { opacity: .75; }
  @media (max-width: 900px) {
    footer { padding: 48px 24px 32px; }
    .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  }
  @media (max-width: 600px) {
    .foot-top { grid-template-columns: 1fr; }
  }

  /* WHATSAPP */
  .wpp { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,.35); transition: transform .2s; }
  .wpp:hover { transform: scale(1.08); }
  .wpp svg { width: 24px; height: 24px; fill: white; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .diff-layout { grid-template-columns: 1fr; gap: 52px; }
  }
  @media (max-width: 900px) {
    #main-nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(244,243,240,0.98); padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 16px; z-index: 99; }
    .hero { padding: 100px 24px 60px; min-height: auto; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hstat:nth-child(2) { border-right: none; }
    .logos-strip, 
      .sol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .case-card { grid-template-columns: 1fr; }
    .case-visual { min-height: 200px; }
    footer { padding: 48px 24px 32px; }
    .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  }
  @media (max-width: 600px) {
    h1 { letter-spacing: -1.5px; }
    .sol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .kpis { flex-direction: column; }
    .foot-links { flex-wrap: wrap; gap: 16px; }
  }

  .nav-logo a { text-decoration: none; display: flex; align-items: center; }

  /* ── FOOTER PATCHES ── */
  .foot-col h4 { color: #D4E600 !important; }
  .foot-address-city { color: #F0F0EB !important; font-weight: 700; }
  .foot-bottom {
    background: #cf3c00;
    margin: 0 -52px -36px;
    padding: 22px 52px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .foot-copy { color: rgba(255,255,255,0.85); font-size: 13px; }
  .foot-nman { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .foot-nman span { font-size: 13px; color: rgba(255,255,255,0.85); white-space: nowrap; }
  .foot-nman img { height: 30px; width: auto; opacity: .95;  transition: opacity .2s; }
  .foot-nman:hover img { opacity: 1; }
  @media (max-width: 900px) {
    .foot-bottom { margin: 0 -24px -32px; padding: 20px 24px; }
  }

  /* ── LOGOS SLIDER ── */
  .logos-strip { background: var(--white); padding: 24px 52px; border-bottom: 1px solid var(--border); }
  .logos-label { font-size: 11px; color: var(--g400); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 18px; }
  .logos-slider-wrap { display: flex; align-items: center; gap: 12px; }
  .lc-arrow { flex-shrink: 0; width: 36px; height: 36px; border: 1px solid var(--yellow); border-radius: 8px; background: transparent; color: var(--yellow-dark); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
  .lc-arrow:hover { background: var(--yellow); color: var(--g950); }
  .logos-track-wrap { overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
  .logos-track { display: flex; gap: 12px; animation: logosScroll 44s linear infinite; width: max-content; }
  .logos-track:hover { animation-play-state: paused; }
  @keyframes logosScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .lc-slide { flex-shrink: 0; width: 96px; height: 96px; border: 1px solid var(--yellow); border-radius: 8px; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 10px; overflow: hidden; }
  .lc-slide img { width: 72px; height: 72px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .25s, opacity .25s, transform .25s; display: block; }
  .lc-slide:hover img { filter: none; opacity: 1; transform: scale(1.25); }
  @media (max-width: 900px) {
    .pain-cols { grid-template-columns: 1fr; } .logos-strip { padding: 20px 24px; } .lc-arrow { width: 30px; height: 30px; } }


/* ── FORMULÁRIO DE CONTATO ── */
.contact-sec { background: var(--white); padding: 88px 52px; border-top: 1px solid var(--border); }
.contact-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -1px; color: var(--g950); line-height: 1.12; margin-bottom: 14px; }
.contact-info p { font-size: 15px; color: var(--g500); line-height: 1.65; margin-bottom: 22px; }
.contact-info .contact-alt { font-size: 13px; color: var(--g400); }
.contact-info .contact-alt a { color: var(--yellow-dark); font-weight: 700; text-decoration: none; }
.contact-info .contact-alt a:hover { text-decoration: underline; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .cf-full { grid-column: 1 / -1; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; color: var(--g700); margin-bottom: 6px; letter-spacing: .3px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; font-family: var(--f); font-size: 14px; color: var(--g900);
  background: var(--g50); border: 1px solid var(--border2); border-radius: 8px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow-dark); box-shadow: 0 0 0 3px rgba(212,230,0,0.25); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button[type="submit"] {
  grid-column: 1 / -1; padding: 15px 28px; font-family: var(--f); font-size: 15px; font-weight: 800;
  background: var(--yellow); color: var(--g950); border: none; border-radius: 8px; cursor: pointer; transition: filter .2s, transform .15s;
}
.contact-form button[type="submit"]:hover { filter: brightness(0.94); transform: translateY(-1px); }
.contact-form button[type="submit"]:disabled { opacity: .6; cursor: default; transform: none; }
.cf-msg { grid-column: 1 / -1; font-size: 14px; font-weight: 700; padding: 12px 14px; border-radius: 8px; display: none; }
.cf-msg.ok { display: block; background: rgba(212,230,0,0.18); color: #5a6600; border: 1px solid var(--yellow-dark); }
.cf-msg.err { display: block; background: rgba(200,40,40,0.08); color: #a03030; border: 1px solid rgba(200,40,40,0.3); }
@media (max-width: 900px) {
  .contact-sec { padding: 64px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { grid-template-columns: 1fr; }
}
