/* Fluxusmed home — preserved section styles, progressively enhanced. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }
/* ===== Hero: Hero.html ===== */
    /* ─── VARIÁVEIS ──────────────────────────────────────────── */
    :root {
      --navy:   #0B1F3A;
      --teal:   #2ABFBF;
      --teal-d: #1A9999;
      --white:  #FFFFFF;
      --gray-2: #8A9BB0;
      --gray-3: #D9E3EF;
    }
    
    /* ─── RESET ESCOPO TOTAL ─────────────────────────────────── */
    #fm-hero {
      all: initial;
      display: flex;
      position: relative;
      width: 100%;
      min-height: 100vh;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #ffffff;
      font-family: 'Inter', sans-serif;
      box-sizing: border-box;
      isolation: isolate;
    }
    #fm-hero * {
      box-sizing: border-box;
    }
    
    /* ─── NAVBAR ─────────────────────────────────────────────── */
    #fm-navbar {
      all: unset;
      display: flex;
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 20;
      align-items: center;
      justify-content: space-between;
      padding: 28px 64px;
      opacity: 0;
      box-sizing: border-box;
    }
    #fm-navbar-logo img {
      all: unset;
      display: block;
      height: 100px;
      width: auto;
    }
    #fm-navbar-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
    }
    .fm-logo-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .08em;
      color: var(--navy);
      white-space: nowrap;
    }
    #fm-navbar-cta {
      all: unset;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      border: 1.5px solid rgba(11,31,58,0.2);
      border-radius: 8px;
      padding: 10px 22px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(8px);
      cursor: pointer;
      transition: all .25s ease;
      white-space: nowrap;
      line-height: 1;
    }
    #fm-navbar-cta:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }
    .fm-navbar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    #fm-login-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      border: 1.5px solid var(--navy);
      border-radius: 8px;
      padding: 10px 22px;
      background: var(--navy);
      cursor: pointer;
      transition: transform .25s ease, background .25s ease, border-color .25s ease;
      white-space: nowrap;
      line-height: 1;
    }
    #fm-login-btn:hover {
      background: var(--teal-d);
      border-color: var(--teal-d);
    }
    
    /* ─── VÍDEO & OVERLAYS ───────────────────────────────────── */
    .fm-media {
      position: relative;
      z-index: 6;
      min-width: 0;
      min-height: 100vh;
      overflow: hidden;
      background: #ffffff;
    }
    #fm-video-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 2;
      opacity: 0;
      pointer-events: none;
      transition: opacity .7s ease;
    }
    .fm-media-cover,
    .fm-media-final {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
      transition: opacity .7s ease;
    }
    .fm-media-cover {
      z-index: 1;
      opacity: 1;
    }
    .fm-media-final {
      z-index: 3;
      opacity: 0;
    }
    .fm-media.is-playing #fm-video-bg {
      opacity: 1;
    }
    .fm-media.is-playing .fm-media-cover {
      opacity: 0;
    }
    .fm-media.is-holding .fm-media-final {
      opacity: 1;
    }
    #fm-video-overlay {
      position: absolute; inset: 0; z-index: 3;
      /* Gradiente levemente mais opaco para compensar o blur */
      background: linear-gradient(160deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.82) 50%,
        rgba(240,252,252,0.95) 100%
      );
      pointer-events: none;
    }
    
    /* ─── HALFTONE DITHER ────────────────────────────────────── */
    #fm-halftone {
      position: absolute; inset: 0; z-index: 4;
      pointer-events: none; opacity: 0;
      background-image: radial-gradient(
        circle,
        rgba(42,191,191,0.18) 1px,
        transparent 1px
      );
      background-size: 18px 18px;
      -webkit-mask-image: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        transparent 40%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.9) 100%
      );
      mask-image: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        transparent 40%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.9) 100%
      );
    }
    
    /* ─── DECORATIVOS ────────────────────────────────────────── */
    #fm-glow {
      position: absolute;
      top: -8%; left: 50%; transform: translateX(-50%);
      width: 1100px; height: 680px;
      background: radial-gradient(ellipse at 50% 40%,
        rgba(42,191,191,0.11) 0%, transparent 68%);
      z-index: 4; pointer-events: none;
    }
    #fm-grid {
      position: absolute; inset: 0; z-index: 4;
      opacity: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(42,191,191,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,191,191,0.03) 1px, transparent 1px);
      background-size: 70px 70px;
    }
    
    /* ─── CONTEÚDO ───────────────────────────────────────────── */
    #fm-content {
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      align-items: stretch;
      width: 100%;
      min-height: 100vh;
      padding: 0;
      text-align: left;
    }
    .fm-copy {
      display: flex;
      min-width: 0;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 150px clamp(36px, 5vw, 88px) 120px;
    }
    
    /* Linha dupla */
    .fm-line {
      display: flex; align-items: center; gap: 10px;
      margin: 0 0 32px 0; padding: 0;
    }
    .fm-line-bar {
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--teal), transparent);
      border-radius: 99px; width: 0;
    }
    .fm-line-dot {
      width: 8px; height: 8px;
      background: var(--teal); border-radius: 50%;
      box-shadow: 0 0 14px rgba(42,191,191,0.8);
      opacity: 0; flex-shrink: 0;
    }
    
    /* Eyebrow */
    .fm-eyebrow {
      all: unset;
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--teal);
      background: rgba(42,191,191,0.07);
      border: 1px solid rgba(42,191,191,0.25);
      padding: 8px 20px; border-radius: 999px;
      margin: 0 0 30px 0;
      opacity: 0; backdrop-filter: blur(6px);
      box-sizing: border-box;
    }
    .fm-eyebrow svg {
      width: 12px; height: 12px;
      stroke: var(--teal); fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0;
    }
    
    /* Título */
    .fm-title {
      all: unset;
      display: block;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: clamp(42px, 4.4vw, 72px);
      line-height: 1.08; letter-spacing: -0.03em;
      color: var(--navy);
      margin: 0 0 24px 0; padding: 0;
      max-width: 720px;
    }
    .fm-title .ww {
      display: inline-block; overflow: hidden;
      vertical-align: bottom; line-height: 1.18;
    }
    .fm-title .w {
      display: inline-block;
      transform: translateY(110%);
    }
    .fm-title .hl { color: var(--teal); }
    
    /* Subtítulo */
    .fm-subtitle {
      all: unset;
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: clamp(15px, 1.4vw, 18px); /* Fonte ligeiramente menor */
      font-weight: 400; color: var(--gray-2);
      line-height: 1.65; max-width: 620px;
      margin: 0 0 48px 0; padding: 0; opacity: 0;
    }
    .fm-subtitle strong { color: var(--navy); font-weight: 600; }
    
    /* ─── BOTÕES ─────────────────────────────────────────────── */
    .fm-ctas {
      all: unset;
      display: flex; gap: 16px; flex-wrap: wrap;
      justify-content: flex-start; align-items: center;
      margin: 0 0 48px 0; padding: 0;
      opacity: 0; list-style: none;
    }
    
    .fm-btn {
      all: unset;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 15px !important;
      font-weight: 600 !important;
      line-height: 1 !important;
      padding: 16px 40px !important;
      border-radius: 10px !important;
      white-space: nowrap !important;
      text-decoration: none !important;
      cursor: pointer !important;
      position: relative !important;
      overflow: hidden !important;
      transition: all .3s cubic-bezier(.4,0,.2,1) !important;
      box-sizing: border-box !important;
    }
    .fm-btn svg {
      width: 17px !important; height: 17px !important;
      stroke: currentColor !important; fill: none !important;
      stroke-width: 2.5 !important;
      stroke-linecap: round !important; stroke-linejoin: round !important;
      flex-shrink: 0 !important;
      display: block !important;
    }
    /* Shimmer primário */
    .fm-btn--primary::after {
      content: '';
      position: absolute; top: -50%; left: -75%;
      width: 50%; height: 200%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
      transform: skewX(-15deg);
      transition: left .55s ease;
    }
    .fm-btn--primary:hover::after { left: 130%; }
    
    .fm-btn--primary {
      background: linear-gradient(135deg, #2ABFBF, #1A9999) !important;
      color: #fff !important;
      border: none !important;
      box-shadow: 0 4px 22px rgba(42,191,191,.30), 0 1px 4px rgba(42,191,191,.18) !important;
    }
    .fm-btn--primary:hover {
      box-shadow: 0 12px 36px rgba(42,191,191,.42), 0 4px 8px rgba(42,191,191,.2) !important;
    }
    .fm-btn--outline {
      background: rgba(255,255,255,0.75) !important;
      color: #0B1F3A !important;
      border: 2px solid rgba(11,31,58,0.22) !important;
      backdrop-filter: blur(8px) !important;
    }
    .fm-btn--outline:hover {
      background: #0B1F3A !important;
      color: #fff !important;
      border-color: #0B1F3A !important;
      box-shadow: 0 12px 32px rgba(11,31,58,.20) !important;
    }
    
    /* ─── TRUST BAR ──────────────────────────────────────────── */
    #fm-trust {
      position: relative; z-index: 10;
      display: flex; flex-direction: column;
      align-items: flex-start; gap: 16px;
      opacity: 0; margin: 0; padding: 0;
    }
    .fm-trust-label {
      all: unset;
      display: flex; align-items: center; gap: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--gray-2);
    }
    .fm-trust-label::before,
    .fm-trust-label::after {
      content: ''; width: 40px; height: 1px;
      background: var(--gray-3); display: block;
    }
    .fm-trust-badges {
      all: unset;
      display: flex !important; gap: 10px !important;
      flex-wrap: wrap !important; justify-content: flex-start !important;
      align-items: center !important;
      margin: 0 !important; padding: 0 !important;
      list-style: none !important;
    }
    .fm-badge {
      all: unset;
      display: inline-flex !important;
      align-items: center !important; gap: 8px !important;
      border: 1px solid #D9E3EF !important;
      border-radius: 999px !important;
      padding: 10px 20px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 12px !important; font-weight: 500 !important;
      color: #0B1F3A !important;
      background: rgba(255,255,255,0.85) !important;
      backdrop-filter: blur(8px) !important;
      box-shadow: 0 2px 10px rgba(11,31,58,.06) !important;
      white-space: nowrap !important;
      cursor: pointer !important;
      transition: all .25s ease !important;
      box-sizing: border-box !important;
      line-height: 1 !important;
    }
    .fm-badge:hover {
      border-color: rgba(42,191,191,0.4) !important;
      box-shadow: 0 4px 16px rgba(42,191,191,.14) !important;
    }
    .fm-badge svg {
      width: 14px !important; height: 14px !important;
      stroke: #2ABFBF !important; fill: none !important;
      stroke-width: 2 !important;
      stroke-linecap: round !important; stroke-linejoin: round !important;
      flex-shrink: 0 !important; display: block !important;
    }
    
    /* ─── SCROLL INDICATOR ───────────────────────────────────── */
    #fm-scroll {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column;
      align-items: center; gap: 8px;
      opacity: 0; z-index: 10;
    }
    .fm-scroll-txt {
      font-family: 'Inter', sans-serif;
      font-size: 10px; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gray-2); font-weight: 500;
    }
    .fm-mouse {
      width: 22px; height: 36px;
      border: 2px solid var(--gray-3);
      border-radius: 11px; position: relative; overflow: hidden;
    }
    .fm-mouse::after {
      content: ''; position: absolute;
      top: 6px; left: 50%; transform: translateX(-50%);
      width: 3px; height: 7px;
      background: var(--teal); border-radius: 99px;
      animation: fmScroll 2s ease-in-out infinite;
    }
    @keyframes fmScroll {
      0%  { opacity:1; transform:translateX(-50%) translateY(0); }
      75% { opacity:0; transform:translateX(-50%) translateY(14px); }
      100%{ opacity:0; transform:translateX(-50%) translateY(0); }
    }
    
    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .fm-copy { padding: 140px 40px 110px; }
      #fm-navbar  { padding: 24px 48px; }
    }
    @media (max-width: 900px) {
      #fm-content {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .fm-copy {
        align-items: center;
        min-height: 100vh;
        padding: 130px 36px 90px;
        text-align: center;
      }
      .fm-media {
        min-height: 72vh;
      }
      .fm-ctas,
      .fm-trust-badges {
        justify-content: center !important;
      }
      #fm-trust {
        align-items: center;
      }
    }
    @media (max-width: 768px) {
      .fm-copy { padding: 110px 24px 72px; }
      .fm-media { min-height: 62vh; }
      
      /* Centraliza a logo no mobile */
      #fm-navbar { 
        padding: 20px 24px; 
        justify-content: center !important; /* Força o alinhamento ao centro */
      }
      
      #fm-navbar-logo img { height: 64px; }
      .fm-logo-tagline { font-size: 9px; }
      #fm-navbar-cta { display: none !important; }
      .fm-navbar-actions { position: absolute; right: 20px; }
      #fm-login-btn { padding: 9px 14px; font-size: 12px; cursor: pointer; }
      .fm-ctas { flex-direction: column !important; align-items: stretch !important; width: 100% !important; max-width: 320px !important; }
      .fm-btn  { justify-content: center !important; }
      .fm-badge { font-size: 11px !important; padding: 9px 14px !important; }
      #fm-cursor-dot, #fm-cursor-ring, #fm-cursor-satellite { display: none !important; }
      html, body, #fm-hero, #fm-hero * { cursor: auto !important; }
    }
    
    /* ===== Seção 2: section2.html ===== */

    
        :root {
          --bg:      #F7F9FC;
          --navy:    #0B1F3A;
          --teal:    #2ABFBF;
          --text-base: #AAB8C8; /* Cor base melhorada para leitura */
          --gray2:   #8A9BB0;
          --gray3:   #D9E3EF;
        }
    
        /* ── SEÇÃO ─────────────────────────────────────────────── */
        #st-section {
          position: relative;
          height: auto;
          background: var(--bg);
          font-family: 'Sora', sans-serif;
        }
    
        /* Grade sutil */
        #st-section::before {
          content: '';
          position: absolute; inset: 0;
          background-image:
            linear-gradient(var(--gray3) 1px, transparent 1px),
            linear-gradient(90deg, var(--gray3) 1px, transparent 1px);
          background-size: 64px 64px;
          opacity: 0.45;
          pointer-events: none;
        }
    
        /* Glow teal no fundo */
        #st-glow {
          position: absolute;
          top: 50%; left: 50%;
          transform: translate(-50%, -50%);
          width: 70vw; height: 60vh;
          background: radial-gradient(ellipse at center,
            rgba(42,191,191,0.08) 0%, transparent 70%);
          pointer-events: none;
        }
    
        /* ── PAINEL PINADO ─────────────────────────────────────── */
        #st-panel {
          width: 100%; min-height: 85vh;
          display: flex; flex-direction: column;
          align-items: flex-start; justify-content: center;
          padding: clamp(88px, 10vw, 148px) 8vw;
          position: relative; z-index: 2;
        }
    
        /* Label */
        #st-label {
          font-family: 'Inter', sans-serif;
          font-size: clamp(10px, 1vw, 12px);
          font-weight: 600; letter-spacing: .22em;
          text-transform: uppercase;
          color: var(--teal);
          margin-bottom: clamp(20px, 2.5vw, 32px);
          display: flex; align-items: center; gap: 10px;
          opacity: 0; transform: translateY(12px);
        }
        #st-label::before {
          content: '';
          display: block; width: 28px; height: 2px;
          background: var(--teal); border-radius: 99px;
        }
    
        /* ── TEXTO MELHORADO ───────────────────────────────────── */
        #st-text {
          width: 88vw;
          max-width: 1100px; /* Reduzido para os olhos não viajarem tanto */
          font-weight: 800;  /* 800 é mais legível que 900 em blocos grandes */
          font-size: clamp(24px, 4vw, 56px); /* Tamanho otimizado */
          line-height: 1.25; /* Mais respiro entre as linhas */
          letter-spacing: -0.01em;
          text-align: left;
          color: var(--navy); /* Cor base */
        }
    
        /* Cada caractere é um span */
        #st-text .char {
          display: inline;
          color: var(--navy);
          transition: none; /* controlado pelo GSAP */
        }
    
        /* Espaços são inline simples */
        #st-text .space {
          display: inline;
        }
    
        /* Barra de progresso fina no topo da página */
        #st-bar {
          position: fixed; top: 0; left: 0;
          height: 2px; width: 0%;
          background: linear-gradient(90deg, var(--teal), var(--navy));
          z-index: 9999; pointer-events: none;
        }
    
        /* Scroll hint */
        #st-hint {
          margin-top: clamp(32px, 4vw, 52px);
          display: flex; align-items: center; gap: 12px;
          opacity: 0;
        }
        #st-hint span {
          font-family: 'Inter', sans-serif;
          font-size: 10px; letter-spacing: .18em;
          text-transform: uppercase; color: var(--gray2);
        }
        .st-mouse {
          width: 18px; height: 30px;
          border: 1.5px solid var(--gray3);
          border-radius: 9px; position: relative;
        }
        .st-mouse::after {
          content: ''; position: absolute;
          top: 4px; left: 50%; transform: translateX(-50%);
          width: 2px; height: 6px;
          background: var(--teal); border-radius: 99px;
          animation: stScroll 1.8s ease-in-out infinite;
        }
        @keyframes stScroll {
          0%  { opacity:1; transform:translateX(-50%) translateY(0); }
          75% { opacity:0; transform:translateX(-50%) translateY(10px); }
          100%{ opacity:0; transform:translateX(-50%) translateY(0); }
        }
    
    /* ===== Seção 3: section3.html ===== */

    
    :root {
      --navy:   #0B1F3A;
      --teal:   #2ABFBF;
      --teal-d: #1A9999;
      --white:  #FFFFFF;
      --bg:     #F4F7FA;
      --gray2:  #8A9BB0;
      --gray3:  #D9E3EF;
      --r:      24px; /* Aumentado levemente para um look mais premium */
    }
    
    #fm-mission {
      background: var(--bg);
      padding: 100px 5vw;
      font-family: 'Inter', sans-serif;
      overflow: hidden;
    }
    
    /* ── HEADER DA SEÇÃO ───────────────────────────────────── */
    .fm-m-header {
      max-width: 1400px;
      margin: 0 auto 56px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .fm-m-eyebrow {
      font-size: 11px; font-weight: 600;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--teal);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 16px;
    }
    .fm-m-eyebrow::before {
      content: '';
      width: 28px; height: 2px;
      background: var(--teal); border-radius: 99px;
      display: block;
    }
    .fm-m-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800; line-height: 1.08;
      letter-spacing: -0.025em;
      color: var(--navy);
    }
    .fm-m-title span { color: var(--teal); }
    .fm-m-desc {
      font-size: clamp(15px, 1.2vw, 17px);
      color: var(--gray2); line-height: 1.65;
      max-width: 480px;
    }
    
    /* ── BENTO GRID ────────────────────────────────────────── */
    .fm-bento {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto;
      gap: 20px; /* Mais respiro entre os cards */
    }
    
    /* ── CARD BASE ─────────────────────────────────────────── */
    .fm-card {
      background: var(--white);
      border-radius: var(--r);
      border: 1px solid rgba(11,31,58,0.06); /* Borda mais sutil */
      padding: 40px;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .fm-card:hover {
      box-shadow: 0 24px 48px -12px rgba(11,31,58,0.08), 0 4px 12px -2px rgba(11,31,58,0.04);
    }
    
    /* ── GRID PLACEMENT & STYLES ───────────────────────────── */
    
    /* Card 1 — Missão principal */
    .fm-card--mission {
      grid-column: 1 / 8;
      grid-row: 1;
      /* Gradiente radial para dar profundidade ao card escuro */
      background: radial-gradient(120% 120% at 0% 0%, var(--navy) 0%, #061224 100%);
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: inset 0 2px 20px rgba(255,255,255,0.02);
    }
    
    /* Card 2 — Número destaque */
    .fm-card--stat {
      grid-column: 8 / 13;
      grid-row: 1;
      background: linear-gradient(135deg, var(--teal) 0%, #158b8b 100%);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; flex-direction: column; justify-content: flex-end;
    }
    
    /* Card 3 — Segurança por Design */
    .fm-card--security {
      grid-column: 1 / 7;
      grid-row: 2;
    }
    
    /* Card 4 — Autonomia Médica */
    .fm-card--autonomy {
      grid-column: 7 / 13;
      grid-row: 2;
    }
    
    /* Card 6 — Tagline / CTA */
    .fm-card--cta {
      grid-column: 1 / 7;
      grid-row: 3;
      background: linear-gradient(135deg, rgba(42,191,191,.08) 0%, rgba(42,191,191,.01) 100%);
      border: 1px solid rgba(42,191,191,.2);
      display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
    }
    
    /* Card 7 — CFM badge */
    .fm-card--cfm {
      grid-column: 7 / 13;
      grid-row: 3;
      display: flex; flex-direction: column; justify-content: space-between;
    }
    
    /* ── CARD INTERNO: MISSÃO ──────────────────────────────── */
    .fm-card--mission .fm-c-tag {
      font-size: 10px; font-weight: 600; letter-spacing: .18em;
      text-transform: uppercase; color: rgba(255,255,255,.45);
      margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
    }
    .fm-card--mission .fm-c-tag::before {
      content: ''; width: 20px; height: 1.5px;
      background: rgba(255,255,255,.3); display: block;
    }
    .fm-card--mission h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(24px, 2.6vw, 38px);
      font-weight: 800; line-height: 1.18;
      letter-spacing: -0.02em; color: #fff;
      margin-bottom: 20px;
    }
    .fm-card--mission h2 em {
      font-style: normal; color: var(--teal);
    }
    .fm-card--mission p {
      font-size: clamp(14px, 1.1vw, 16px);
      color: rgba(255,255,255,.6);
      line-height: 1.7; max-width: 520px;
    }
    .fm-card--mission::after {
      content: ''; position: absolute; right: -60px; bottom: -60px;
      width: 280px; height: 280px; border-radius: 50%;
      background: radial-gradient(circle, rgba(42,191,191,.15) 0%, transparent 70%);
      pointer-events: none;
    }
    
    /* ── CARD INTERNO: STAT ────────────────────────────────── */
    .fm-card--stat .fm-c-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: .16em; text-transform: uppercase;
      color: rgba(255,255,255,.75); margin-bottom: 8px;
    }
    .fm-card--stat .fm-c-number {
      font-family: 'Sora', sans-serif;
      font-size: clamp(64px, 6vw, 96px);
      font-weight: 900; line-height: 1;
      letter-spacing: -0.04em; color: #fff;
    }
    .fm-card--stat .fm-c-number sup {
      font-size: 45%; vertical-align: super; letter-spacing: 0;
    }
    .fm-card--stat .fm-c-sub {
      font-size: 14px; color: rgba(255,255,255,.8);
      margin-top: 12px; line-height: 1.5; font-weight: 500;
    }
    .fm-card--stat::before {
      content: ''; position: absolute; top: -40px; right: -40px;
      width: 180px; height: 180px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    
    /* ── CARD INTERNO: PILARES ─────────────────────────────── */
    .fm-c-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(42,191,191,.08);
      border: 1px solid rgba(42,191,191,.15);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px; flex-shrink: 0;
    }
    .fm-c-icon svg {
      width: 24px; height: 24px;
      stroke: var(--teal); fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }
    .fm-card h3 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(17px, 1.4vw, 21px);
      font-weight: 700; color: var(--navy);
      margin-bottom: 12px; line-height: 1.25;
    }
    .fm-card p {
      font-size: clamp(14px, 1vw, 15px);
      color: var(--gray2); line-height: 1.65;
    }
    
    .fm-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
    .fm-pill {
      font-size: 11px; font-weight: 600; padding: 6px 14px;
      border-radius: 999px; background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.7); letter-spacing: .04em;
    }
    
    /* ── CARD CTA ──────────────────────────────────────────── */
    .fm-card--cta .fm-cta-text { flex: 1; min-width: 200px; }
    .fm-card--cta .fm-cta-text h3 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(20px, 1.6vw, 26px);
      font-weight: 800; color: var(--navy); margin-bottom: 8px;
    }
    .fm-card--cta .fm-cta-text p {
      font-size: 15px; color: var(--gray2); line-height: 1.6;
    }
    .fm-cta-btn {
      all: unset; display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
      color: #fff; background: var(--navy);
      padding: 16px 32px; border-radius: 12px;
      cursor: pointer; white-space: nowrap; transition: all .25s ease;
    }
    .fm-cta-btn:hover {
      background: var(--teal);
      box-shadow: 0 8px 24px rgba(42,191,191,.35);
    }
    .fm-cta-btn svg {
      width: 18px; height: 18px; stroke: currentColor; fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    }
    
    /* ── CARD CFM ──────────────────────────────────────────── */
    .fm-card--cfm .fm-cfm-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
    .fm-cfm-badge {
      width: 44px; height: 44px; border-radius: 12px;
      background: linear-gradient(135deg, var(--teal), var(--teal-d));
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .fm-cfm-badge svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
    .fm-card--cfm h3 { font-size: clamp(15px, 1.2vw, 18px); margin-bottom: 0; }
    .fm-card--cfm p { font-size: 14px; color: var(--gray2); line-height: 1.65; }
    .fm-cfm-divider { height: 1px; background: rgba(11,31,58,0.06); margin: 16px 0; }
    .fm-cfm-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .fm-cfm-row span {
      font-size: 11px; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: var(--gray2);
    }
    .fm-cfm-dot {
      width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
      box-shadow: 0 0 10px rgba(42,191,191,.6);
      animation: cfmPulse 2s ease-in-out infinite; flex-shrink: 0;
    }
    @keyframes cfmPulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%     { opacity:.6; transform:scale(1.3); }
    }
    
    /* ── RESPONSIVE ────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .fm-card--mission,
      .fm-card--stat,
      .fm-card--security,
      .fm-card--autonomy,
      .fm-card--cta,
      .fm-card--cfm { grid-row: auto; }
      .fm-card--mission   { grid-column: 1 / 13; }
      .fm-card--stat      { grid-column: 1 / 13; flex-direction: row; align-items: center; justify-content: space-between; }
      .fm-card--security  { grid-column: 1 / 7; }
      .fm-card--autonomy  { grid-column: 7 / 13; }
      .fm-card--cta       { grid-column: 1 / 13; }
      .fm-card--cfm       { grid-column: 1 / 13; }
    }
    @media (max-width: 640px) {
      #fm-mission { padding: 80px 20px; }
      .fm-card { padding: 32px 24px; }
      .fm-card--stat { flex-direction: column; align-items: flex-start; }
      .fm-card--security, .fm-card--autonomy { grid-column: 1 / 13; }
      .fm-card--stat .fm-c-number { font-size: 64px; }
    }
    
    /* ===== Seção 4: section4.html ===== */

    
    :root {
      --navy:   #0B1F3A;
      --teal:   #2ABFBF;
      --teal-d: #1A9999;
      --bg:     #F5F5F7;
      --white:  #FFFFFF;
      --gray2:  #6E6E73;
      --gray3:  #D2D2D7;
      
      /* CÁLCULO DE ALINHAMENTO CORRIGIDO (Espelha o Bento Grid: 1400px max, 5vw margem) */
      --indent: max(5vw, calc((100vw - 1400px) / 2));
    }
    
    #fm-prod {
      background: var(--bg);
      padding: 96px 0 72px;
      font-family: 'Inter', sans-serif;
      overflow: hidden;
    }
    
    /* ── HEADER ─────────────────────────────────────────────── */
    .fm-prod-header {
      padding: 0 var(--indent);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 48px;
      opacity: 0;
      transform: translateY(20px);
    }
    
    .fm-prod-eyebrow {
      font-size: 11px; font-weight: 600;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .fm-prod-eyebrow::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--teal); border-radius: 99px;
      display: block;
    }
    .fm-prod-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800; line-height: 1.08;
      letter-spacing: -0.03em; color: var(--navy);
    }
    .fm-prod-title span { color: var(--teal); }
    
    .fm-prod-link {
      all: unset;
      cursor: pointer;
      font-size: 14px; font-weight: 600;
      color: var(--teal);
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap .25s cubic-bezier(0.2, 0.8, 0.2, 1);
      white-space: nowrap;
      align-self: flex-end;
      padding-bottom: 6px;
    }
    .fm-prod-link:hover { gap: 12px; }
    .fm-prod-link svg {
      width: 16px; height: 16px;
      stroke: currentColor; fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    }
    
    /* ── CARROSSEL ──────────────────────────────────────────── */
    .fm-carousel-outer {
      position: relative;
    }
    
    /* Esmaecimento na direita sobre o track */
    .fm-carousel-outer::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 120px;
      height: calc(100% - 0px);
      background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
      pointer-events: none;
      z-index: 10;
    }
    
    .fm-carousel-track {
      display: flex;
      gap: 24px; /* Respiro ligeiramente maior */
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-left: var(--indent);
      padding-right: calc(var(--indent) + 220px); /* Garante que o último não cole na direita */
      scroll-padding-left: var(--indent);
      padding-bottom: 24px; /* Evita o corte da sombra ao fazer hover */
      margin-bottom: -24px; /* Compensa o padding-bottom visualmente */
    }
    .fm-carousel-track::-webkit-scrollbar { display: none; }
    
    /* ── CARD ───────────────────────────────────────────────── */
    .fm-prod-card {
      flex: 0 0 360px;
      width: 360px;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      gap: 0;
      opacity: 0;
      transform: translateY(28px);
    }
    
    /* Visual do Produto (Área Superior) */
    .fm-card-visual {
      width: 100%;
      height: 340px;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      margin-bottom: 20px;
      flex-shrink: 0;
      /* Transição ultra suave estilo Apple */
      transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
                  box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
      box-shadow: 0 4px 16px rgba(11,31,58,0.06);
    }
    .fm-prod-card:hover .fm-card-visual {
      box-shadow: 0 24px 48px -12px rgba(11,31,58,0.15), 0 4px 12px -2px rgba(11,31,58,0.08);
    }
    
    .fm-card-visual-bg {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .fm-card-visual-icon {
      width: 80px; height: 80px;
      border-radius: 22px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      backdrop-filter: blur(12px);
      display: flex; align-items: center; justify-content: center;
      display: none;
    }
    .fm-card-visual-icon svg {
      width: 38px; height: 38px;
      stroke: #fff; fill: none;
      stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
    }
    
    /* Tags Flutuantes */
    .fm-card-badge {
      position: absolute; top: 18px; left: 18px;
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.9);
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(8px);
      padding: 5px 12px; border-radius: 999px;
      z-index: 20;
    }
    .fm-card-status {
      position: absolute; top: 18px; right: 18px;
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 600;
      color: rgba(255,255,255,.8);
      background: rgba(0,0,0,.28);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
      padding: 5px 12px; border-radius: 999px;
      display: flex; align-items: center; gap: 6px;
      z-index: 20;
    }
    .fm-status-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: #4ADE80;
      box-shadow: 0 0 8px rgba(74,222,128,.8);
      animation: dotPulse 2.5s ease-in-out infinite;
    }
    @keyframes dotPulse {
      0%,100% { opacity:1; }
      50%     { opacity:.4; }
    }
    
    /* Chips Base */
    .fm-card-chips {
      position: absolute; bottom: 18px; left: 18px; right: 18px;
      display: flex; flex-wrap: wrap; gap: 6px;
      z-index: 20;
    }
    .fm-chip {
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 600;
      padding: 5px 12px; border-radius: 999px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      color: rgba(255,255,255,.85);
      backdrop-filter: blur(6px);
      white-space: nowrap;
    }
    
    /* Corpo do Texto */
    .fm-card-body { padding: 0 4px; }
    
    .fm-card-spec {
      font-family: 'Inter', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 6px;
    }
    .fm-card-name {
      font-family: 'Sora', sans-serif;
      font-size: 20px; font-weight: 700;
      color: var(--navy); margin-bottom: 8px;
      line-height: 1.2;
    }
    .fm-card-name em { color: var(--teal); font-style: normal; }
    .fm-card-desc {
      font-family: 'Inter', sans-serif;
      font-size: 14px; color: var(--gray2);
      line-height: 1.65;
    }
    .fm-card-desc strong { color: var(--navy); font-weight: 600; }
    
    /* ── CORES / GRADIENTES E IMAGENS ESPECÍFICOS ─────────────────────── */
    .fm-bg-aorta { background: linear-gradient(to bottom, rgba(15,35,71,0.08), rgba(15,35,71,0.42)), var(--fm-card-image, none) center 42%/cover no-repeat; }
    .fm-bg-pad { background: linear-gradient(to bottom, rgba(11,46,46,0.08), rgba(11,46,46,0.42)), var(--fm-card-image, none) center 42%/cover no-repeat; }
    .fm-bg-carotid { background: linear-gradient(to bottom, rgba(33,16,64,0.08), rgba(33,16,64,0.42)), var(--fm-card-image, none) center 42%/cover no-repeat; }
    .fm-bg-audit { background: linear-gradient(to bottom, rgba(11,31,58,0.04), rgba(11,31,58,0.38)), var(--fm-card-image, none) center 42%/cover no-repeat; }
    .fm-bg-audit .fm-card-visual-icon {
      display: none;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }
    .fm-bg-howto {
      background: var(--white);
      border: 1px solid rgba(11,31,58,0.06);
      box-shadow: none !important;
    }
    .fm-card-badge--dev {
      background: var(--teal);
      border-color: var(--teal);
      color: #fff;
    }
    
    /* ── IMAGE COMPARE SLIDER (FLUXUS ART) ──────────────────── */
    .fm-image-compare {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      --val: 50%; /* Controlado pelo input */
    }
    .fm-compare-after, .fm-compare-before {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      pointer-events: none; /* Deixa o clique passar para o input */
    }
    /* A imagem do ANTES é recortada de acordo com o valor */
    .fm-compare-before {
      clip-path: polygon(0 0, var(--val) 0, var(--val) 100%, 0 100%);
      -webkit-clip-path: polygon(0 0, var(--val) 0, var(--val) 100%, 0 100%);
    }
    .fm-compare-slider {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      opacity: 0; /* Invisível mas interativo */
      cursor: ew-resize;
      z-index: 10;
      margin: 0;
    }
    .fm-compare-handle {
      position: absolute; top: 0; bottom: 0;
      left: var(--val); width: 2px;
      background: var(--white);
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 5;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 12px rgba(0,0,0,0.3);
    }
    .fm-compare-handle-icon {
      width: 32px; height: 32px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 12px rgba(11,31,58,0.15);
    }
    .fm-compare-handle-icon svg {
      width: 16px; height: 16px;
      stroke: var(--navy); fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    
    /* Sombreamento base do Fluxus Art para legibilidade dos chips */
    .fm-bg-art::after {
      content: '';
      position: absolute; bottom: 0; left: 0; width: 100%; height: 40%;
      background: linear-gradient(to top, rgba(11,31,58,0.7), transparent);
      pointer-events: none; z-index: 15;
    }
    
    
    /* ── ESTILOS CARD "COMO FUNCIONA" ───────────────────────── */
    .fm-howto-wrap {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; justify-content: center; gap: 12px;
      padding: 24px;
    }
    .fm-howto-box {
      background: #fff; border: 1px solid var(--gray3);
      border-radius: 14px; padding: 14px 16px;
      box-shadow: 0 4px 16px rgba(11,31,58,.04);
    }
    .fm-howto-upload { display: flex; align-items: center; gap: 12px; }
    .fm-howto-icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: linear-gradient(135deg, var(--teal), var(--teal-d));
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .fm-howto-file { font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.3; }
    .fm-howto-sub { font-size: 11px; color: var(--gray2); }
    .fm-howto-title {
      font-size: 11px; font-weight: 600; color: var(--teal);
      letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px;
    }
    .fm-howto-text { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.6; }
    .fm-howto-cite {
      font-size: 11px; color: var(--teal); font-weight: 600;
      margin-top: 8px; display: flex; align-items: center; gap: 5px;
    }
    
    /* ── CONTROLES ──────────────────────────────────────────── */
    .fm-carousel-controls {
      display: flex; align-items: center; justify-content: flex-end;
      gap: 12px; padding: 32px var(--indent) 0;
    }
    .fm-ctrl-btn {
      all: unset;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--white); border: 1px solid var(--gray3);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .25s ease;
      box-shadow: 0 4px 12px rgba(11,31,58,.04);
    }
    .fm-ctrl-btn:hover:not(:disabled) {
      background: var(--navy); border-color: var(--navy);
      box-shadow: 0 8px 24px rgba(11,31,58,.15);
    }
    .fm-ctrl-btn:hover:not(:disabled) svg { stroke: #fff; }
    .fm-ctrl-btn:disabled { opacity: 0.35; cursor: default; box-shadow: none; }
    .fm-ctrl-btn svg {
      width: 18px; height: 18px; stroke: var(--navy); fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
      transition: stroke .2s;
    }
    
    /* ── RESPONSIVO ─────────────────────────────────────────── */
    @media (max-width: 768px) {
      :root { --indent: 24px; }
      .fm-prod-card { flex: 0 0 300px; width: 300px; }
      .fm-card-visual { height: 280px; }
      .fm-carousel-track { padding-right: calc(var(--indent) + 120px); }
      #fm-prod { padding: 80px 0 64px; }
    }
    
    /* ===== Seção 5: section5.html ===== */
    .fm-founder-section,
    .fm-founder-section *,
    .fm-founder-section *::before,
    .fm-founder-section *::after {
      box-sizing: border-box; margin: 0; padding: 0;
    }
    
    .fm-founder-section {
      --navy:   #0B1F3A;
      --navy-d: #071628;
      --teal:   #2ABFBF;
      --teal-d: #1A9999;
      --bg:     #F4F7FA;
      --bg2:    #FFFFFF;
      --gray2:  #8A9BB0;
      --gray3:  #D9E3EF;
      --border: rgba(11,31,58,0.09);
      --ease:   cubic-bezier(0.16,1,0.3,1);
    
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      background: var(--bg);
      color: var(--navy);
      overflow: hidden;
      font-family: 'Inter', sans-serif;
    }
    
    /* ── COLUNA ESQUERDA: IMAGEM ─────────────────────────────── */
    .fm-f-img-side {
      flex: 1 1 420px;
      position: relative;
      min-height: 1040px;
      overflow: hidden;
    }
    
    .fm-f-img-bg {
      position: absolute;
      inset: -6%;
      background-image: url('/assets/Dr-Marcos-final-37.webp');
      background-size: cover;
      background-position: center;
    
      transition: transform 3.5s cubic-bezier(0.25,0.46,0.45,0.94);
      z-index: 0;
    }
    .fm-f-img-side:hover .fm-f-img-bg {
      transform: scale(1.04);
    }
    
    
    
    
    
    /* Gradiente de rodapé da foto — para branco/bg claro */
    .fm-f-img-gradient {
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(
        to top,
        rgba(11,22,40,0.97)  0%,
        rgba(11,22,40,0.82)  28%,
        rgba(11,22,40,0.0)  62%,
        transparent 100%
      );
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 48px 44px;
      gap: 10px;
    }
    
    /* Linha teal direita */
    .fm-f-img-side::after {
      content: '';
      position: absolute; top: 20%; bottom: 20%;
      right: 0; width: 1px; z-index: 10;
      background: linear-gradient(to bottom,
        transparent, rgba(42,191,191,.4), transparent);
    }
    
    .fm-f-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--teal);
      background: rgba(42,191,191,0.15);
      border: 1px solid rgba(42,191,191,0.30);
      padding: 6px 14px; border-radius: 999px;
      backdrop-filter: blur(8px);
      align-self: flex-start; margin-bottom: 8px;
    }
    .fm-f-badge-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 8px rgba(42,191,191,0.9);
      animation: fmPip 2s ease-in-out infinite;
    }
    @keyframes fmPip {
      0%,100% { opacity:1; transform:scale(1); }
      50%     { opacity:.3; transform:scale(.5); }
    }
    
    .fm-f-name {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 800; line-height: 1.0;
      letter-spacing: -0.04em; color: #fff;
    }
    .fm-f-name em {
      font-style: italic; font-weight: 300;
      color: rgba(255,255,255,.48); display: block;
    }
    
    .fm-f-crm {
      font-family: 'Inter', sans-serif;
      font-size: 11px; font-weight: 500;
      color: rgba(255,255,255,.30);
      letter-spacing: 0.07em;
      display: flex; align-items: center; gap: 10px;
      margin-top: 4px;
    }
    .fm-f-crm::before {
      content: ''; display: inline-block;
      width: 28px; height: 1px;
      background: rgba(42,191,191,.45); flex-shrink: 0;
    }
    
    /* ── COLUNA DIREITA: TEXTO ───────────────────────────────── */
    .fm-f-text-side {
      flex: 1 1 560px;
      padding: 72px 5vw;
      background: var(--bg2);
      border-left: 1px solid var(--border);
      display: flex; flex-direction: column;
      gap: 22px; justify-content: center;
    }
    
    /* Eyebrow */
    .fm-f-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: var(--teal); align-self: flex-start;
    }
    .fm-f-eyebrow::before {
      content: '';
      width: 22px; height: 2px;
      background: var(--teal); border-radius: 99px; display: block;
    }
    
    /* Título */
    .fm-f-headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.6rem);
      font-weight: 800; line-height: 1.08;
      letter-spacing: -0.03em; color: var(--navy);
    }
    .fm-f-headline span {
      background: linear-gradient(90deg, var(--teal), var(--teal-d));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* Body */
    .fm-f-body {
      font-family: 'Inter', sans-serif;
      font-size: 14px; line-height: 1.78;
      color: var(--gray2);
    }
    .fm-f-body strong {
      color: var(--navy); font-weight: 600;
    }
    
    /* ── STATS ───────────────────────────────────────────────── */
    .fm-f-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .fm-f-stat {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px; padding: 18px 14px;
      text-align: center;
      transition: border-color .25s, box-shadow .25s, transform .25s;
    }
    .fm-f-stat:hover {
      border-color: rgba(42,191,191,.35);
      box-shadow: 0 8px 24px rgba(42,191,191,.08);
    }
    .fm-f-stat-num {
      font-family: 'Sora', sans-serif;
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 800; line-height: 1;
      letter-spacing: -0.02em;
      color: var(--teal);
      margin-bottom: 6px;
    }
    .fm-f-stat-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px; color: var(--gray2); line-height: 1.4;
    }
    
    /* ── QUOTE ───────────────────────────────────────────────── */
    .fm-f-quote {
      position: relative;
      padding: 22px 24px 22px 28px;
      border-radius: 16px;
      background: rgba(42,191,191,.05);
      border: 1px solid rgba(42,191,191,.18);
    }
    .fm-f-quote::before {
      content: '';
      position: absolute; left: 0; top: 16px; bottom: 16px;
      width: 3px; border-radius: 99px;
      background: linear-gradient(to bottom, var(--teal), rgba(42,191,191,.2));
    }
    .fm-f-quote-label {
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .14em;
      color: var(--teal); margin-bottom: 12px;
      display: flex; align-items: center; gap: 7px;
    }
    .fm-f-quote-label svg {
      stroke: var(--teal); fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .fm-f-quote p {
      font-family: 'Sora', sans-serif;
      font-size: clamp(13px, 1.2vw, 15px);
      font-style: italic; font-weight: 300;
      line-height: 1.78; color: var(--navy);
      opacity: .82;
    }
    .fm-f-quote cite {
      display: block; margin-top: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 11px; font-weight: 600; font-style: normal;
      letter-spacing: .06em; color: var(--teal);
    }
    
    /* ── DIVISOR ─────────────────────────────────────────────── */
    .fm-f-divider {
      height: 1px; flex-shrink: 0;
      background: linear-gradient(90deg, rgba(42,191,191,.3), transparent);
    }
    
    /* ── QUALIFICAÇÕES ───────────────────────────────────────── */
    .fm-f-quals-label {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .14em;
      color: var(--teal); margin-bottom: 14px;
    }
    .fm-f-quals-label::before {
      content: ''; width: 16px; height: 2px;
      background: var(--teal); border-radius: 99px; display: block;
    }
    .fm-f-quals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 9px 24px;
    }
    .fm-f-qual {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 13px; color: var(--gray2); line-height: 1.4;
    }
    .fm-f-qual svg {
      stroke: var(--teal); fill: none;
      stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0;
    }
    
    /* ── CTA ─────────────────────────────────────────────────── */
    .fm-f-cta {
      all: unset;
      align-self: flex-start;
      display: inline-flex !important; align-items: center !important;
      gap: 10px !important; cursor: pointer !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 14px !important; font-weight: 700 !important;
      color: #fff !important;
      -webkit-text-fill-color: #fff !important;
      background: linear-gradient(135deg, var(--teal), var(--teal-d)) !important;
      padding: 14px 28px !important; border-radius: 12px !important;
      text-decoration: none !important;
      box-shadow: 0 8px 28px rgba(42,191,191,.25) !important;
      transition: transform .25s var(--ease), box-shadow .25s ease !important;
    }
    .fm-f-cta:hover {
      box-shadow: 0 16px 40px rgba(42,191,191,.38) !important;
    }
    .fm-f-cta svg {
      stroke: #fff; fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0 !important;
    }
    
    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .fm-founder-section { flex-direction: column; }
      .fm-f-img-side { min-height: 60vh; flex: 0 0 auto; }
      .fm-f-text-side { border-left: none; border-top: 1px solid var(--border); padding: 56px 6vw; }
      .fm-f-img-side::after { display: none; }
    }
    @media (max-width: 640px) {
      .fm-f-img-side  { min-height: 70vh; }
      .fm-f-img-gradient { padding: 32px 24px 40px; }
      .fm-f-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
      .fm-f-quals-grid { grid-template-columns: 1fr; }
      .fm-f-cta { align-self: stretch !important; justify-content: center !important; }
    }
    
    /* ===== Seção 6: section6.html ===== */
    .fm-faq-section,
    .fm-faq-section *,
    .fm-faq-section *::before,
    .fm-faq-section *::after {
      box-sizing: border-box; margin: 0; padding: 0;
    }
    
    .fm-faq-section {
      --navy:  #0B1F3A;
      --teal:  #2ABFBF;
      --teal-d:#1A9999;
      --bg:    #F4F7FA;
      --white: #FFFFFF;
      --gray2: #8A9BB0;
      --gray3: #D9E3EF;
      --border:rgba(11,31,58,0.08);
    
      background: var(--bg);
      padding: 100px 0 100px;
      font-family: 'Inter', sans-serif;
      overflow: hidden;
    }
    
    /* ── HEADER ─────────────────────────────────────────────── */
    .fm-faq-header {
      max-width: 1200px;
      margin: 0 auto 56px;
      padding: 0 5vw;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    
    .fm-faq-eyebrow {
      display: flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .18em;
      color: var(--teal); margin-bottom: 16px;
    }
    .fm-faq-eyebrow::before {
      content: ''; width: 24px; height: 2px;
      background: var(--teal); border-radius: 99px; display: block;
    }
    
    .fm-faq-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800; line-height: 1.08;
      letter-spacing: -0.03em; color: var(--navy);
    }
    .fm-faq-title span {
      background: linear-gradient(135deg, var(--teal), var(--teal-d));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .fm-faq-header-right {
      font-size: 14px; color: var(--gray2);
      max-width: 300px; line-height: 1.65;
      flex-shrink: 0; padding-bottom: 4px;
    }
    .fm-faq-header-right strong { color: var(--navy); font-weight: 600; }
    
    /* ── GRID (2 Colunas Fixas) ─────────────────────────────── */
    .fm-faq-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5vw;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
    }
    
    /* ── ITEM & BORDAS ──────────────────────────────────────── */
    .fm-faq-item {
      border-bottom: 1px solid var(--border);
      padding: 0;
      transition: background .3s ease;
      background: transparent;
    }
    
    /* Borda direita apenas nos itens ímpares (coluna da esquerda) */
    .fm-faq-item:nth-child(odd) {
      border-right: 1px solid var(--border);
    }
    
    /* Borda no topo apenas nos dois primeiros itens */
    .fm-faq-item:nth-child(1),
    .fm-faq-item:nth-child(2) {
      border-top: 1px solid var(--border);
    }
    
    .fm-faq-item:hover { background: rgba(42,191,191,.03); }
    
    /* ── TRIGGER (O Botão de Clique) ────────────────────────── */
    .fm-faq-trigger {
      all: unset;
      display: flex; 
      align-items: flex-start; /* Alinha tudo pelo topo perfeitamente */
      gap: 20px; 
      width: 100%; 
      cursor: pointer;
      padding: 32px 32px;
      text-align: left;
      box-sizing: border-box;
    }
    
    .fm-faq-num {
      font-family: 'Sora', sans-serif;
      font-size: 11px; font-weight: 800;
      color: var(--teal); opacity: .5;
      letter-spacing: .06em; flex-shrink: 0;
      margin-top: 4px; /* Ajuste ótico para alinhar com a Tag */
      min-width: 24px;
      transition: opacity .3s ease;
    }
    .fm-faq-item[open] .fm-faq-num { opacity: 1; }
    
    .fm-faq-trigger-right { 
      flex: 1; /* Ocupa todo o espaço do meio */
    }
    
    .fm-faq-q {
      font-family: 'Sora', sans-serif;
      font-size: 16px; font-weight: 700;
      color: var(--navy); line-height: 1.4;
      margin-bottom: 0;
      transition: color .3s ease;
    }
    .fm-faq-item[open] .fm-faq-q { color: var(--teal); }
    
    /* ── ÍCONE + (Flexbox no lugar de Absoluto) ─────────────── */
    .fm-faq-icon {
      flex-shrink: 0;
      width: 28px; height: 28px; /* Aumentado levemente */
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--gray3);
      display: flex; align-items: center; justify-content: center;
      transition: background .3s, border-color .3s, transform .4s cubic-bezier(0.2, 0.8, 0.2, 1);
      margin-top: 2px; /* Alinhamento ótico com a primeira linha de texto */
    }
    .fm-faq-item[open] .fm-faq-icon {
      background: var(--teal);
      border-color: var(--teal);
      transform: rotate(45deg);
    }
    .fm-faq-icon svg {
      width: 12px; height: 12px;
      stroke: var(--navy); fill: none;
      stroke-width: 2.5; stroke-linecap: round;
      transition: stroke .3s;
    }
    .fm-faq-item[open] .fm-faq-icon svg { stroke: #fff; }
    
    /* ── CORPO DA RESPOSTA (Accordion CSS) ──────────────────── */
    .fm-faq-body {
      display: grid;
      grid-template-rows: 1fr;
      transition: grid-template-rows .4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .fm-faq-item[open] .fm-faq-body {
      grid-template-rows: 1fr;
    }
    .fm-faq-body-inner {
      overflow: hidden;
    }
    .fm-faq-body-text {
      /* Alinha o texto exatamente com o título da pergunta (24px padding + 20px gap + 24px num width) */
      padding: 0 32px 32px 76px;
      font-size: 14px; color: var(--gray2);
      line-height: 1.7;
    }
    .fm-faq-body-text strong { color: var(--navy); font-weight: 600; }
    .fm-faq-body-text a {
      color: var(--teal); text-decoration: none; font-weight: 600;
    }
    .fm-faq-body-text a:hover { text-decoration: underline; }
    
    /* ── TAGS ───────────────────────────────────────────────── */
    .fm-faq-tag {
      display: inline-flex; align-items: center;
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .12em;
      color: var(--teal);
      background: rgba(42,191,191,.08);
      border: 1px solid rgba(42,191,191,.15);
      padding: 4px 10px; border-radius: 999px;
      margin-bottom: 12px;
    }
    
    /* ── CTA FINAL ───────────────────────────────────────────── */
    .fm-faq-cta {
      max-width: 1200px;
      margin: 64px auto 0;
      padding: 0 5vw;
      display: flex; align-items: center;
      justify-content: space-between;
      gap: 24px; flex-wrap: wrap;
    }
    .fm-faq-cta-left {
      font-family: 'Inter', sans-serif;
      font-size: 15px; color: var(--gray2); line-height: 1.6;
    }
    .fm-faq-cta-left strong { color: var(--navy); font-weight: 600; }
    
    .fm-faq-cta-btn {
      all: unset; cursor: pointer;
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 14px; font-weight: 700; color: #fff;
      background: linear-gradient(135deg, var(--teal), var(--teal-d));
      padding: 16px 32px; border-radius: 12px;
      box-shadow: 0 6px 24px rgba(42,191,191,.25);
      transition: transform .3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .3s;
      white-space: nowrap; flex-shrink: 0;
    }
    .fm-faq-cta-btn:hover {
      box-shadow: 0 12px 32px rgba(42,191,191,.35);
    }
    .fm-faq-cta-btn svg {
      stroke: #fff; fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
      width: 18px; height: 18px; flex-shrink: 0;
    }
    
    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 900px) {
      /* Em telas menores que 900px, muda para 1 coluna */
      .fm-faq-grid { grid-template-columns: 1fr; }
      
      /* Remove borda direita e ajusta borda do topo para 1 coluna */
      .fm-faq-item:nth-child(odd) { border-right: none; }
      .fm-faq-item:nth-child(2) { border-top: none; }
      
      .fm-faq-trigger { padding: 24px; gap: 16px; }
      .fm-faq-body-text { padding: 0 24px 24px 64px; }
      
      .fm-faq-cta { flex-direction: column; align-items: flex-start; margin-top: 48px; }
      .fm-faq-cta-btn { width: 100%; justify-content: center; box-sizing: border-box; }
    }
    
    /* ===== Seção 7: section7.html ===== */
    .fm-cta-section,
    .fm-cta-section *,
    .fm-cta-section *::before,
    .fm-cta-section *::after {
      box-sizing: border-box; margin: 0; padding: 0;
    }
    
    .fm-cta-section {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
      isolation: isolate;
    }
    
    /* ── FUNDO CINEMÁTICO ───────────────────────────────────── */
    .fm-cta-backdrop {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      background: url('/assets/cta-rede-neural-cinematica.webp') center/cover no-repeat;
      z-index: 1;
      pointer-events: none;
      filter: blur(4px) saturate(.86);
      transform: scale(1.045);
    }

    
    /* ── OVERLAYS ───────────────────────────────────────────── */
    .fm-cta-ov1 {
      position: absolute; inset: 0; z-index: 3;
      background: rgba(4,10,20,0.72);
    }
    .fm-cta-ov2 {
      position: absolute; inset: 0; z-index: 4;
      background: linear-gradient(135deg,
        rgba(42,191,191,0.10) 0%, transparent 40%, rgba(11,31,58,0.40) 100%);
    }
    .fm-cta-ov3 {
      position: absolute; inset: 0; z-index: 5;
      background: radial-gradient(ellipse 85% 85% at 50% 50%,
        transparent 40%, rgba(4,10,20,0.65) 100%);
    }
    
    /* Grade */
    .fm-cta-grid {
      position: absolute; inset: 0; z-index: 6;
      background-image:
        linear-gradient(rgba(42,191,191,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,191,191,.04) 1px, transparent 1px);
      background-size: 72px 72px;
      pointer-events: none;
    }
    /* Halftone borda */
    .fm-cta-halftone {
      position: absolute; inset: 0; z-index: 6;
      pointer-events: none;
      background-image: radial-gradient(circle, rgba(42,191,191,.14) 1px, transparent 1px);
      background-size: 20px 20px;
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
        transparent 35%, rgba(0,0,0,.5) 70%, rgba(0,0,0,.9) 100%);
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
        transparent 35%, rgba(0,0,0,.5) 70%, rgba(0,0,0,.9) 100%);
    }
    /* Glow */
    .fm-cta-glow {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 1000px; height: 700px;
      background: radial-gradient(ellipse at center,
        rgba(42,191,191,.13) 0%, transparent 60%);
      z-index: 7; pointer-events: none;
    }
    
    /* Linhas topo/base */
    .fm-cta-section::before,
    .fm-cta-section::after {
      content: '';
      position: absolute; left: 0; right: 0;
      height: 1px; z-index: 20;
      background: linear-gradient(90deg,
        transparent, rgba(42,191,191,.5) 30%,
        rgba(42,191,191,.5) 70%, transparent);
    }
    .fm-cta-section::before { top: 0; }
    .fm-cta-section::after  { bottom: 0; }
    
    /* ── CONTEÚDO ───────────────────────────────────────────── */
    .fm-cta-content {
      position: relative; z-index: 10;
      text-align: center;
      display: flex; flex-direction: column;
      align-items: center;
      padding: 100px 5vw;
      max-width: 1000px; width: 100%;
    }
    
    /* Eyebrow */
    .fm-cta-eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .2em;
      color: rgba(42,191,191,.95);
      background: rgba(42,191,191,.08);
      border: 1px solid rgba(42,191,191,.22);
      padding: 8px 20px; border-radius: 999px;
      backdrop-filter: blur(10px);
      margin-bottom: 32px;
    }
    .fm-cta-eyebrow-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: #2ABFBF;
      box-shadow: 0 0 10px rgba(42,191,191,1);
      animation: ctaPip 2s ease-in-out infinite;
    }
    @keyframes ctaPip {
      0%,100% { opacity:1; transform:scale(1); }
      50%     { opacity:.3; transform:scale(.5); }
    }
    
    /* Linha decorativa */
    .fm-cta-divline {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 28px;
    }
    .fm-cta-divline-bar {
      height: 1px; width: 80px; border-radius: 99px;
    }
    .fm-cta-divline-bar:first-child {
      background: linear-gradient(90deg, transparent, rgba(42,191,191,.6));
    }
    .fm-cta-divline-bar:last-child {
      background: linear-gradient(90deg, rgba(42,191,191,.6), transparent);
    }
    .fm-cta-divline-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #2ABFBF;
      box-shadow: 0 0 12px rgba(42,191,191,.9);
      flex-shrink: 0;
    }
    
    /* ── TÍTULO — SEM CLIP, SEM OVERFLOW HIDDEN ─────────────── */
    .fm-cta-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(38px, 6.5vw, 86px);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -0.04em;
      color: #fff;
      margin-bottom: 24px;
    }
    /* Gradiente na segunda linha */
    .fm-cta-title .fm-hl {
      background: linear-gradient(90deg, #2ABFBF, #7ADFDF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }
    
    /* Subtítulo */
    .fm-cta-sub {
      font-size: clamp(16px, 1.5vw, 19px);
      color: rgba(255,255,255,.50);
      line-height: 1.75; max-width: 620px;
      margin-bottom: 52px;
    }
    .fm-cta-sub strong { color: rgba(255,255,255,.82); font-weight: 600; }
    
    /* Botões */
    .fm-cta-btns {
      display: flex; gap: 14px; flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 52px;
    }
    .fm-cta-btn {
      all: unset;
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 15px; font-weight: 700;
      cursor: pointer; white-space: nowrap;
      border-radius: 14px; padding: 18px 36px;
      transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
      position: relative; overflow: hidden; line-height: 1;
    }
    .fm-cta-btn svg {
      stroke: currentColor; fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0; width: 18px; height: 18px;
    }
    
    /* Primário */
    .fm-cta-btn--primary {
      background: linear-gradient(135deg, #2ABFBF 0%, #1A9999 100%);
      color: #fff;
      box-shadow: 0 6px 28px rgba(42,191,191,.35);
    }
    .fm-cta-btn--primary::after {
      content: '';
      position: absolute; top: -50%; left: -80%;
      width: 50%; height: 200%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
      transform: skewX(-15deg);
      transition: left .6s ease;
    }
    .fm-cta-btn--primary:hover::after { left: 140%; }
    .fm-cta-btn--primary:hover {
      box-shadow: 0 16px 48px rgba(42,191,191,.48);
    }
    /* Ghost */
    .fm-cta-btn--ghost {
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.88);
      border: 1.5px solid rgba(255,255,255,.16);
      backdrop-filter: blur(12px);
    }
    .fm-cta-btn--ghost:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.28);
    }
    
    /* Trust badges */
    .fm-cta-trust {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center;
    }
    .fm-cta-badge {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: 'Inter', sans-serif;
      font-size: 11px; font-weight: 500;
      color: rgba(255,255,255,.45);
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      padding: 9px 18px; border-radius: 999px;
      backdrop-filter: blur(8px);
      white-space: nowrap;
      transition: border-color .25s, color .25s;
    }
    .fm-cta-badge:hover {
      border-color: rgba(42,191,191,.3);
      color: rgba(255,255,255,.72);
    }
    .fm-cta-badge svg {
      stroke: rgba(42,191,191,.8); fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
      width: 13px; height: 13px; flex-shrink: 0;
    }
    
    /* Scroll indicator */
    .fm-cta-scroll {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column;
      align-items: center; gap: 8px;
      z-index: 10;
    }
    .fm-cta-scroll span {
      font-size: 9px; letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,255,.25);
      font-family: 'Inter', sans-serif; font-weight: 600;
    }
    .fm-scroll-mouse {
      width: 20px; height: 32px;
      border: 1.5px solid rgba(255,255,255,.15);
      border-radius: 10px; position: relative;
    }
    .fm-scroll-mouse::after {
      content: ''; position: absolute;
      top: 5px; left: 50%; transform: translateX(-50%);
      width: 2px; height: 6px;
      background: rgba(42,191,191,.7); border-radius: 99px;
      animation: ctaScroll 2s ease-in-out infinite;
    }
    @keyframes ctaScroll {
      0%  { opacity:1; transform:translateX(-50%) translateY(0); }
      75% { opacity:0; transform:translateX(-50%) translateY(10px); }
      100%{ opacity:0; }
    }
    
    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 640px) {
      .fm-cta-btns { flex-direction: column; align-items: stretch; max-width: 320px; }
      .fm-cta-btn  { justify-content: center; padding: 16px 28px; }
      .fm-cta-content { padding: 80px 24px; }
    }

    /* ===== Privacidade ===== */
    .fm-privacy-banner { position: fixed; left: 20px; bottom: 20px; z-index: 1000; width: min(340px, calc(100vw - 40px)); padding: 16px 46px 16px 18px; border: 1px solid rgba(42,191,191,.25); border-radius: 14px; background: rgba(6,18,36,.94); color: rgba(255,255,255,.72); box-shadow: 0 16px 48px rgba(0,0,0,.28); backdrop-filter: blur(16px); font: 12px/1.55 'Inter', sans-serif; }
    .fm-privacy-banner p { margin: 0 0 12px; }
    .fm-privacy-banner a { color: #7ADFDF; text-decoration: none; }
    .fm-privacy-accept { border: 0; border-radius: 8px; padding: 8px 12px; background: #2ABFBF; color: #061224; font: 700 11px/1 'Inter', sans-serif; cursor: pointer; }
    .fm-privacy-close { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border: 0; border-radius: 7px; background: transparent; color: rgba(255,255,255,.6); font-size: 18px; cursor: pointer; }
    .fm-privacy-close:hover { background: rgba(255,255,255,.08); color: #fff; }
    @media (max-width: 640px) { .fm-privacy-banner { left: 12px; bottom: 12px; width: min(340px, calc(100vw - 24px)); } }

    /* ===== Lenis ===== */
    html.lenis, html.lenis body { height: auto; }
    .lenis.lenis-smooth { scroll-behavior: auto !important; }
    .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

    /* ===== Rodapé institucional ===== */
    .fm-site-footer,
    .fm-site-footer * { box-sizing: border-box; }
    .fm-site-footer {
      background: radial-gradient(120% 140% at 0% 0%, #103257 0%, #0B1F3A 52%, #061224 100%);
      border-top: 1px solid rgba(42,191,191,.38);
      color: rgba(217,227,239,.72);
      font-family: 'Inter', sans-serif;
    }
    .fm-footer-content {
      display: grid;
      grid-template-columns: minmax(190px, .8fr) minmax(160px, .7fr);
      gap: 48px;
      max-width: 1320px;
      margin: 0 auto;
      padding: 72px max(24px, 5vw) 52px;
    }
    .fm-footer-orbita { display: inline-flex; width: 68px; opacity: .78; transition: opacity .2s ease; }
    .fm-footer-orbita img { display: block; width: 100%; height: auto; filter: grayscale(1) brightness(0) invert(1); }
    .fm-footer-label { margin: 0 0 16px; color: #2ABFBF; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
    .fm-site-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
    .fm-site-footer a { color: rgba(255,255,255,.86); text-decoration: none; transition: color .2s ease; }
    .fm-site-footer a:hover { color: #2ABFBF; }
    .fm-site-footer nav a { font-size: 13px; }
    .fm-footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 13px; line-height: 1.55; }
    .fm-footer-contact p { margin: 0; }
    .fm-footer-bottom { border-top: 1px solid rgba(42,191,191,.22); }
    .fm-footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; max-width: 1320px; margin: 0 auto; padding: 25px max(24px, 5vw) 28px; font-size: 11px; text-align: center; }
    .fm-footer-credit { color: rgba(255,255,255,.42); }
    .fm-footer-orbita:hover { opacity: 1; }
    @media (max-width: 720px) {
      .fm-footer-content { grid-template-columns: 1fr; gap: 38px; padding-top: 52px; }
    }

/* Static-first presentation: content and contacts never depend on animation. */
.fm-founder-section, .fm-faq-section, .fm-mission-section { --gray2: #526477; }
.fm-f-eyebrow, .fm-f-quals-label, .fm-f-quote cite { color: #146f72; }
.fm-cfm-row > div > span { color: #146f72 !important; }
.fm-faq-tag { color: #146f72 !important; }
.fm-faq-num { opacity: 1; color: #146f72; }
:root { --gray-2: #64748b; --gray2: #596778; --text-base: #0B1F3A; }
#fm-navbar, #fm-halftone, #fm-grid, .fm-line-dot, .fm-eyebrow,
.fm-subtitle, .fm-ctas, #fm-trust, #fm-scroll, #st-label, #st-hint,
.fm-prod-header, .fm-prod-card { opacity: 1; }
.fm-title .w, #st-label, .fm-prod-header, .fm-prod-card { transform: none; }
.fm-line-bar { width: 100px; }
#st-text { max-width: 1100px; width: 100%; color: #0B1F3A; }
#st-text .hl { color: #167c7c; }
.fm-title .hl, .fm-m-title span, .fm-prod-title span { color: #188a8a; }
.fm-eyebrow, #st-label, .fm-m-eyebrow, .fm-prod-eyebrow,
.fm-prod-link, .fm-card-spec, .fm-card-name em, .fm-faq-eyebrow,
.fm-faq-tag, .fm-faq-item[open] .fm-faq-q,
.fm-faq-body-text a { color: #167c7c; }
.fm-btn--primary, .fm-cta-btn--primary, .fm-card-badge--dev,
.fm-f-cta { color: #061224 !important; -webkit-text-fill-color: #061224 !important; }
.fm-f-cta svg { stroke: currentColor; }
.fm-card--cta .fm-cta-btn:hover { color: #061224; }
.fm-card--mission p { color: #c6d5e6; }
.fm-card--mission .fm-c-tag { color: #a6bfd5; }
.fm-card--stat .fm-c-label, .fm-card--stat .fm-c-number,
.fm-card--stat .fm-c-sub { color: #061224; }
.fm-faq-title span { background-image: linear-gradient(135deg, #188a8a, #167c7c); }
.fm-footer-credit { color: #a7b9cd; }
.fm-science { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; pointer-events: none; opacity: .34; }
.fm-science path { fill: none; stroke: #188a8a; stroke-width: 1; vector-effect: non-scaling-stroke; }
.fm-science circle { fill: #2ABFBF; }
.fm-faq-trigger { list-style: none; }
.fm-faq-trigger::-webkit-details-marker { display: none; }
.fm-faq-trigger:focus-visible { outline: 3px solid #167c7c; outline-offset: -4px; }
.fm-compare-slider:focus-visible ~ .fm-compare-handle { box-shadow: 0 0 0 4px #fff, 0 0 0 7px #167c7c; }
.fm-carousel-track:focus-visible { outline: 3px solid #167c7c; outline-offset: -4px; }
@media (max-width: 768px) {
  #fm-navbar { justify-content: space-between !important; padding: 16px 24px; }
  .fm-navbar-actions { position: static; }
  #fm-navbar-logo img { height: 62px; }
  #st-panel { min-height: auto; padding: 80px 24px; }
  #st-text { font-size: clamp(25px, 5.8vw, 42px); line-height: 1.35; }
  #st-hint { margin-top: 28px; }
  .fm-cta-section { min-height: 700px; }
  .fm-carousel-outer::after { width: 35px; }
  .fm-home .fm-privacy-banner { position: relative; inset: auto; width: 100%; max-width: 400px; margin-top: 28px; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto !important; }
}
