* { box-sizing: border-box; margin: 0; padding: 0; }

    /* Scroll suave ao navegar por âncoras (ex.: links do rodapé) */
    html { scroll-behavior: smooth; }

    :root {
      /* Paleta oficial MOOGUM — 12 cores */
      --red: #F42B2F;        /* vermelho */
      --old-pink: #FFA6A6;   /* rosa claro */
      --purple: #B200A1;       /* roxo */
      --magenta: #F664B6;      /* magenta */
      --orange: #F67729;       /* laranja */
      --bone: #F4ECD7;         /* creme */
      --blue: #1E50CB;         /* azul */
      --yellow: #F9E532;  /* amarelo */
      --teal: #7FE2E3;         /* ciano */
      --green: #277200;        /* verde */
      --off-white: #FAF8F3;    /* branco quente */
      --ink: #161616;          /* preto */

      /* ── Themes: cor mãe → cores filhas ───────────────────────────── */
      /* Theme1 — Parceria Mensal
         mãe: laranja #F67729
         c1: vermelho #F42B2F
         c2: amarelo #F9E532
         c3: rosa claro #FFA6A6
         c4: magenta #F664B6 */

      /* Theme2 — Projetos Pontuais
         mãe: ciano #7FE2E3
         c5: roxo #B200A1
         c6: rosa claro #FFA6A6
         c7: azul #1E50CB
         c8: magenta #F664B6
         c9: laranja #F67729 */

      /* Theme3 — 3D
         mãe: roxo #B200A1
         c1: magenta #F664B6
         c2: vermelho #F42B2F
         c3: azul #1E50CB */

      /* Theme4 — Visual
         mãe: magenta #F664B6
         c4: rosa claro #FFA6A6
         c5: roxo #B200A1
         c6: vermelho #F42B2F */

      /* Largura máxima de conteúdo — acima disso, o excedente vira "margem" colorida */
      --max-content: 1920px;
      --edge-pad: 8rem;
    }

    /* Padding lateral que cresce além de 1920px, mantendo o fundo full-bleed */
    .fullbleed-x {
      padding-left: max(var(--edge-pad), calc((100vw - var(--max-content)) / 2 + var(--edge-pad)));
      padding-right: max(var(--edge-pad), calc((100vw - var(--max-content)) / 2 + var(--edge-pad)));
    }

    body { font-family: 'Satoshi', sans-serif; background: var(--off-white); color: var(--ink); }

    /* NAV */
    header {
      position: absolute; top: 0; left: 0; right: 0; z-index: 100;
    }
    header > nav {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 1.25rem; padding-bottom: 1.25rem; background: transparent;
    }
    .nav-logo { display: block; width: 108px; height: auto; pointer-events: none; border: none; outline: none; background: transparent; }
    nav > a { display: flex; align-items: center; text-decoration: none; border: none; outline: none; }
    .nav-actions { display: flex; align-items: center; gap: 1.25rem; }
    .lang-switch { display: flex; align-items: center; gap: 4px; }
    .lang-link {
      font-size: 12px; font-weight: 400; color: var(--purple); text-decoration: none;
      padding: 4px 8px; border-radius: 24px; font-family: 'Satoshi', sans-serif;
      border: 1px solid var(--purple); background: transparent;
      transition: color 0.15s, background 0.15s, border-color 0.15s;
    }
    .lang-link:hover { background: var(--purple); color: var(--bone); }
    .lang-link.active { color: var(--bone); background: var(--orange); border-color: transparent; }
    .nav-cta {
      display: inline-block; text-decoration: none; font-size: 14px;
      font-weight: 700; color: var(--bone); background: var(--orange);
      border: none; padding: 8px 18px; border-radius: 24px; cursor: pointer; font-family: 'Satoshi', sans-serif;
      transition: filter 0.15s ease;
    }

    /* HERO */
    .hero {
      background: var(--yellow) url('../img/hero-desktop.svg') right bottom / auto 100% no-repeat;
      min-height: 88vh;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding-top: 0; padding-bottom: 3.5rem; position: relative; overflow: hidden;
    }
    .hero > * { position: relative; z-index: 1; }

    .hero-eyebrow, .hero-headline, .hero-sub { pointer-events: none; }
    .hero-eyebrow {
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 1rem; width: fit-content;
    }
    .hero-headline {
      font-family: 'Recoleta', serif; font-size: 34px; font-weight: 400;
      color: var(--orange); line-height: 1.2; max-width: 720px; margin-bottom: 1rem;
    }
    .hero-headline em { color: var(--orange); font-style: normal; }
    .hero-sub {
      font-size: 16px; font-weight: 500; color: var(--blue);
      max-width: 480px; line-height: 1.65; margin-bottom: 2rem;
    }
    .hero-actions { display: flex; align-items: center; gap: 1.5rem; }
    .btn-primary, .btn-ghost {
      display: inline-block; text-decoration: none; text-align: center;
      padding: 14px 28px; font-size: 14px; border-radius: 24px; cursor: pointer;
      font-family: 'Satoshi', sans-serif;
      transition: filter 0.15s ease, background 0.15s ease, color 0.15s ease;
    }
    .btn-primary {
      background: var(--orange); color: var(--bone); border: none; font-weight: 700;
    }
    .btn-ghost {
      background: transparent; color: var(--purple); border: 2.5px solid var(--purple); font-weight: 700;
      padding: 12px 26px;
    }

    /* CTA — hover padrão (só dispositivos com mouse/trackpad) */
    @media (hover: hover) {
      .nav-cta:hover, .btn-primary:hover, .svc-cta:hover, .form-submit:hover, .site-banner-btn:hover {
        filter: brightness(1.1);
      }
      .btn-ghost:hover {
        background: var(--purple);
        color: var(--bone);
      }
    }

    /* SECTIONS */
    .section { padding-top: 5rem; padding-bottom: 5rem; }
    .why { background: var(--old-pink); }
    .who { background: var(--magenta); }
    .solutions { background: var(--bone); }
    .clients { background: var(--blue); padding-top: 44px; padding-bottom: 44px; }

    /* WHY (Por que a MOOGUM) */
    .why-eyebrow {
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--off-white); margin-bottom: 1rem;
    }
    .why-headline {
      font-family: 'Recoleta', serif; font-size: 34px; font-weight: 400;
      line-height: 1.2; margin-bottom: 1rem; color: var(--blue);
    }
    .why-sub { font-family: 'Satoshi', sans-serif; font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.65; max-width: 520px; margin-bottom: 2rem; }

    /* SOLUTIONS (Soluções) */
    .solutions-eyebrow {
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--off-white); margin-bottom: 1rem;
    }
    .solutions-headline {
      font-family: 'Recoleta', serif; font-size: 34px; font-weight: 400;
      line-height: 1.2; margin-bottom: 1rem; color: var(--ink);
    }
    .solutions-sub { font-size: 16px; font-weight: 500; color: var(--purple); line-height: 1.65; max-width: 520px; }

    /* WHO (Quem somos) */
    .who-eyebrow {
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--off-white); margin-bottom: 1rem;
      grid-column: 1 / -1;
      width: fit-content;
    }
    .who-headline {
      font-family: 'Recoleta', serif; font-size: 34px; font-weight: 400;
      line-height: 1.2; margin-bottom: 1rem; color: var(--yellow);
    }
    .who-sub { font-size: 16px; font-weight: 500; color: var(--bone); line-height: 1.65; max-width: 520px; }

    /* CLIENTS (Clientes) */
    .clients { background: var(--blue); }
    .clients-eyebrow {
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--bone); margin-bottom: 1rem;
      width: fit-content;
    }
    .clients-headline {
      font-family: 'Recoleta', serif; font-size: 34px; font-weight: 400;
      line-height: 1.2; margin-bottom: 1rem; color: var(--teal);
    }
    .clients-sub {
      font-size: 16px; font-weight: 500; color: var(--bone);
      line-height: 1.65; max-width: 580px; margin-bottom: 3rem;
    }
    .clients-grid {
      display: grid;
      grid-template-columns: 1fr repeat(4, 1fr);
      gap: 32px;
      width: 100%;
      align-items: start;
    }
    .clients-eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
    .clients-header { display: flex; flex-direction: column; gap: 0.75rem; }
    .client-card {
      background: var(--bone);
      border: 1px solid rgba(22, 22, 22, 0.08);
      border-radius: 16px;
      padding: 16px;
      display: flex; flex-direction: column; align-items: flex-start;
      min-height: 240px;
    }
    .client-card-logo {
      display: flex; justify-content: flex-start; align-items: center;
      min-height: 60px;
      flex-shrink: 0;
      margin-bottom: 12px;
    }
    .client-card-logo img { max-width: 100%; height: auto; }
    .client-card-desc { font-size: 14px; font-weight: 500; color: var(--ink); opacity: 0.7; line-height: 1.2; text-align: left; max-width: 75%; flex: 1; display: flex; align-items: center; }
    .client-tags { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 4px; margin-top: auto; flex-shrink: 0; }
    .client-card-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600; color: var(--teal);
      text-decoration: none;
      border-radius: 100px;
      background: rgba(127, 226, 227, 0.1);
    }
    .client-card-link svg { flex-shrink: 0; }
    .client-card--saccaro {
      position: relative;
      overflow: hidden;
    }
    .client-card--saccaro::before {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 25%;
      background: url('../img/bg-client-saccaro.png') center center / cover no-repeat;
      pointer-events: none;
    }
    .client-card--saccaro > * { position: relative; z-index: 1; }
    .client-card--ibyte {
      position: relative;
      overflow: hidden;
    }
    .client-card--ibyte::before {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 25%;
      background: url('../img/bg-client-ibyte.png') center center / cover no-repeat;
      pointer-events: none;
    }
    .client-card--ibyte > * { position: relative; z-index: 1; }
    .client-card--homely {
      position: relative;
      overflow: hidden;
    }
    .client-card--homely::before {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 25%;
      background: url('../img/bg-client-homely.png') center center / cover no-repeat;
      pointer-events: none;
    }
    .client-card--homely > * { position: relative; z-index: 1; }
    .client-card--get {
      position: relative;
      overflow: hidden;
    }
    .client-card--get::before {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 25%;
      background: url('../img/bg-client-get.png') center center / cover no-repeat;
      pointer-events: none;
    }
    .client-card--get > * { position: relative; z-index: 1; }

    /* CONTACT (Contato) */
    .contact-eyebrow {
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--purple); margin-bottom: 1rem;
    }

    /* Eyebrow pill — padrão visual compartilhado das seções */
    .hero-eyebrow, .why-eyebrow, .solutions-eyebrow, .who-eyebrow, .contact-eyebrow, .clients-eyebrow {
      display: inline-block;
      background: var(--blue);
      padding: 3px 10px;
      border-radius: 20px;
    }
    .solutions-eyebrow { background: var(--magenta); }
    .contact-eyebrow { background: var(--yellow); }
    .why-eyebrow { background: var(--red); }
    .hero-eyebrow { background: var(--teal); }
    .who-eyebrow { background: var(--blue); }
    .clients-eyebrow { background: var(--purple); }
    .contact-headline {
      font-family: 'Recoleta', serif; font-size: 34px; font-weight: 400;
      line-height: 1.2; margin-bottom: 1rem; color: var(--red);
    }
    .contact-sub { font-size: 16px; font-weight: 500; color: var(--off-white); line-height: 1.65; max-width: 520px; margin-bottom: 2rem; }

    /* NUMBERS */
    .numbers-grid {
      display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px; background: var(--blue);
      border: 1px solid var(--blue); border-radius: 24px;
      overflow: hidden; margin-top: 2rem;
    }
    .num-card { background: var(--blue); padding: 1.75rem 1.5rem; }
    .why-stat { font-family: 'Recoleta', serif; font-size: 34px; font-weight: 400; line-height: 1.2; color: var(--bone); margin-bottom: 6px; }
    .why-stat-desc { font-size: 16px; font-weight: 500; color: var(--bone); line-height: 1.65; margin-bottom: 10px; }
    .why-note { font-size: 14px; font-weight: 400; color: var(--bone); border-top: 0.5px solid var(--bone); padding-top: 10px; line-height: 1.5; }

    /* TABS */
    .tabs { display: flex; gap: 6px; margin: 2rem 0 2.5rem; flex-wrap: wrap; justify-content: center; }
    .tab {
      padding: 8px 18px; border-radius: 20px; font-size: 14px; font-weight: 500;
      cursor: pointer; border: 1px solid rgb(22 22 22 / 0.1); background: transparent;
      color: var(--ink); font-family: 'Satoshi', sans-serif;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .tab.active[aria-controls="recorrencia"] { background: var(--red); color: var(--bone); border-color: var(--red); }
    .tab.active[aria-controls="projetos"] { background: var(--blue); color: var(--off-white); border-color: var(--blue); }
    .tab.active[aria-controls="visual"] { background: var(--green); color: var(--off-white); border-color: var(--green); }
    .tab.active[aria-controls="3d"] { background: var(--magenta); color: var(--off-white); border-color: var(--magenta); }
    /* Hover só em dispositivos com pointer (mouse/trackpad) — evita sticky hover no mobile */
    @media (hover: hover) {
      .tab:not(.active)[aria-controls="recorrencia"]:hover { background: rgb(244 43 47 / 0.24); border-color: rgb(244 43 47 / 0.24); color: var(--ink); }
      .tab:not(.active)[aria-controls="projetos"]:hover { background: rgb(30 80 203 / 0.24); border-color: rgb(30 80 203 / 0.24); color: var(--ink); }
      .tab:not(.active)[aria-controls="visual"]:hover { background: rgb(39 114 0 / 0.24); border-color: rgb(39 114 0 / 0.24); color: var(--ink); }
      .tab:not(.active)[aria-controls="3d"]:hover { background: rgb(246 100 182 / 0.24); border-color: rgb(246 100 182 / 0.24); color: var(--ink); }
    }
    .panel { display: none; }
    .panel.active { display: block; opacity: 1; }
    .panel.slide-right { animation: slideRight 0.5s ease; }
    .panel.slide-left { animation: slideLeft 0.5s ease; }
    @keyframes slideRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
    @keyframes slideLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

    /* Seção Contato em modo escuro — cor sólida: green */
    .contact { background: var(--green); }
    .contact-bg { display: none; }
    .who-bg { display: none; }
    .contact .form-bullets li { color: var(--off-white); }
    .contact .form-bullets li::before { color: var(--teal); }
    .contact .form-label { color: var(--off-white); }
    .contact .form-input { border-top: none; }
    .contact .form-input:focus { box-shadow: 0 0 0 2px var(--teal); }
    .contact .form-submit {
      background: var(--teal);
      color: var(--off-white);
    }
    .contact .form-whats { color: var(--off-white); }
    .contact .form-whats a { color: var(--teal); }

    /* CARDS */
    .cards-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; grid-auto-rows:1fr; }
    /* Parceria Mensal — laranja: máx. diversidade */
    #recorrencia .svc-card--c1 { --accent: var(--teal); --accent-fg: var(--ink); }
    #recorrencia .svc-card--c2 { --accent: var(--red); --accent-fg: var(--bone); }
    #recorrencia .svc-card--c3 { --accent: var(--yellow); --accent-fg: var(--ink); }
    #recorrencia .svc-card--c4 { --accent: var(--blue); --accent-fg: var(--bone); }

    /* Projetos Pontuais — ciano: máx. diversidade */
    #projetos .svc-card--c5 { --accent: var(--green); --accent-fg: var(--bone); }
    #projetos .svc-card--c6 { --accent: var(--orange); --accent-fg: var(--bone); }
    #projetos .svc-card--c7 { --accent: var(--purple); --accent-fg: var(--bone); }
    #projetos .svc-card--c8 { --accent: var(--yellow); --accent-fg: var(--ink); }
    #projetos .svc-card--c9 { --accent: var(--magenta); --accent-fg: var(--bone); }

    /* 3D — roxo: máx. diversidade */
    [id="3d"] .svc-card--c1 { --accent: var(--blue); --accent-fg: var(--bone); }
    [id="3d"] .svc-card--c2 { --accent: var(--teal); --accent-fg: var(--ink); }
    [id="3d"] .svc-card--c3 { --accent: var(--red); --accent-fg: var(--bone); }

    /* Visual — magenta: máx. diversidade */
    [id="visual"] .svc-card--c4 { --accent: var(--yellow); --accent-fg: var(--ink); }
    [id="visual"] .svc-card--c5 { --accent: var(--green); --accent-fg: var(--bone); }
    [id="visual"] .svc-card--c6 { --accent: var(--purple); --accent-fg: var(--bone); }

    .svc-card {
      background: var(--off-white); border: none; border-radius: 24px;
      padding: 1.75rem 1.5rem; display: flex; flex-direction: column;
      position: relative; overflow: hidden; min-height: 480px;
    }
    .svc-badge {
      display: inline-block; font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
      text-transform: uppercase; padding: 6px 16px; border-radius: 30px;
      margin-bottom: 20px; background: var(--accent, var(--magenta)); color: var(--accent-fg, var(--bone));
    }
    .svc-eyebrow {
      font-family: 'Recoleta', serif; font-size: 28px; font-weight: 400;
      line-height: 1.2; color: var(--ink); margin-bottom: 4px; letter-spacing: 0.005em;
    }
    .svc-title { font-family: 'Satoshi', sans-serif; font-size: 16px; font-weight: 400; color: var(--ink); margin: 0 0 12px; }
    .svc-meta { font-size: 12px; font-weight: 400; color: var(--ink); margin-bottom: 12px; line-height: 1.5; font-style: italic; }
    .svc-desc { font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 400; color: var(--ink); line-height: 1.65; margin-bottom: 16px; flex: 1; }
    .svc-divider { border: none; border-top: 1px solid rgba(22, 22, 22, 0.15); margin: 0 0 16px; }
    .when-label {
      font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--accent, var(--magenta)); margin-bottom: 10px;
    }
    .when-list { list-style: none; margin-bottom: 20px; }
    .when-list li {
      font-size: 12px; font-weight: 400; color: var(--ink); padding: 4px 0 4px 16px;
      position: relative; line-height: 1.5;
    }
    .when-list li::before {
      content: "*"; position: absolute; left: 0; top: 3px;
      font-size: 14px; font-weight: 700; color: var(--accent, var(--magenta));
    }
    .svc-cta {
      display: block; text-align: center; padding: 13px;
      border-radius: 30px; border: none;
      font-size: 14px; font-weight: 500; color: var(--accent-fg, var(--bone));
      cursor: pointer; background: var(--accent, var(--magenta));
      font-family: 'Satoshi', sans-serif; text-decoration: none;
      transition: filter 0.15s;
    }
    /* WHO GRID */
    .who-grid { display: grid; grid-template-columns: 1fr repeat(2, 1fr); gap: 2rem; width: 100%; align-items: start; }
    .who-header { display: flex; flex-direction: column; gap: 0.75rem; }
    /* TEAM */
    .team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; margin-top: 2rem; align-items: stretch; }
    .team-card { background: var(--bone); border-radius: 24px; padding: 2rem; position: relative; }
    .team-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--magenta); display: flex; align-items: center; justify-content: center;
      font-family: 'Satoshi', sans-serif; font-size: 18px; color: var(--bone);
      margin-bottom: 1.25rem;
    }
    .team-name { font-family: 'Recoleta', serif; font-size: 28px; font-weight: 400; line-height: 1.2; color: var(--ink); margin: 0 0 4px; }
    .team-role { font-size: 16px; color: var(--ink); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
    .team-text { font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 400; color: var(--ink); line-height: 1.65; margin-bottom: 12px; }
    .team-tag {
      display: inline-block; font-size: 12px; font-weight: 500; color: var(--bone);
      background: var(--red); padding: 3px 10px;
      border-radius: 24px; margin-right: 4px; margin-bottom: 4px;
    }
    .client-tag {
      display: inline-block; font-size: 12px; font-weight: 500; color: var(--bone);
      background: var(--purple); padding: 3px 10px;
      border-radius: 24px; margin-right: 4px; margin-bottom: 4px;
    }

    /* FORM */
    .form-section { max-width: 580px; margin: 0 auto; }
    .form-bullets { list-style: none; margin-bottom: 2.5rem; }
    .form-bullets li { font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 400; color: var(--blue); line-height: 1.65; padding: 5px 0 5px 20px; position: relative; }
    .form-bullets li::before { content: "✦"; position: absolute; left: 0; font-size: 9px; top: 8px; color: var(--red); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
    .form-label { font-size: 14px; font-weight: 400; color: var(--blue); letter-spacing: 0.04em; }
    .form-input {
      padding: 11px 14px; border: 0.5px solid var(--bone); border-radius: 24px;
      font-size: 14px; font-family: 'Satoshi', sans-serif;
      background: var(--off-white); color: var(--blue); outline: none;
      width: 100%; opacity: 0.85;
    }
    .form-input::placeholder { color: var(--teal); }
    select.form-input { -webkit-appearance: none; appearance: none; color: var(--teal); }
    select.form-input option { color: var(--teal) !important; }
    textarea.form-input { resize: vertical; min-height: 90px; }
    .form-submit {
      width: 100%; padding: 15px; background: var(--red); color: var(--bone);
      border: none; border-radius: 30px; font-size: 14px; font-weight: 500;
      cursor: pointer; font-family: 'Satoshi', sans-serif; margin-top: 8px;
      transition: filter 0.15s ease;
    }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
    .form-whats-btn {
      display: block; text-align: center; margin-top: 1rem;
      padding: 15px; background: var(--teal); color: var(--off-white);
      border: none; border-radius: 24px; font-size: 14px; font-weight: 500;
      cursor: pointer; font-family: 'Satoshi', sans-serif; text-decoration: none;
      transition: filter 0.15s ease;
    }
    @media (hover: hover) {
      .form-whats-btn:hover { filter: brightness(1.1); }
    }
    .form-botcheck { display: none; }
    .form-status {
      font-family: 'Satoshi', sans-serif; margin-top: 12px; padding: 12px 16px; border-radius: 6px;
      font-size: 14px; font-weight: 400; line-height: 1.65;
    }
    .form-status.is-success { background: var(--off-white); color: var(--green); }
    .form-status.is-error { background: var(--old-pink); color: var(--red); }
    .form-required { color: var(--red); }
    .contact .form-required { color: var(--teal); }
    .form-required-hint {
      font-family: 'Satoshi', sans-serif; font-size: 12px; font-weight: 400;
      color: var(--teal); letter-spacing: 0.04em; margin: 0;
    }

    /* Overlay de sucesso do formulário — mesmo padrão do LGPD */
    .form-success-overlay {
      position: fixed; inset: 0;
      z-index: 2147483647;
      background: rgba(0, 0, 0, 0.55);
      display: none;
      align-items: center; justify-content: center;
      padding: 1rem;
    }
    .form-success-overlay.show { display: flex; }
    .form-success-box {
      width: 100%; max-width: 400px;
      background: var(--green); color: var(--bone);
      border-radius: 8px; padding: 2rem;
      text-align: center;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }
    .form-success-msg {
      font-family: 'Satoshi', sans-serif;
      font-size: 16px; font-weight: 500;
      line-height: 1.65; margin-bottom: 1.5rem;
    }
    .form-success-btn {
      background: var(--teal); color: var(--off-white);
      border: none; border-radius: 30px;
      padding: 10px 28px; font-size: 14px; font-weight: 500;
      font-family: 'Satoshi', sans-serif;
      cursor: pointer;
      transition: filter 0.15s ease;
    }
    @media (hover: hover) {
      .form-success-btn:hover { filter: brightness(1.1); }
    }
    .form-whats { font-family: 'Satoshi', sans-serif; text-align: center; margin-top: 1.25rem; font-size: 14px; font-weight: 400; color: var(--blue); line-height: 1.65; }
    .form-whats a { color: var(--red); text-decoration: none; font-weight: 500; }

    /* QUEBRAS ENTRE SEÇÕES — base compartilhada + imagem única por break */
    .section-break {
      height: 56px;
      background-repeat: repeat-x;
      background-position: left top;
      background-size: auto 56px;
    }
    .break-why-solutions { background-image: url('../img/divider-why-solutions.svg'); }
    .break-solutions-who { background-image: url('../img/divider-solutions-who.svg'); }
    .break-who-clients {
      background-image: url('../img/divider-who-contact.svg');
    }
    .break-clients-contact {
      background-image: url('../img/divider-contact-footer.svg');
    }
    .break-contact-footer {
      background-image: url('../img/divider-contact-footer.svg');
      background-size: 100% 100%;
      background-repeat: repeat-x;
      display: none;
    }

    /* FOOTER */
    footer {
      background: var(--red); padding-top: 2.5rem; padding-bottom: 2.5rem; display: flex;
      align-items: flex-start; justify-content: space-between;
      flex-wrap: wrap; gap: 1.5rem; position: relative;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 0.5rem; order: 3; align-items: flex-end; }
    .footer-logo { display: block; width: 88px; height: auto; color: var(--bone); pointer-events: none; }
    .footer-copy { font-size: 12px; color: var(--bone); }
    .footer-easter-egg { display: block; font-size: 8px; color: var(--red); margin-top: 4px; user-select: all; -webkit-user-select: all; }
    .footer-nav { display: flex; align-items: center; }
    .footer-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
    .footer-links a {
      font-size: 16px; font-weight: 500; color: var(--bone); text-decoration: none; transition: opacity 0.15s ease;
    }
    .footer-links a:hover { opacity: 0.85; }
    .footer-links a .footer-icon {
      display: block; width: 36px; height: 36px;
    }
    .footer-nav--links { order: 1; }
    .footer-nav--social { order: 2; position: absolute; left: 50%; transform: translateX(-50%); }
    .footer-nav--social .footer-links { gap: 2rem; }

    /* ALERTA LGPD (cookies) — oculto por padrão; JS mostra quando não há consentimento */
    .site-banner {
      position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 2147483647;
      background: rgba(0, 0, 0, 0.55);
      overflow-y: auto;
      padding: 1rem;
      color-scheme: only light;
      display: none !important;
    }
    html.show-banner .site-banner { display: flex !important; align-items: flex-end; }
    .site-banner-box {
      width: 100%; max-width: 580px;
      background: var(--blue); color: var(--bone);
      border-radius: 8px; padding: 2rem 2.25rem;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
      margin: 0 auto 2rem;
      color-scheme: only light;
    }
    .site-banner-text { font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 400; line-height: 1.65; margin: 0 0 1.5rem; color: var(--bone); }
    .site-banner-text a { color: var(--bone); text-decoration: underline; }
    .site-banner-btn {
      display: block; margin-left: auto;
      background: var(--orange); color: var(--bone);
      border: none; border-radius: 4px;
      padding: 10px 28px; font-size: 14px; font-weight: 500;
      font-family: 'Satoshi', sans-serif; cursor: pointer;
      transition: filter 0.15s ease;
    }

    /* PÁGINA DE POLÍTICA DE PRIVACIDADE */
    .privacy { background: var(--bone); color: var(--ink); }
    .privacy-content { max-width: 760px; margin: 0 auto; }
    .privacy-content .privacy-eyebrow {
      font-family: 'Satoshi', sans-serif; font-size: 12px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--off-white); background: var(--blue); display: inline-block;
      padding: 3px 10px; border-radius: 20px; margin-bottom: 1rem;
    }
    .privacy-headline {
      font-family: 'Recoleta', serif; font-weight: 400;
      font-size: clamp(32px, 3.5vw, 40px); line-height: 1.2; margin-bottom: 1.5rem;
    }
    .privacy-content p { font-size: 15px; line-height: 1.65; margin-bottom: 1rem; color: var(--ink); }
    .privacy-content h2 {
      font-family: 'Recoleta', serif; font-weight: 400; font-size: 24px;
      margin: 2rem 0 0.75rem; color: var(--ink);
    }
    .privacy-content a { color: var(--red); }
    .privacy-updated { font-size: 13px; color: var(--ink); margin-bottom: 2rem; }
    .privacy-content ul {
      list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem;
    }
    .privacy-content li { font-size: 15px; line-height: 1.65; color: var(--ink); margin-bottom: 0.25rem; }
    .privacy-content h3 {
      font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 16px;
      margin: 1.5rem 0 0.5rem; color: var(--ink);
    }

    /* Cabeçalho sólido apenas na página de política */
    body.privacy-page header { position: relative; background: var(--old-pink); }

    /* Cartões dos itens numerados */
    .privacy-card {
      background: var(--off-white);
      border-radius: 24px;
      padding: 1.75rem 1.5rem;
    }
    .privacy-card:not(:last-child) { margin-bottom: 1.5rem; }
    .privacy-card h2 { margin-top: 0; }

    /* Exibe o divisor contact→footer apenas na página de política */
    body.privacy-page .break-contact-footer { display: block; }


    /* ==========================================================
       DESKTOP — Contact background e alinhamento do form (≥ 1025px)
       ========================================================== */
    @media (min-width: 1025px) {
      .why { position: relative; overflow: hidden; }
      .why::before {
        content: ''; position: absolute; left: 0; bottom: 0;
        width: clamp(260px, 32vw, 460px); height: 100%;
        background: url('../img/why-bg.svg') left bottom / auto 56px repeat-y;
        pointer-events: none;
      }
      .numbers-grid { position: relative; z-index: 1; }

      .who { position: relative; overflow: hidden; }
      .who-bg {
        display: block; position: absolute; right: 0; top: 0;
        width: clamp(260px, 32vw, 460px); height: auto;
        pointer-events: none;
      }

      .contact { background: var(--green); position: relative; overflow: hidden; }
      .contact-bg {
        display: block; position: absolute; right: 0; bottom: 0;
        width: clamp(260px, 32vw, 460px); height: auto;
        pointer-events: none;
      }
      .form-section { width: calc(50% - 1rem); max-width: none; margin: 0; position: relative; }
    }

    /* ==========================================================
       RESPONSIVO — TABLET (≤ 1024px)
       ========================================================== */
    @media (max-width: 1024px) {
      .form-section { max-width: 580px; margin: 0 auto; }

      :root { --edge-pad: 1.75rem; }
      header > nav { padding-top: 1.1rem; padding-bottom: 1.1rem; }
      .hero { padding-bottom: 3rem; min-height: 80vh; }
      .section { padding-top: 4rem; padding-bottom: 4rem; }

      .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      .cards-grid { grid-template-columns: 1fr; gap: 10px; grid-auto-rows: auto; }
      .svc-card { min-height: auto; }

      .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
    }

    /* ==========================================================
       RESPONSIVO — TABLET PEQUENO / MOBILE GRANDE (≤ 768px)
       ========================================================== */
    @media (max-width: 768px) {
      :root { --edge-pad: max(calc((100vw - 580px) / 2), 1.25rem); }
      header > nav { padding-top: 1rem; padding-bottom: 1rem; background: transparent; position: static; }
      header { position: absolute; top: 0; left: 0; right: 0; z-index: 5; }
      .nav-logo { width: 92px; }
      .nav-actions { gap: 0.75rem; }
      .nav-cta { padding: 7px 14px; font-size: 12px; }
      .lang-link { font-size: 12px; }

      .hero {
        background-image: url('../img/hero-mobile.svg');
        background-position: right bottom;
        padding-bottom: 2.75rem; min-height: 100vh; min-height: 100svh;
      }
      .hero-headline { max-width: 100%; }
      .hero-sub { max-width: 100%; }
      .hero-actions { flex-wrap: wrap; gap: 1rem; }
      .btn-primary, .btn-ghost { width: 100%; padding: 14px 20px; }

      .section { padding-top: 3.25rem; padding-bottom: 3.25rem; }
      .solutions-sub, .who-sub, .contact-sub { max-width: 100%; }

      /* Fundos SVG das seções — mobile: mesma arte do desktop, escala reduzida, atrás do conteúdo */
      .why { position: relative; overflow: hidden; }
      .why::before {
        content: ''; position: absolute; left: 0; bottom: 0;
        width: clamp(90px, 26vw, 130px); height: 448px;
        background: url('../img/why-bg.svg') left bottom / auto 56px repeat-y;
        pointer-events: none;
      }
      .why > * { position: relative; z-index: 1; }

      .who { position: relative; overflow: hidden; }
      .who-bg {
        display: block; position: absolute; right: 0; top: 0;
        width: clamp(150px, 40vw, 200px); height: auto;
        pointer-events: none;
      }
      .who > *:not(.who-bg) { position: relative; z-index: 1; }

      .contact { position: relative; overflow: hidden; }
      .contact-bg {
        display: block; position: absolute; right: 0; bottom: 0;
        width: clamp(185px, 58vw, 230px); height: auto;
        pointer-events: none;
      }
      .contact > *:not(.contact-bg) { position: relative; z-index: 1; }

      .clients { background: var(--blue); }
      .clients-eyebrow { margin-bottom: 1rem; }
      .clients-pill { font-size: 10px; padding: 3px 12px; }
      .clients-headline { font-size: 28px; margin-bottom: 0.75rem; }
      .clients-sub { font-size: 14px; margin-bottom: 2rem; max-width: 100%; }
      .clients-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .clients-eyebrow { grid-column: 1 / -1; margin-bottom: 0; width: fit-content; }
      .who-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .who-eyebrow { grid-column: 1 / -1; margin-bottom: 0; width: fit-content; }
      .client-card { padding: 16px; min-height: 240px; display: flex; flex-direction: column; align-items: flex-start; }
      .client-card-logo { min-height: 60px; flex-shrink: 0; margin-bottom: 12px; }
      .client-card-desc { font-size: 13px; flex: 1; line-height: 1.2; }
      .client-tags { margin-top: auto; flex-shrink: 0; }
      .client-card-link { font-size: 12px; }

      .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 2rem; }
      .num-card { padding: 1.5rem 1.25rem; }

      .tabs { gap: 6px; margin: 2rem 0; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; }
      .tab { padding: 7px 12px; font-size: 11.5px; white-space: nowrap; flex-shrink: 0; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; }

      .cards-grid { grid-template-columns: 1fr; gap: 14px; }

      .team-grid { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
      .team-card { padding: 1.5rem; }

      .form-row { grid-template-columns: 1fr; gap: 0; }

      footer {
        flex-direction: column; align-items: center; text-align: center; gap: 1rem;
        padding-top: 2rem; padding-bottom: 2rem;
      }
      .footer-brand { align-items: center; }
      .footer-nav--social { position: static; transform: none; }
      .footer-links { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
      .footer-links a .footer-icon { width: 32px; height: 32px; }
      .footer-nav--social .footer-links { gap: 1rem; }
      .footer-nav--social .footer-links a { padding: 6px; }
      .site-banner-box { width: 92vw; padding: 1.5rem; }
    }

    /* ==========================================================
       RESPONSIVO — CELULAR (≤ 480px)
       ========================================================== */
    @media (max-width: 480px) {
      .hero-eyebrow, .why-eyebrow, .solutions-eyebrow, .who-eyebrow, .contact-eyebrow { font-size: 10px; }
      .hero-headline, .why-headline, .solutions-headline, .who-headline, .contact-headline { font-size: 28px; }
      .hero-sub, .why-sub, .solutions-sub, .who-sub, .contact-sub { font-size: 14px; }
      .clients-eyebrow { font-size: 10px; grid-column: 1 / -1; margin-bottom: 0; width: fit-content; }
      .clients-headline { font-size: 28px; }
      .clients-sub { font-size: 13px; }
      .clients-grid { gap: 1.25rem; }
      .who-eyebrow { font-size: 10px; grid-column: 1 / -1; margin-bottom: 0; width: fit-content; }
      .who-headline { font-size: 28px; }
      .who-sub { font-size: 13px; }
      .who-grid { gap: 1.25rem; }
      .client-card { padding: 1.25rem; }
      .client-card-logo { min-height: 50px; }
      .client-card-name { font-size: 18px; }
      .client-card-desc { font-size: 12px; }
      .client-card-link { font-size: 11px; }
      .why-stat { font-size: 28px; }
      .why-stat-desc { font-size: 14px; }
      .why-note { font-size: 10.5px; }
      .num-card { padding: 1.25rem 1rem; }

      .svc-card { padding: 1.25rem; }

      .privacy-card { padding: 1.5rem 1.25rem; }

      .form-submit { padding: 14px; font-size: 14px; }

      .site-banner-box { padding: 1.5rem; }
    }

    /* ==========================================================
       ACESSIBILIDADE — Skip link (link para pular para o conteúdo)
       ========================================================== */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      background: var(--ink);
      color: var(--bone);
      padding: 0.75rem 1.5rem;
      border-radius: 0 0 6px 6px;
      font-size: 14px;
      font-weight: 700;
      z-index: 10000;
      transition: top 0.2s;
      text-decoration: none;
    }
    .skip-link:focus {
      top: 0;
    }