  /* ============ TOKENS ============
     Dois temas pra apresentar ao cliente: Escura (preto + dourado da
     logo) e Clara (branco + dourado da logo, texto no marrom-tabaco
     da logo). Troca via botão no header, não segue o SO. */
  :root {
    --bg: #000000;
    --surface: #16120c;
    --surface-2: #201b13;
    --surface-3: #2a2216;
    --text-strong: #f7f1e6;
    --text: #cdc0ac;
    --text-muted: #86795f;
    --accent: #d8ae76;
    --accent-soft: #ecd7b0;
    --accent-dim: #a5875d;
    --on-accent: #1a140c;
    --line: rgba(216, 174, 118, 0.14);
    --line-strong: rgba(216, 174, 118, 0.34);
    --shadow: rgba(0, 0, 0, 0.4);
  }

  * { box-sizing: border-box; }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    transition: background 0.25s ease, color 0.25s ease;
  }

  ::selection { background: var(--accent); color: var(--on-accent); }
  a { color: inherit; }

  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

  /* compatibilidade Elementor: containers (.e-con) usam flex por padrão;
     forçamos de volta ao comportamento de bloco normal quando usamos
     nossas classes de layout já existentes (o próprio CSS delas já
     define display:grid/flex onde precisa). */
  .e-con.wrap,
  .e-con.page-hero { display: block !important; }

  h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.01em; text-wrap: balance; color: var(--text-strong); }
  p { margin: 0; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--accent-dim); }

  .lede { color: var(--text-muted); font-size: 1.05rem; max-width: 60ch; }

  /* ============ NAV ============ */
  .topnav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .topnav .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }

  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; cursor: pointer; background: none; border: none; padding: 0; font: inherit; }
  .brand-mark { height: 72px; width: auto; flex-shrink: 0; display: block; }

  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
  .nav-links li { list-style: none; }
  .nav-links button,
  .nav-links a {
    background: none; border: none; cursor: pointer;
    font-family: inherit;
    text-decoration: none; font-size: 15.5px; font-weight: 600; letter-spacing: 0.02em;
    color: var(--text-muted); padding: 8px 0; position: relative; white-space: nowrap;
    transition: color 0.15s ease;
  }
  .nav-links button::after,
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
  }
  .nav-links button:hover,
  .nav-links a:hover { color: var(--text-strong); }
  .nav-links button.active,
  .nav-links li.current-menu-item > a,
  .nav-links li.current_page_item > a { color: var(--accent-soft); }
  .nav-links button.active::after,
  .nav-links li.current-menu-item > a::after,
  .nav-links li.current_page_item > a::after { transform: scaleX(1); }

  .nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

  /* ============ TEMA MESCLADA: alterna claro/escuro por seção ============ */
  [data-theme="mixed"] .band-dark {
    --bg: #000000; --surface: #16120c; --surface-2: #201b13; --surface-3: #2a2216;
    --text-strong: #f7f1e6; --text: #cdc0ac; --text-muted: #86795f;
    --accent: #d8ae76; --accent-soft: #ecd7b0; --accent-dim: #a5875d; --on-accent: #1a140c;
    --line: rgba(216, 174, 118, 0.14); --line-strong: rgba(216, 174, 118, 0.34);
    background: var(--bg); color: var(--text);
  }
  [data-theme="mixed"] .band-light {
    --bg: #ffffff; --surface: #ffffff; --surface-2: #f8f1e3; --surface-3: #f1e6d0;
    --text-strong: #201b13; --text: #4d4432; --text-muted: #8a7c62;
    --accent: #a5763c; --accent-soft: #8a6230; --accent-dim: #c69a5c; --on-accent: #201b13;
    --line: rgba(32, 27, 19, 0.1); --line-strong: rgba(32, 27, 19, 0.22);
    background: var(--bg); color: var(--text);
  }
  [data-theme="mixed"] .band-beige {
    --bg: #f1e6d0; --surface: #f1e6d0; --surface-2: #e8d7b0; --surface-3: #dfc998;
    --text-strong: #201b13; --text: #4d4432; --text-muted: #7a6b48;
    --accent: #8a6230; --accent-soft: #6e4e26; --accent-dim: #a5763c; --on-accent: #201b13;
    --line: rgba(32, 27, 19, 0.12); --line-strong: rgba(32, 27, 19, 0.26);
    background: var(--bg); color: var(--text);
  }

  /* na mesclada, o hero (sempre banda escura) tem especificidade maior vindo
     de [data-theme="mixed"] .band-dark - sem isso o fundo genérico (só cor)
     ganhava e escondia a foto do banner. */
  [data-theme="mixed"] .hero.band-dark {
    background:
      linear-gradient(rgba(22,18,12,0.6), rgba(22,18,12,0.6)),
      linear-gradient(100deg, var(--bg) 0%, color-mix(in srgb, var(--bg), transparent 22%) 40%, color-mix(in srgb, var(--bg), transparent 68%) 66%, color-mix(in srgb, var(--bg), transparent 82%) 100%),
      url('../img/banner-home.jpg') center 22% / cover no-repeat;
  }

  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--on-accent);
    font-size: 13px; font-weight: 700; padding: 10px 18px; border-radius: 3px; text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease; border: none; cursor: pointer; font-family: inherit;
  }
  .nav-cta:hover { background: var(--accent-soft); transform: translateY(-1px); }

  .nav-toggle {
    display: none; background: none; border: 1px solid var(--line-strong); border-radius: 4px;
    width: 38px; height: 38px; color: var(--accent-soft); font-size: 18px; cursor: pointer; flex-shrink: 0;
    align-items: center; justify-content: center; position: relative; z-index: 71;
  }
  .nav-toggle-bars { position: relative; width: 16px; height: 12px; display: block; }
  .nav-toggle-bars span {
    position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px; background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .nav-toggle-bars span:nth-child(1) { top: 0; }
  .nav-toggle-bars span:nth-child(2) { top: 5px; }
  .nav-toggle-bars span:nth-child(3) { top: 10px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.22);
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 60;
  }
  .topnav.open .nav-overlay { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 3px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.02em; text-decoration: none; cursor: pointer;
    border: 1px solid transparent; background: none; font-family: inherit;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }
  .btn-primary { background: var(--accent); color: var(--on-accent); }
  .btn-primary:hover { background: var(--accent-soft); transform: translateY(-2px); }
  .btn-ghost { border-color: var(--line-strong); color: var(--text-strong); }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent-soft); }

  /* ============ PAGE SHELL ============ */
  .page-hero { padding: 72px 0 64px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
  .page-hero .eyebrow { margin-bottom: 20px; }
  .page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.15; max-width: 20ch; margin-bottom: 18px; }
  .page-hero .lede { max-width: 66ch; }
  .page-hero .wrap { position: relative; z-index: 1; }

  /* banners reais por página (fundo do page-hero), mesmo tratamento da Home */
  #page-a-vincere .page-hero {
    background:
      linear-gradient(rgba(22,18,12,0.6), rgba(22,18,12,0.6)),
      linear-gradient(100deg, var(--bg) 0%, color-mix(in srgb, var(--bg), transparent 20%) 42%, color-mix(in srgb, var(--bg), transparent 65%) 70%, color-mix(in srgb, var(--bg), transparent 85%) 100%),
      url('../img/banner-a-vincere.jpg') center 32% / cover no-repeat;
  }
  #page-solucoes .page-hero {
    background:
      linear-gradient(rgba(22,18,12,0.6), rgba(22,18,12,0.6)),
      linear-gradient(100deg, var(--bg) 0%, color-mix(in srgb, var(--bg), transparent 20%) 42%, color-mix(in srgb, var(--bg), transparent 65%) 70%, color-mix(in srgb, var(--bg), transparent 85%) 100%),
      url('../img/banner-solucoes.jpg') center / cover no-repeat;
  }
  #page-vicente-criscio .page-hero {
    background:
      linear-gradient(rgba(22,18,12,0.6), rgba(22,18,12,0.6)),
      linear-gradient(100deg, var(--bg) 0%, color-mix(in srgb, var(--bg), transparent 20%) 42%, color-mix(in srgb, var(--bg), transparent 65%) 70%, color-mix(in srgb, var(--bg), transparent 85%) 100%),
      url('../img/banner-vicente-criscio.jpg') center / cover no-repeat;
  }

  .section { padding: 80px 0; }
  .section + .section { border-top: 1px solid var(--line); }
  .section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; max-width: 720px; }
  .section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }

  /* ============ HOME HERO ============ */
  .hero {
    position: relative;
    padding: 110px 0 96px;
    background:
      linear-gradient(rgba(22,18,12,0.6), rgba(22,18,12,0.6)),
      linear-gradient(100deg, var(--bg) 0%, color-mix(in srgb, var(--bg), transparent 22%) 40%, color-mix(in srgb, var(--bg), transparent 68%) 66%, color-mix(in srgb, var(--bg), transparent 82%) 100%),
      url('../img/banner-home.jpg') center 22% / cover no-repeat;
    border-bottom: 1px solid var(--line);
  }
  .hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.1; max-width: 17ch; margin: 20px 0 16px; }
  .hero h1 em { font-style: normal; color: var(--accent-soft); }
  .hero-sub { font-size: 1.02rem; font-weight: 600; color: var(--accent-dim); margin-bottom: 14px; }
  .hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

  /* ============ SIMPLE LISTS (sem grid de linhas) ============ */
  .plain-list { display: flex; flex-direction: column; }
  .plain-item { padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: minmax(0,200px) minmax(0,1fr); gap: 24px; align-items: baseline; }
  .plain-item:last-child { border-bottom: 1px solid var(--line); }
  .plain-item h4 { font-size: 0.98rem; color: var(--accent-soft); font-weight: 700; }
  .plain-item p { font-size: 0.94rem; color: var(--text-muted); }
  @media (max-width: 640px) { .plain-item { grid-template-columns: 1fr; gap: 6px; } }

  /* triggers: chips soltos, sem grade */
  .chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
  .chip {
    font-size: 13px; font-weight: 600; color: var(--text); background: var(--surface-2);
    border: 1px solid var(--line); padding: 9px 16px; border-radius: 100px;
  }
  .closing-line { font-size: 1.1rem; font-weight: 700; color: var(--accent-soft); margin: 22px 0 14px; }

  /* processo numerado (sequência real -> numeração faz sentido) */
  .process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  @media (max-width: 760px) { .process-row { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .process-row { grid-template-columns: 1fr; } }
  .process-cell {
    padding: 30px 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .process-cell:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 16px 28px -18px rgba(0,0,0,0.4); }
  .process-num {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: var(--accent); color: var(--on-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; margin-bottom: 20px;
  }
  .process-cell h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .process-cell p { font-size: 0.92rem; color: var(--text-muted); }

  /* soluções teaser (home) */
  .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

  .solution-card { padding: 6px 0; }
  .solution-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: color-mix(in srgb, var(--accent), transparent 88%);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent);
  }
  .solution-icon svg { width: 21px; height: 21px; }
  .solution-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
  .solution-card p { font-size: 0.92rem; color: var(--text-muted); }

  /* momentos em foto (home) */
  .photo-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .photo-card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .photo-card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 820px) { .photo-card-grid, .photo-card-grid.cols-2, .photo-card-grid.cols-4 { grid-template-columns: 1fr; } }
  @media (min-width: 821px) and (max-width: 1050px) { .photo-card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
  .photo-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
  .photo-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
  .photo-card-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: grayscale(55%) contrast(1.05); transition: filter 0.3s ease, transform 0.4s ease;
  }
  .photo-card:hover .photo-card-img img { filter: grayscale(0%); transform: scale(1.05); }
  .photo-card-body { padding: 20px 22px 24px; }
  .photo-card-body .solution-block-num { font-size: 11px; font-weight: 800; color: var(--accent); letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
  .photo-card-body h3 { font-size: 1.02rem; margin-bottom: 6px; }
  .photo-card-body p { font-size: 0.92rem; color: var(--text-muted); }

  /* artigos (blog) */
  .article-card-grid { gap: 30px 26px; }
  @media (max-width: 900px) { .article-card-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 640px) { .article-card-grid { grid-template-columns: 1fr; } }
  .article-card { display: block; text-decoration: none; color: inherit; }
  .article-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
  .article-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
  .article-date { font-size: 11.5px; color: var(--text-muted); }
  .article-date::before { content: "•"; margin-right: 10px; color: var(--line-strong); }
  .article-card .photo-card-body h3 { line-height: 1.3; }
  .article-readmore {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
    font-size: 0.88rem; font-weight: 700; color: var(--accent-soft);
  }
  .article-readmore svg { width: 15px; height: 15px; transition: transform 0.15s ease; }
  .article-card:hover .article-readmore svg { transform: translateX(3px); }
  .article-card { width: 100%; border: none; background: none; padding: 0; font: inherit; cursor: pointer; text-align: left; }

  /* paginação (listagem de artigos e widget de posts) */
  .vincere-pagination,
  .pagination-row .nav-links {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-top: 48px;
  }
  .vincere-pagination ul { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
  .vincere-pagination a,
  .vincere-pagination span,
  .pagination-row .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px;
    border: 1px solid var(--line-strong); color: var(--text-strong); text-decoration: none;
    font-size: 0.9rem; font-weight: 700; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }
  .vincere-pagination a:hover,
  .pagination-row a.page-numbers:hover { border-color: var(--accent); color: var(--accent-soft); }
  .vincere-pagination span.current,
  .vincere-pagination a.current,
  .pagination-row .page-numbers.current {
    background: var(--accent); border-color: var(--accent); color: var(--on-accent);
  }
  .vincere-pagination span.dots,
  .pagination-row .page-numbers.dots { border: none; color: var(--text-muted); }

  /* artigo individual (post) */
  .article-back {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 700;
    color: var(--accent-soft); background: none; border: none; padding: 0; font-family: inherit; cursor: pointer;
    margin-bottom: 28px; text-decoration: none;
  }
  .article-back svg { width: 16px; height: 16px; }
  .article-byline { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
  .article-byline img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid var(--line-strong); }
  .article-byline-name { font-size: 0.92rem; font-weight: 700; color: var(--text-strong); }
  .article-byline-role { font-size: 0.82rem; color: var(--text-muted); }
  .article-content { max-width: none; }
  .article-body { max-width: none; }
  .article-body > p { margin-bottom: 22px; font-size: 1.05rem; line-height: 1.75; color: var(--text); }
  .article-body h2 { font-size: 1.35rem; margin: 42px 0 18px; }
  .article-body .quote-block { margin: 34px 0; }
  .related-heading { font-size: 1.05rem; margin-bottom: 24px; }
  .article-featured-img { border-radius: 12px; overflow: hidden; margin-bottom: 40px; border: 1px solid var(--line); }
  .article-featured-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

  /* teaser do Vicente (home) */
  .vc-teaser { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: 44px; align-items: center; }
  @media (max-width: 760px) { .vc-teaser { grid-template-columns: 1fr; } .vc-teaser-photo { margin: 0 auto; } }
  .vc-teaser-photo { border-radius: 12px; overflow: hidden; max-width: 240px; aspect-ratio: 3 / 4; border: 1px solid var(--line-strong); }
  .vc-teaser-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* stats */
  .stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
  @media (max-width: 760px) { .stats-strip { grid-template-columns: 1fr; } }
  .stat-num { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 800; color: var(--accent-soft); font-variant-numeric: tabular-nums; line-height: 1; margin-bottom: 10px; }
  .stat-label { font-size: 0.88rem; color: var(--text-muted); max-width: 32ch; }
  .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
  .tag { font-size: 11.5px; font-weight: 600; color: var(--accent-soft); background: color-mix(in srgb, var(--accent), transparent 90%); border: 1px solid var(--line); padding: 5px 11px; border-radius: 100px; white-space: nowrap; }

  /* cases: lista simples, sem caixa cheia */
  .case-item { padding: 26px 0; border-top: 1px solid var(--line); }
  .case-item:last-child { border-bottom: 1px solid var(--line); }
  .case-sector { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
  .case-role { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
  .case-desc { font-size: 0.95rem; color: var(--text); margin-top: 10px; max-width: 68ch; }
  .case-desc b { color: var(--accent-soft); font-weight: 700; }

  /* CTA */
  .cta-band { padding: 76px 0; text-align: center; border-top: 1px solid var(--line); }
  .cta-band h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 26px; }

  /* quote */
  .quote-block { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; color: var(--accent-soft); border-left: 3px solid var(--accent); padding-left: 22px; margin: 6px 0 26px; text-wrap: balance; }

  .info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
  @media (max-width: 760px) { .info-cols { grid-template-columns: 1fr; } }
  .info-cols h3 { font-size: 1rem; color: var(--accent-soft); margin-bottom: 10px; }
  .info-cols p { font-size: 0.94rem; color: var(--text-muted); }

  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 760px) { .values-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }
  .value-card { border-left: 2px solid var(--accent); padding-left: 18px; }
  .value-card h4 { font-size: 0.96rem; margin-bottom: 6px; color: var(--text-strong); }
  .value-card p { font-size: 0.88rem; color: var(--text-muted); }

  /* soluções (página) */
  .solution-band { padding: 48px 0; }
  .solution-block { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 44px; }
  .solution-divider { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; margin-top: 40px; }
  .solution-divider::before, .solution-divider::after {
    content: ""; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, #a5763c 50%, transparent);
  }
  .solution-divider::before { background: linear-gradient(90deg, transparent, #a5763c); }
  .solution-divider::after { background: linear-gradient(90deg, #a5763c, transparent); }
  .solution-divider span { width: 6px; height: 6px; border-radius: 50%; background: #a5763c; flex-shrink: 0; }
  .solution-block-num { font-size: 12px; font-weight: 800; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
  .solution-block h3 { font-size: 1.4rem; margin-bottom: 10px; }
  .solution-block .tagline { font-size: 1rem; font-weight: 600; color: var(--accent-dim); margin-bottom: 14px; }
  .solution-block .desc { font-size: 0.96rem; color: var(--text-muted); margin-bottom: 18px; max-width: 58ch; }
  .solution-block .atuamos-label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; display: block; }
  @media (max-width: 760px) { .solution-block { grid-template-columns: 1fr; gap: 14px; } }

  /* vicente */
  .vc-hero { display: grid; grid-template-columns: minmax(0, 210px) minmax(0, 1fr); gap: 44px; align-items: start; }
  @media (max-width: 700px) { .vc-hero { grid-template-columns: 1fr; } .vc-portrait { margin: 0 auto; } }
  .vc-portrait {
    aspect-ratio: 2/3; border-radius: 8px; max-width: 230px;
    background: var(--surface-2);
    border: 1px solid var(--line-strong); overflow: hidden;
  }
  .vc-block + .vc-block { margin-top: 34px; }
  .vc-block h3 { font-size: 1rem; color: var(--accent-soft); margin-bottom: 10px; }

  /* contato */
  .contact-band {
    position: relative;
    padding: 88px 0;
  }
  .contact-band::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background:
      linear-gradient(100deg, rgba(10,8,5,0.86) 0%, rgba(10,8,5,0.68) 45%, rgba(10,8,5,0.5) 100%),
      url('../img/banner-contato.jpg') center / cover no-repeat;
  }
  .contact-band .wrap { position: relative; z-index: 1; }

  .contact-grid { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 32px; align-items: start; }
  @media (max-width: 820px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

  .glass-card {
    background: rgba(22,18,12,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(216,174,118,0.25); border-radius: 10px;
  }

  .contact-cards { display: flex; flex-direction: column; gap: 14px; }
  .contact-card {
    display: flex; align-items: center; gap: 16px; padding: 18px 20px;
    text-decoration: none; transition: border-color 0.15s ease, transform 0.15s ease;
  }
  .contact-card:hover { border-color: var(--accent); transform: translateY(-2px); }
  .contact-card .solution-icon { margin-bottom: 0; flex-shrink: 0; background: color-mix(in srgb, var(--accent), transparent 82%); }
  .contact-card > div:last-child { min-width: 0; }
  .contact-card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
  .contact-card-value { font-size: 1.02rem; font-weight: 700; color: var(--text-strong); overflow-wrap: break-word; }

  .form-card { padding: 36px; }
  .field-inline { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(216,174,118,0.2); }
  .field-inline:last-of-type { border-bottom: none; }
  .field-inline label {
    display: flex; align-items: center; gap: 8px; width: 128px; flex-shrink: 0;
    font-size: 0.92rem; font-weight: 700; color: var(--accent-soft);
  }
  .field-inline label svg { width: 16px; height: 16px; flex-shrink: 0; }
  .field-inline .field-input-wrap { flex: 1; min-width: 0; }
  .field-inline input, .field-inline textarea {
    width: 100%; background: transparent; border: none; color: var(--text-strong);
    font-size: 0.95rem; font-family: inherit; padding: 4px 0;
  }
  .field-inline input:focus, .field-inline textarea:focus { outline: none; }
  .field-inline input::placeholder, .field-inline textarea::placeholder { color: var(--text-muted); }
  .field-inline textarea { resize: vertical; min-height: 60px; padding-top: 8px; }
  @media (max-width: 560px) {
    .field-inline { flex-direction: column; align-items: flex-start; gap: 6px; }
    .field-inline label { width: auto; }
  }
  .btn-submit-arrow { width: 16px; height: 16px; }

  /* footer */
  footer { border-top: 1px solid var(--line); padding: 40px 0; }
  .footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .footer-brand { display: flex; align-items: center; gap: 14px; }
  .footer-brand img { height: 60px; width: auto; }
  .footer-brand span { font-size: 12px; color: var(--text-muted); }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 32px; height: 32px; border: 1px solid var(--line-strong); border-radius: 100px;
    display: flex; align-items: center; justify-content: center; color: var(--accent-soft); text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  .footer-social a:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent), transparent 92%); }
  .footer-social svg { width: 14px; height: 14px; }

  @media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
      position: fixed; top: 0; right: 0; bottom: 0; z-index: 65;
      width: min(80vw, 340px);
      background: #16120c; isolation: isolate;
      box-shadow: -16px 0 40px rgba(0, 0, 0, 0.35);
      flex-direction: column; align-items: stretch; gap: 0;
      padding: 110px 0 40px; overflow-y: auto;
      transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    }
    .topnav.open .nav-links { transform: translateX(0); }
    .nav-links a, .nav-links button {
      width: 100%; padding: 15px 30px; font-size: 17px; border-bottom: 1px solid var(--line-strong);
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
    }
    .nav-links a::after, .nav-links button::after {
      content: "\203A"; display: inline-block; font-size: 18px; opacity: 0; transform: translateX(-4px);
      transition: opacity 0.15s ease, transform 0.15s ease; position: static; background: none; height: auto;
    }
    .nav-links a:hover, .nav-links button:hover,
    .nav-links li.current-menu-item > a,
    .nav-links li.current_page_item > a,
    .nav-links button.active {
      background: var(--accent); color: var(--on-accent); padding-left: 36px;
    }
    .nav-links a:hover::after, .nav-links button:hover::after,
    .nav-links li.current-menu-item > a::after,
    .nav-links li.current_page_item > a::after,
    .nav-links button.active::after {
      opacity: 1; transform: translateX(0);
    }
  }

  @media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    .section, .page-hero, .hero { padding-left: 0; padding-right: 0; }
    .section { padding: 56px 0; }
  }
