:root {
    --navy-950: #020222;
    --navy-900: #060633;
    --indigo-800: #1B1B4B;
    --indigo-700: #26265e;
    --orange-500: #FF5400;
    --orange-600: #C43F00;
    --orange-400: #FF7A33;
    --orange-300: #FFA366;
    --text: #EEF0FF;
    --text-muted: rgba(238, 240, 255, 0.64);
    --text-faint: rgba(238, 240, 255, 0.38);
    --line: rgba(238, 240, 255, 0.09);
    --display: "Inter", sans-serif;
    --body: "Inter", sans-serif;
    --label: "Inter", sans-serif;
    --gutter: clamp(1.25rem, 5vw, 5rem);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--navy-950);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }
  ::selection { background: var(--orange-500); color: #fff; }

  .skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    color: #12123f;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform .2s;
  }
  .skip-link:focus { transform: translateY(0); }

  h1, h2, h3 { font-family: var(--display); line-height: 1.0; letter-spacing: -0.01em; }

  .eyebrow,
  .section-head p.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.60rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

  .section { padding: clamp(4.5rem, 10vw, 8.5rem) var(--gutter); position: relative; }
  .wrap { max-width: 1200px; margin: 0 auto; }

  .section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
  .section-head h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.3rem);
    font-weight: 700;
    margin: 18px 0 16px;
  }
  .section-head p { color: var(--text-muted); font-size: 1.05rem; }

  /* ---------- reveal on scroll ---------- */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  @media (max-width: 720px) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; }
  }

  /* ---------- nav ---------- */
  #nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 18px var(--gutter);
    transition: background .35s, backdrop-filter .35s, box-shadow .35s;
  }
  #nav.scrolled {
    background: #fff;
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 10px 34px rgba(2, 2, 34, 0.12);
  }
  #nav.scrolled .nav-links a { color: #3A3A5C; }
  #nav.scrolled .nav-links a:hover, #nav.scrolled .nav-links a:focus-visible { color: #12123F; }
  #nav.scrolled .nav-toggle { color: #12123F; }
  .logo { display: inline-flex; align-items: center; text-decoration: none; }
  .logo img { height: 54px; width: auto; display: block; }
  .logo .logo-dark { display: none; }
  #nav.scrolled .logo .logo-light { display: none; }
  #nav.scrolled .logo .logo-dark { display: block; }
  .nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color .2s;
  }
  .nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }

  /* dropdown Soluções */
  .nav-item { position: relative; }
  .nav-item > a i.fa-chevron-down {
    font-size: 0.62rem;
    margin-left: 6px;
    transition: transform .25s;
  }
  .nav-item:hover > a i.fa-chevron-down, .nav-item.open > a i.fa-chevron-down { transform: rotate(180deg); }

  /* botão Ecossistema (estilo link destacado da Rico) */
  .nav-links .nav-eco > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-500);
    font-weight: 600;
  }
  .nav-links .nav-eco > a i.fa-right-to-bracket {
    font-size: 0.85rem;
    transition: transform .25s;
  }
  .nav-links .nav-eco > a:hover,
  #nav.scrolled .nav-links .nav-eco > a:hover { color: var(--orange-400); }
  .nav-eco:hover > a i.fa-right-to-bracket { transform: translateX(3px); }
  #nav.scrolled .nav-links .nav-eco > a { color: var(--orange-500); }
  .nav-eco .dropdown { min-width: 220px; }
  .dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -14px;
    min-width: 300px;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(2, 2, 34, 0.08);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(2, 2, 34, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s, transform .25s, visibility .25s;
  }
  /* ponte invisível para o mouse não "cair" entre o link e o painel */
  .dropdown::before {
    content: "";
    position: absolute;
    top: -14px; left: 0; right: 0;
    height: 14px;
  }
  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown,
  .nav-item.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: 9px;
    font-size: 0.9rem;
    color: #3A3A5C;
  }
  .dropdown a.coming-soon-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: default;
  }
  .menu-soon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--orange-500);
    color: #12123F;
    font-family: var(--label);
    font-size: 0.56rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .dropdown a:hover { background: rgba(255, 84, 0, 0.1); color: #12123F; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .25s, background .25s;
  }
  .btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--orange-400);
    outline-offset: 3px;
  }
  .btn-primary {
    background: var(--orange-600);
    color: #fff;
    box-shadow: 0 8px 32px rgba(255, 84, 0, 0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 44px rgba(255, 84, 0, 0.5); background: #a93400; }
  .btn-ghost {
    background: rgba(238, 240, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(238, 240, 255, 0.16);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover { background: rgba(238, 240, 255, 0.12); transform: translateY(-2px); }
  #nav .btn { padding: 10px 22px; font-size: 0.88rem; }

  .nav-toggle { display: none; margin-left: auto; background: none; border: none; color: var(--text); cursor: pointer; }

  /* ---------- hero ---------- */
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(120% 120% at 62% -48%, #3a1e6e 0%, var(--navy-950) 62%);
    padding: 120px var(--gutter) 0;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: image-set(url("../img/optimized/fundo_ceu.avif") type("image/avif"), url("../img/optimized/fundo_ceu.webp") type("image/webp"), url("../img/fundo_ceu.jpg") type("image/jpeg"));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0.9;
    pointer-events: none;
  }
  /* véu navy para o céu laranja assentar na paleta */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,2,34,0.55) 0%, rgba(2,2,34,0.2) 45%, var(--navy-950) 100%);
    pointer-events: none;
  }
  #smoke {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    z-index: 2;
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 6.4vw, 4.9rem);
    font-weight: 800;
    max-width: 15ch;
    margin: 26px 0 24px;
    min-height: 4.1em;
  }
  .hero h1 .caret {
    display: inline-block;
    width: 4px;
    height: 0.82em;
    margin-left: 6px;
    background: var(--orange-500);
    vertical-align: -0.06em;
    animation: caret-blink 1s steps(1) infinite;
  }
  @keyframes caret-blink { 50% { opacity: 0; } }
  .hero h1 .grad {
    background: linear-gradient(92deg, var(--orange-500), var(--orange-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero p.lead {
    max-width: 54ch;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 38px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .hero-stats {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: clamp(3rem, 7vw, 5.5rem) auto 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
  }
  .stat {
    padding: 28px 24px 44px 0;
  }
  .stat b {
    font-family: var(--label);
    font-weight: 700;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: var(--text);
    display: block;
  }
  .stat b .unit { color: var(--orange-500); }
  .stat span { color: var(--text-faint); font-size: 0.85rem; }

  /* ---------- serviços (cards claros, destaque em gradiente) ---------- */
  .services { background: var(--navy-950); }
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .3s, box-shadow .3s;
  }
  .card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45); }
  .card .kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange-600);
    margin-bottom: 12px;
  }
  .card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #12123F;
    margin-bottom: 12px;
  }
  .card p {
    color: #4A4A6A;
    font-size: 0.95rem;
    margin-bottom: 26px;
  }
  .card a {
    margin-top: auto;
    color: var(--orange-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .card a::after { content: "\2192"; transition: transform .2s; }
  .card a:hover::after { transform: translateX(5px); }

  /* card destaque: Formatação de Franquias */
  .card.featured {
    background: linear-gradient(115deg, #FF6A2B 0%, #D9534F 34%, #8A48C8 68%, #4B4BE0 100%);
  }
  .card.featured h3 { color: #fff; font-size: 1.5rem; }
  .card.featured p { color: rgba(255, 255, 255, 0.88); }
  .card.featured a { color: #fff; }

  /* card de CTA */
  .card.cta-card {
    background: var(--orange-600);
    justify-content: center;
  }
  .card.cta-card h3 { color: #fff; font-size: 1.4rem; }
  .card.cta-card p { color: #fff; }
  .card.cta-card .btn {
    margin-top: 4px;
    background: #fff;
    color: var(--orange-600);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  .card.cta-card .btn:hover { background: #fff3ec; }

  /* ---------- metodologia ---------- */
  .method { background: linear-gradient(180deg, var(--navy-950), var(--navy-900) 50%, var(--navy-950)); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: step;
  }
  .step {
    position: relative;
    border-top: 1px solid var(--line);
    padding-top: 26px;
  }
  .step::before {
    content: "";
    position: absolute;
    top: -5px; left: 0;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--orange-500);
    box-shadow: 0 0 14px rgba(255, 84, 0, 0.9);
  }
  .step .num {
    font-family: var(--label);
    font-size: 0.8rem;
    color: var(--orange-400);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 12px;
  }
  .step h3 { font-size: 1.25rem; margin-bottom: 10px; }
  .step p { color: var(--text-muted); font-size: 0.93rem; }
  .step-addon {
    padding: 26px 18px 20px;
    border: 1px solid rgba(255, 84, 0, 0.28);
    border-top-color: rgba(255, 84, 0, 0.65);
    border-radius: 0 0 14px 14px;
    background: rgba(255, 84, 0, 0.055);
  }
  .step-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--orange-600);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .step-badge::after {
    position: absolute;
    bottom: -5px;
    left: 13px;
    width: 10px;
    height: 10px;
    background: var(--orange-600);
    content: "";
    transform: rotate(45deg);
  }
  .method .after-cta { margin-top: 56px; }

  /* ---------- blog / notícias (seção clara) ---------- */
  .blog { background: #fff; }
  .blog-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 42px;
  }
  .blog-head h2 {
    color: #12123F;
    font-size: clamp(1.5rem, 3.2vw, 2.3rem);
    font-weight: 700;
    margin-top: 14px;
  }
  .blog .eyebrow { color: #5c5c76; }
  .blog-destaque {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    background: #060633;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
  }
  .blog-destaque > img,
  .blog-destaque > picture > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
  }
  .blog-destaque:hover > img,
  .blog-destaque:hover > picture > img { transform: scale(1.04); }
  .blog-destaque:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(2, 2, 34, 0.25); }
  .blog-destaque .badge {
    position: absolute;
    top: 26px; left: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: var(--orange-500);
    padding: 7px 14px;
    border-radius: 999px;
  }
  .blog-destaque-info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 120px 34px 34px;
    background: linear-gradient(180deg, transparent, rgba(2, 2, 34, 0.8) 55%);
  }
  .blog-destaque-info h3 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    max-width: 26ch;
    margin-bottom: 10px;
  }
  .blog-destaque-info p { color: rgba(255, 255, 255, 0.75); max-width: 60ch; }

  .blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
  }
  .blog-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(2, 2, 34, 0.09);
    border-radius: 20px;
    padding: 16px 16px 28px;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
  }
  .blog-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(2, 2, 34, 0.14); }
  .blog-thumb {
    height: 230px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #1B1B4B;
  }
  .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
  }
  .blog-card:hover .blog-thumb img { transform: scale(1.05); }
  .blog-card small {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange-600);
    margin: 0 10px 10px;
  }
  .blog-card h3,
  .blog-card h4 {
    font-family: var(--display);
    color: #12123F;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 10px 10px;
  }
  .blog-card p { color: #4A4A6A; font-size: 0.95rem; margin: 0 10px 16px; }
  .blog-card b { color: var(--orange-600); font-weight: 600; font-size: 0.95rem; margin: 0 10px; }

  /* ---------- índice editorial do blog ---------- */
  .blog-index-featured { background: #F7F7FA; }
  .blog-index-heading { margin-bottom: 32px; }
  .blog-index-heading h2 {
    color: #12123F;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    margin-top: 14px;
  }
  .blog-thumb > picture,
  .article-cover > picture { display: block; width: 100%; height: 100%; }
  .blog-feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
    gap: 20px;
    align-items: stretch;
  }
  .blog-feature-layout .blog-destaque { min-height: 620px; }
  .blog-destaque-info small {
    display: block;
    color: rgba(255,255,255,.72);
    font-family: var(--label);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .blog-feature-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
  .blog-card-compact { padding-bottom: 20px; }
  .blog-card-compact .blog-thumb { height: 155px; }
  .blog-card-compact h4 { font-size: 1.05rem; }
  .blog-card-compact p { font-size: .86rem; margin-bottom: 12px; }

  .blog-toolbar {
    background: #fff;
    border: 1px solid rgba(2,2,34,.09);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 28px;
    box-shadow: 0 12px 34px rgba(2,2,34,.06);
  }
  .blog-search {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(2,2,34,.12);
    border-radius: 14px;
    padding: 0 16px;
    color: #77778F;
  }
  .blog-search:focus-within { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(255,92,0,.1); }
  .blog-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #12123F;
    font: inherit;
  }
  .blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
  .blog-filter {
    border: 1px solid rgba(2,2,34,.1);
    border-radius: 999px;
    background: #F7F7FA;
    color: #4A4A6A;
    padding: 9px 14px;
    font: 600 .8rem var(--display);
    cursor: pointer;
    transition: color .2s, background .2s, border-color .2s;
  }
  .blog-filter:hover, .blog-filter.active {
    color: #fff;
    background: var(--orange-600);
    border-color: var(--orange-600);
  }
  .blog-result-count { color: #77778F; font-size: .8rem; margin: 14px 2px 0; }
  .blog-index-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .blog-index-grid .blog-card { display: flex; flex-direction: column; min-width: 0; }
  .blog-index-grid .blog-card[hidden] { display: none !important; }
  .blog-index-grid .blog-thumb { height: auto; aspect-ratio: 16 / 9; }
  .blog-index-grid .blog-author {
    display: block;
    color: #66667e;
    font-size: .78rem;
    margin: auto 10px 14px;
    padding-top: 4px;
  }
  .blog-index-grid .blog-card b { display: block; }
  .blog-empty {
    text-align: center;
    color: #4A4A6A;
    background: #fff;
    border: 1px dashed rgba(2,2,34,.18);
    border-radius: 18px;
    padding: 36px;
    margin-top: 22px;
  }
  .blog-cluster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .blog-cluster {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #12123F;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(2,2,34,.09);
    border-radius: 18px;
    padding: 20px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .blog-cluster:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(2,2,34,.1); border-color: rgba(255,92,0,.35); }
  .blog-cluster > span { color: var(--orange-600); font-size: 1.65rem; }
  .blog-cluster b, .blog-cluster small { display: block; }
  .blog-cluster b { font-size: 1rem; }
  .blog-cluster small { color: #66667e; margin-top: 4px; }

  @media (max-width: 1000px) {
    .blog-feature-layout { grid-template-columns: 1fr; }
    .blog-feature-layout .blog-destaque { min-height: 500px; }
    .blog-feature-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .blog-index-grid, .blog-cluster-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 720px) {
    .blog-feature-layout .blog-destaque { min-height: 420px; }
    .blog-feature-side, .blog-index-grid, .blog-cluster-grid { grid-template-columns: 1fr; }
    .blog-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
    .blog-filter { flex: 0 0 auto; }
  }

  /* ---------- segmentos e FAQ centralizados ---------- */
  #segmentos .section-head, #faq .section-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  #segmentos .eyebrow, #faq .eyebrow { justify-content: center; }

  .chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(27, 27, 75, 0.3);
    transition: color .2s, border-color .2s, background .2s;
  }
  .chip i { color: var(--orange-400); font-size: 0.85rem; }
  .chip:hover {
    color: var(--text);
    border-color: rgba(255, 84, 0, 0.5);
    background: rgba(255, 84, 0, 0.1);
  }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-list details {
    border-bottom: 1px solid var(--line);
  }
  .faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.08rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::after {
    content: "+";
    font-family: var(--label);
    color: var(--orange-400);
    font-size: 1.4rem;
    line-height: 1;
    transition: transform .25s;
    flex-shrink: 0;
  }
  .faq-list details[open] summary::after { transform: rotate(45deg); }
  .faq-list details p {
    color: var(--text-muted);
    padding-bottom: 22px;
    max-width: 60ch;
    font-size: 0.95rem;
  }

  /* ---------- CTA final (eclipse) ---------- */
  .final-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: clamp(11rem, 24vw, 19rem);
    padding-bottom: clamp(11rem, 24vw, 19rem);
    background: #000;
  }
  #eclipse {
    position: absolute;
    top: 50%; left: 50%;
    width: 900px; height: 900px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.95;
  }
  .final-cta .wrap { position: relative; z-index: 2; max-width: 720px; }
  .final-cta h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 20px;
  }
  .final-cta p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }
  .final-cta .hero-ctas { justify-content: center; }

  /* ---------- footer ---------- */
  footer {
    border-top: 1px solid var(--line);
    padding: 64px var(--gutter) 40px;
    background: var(--navy-950);
  }
  .foot-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
  .foot-grid .foot-title {
    font-family: var(--label);
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
  }
  .foot-grid p { color: var(--text-muted); font-size: 0.9rem; max-width: 34ch; margin-top: 14px; }
  .socials { display: flex; gap: 12px; margin-top: 22px; }
  .socials a {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(27, 27, 75, 0.4);
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
  }
  .socials a:hover {
    color: #fff;
    background: var(--orange-500);
    border-color: var(--orange-500);
    transform: translateY(-3px);
  }
  .foot-grid ul { list-style: none; }
  .foot-grid li { margin-bottom: 10px; }
  .foot-grid a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color .2s; }
  .foot-grid a:hover { color: var(--orange-400); }
  .foot-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.82rem;
  }
  .foot-bottom .links { display: flex; gap: 20px; }
  .foot-bottom a { color: var(--text-muted); text-decoration: none; }
  .foot-bottom a:hover { color: var(--text); }

  /* ---------- botão WhatsApp flutuante ---------- */
  .wa-float {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #25D366;
    color: #fff;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: transform .25s, box-shadow .25s;
  }
  .wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6); }
  .wa-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
  }
  @keyframes wa-pulse {
    0% { transform: scale(1); opacity: 1; }
    80%, 100% { transform: scale(1.6); opacity: 0; }
  }

  /* ---------- modais ---------- */
  .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(2, 2, 34, 0.72);
    backdrop-filter: blur(6px);
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 24px 28px 22px;
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    color: #12123F;
  }
  .modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(2, 2, 34, 0.06);
    color: #4A4A6A;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-close:hover { background: rgba(2, 2, 34, 0.12); color: #12123F; }
  .modal-heading {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 42px;
    margin-bottom: 16px;
    padding-right: 38px;
  }
  .modal-icon {
    width: 42px; height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.14);
    color: #25D366;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-title { font-size: 1.3rem; font-weight: 700; line-height: 1.15; color: #12123F; margin: 0; }
  .modal-sub { color: #4A4A6A; font-size: 0.94rem; margin-bottom: 22px; }
  .form-group { margin-bottom: 10px; }
  .form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #12123F;
    margin-bottom: 4px;
  }
  .form-label .req { color: var(--orange-500); }
  .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(2, 2, 34, 0.14);
    border-radius: 11px;
    font-family: var(--body);
    font-size: 0.95rem;
    color: #12123F;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }
  select.form-control { cursor: pointer; background: #fff; }
  .form-control:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.14); }
  .modal-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.75rem;
    line-height: 1.35;
    color: #4A4A6A;
    margin: 4px 0 12px;
  }
  .modal-consent input { margin-top: 3px; accent-color: var(--orange-500); }
  .modal-consent a { color: var(--orange-500); cursor: pointer; text-decoration: underline; }
  .btn-whatsapp {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px;
    border: none;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-family: var(--body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: filter .2s, transform .2s;
  }
  .btn-whatsapp:hover:not(:disabled) { filter: brightness(1.06); transform: translateY(-1px); }
  .btn-whatsapp:disabled { opacity: 0.45; cursor: not-allowed; }
  .modal-box-quick { max-width: 390px; }
  .modal-box-quick .form-group { margin-bottom: 12px; }
  .modal-box-quick .btn-whatsapp { margin-top: 4px; }

  @media (max-height: 560px) {
    .modal-overlay { padding: 8px; }
    .modal-box { padding: 18px 24px 16px; max-height: calc(100vh - 16px); }
    .modal-heading { margin-bottom: 10px; }
    .form-group { margin-bottom: 7px; }
    .form-control { padding-top: 8px; padding-bottom: 8px; }
    .modal-consent { margin-bottom: 8px; }
  }

  /* modais institucionais (privacidade / cookies / termos) */
  .inst-box { max-width: 560px; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
  .inst-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(2, 2, 34, 0.08);
  }
  .inst-header-left { display: flex; align-items: center; gap: 14px; }
  .inst-hicon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255, 84, 0, 0.1);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  .inst-htitle { font-weight: 700; font-size: 1.1rem; color: #12123F; }
  .inst-hdate { font-size: 0.78rem; color: #8888A3; }
  .inst-header .modal-close { position: static; flex-shrink: 0; }
  .inst-body { padding: 22px 26px; overflow-y: auto; }
  .inst-body h2 { font-size: 1rem; font-weight: 700; color: #12123F; margin: 18px 0 8px; }
  .inst-body h2:first-child { margin-top: 0; }
  .inst-body p, .inst-body li { font-size: 0.92rem; color: #4A4A6A; }
  .inst-body ul { padding-left: 20px; margin: 8px 0; }
  .inst-body a { color: var(--orange-500); }
  .inst-footer {
    padding: 16px 26px 22px;
    border-top: 1px solid rgba(2, 2, 34, 0.08);
    display: flex;
    justify-content: flex-end;
  }

  /* ---------- responsivo ---------- */
  @media (max-width: 960px) {
    .cards { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 820px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%; left: 0; right: 0;
      flex-direction: column;
      gap: 0;
      background: rgba(2, 2, 34, 0.97);
      backdrop-filter: blur(20px);
      padding: 12px var(--gutter) 24px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    .nav-links.open { display: flex; }
    .nav-links { align-items: stretch; }
    .nav-links > a, .nav-item > a { padding: 14px 0; border-bottom: 1px solid var(--line); display: block; }
    .nav-item { width: 100%; }
    .dropdown {
      position: static;
      min-width: 0;
      background: none;
      border: none;
      box-shadow: none;
      backdrop-filter: none;
      padding: 0 0 0 16px;
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
    }
    .dropdown::before { display: none; }
    .dropdown a { color: var(--text-muted); }
    #nav.scrolled .nav-links { background: #fff; box-shadow: 0 20px 40px rgba(2, 2, 34, 0.15); }
    #nav.scrolled .nav-links a, #nav.scrolled .dropdown a { color: #3A3A5C; }
    .nav-item.open .dropdown { display: block; }
    .nav-item:hover .dropdown { display: none; }
    .nav-item.open:hover .dropdown, .nav-item.open .dropdown { display: block; }
    .dropdown a { border-bottom: 1px solid var(--line); border-radius: 0; padding: 12px 0; }
    .nav-toggle { display: block; }
    #nav > .btn { display: none; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .cards { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-head { flex-direction: column; align-items: flex-start; }
    .blog-destaque { min-height: 340px; }
    .steps { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    #eclipse { width: 640px; height: 640px; }
  }

/* ---------- páginas internas ---------- */
.page-hero {
  position: relative;
  padding: 170px var(--gutter) 90px;
  background: radial-gradient(120% 120% at 62% -48%, #3a1e6e 0%, var(--navy-950) 62%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(url("../img/optimized/fundo_ceu.avif") type("image/avif"), url("../img/optimized/fundo_ceu.webp") type("image/webp"), url("../img/fundo_ceu.jpg") type("image/jpeg"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero::before,
  .page-hero::before {
    background-image: image-set(url("../img/optimized/fundo_ceu-768.avif") type("image/avif"), url("../img/optimized/fundo_ceu-768.webp") type("image/webp"), url("../img/fundo_ceu.jpg") type("image/jpeg"));
  }
}
@media (min-width: 901px) and (max-width: 1400px) {
  .hero::before,
  .page-hero::before {
    background-image: image-set(url("../img/optimized/fundo_ceu-1200.avif") type("image/avif"), url("../img/optimized/fundo_ceu-1200.webp") type("image/webp"), url("../img/fundo_ceu.jpg") type("image/jpeg"));
  }
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,2,34,0.5) 0%, rgba(2,2,34,0.25) 45%, var(--navy-950) 100%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 3; }
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-400); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  max-width: 20ch;
  margin: 14px 0 18px;
}
.page-hero .lead { color: var(--text-muted); max-width: 62ch; font-size: 1.05rem; }

.nav-links a.active { color: var(--text); }
#nav.scrolled .nav-links a.active { color: #12123F; }

.card .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 84, 0, 0.1);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.card p:last-child { margin-bottom: 0; }

.prose { max-width: 70ch; }
.prose p { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 18px; }
.quote {
  border-left: 3px solid var(--orange-500);
  padding: 6px 0 6px 26px;
  margin-top: 44px;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  max-width: 56ch;
}
.quote footer {
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-faint);
  background: none;
  border: none;
  padding: 0;
}


/* ---------- seções claras (fundo branco) ---------- */
.section-light { background: #fff; }
.section-light .section-head h2 { color: #12123F; }
.section-light .section-head p { color: #4A4A6A; }
.section-light .eyebrow,
.section-light .section-head p.eyebrow,
.fmt-split .eyebrow,
.blog-index-heading .eyebrow,
#conteudos .eyebrow { color: #5c5c76; }
.section-light .prose p { color: #4A4A6A; }

/* ---------- depoimentos (formato do demo: info + slider de vídeos) ---------- */
.depo-flex { display: flex; gap: 48px; align-items: center; }
.depo-info { flex: 0 0 320px; }
.depo-info h2 {
  color: var(--text);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 700;
  margin: 14px 0 14px;
}
.depo-info > p { color: var(--text-muted); font-size: 0.98rem; }
.depo-info p.eyebrow {
  font-size: 0.60rem;
  color: var(--text-muted);
  opacity: 0.75;
}
.slider-nav { display: flex; gap: 10px; margin-top: 26px; }
.slider-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(238, 240, 255, 0.22);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.slider-nav button:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #fff;
}
.depo-slider {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.depo-slider::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 min(420px, 85%);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #12123F;
  scroll-snap-align: start;
}
.video-card iframe,
.video-card video { width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }
.about-video-testimonials { overflow: hidden; background: var(--navy-950); }
.about-video-testimonials .depo-slider { align-items: stretch; }
.video-card-vertical {
  flex-basis: min(300px, 74vw);
  max-height: 570px;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(238, 240, 255, 0.14);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .28);
}

/* Blog dinâmico — Fases 6 e 7 */
.blog-toolbar { flex-wrap: wrap; }
.blog-toolbar .btn { min-height: 48px; }
.blog-toolbar a.blog-filter { display: inline-flex; align-items: center; text-decoration: none; }
.blog-result-count { margin: 22px 0; color: #5d5d74; font-weight: 600; }
.blog-pagination { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 42px; color: #595971; }
.blog-pagination a { color: var(--orange-500); font-weight: 700; text-decoration: none; }
.blog-pagination strong { color: var(--navy-950); }
.blog-author-profile .lead { max-width: 900px; }
.blog-author-profile .lead strong { color: var(--orange-400); }
.blog-credentials { margin-top: 22px; color: #c9cae3; font-size: .92rem; }
.glossary-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.glossary-card { display: block; padding: 28px; border: 1px solid #dedee8; border-radius: 20px; background: #fff; color: #242448; text-decoration: none; transition: transform .2s,border-color .2s; }
.glossary-card:hover { transform: translateY(-4px); border-color: var(--orange-500); }
.glossary-card small { color: var(--orange-500); font-family: 'JetBrains Mono',monospace; font-weight: 700; }
.glossary-card h2 { margin: 10px 0; color: var(--navy-950); font-size: 1.35rem; }
.glossary-card p { color: #5d5d74; }
.glossary-card b { display: block; margin-top: 18px; color: var(--orange-500); }
.glossary-content { max-width: 900px; margin: 0 auto; }
.article-meta-author a { color: inherit; text-decoration: none; }
.article-rich-text h3 { margin-top: 30px; }
.article-faq details { border-top: 1px solid #dedee8; padding: 18px 0; }
.article-faq summary { cursor: pointer; }
.article-faq summary h3 { display: inline; font-size: 1.05rem; }
.article-faq details p { margin-top: 12px; }
@media (max-width: 860px) { .glossary-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .glossary-grid { grid-template-columns: 1fr; } .blog-pagination { gap: 10px; font-size: .85rem; } }

/* Feedback dos formulários conectados ao Laravel */
[data-form-feedback] {
  margin: 12px 0 0;
  color: #20c87a;
  font-size: .9rem;
  font-weight: 600;
}
[data-form-feedback].form-feedback-error { color: #ff6b57; }
@media (max-width: 960px) {
  .depo-flex { flex-direction: column; align-items: stretch; }
  .depo-info { flex: none; }
}

/* ---------- trajetória: texto + imagem lateral de ponta a ponta ---------- */
.trajetoria-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.trajetoria-split .traj-text {
  padding: clamp(4.5rem, 10vw, 8.5rem) clamp(1.5rem, 4vw, 4rem) clamp(4.5rem, 10vw, 8.5rem) var(--gutter);
  max-width: 720px;
  justify-self: end;
  width: 100%;
}
.traj-img {
  position: relative;
  min-height: 100%;
}
.traj-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* overlay laranja no mesmo estilo da arte de referência */
.traj-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(250deg, rgba(255, 84, 0, 0.42), transparent 55%),
    linear-gradient(0deg, rgba(255, 122, 20, 0.18), rgba(2, 2, 34, 0.12));
  pointer-events: none;
}
@media (max-width: 960px) {
  .trajetoria-split { grid-template-columns: 1fr; }
  .trajetoria-split .traj-text { max-width: none; justify-self: stretch; padding-right: var(--gutter); }
  .traj-img { min-height: 340px; }
}

/* ---------- clientes: carrossel de logos monocromático ---------- */
.clientes { padding-bottom: clamp(4.5rem, 10vw, 8.5rem); overflow: hidden; }
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  width: max-content;
  padding: 10px 0;
  animation: logo-scroll 28s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

.client-logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  cursor: default;
  /* monocromático; colore no hover */
  filter: grayscale(1);
  opacity: 0.45;
  transition: filter .35s, opacity .35s;
}
.client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-logo.cl-1 { color: #E8542F; font-style: italic; }
.client-logo.cl-2 { color: #1D6FD1; }
.client-logo.cl-3 { color: #C1272D; text-transform: uppercase; font-size: 1.25rem; letter-spacing: 0.06em; }
/* quando usar imagens: <img class="client-logo" src="..."> */
img.client-logo { height: 54px; width: auto; }

/* split branco com destaque tipográfico */
.fmt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #fff;
}
.fmt-split .fmt-split-text {
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.5rem, 4vw, 4rem) clamp(4.5rem, 9vw, 7.5rem) var(--gutter);
  max-width: 760px;
  justify-self: end;
  width: 100%;
}
.fmt-split h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: #12123F;
  margin-bottom: 26px;
}
.fmt-split h2 em {
  font-style: normal;
  color: var(--orange-500);
}
.fmt-split .prose p { color: #4A4A6A; }
.fmt-split .fmt-split-img { position: relative; min-height: 320px; }
.fmt-split .fmt-split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fmt-split .fmt-split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(250deg, rgba(255, 84, 0, 0.35), transparent 55%);
}

/* faixa de marcas no branco */
.fmt-clients,
.service-brands { overflow: hidden; text-align: left; }
.service-brands .section-head { max-width: 760px; }
.service-brands .section-head > p:last-child { margin-top: 16px; }
.fmt-clients .lead-line { color: #4A4A6A; font-size: 1.02rem; margin-bottom: 40px; max-width: 70ch; }
.fmt-clients .btn-block,
.service-brands .btn-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  background: var(--navy-950);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 26px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.fmt-clients .btn-block:hover,
.service-brands .btn-block:hover { background: var(--orange-500); transform: translateY(-2px); }

@media (max-width: 960px) {
  .fmt-split { grid-template-columns: 1fr; }
  .fmt-split .fmt-split-text { max-width: none; padding-right: var(--gutter); }
}


/* ---------- bloco de 2 colunas (outras soluções) ---------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.duo-item {
  display: block;
  background: #fff;
  border: 1px solid rgba(2, 2, 34, 0.09);
  border-radius: 20px;
  padding: 18px 18px 28px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.duo-item:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(2, 2, 34, 0.14); }
.duo-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 22px;
}
.duo-item h3 {
  color: #12123F;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 10px 10px;
}
.duo-item h3 span { color: var(--orange-500); font-weight: 400; }
.duo-item p { color: #4A4A6A; font-size: 0.96rem; margin: 0 10px 16px; }
.duo-item b { color: var(--orange-500); font-weight: 600; margin: 0 10px; }
@media (max-width: 720px) {
  .duo { grid-template-columns: 1fr; }
}

/* ---------- seção alternada (zigzag: imagem/texto) ---------- */
.zigzag { background: #fff; }
.zz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 460px;
}
.zz-media { position: relative; min-height: 320px; }
.zz-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkmate-media {
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f3f3f8 46%, #ddddE8 100%);
  overflow: hidden;
}
.checkmate-media img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: none;
}
.zz-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
}
.zz-text h2 {
  color: #12123F;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 22ch;
}
.zz-text p { color: #4A4A6A; font-size: 1.02rem; max-width: 54ch; }
/* linha invertida: texto à esquerda, imagem à direita */
.zz-row.reverse .zz-text { order: 1; }
.zz-row.reverse .zz-media { order: 2; }

@media (max-width: 960px) {
  .zz-row { grid-template-columns: 1fr; min-height: 0; }
  /* no mobile o texto vem primeiro e a imagem abaixo (padrão da referência) */
  .zz-row .zz-text, .zz-row.reverse .zz-text { order: 1; }
  .zz-row .zz-media, .zz-row.reverse .zz-media { order: 2; }
  .zz-media { min-height: 280px; }
}

/* glifo decorativo no título do hero interno */
.page-hero h1 .glyph {
  color: var(--orange-500);
  font-weight: 400;
}

/* ---------- post completo do blog ---------- */
.article-hero {
  padding-bottom: clamp(64px, 8vw, 104px);
}
.article-hero .wrap { max-width: 1120px; }
.article-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.article-hero .lead { max-width: 760px; }
.article-kicker {
  display: inline-flex;
  margin: 28px 0 18px;
  color: var(--orange-500);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.article-meta {
  display: grid;
  grid-template-columns: auto minmax(190px, auto) 1fr;
  align-items: center;
  gap: 16px;
  max-width: 980px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.article-avatar {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.article-meta-author { display: grid; gap: 4px; }
.article-meta-author strong { color: #fff; font-size: .94rem; }
.article-meta-author span { color: rgba(255, 255, 255, .62); font-size: .78rem; }
.article-meta-data {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
}
.article-meta-data span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta-data i { color: var(--orange-500); }

.article-page {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #f4f4f8;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) 286px;
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
  max-width: 1200px;
}
.article-content {
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgba(2, 2, 34, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(2, 2, 34, .08);
}
.article-cover { margin: 0 0 40px; }
.article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}
.article-cover figcaption {
  margin-top: 10px;
  color: #71718a;
  font-size: .78rem;
  line-height: 1.55;
}
.article-content > section { margin-top: 54px; }
.article-content h2 {
  margin: 0 0 20px;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.article-content h3 {
  margin: 34px 0 12px;
  color: #171743;
  font-size: 1.18rem;
  line-height: 1.35;
}
.article-content p,
.article-content li {
  color: #45455f;
  font-size: 1.01rem;
  line-height: 1.82;
}
.article-content p + p { margin-top: 18px; }
.article-content ul,
.article-content ol { margin: 18px 0 0; padding-left: 22px; }
.article-content li + li { margin-top: 8px; }
.article-content a { color: #d95408; text-underline-offset: 3px; }
.article-content blockquote {
  position: relative;
  margin: 36px 0 0;
  padding: 28px 30px 28px 38px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy-950);
}
.article-content blockquote::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--orange-500);
  content: "";
}
.article-content blockquote p {
  color: #fff;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
}
.article-direct-answer {
  margin-bottom: 44px;
  padding: 24px 26px;
  border: 1px solid rgba(231, 91, 13, .24);
  border-left: 5px solid var(--orange-500);
  border-radius: 12px;
  background: #fff8f3;
}
.article-direct-answer > span,
.article-inline-cta span,
.article-side-cta > span,
.article-author-box > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-500);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-direct-answer p {
  color: #242447;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.72;
}
.article-takeaways {
  margin-top: 0 !important;
  padding: 30px;
  border-radius: 16px;
  background: #f0f0f6;
}
.article-takeaways h2 { font-size: 1.35rem; }
.article-takeaways ul { margin-bottom: 0; }
.article-takeaways li::marker { color: var(--orange-500); }
.article-stat {
  display: grid;
  grid-template-columns: minmax(150px, .65fr) 1.35fr;
  gap: 24px;
  align-items: center;
  margin: 30px 0;
  padding: 24px;
  border-radius: 14px;
  background: #f0f0f6;
}
.article-stat strong { color: var(--navy-950); font-size: 1.25rem; line-height: 1.2; }
.article-stat p { font-size: .93rem; line-height: 1.65; }
.article-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid #ddddE8;
  border-radius: 14px;
}
.article-table-wrap table { width: 100%; min-width: 640px; border-collapse: collapse; }
.article-table-wrap caption {
  padding: 16px 18px;
  background: var(--navy-950);
  color: #fff;
  font-weight: 700;
  text-align: left;
}
.article-table-wrap th,
.article-table-wrap td {
  padding: 15px 18px;
  border-bottom: 1px solid #e6e6ee;
  color: #45455f;
  font-size: .87rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}
.article-table-wrap thead th { background: #f0f0f6; color: var(--navy-950); }
.article-table-wrap tbody th { color: var(--navy-950); font-weight: 700; }
.article-table-wrap tbody tr:last-child > * { border-bottom: 0; }
.article-inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  margin: 54px 0 0;
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #11113c, #24245e);
}
.article-inline-cta h2 { margin-bottom: 8px; color: #fff; font-size: 1.55rem; }
.article-inline-cta p { color: rgba(255, 255, 255, .72); font-size: .93rem; line-height: 1.6; }
.article-inline-cta .btn { color: #fff; white-space: nowrap; text-decoration: none; }
.article-faq { padding-top: 4px; border-top: 1px solid #e6e6ee; }
.article-faq .eyebrow { margin-bottom: 10px; color: var(--orange-500); font-size: .72rem; }
.article-faq h3 { padding-top: 18px; border-top: 1px solid #ececf2; }
.article-sources { padding-top: 34px; border-top: 1px solid #e6e6ee; }
.article-sources h2 { font-size: 1.45rem; }
.article-sources li { font-size: .9rem; line-height: 1.65; }
.article-author-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid #dedee8;
  border-radius: 16px;
}
.article-avatar-large { width: 64px; height: 64px; }
.article-author-box h2 { margin-bottom: 8px; font-size: 1.3rem; }
.article-author-box p { font-size: .9rem; line-height: 1.65; }
.article-author-box a { display: inline-block; margin-top: 12px; font-size: .87rem; font-weight: 700; }

.article-sidebar { position: sticky; top: 108px; display: grid; gap: 20px; }
.article-toc,
.article-side-cta {
  padding: 25px;
  border: 1px solid rgba(2, 2, 34, .09);
  border-radius: 16px;
  background: #fff;
}
.article-toc > span {
  display: block;
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-toc ol { display: grid; gap: 12px; margin: 0; padding-left: 20px; }
.article-toc li { color: #a6a6b8; font-size: .77rem; }
.article-toc a { color: #45455f; line-height: 1.45; text-decoration: none; transition: color .2s; }
.article-toc a:hover { color: var(--orange-500); }
.article-side-cta { background: var(--navy-950); }
.article-side-cta h2 { margin-bottom: 10px; color: #fff; font-size: 1.3rem; line-height: 1.25; }
.article-side-cta p { margin-bottom: 20px; color: rgba(255, 255, 255, .68); font-size: .86rem; line-height: 1.6; }
.article-side-cta .btn { width: 100%; padding-inline: 14px; text-align: center; }
.article-related { background: #fff; }
.article-related .section-head .eyebrow { color: var(--orange-500); opacity: 1; }
.article-related .section-head h2 { color: var(--navy-950); }
.article-related .section-head p:not(.eyebrow) { color: #56566f; }
.article-related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-related .blog-card h3 { color: #12123f; font-size: 1.1rem; line-height: 1.3; }

@media (max-width: 980px) {
  .article-meta { grid-template-columns: auto 1fr; }
  .article-meta-data { grid-column: 1 / -1; justify-content: flex-start; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-row: 1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .article-hero h1 { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .article-meta-data { display: grid; gap: 9px; }
  .article-content { padding: 22px 18px; border-radius: 18px; }
  .article-content > section { margin-top: 44px; }
  .article-takeaways,
  .article-direct-answer,
  .article-author-box { padding: 22px; }
  .article-stat { grid-template-columns: 1fr; gap: 8px; }
  .article-inline-cta { grid-template-columns: 1fr; padding: 26px 22px; }
  .article-inline-cta .btn { width: 100%; text-align: center; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-author-box { flex-direction: column; }
}

/* ================================================================
   CÉLULA TECH
   ================================================================ */
.tech-page { background: var(--navy-950); }
.tech-page main { overflow: hidden; }

.tech-hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(255, 84, 0, .13), transparent 30%),
    linear-gradient(145deg, #020222 0%, #08082e 58%, #11113f 100%);
}
.tech-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 90%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 90%);
}
.tech-hero #smoke { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; opacity: .45; }
.tech-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}
.tech-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(2.7rem, 5.5vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.tech-hero-copy h1 em { color: var(--orange-500); font-style: normal; }
.tech-hero-copy .lead { max-width: 700px; color: rgba(238, 240, 255, .72); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.75; }
.tech-hero-copy .hero-ctas { margin-top: 36px; }
.tech-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--orange-500);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tech-kicker i { font-size: .9rem; }

.tech-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(16, 16, 58, .86);
  box-shadow: 0 40px 100px rgba(0,0,0,.44), 0 0 90px rgba(255,84,0,.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  backdrop-filter: blur(16px);
}
.tech-window-bar { display: flex; gap: 7px; align-items: center; height: 46px; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.09); }
.tech-window-bar > span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); }
.tech-window-bar > span:first-child { background: var(--orange-500); }
.tech-window-bar strong { margin-left: auto; color: rgba(255,255,255,.42); font: 500 .62rem var(--mono); letter-spacing: .05em; }
.tech-dashboard-body { display: grid; grid-template-columns: 58px 1fr; min-height: 430px; }
.tech-side-menu { display: flex; flex-direction: column; gap: 26px; align-items: center; padding-top: 26px; border-right: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.34); }
.tech-side-menu i:first-child { color: var(--orange-500); }
.tech-board { min-width: 0; padding: 24px; }
.tech-board-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.tech-board-head span { color: #fff; font-size: .9rem; font-weight: 700; }
.tech-board-head small { color: rgba(255,255,255,.4); font-size: .58rem; }
.tech-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tech-metrics > div { display: grid; gap: 7px; padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; background: rgba(255,255,255,.04); }
.tech-metrics small { color: rgba(255,255,255,.42); font-size: .54rem; }
.tech-metrics strong { color: #fff; font-size: .85rem; }
.tech-metrics span { color: rgba(255,255,255,.45); font-size: .52rem; }
.tech-metrics span.up { color: #59d597; }
.tech-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.tech-kanban > div { min-height: 235px; padding: 12px; border-radius: 10px; background: rgba(255,255,255,.025); }
.tech-kanban span { display: block; margin-bottom: 12px; color: rgba(255,255,255,.56); font-size: .56rem; font-weight: 700; }
.tech-kanban b { display: block; height: 49px; margin-bottom: 8px; border: 1px solid rgba(255,255,255,.07); border-radius: 7px; background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); }
.tech-kanban > div:nth-child(2) b:first-of-type,
.tech-kanban > div:nth-child(4) b { border-color: rgba(255,84,0,.28); background: rgba(255,84,0,.09); }

.tech-stack { position: relative; z-index: 3; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: #09092f; }
.tech-stack .wrap { display: flex; gap: 25px; align-items: center; justify-content: space-between; min-height: 88px; }
.tech-stack span { color: rgba(238,240,255,.62); font: 600 clamp(.67rem, 1.25vw, .8rem) var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.tech-stack i { width: 4px; height: 4px; flex: 0 0 4px; border-radius: 50%; background: var(--orange-500); }

.tech-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(42px, 8vw, 110px); align-items: end; margin-bottom: 54px; }
.tech-intro-grid .section-head { margin: 0; }
.tech-intro-copy { color: #55556d; font-size: 1rem; line-height: 1.8; }
.tech-intro-copy p + p { margin-top: 16px; }
.tech-feature-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.tech-feature-card { position: relative; min-height: 460px; padding: clamp(28px, 4vw, 48px); overflow: hidden; border: 1px solid #dedee8; border-radius: 22px; background: #f6f6f9; }
.tech-feature-card::after { content: ""; position: absolute; right: -90px; bottom: -100px; width: 260px; height: 260px; border: 1px solid rgba(255,84,0,.15); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,84,0,.035), 0 0 0 75px rgba(255,84,0,.025); }
.tech-feature-main { color: #fff; border-color: rgba(255,255,255,.08); background: linear-gradient(145deg, #08082e, #15154c); }
.tech-card-icon { display: grid; width: 52px; height: 52px; margin-bottom: 44px; place-items: center; border-radius: 13px; background: var(--orange-500); color: #fff; font-size: 1.25rem; }
.tech-card-label { margin-bottom: 12px; color: var(--orange-500); font: 700 .65rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.tech-feature-card h3 { position: relative; z-index: 1; max-width: 520px; margin-bottom: 16px; color: var(--navy-950); font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.17; }
.tech-feature-main h3 { color: #fff; }
.tech-feature-card > p:not(.tech-card-label) { position: relative; z-index: 1; max-width: 620px; color: #616178; line-height: 1.72; }
.tech-feature-main > p:not(.tech-card-label) { color: rgba(238,240,255,.65); }
.tech-check-list { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin-top: 28px; }
.tech-check-list li { display: flex; gap: 9px; align-items: flex-start; color: rgba(238,240,255,.77); font-size: .76rem; line-height: 1.45; }
.tech-check-list li::before { content: "✓"; color: var(--orange-500); font-weight: 800; }
.tech-check-list.compact { grid-template-columns: 1fr; }
.tech-check-list.compact li { color: #51516b; }

.tech-mid-cta { position: relative; padding: clamp(52px, 7vw, 82px) 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: #08082d; }
.tech-mid-cta::after { content: ""; position: absolute; top: 50%; right: 8%; width: 380px; height: 380px; border: 1px solid rgba(255,84,0,.18); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 45px rgba(255,84,0,.03), 0 0 0 90px rgba(255,84,0,.02); }
.tech-mid-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.tech-mid-cta h2 { max-width: 900px; margin-top: 12px; color: #fff; font-size: clamp(1.55rem, 3.25vw, 2.55rem); line-height: 1.16; }
.tech-mid-cta .btn { white-space: nowrap; }
.tech-mid-cta-light { background: var(--orange-500); }
.tech-mid-cta-light::after { border-color: rgba(255,255,255,.22); box-shadow: 0 0 0 45px rgba(255,255,255,.04), 0 0 0 90px rgba(255,255,255,.025); }
.tech-mid-cta-light .eyebrow { color: rgba(255,255,255,.75); }
.tech-mid-cta-light .btn-primary { background: var(--navy-950); box-shadow: none; }
.tech-mid-cta-light .btn-primary:hover { background: #18184d; }

.tech-automation { background: #0b0b34; }
.tech-automation .section-head { max-width: 850px; }
.tech-ai-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 22px; }
.tech-automation-panel { min-height: 430px; padding: clamp(28px, 4vw, 46px); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); }
.tech-automation-panel h3 { margin: 50px 0 16px; color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.15rem); }
.tech-automation-panel p { color: rgba(238,240,255,.62); line-height: 1.72; }
.tech-flow-line { display: flex; gap: 10px; align-items: center; }
.tech-flow-line span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.11); border-radius: 7px; color: rgba(255,255,255,.68); font: 500 .57rem var(--mono); }
.tech-flow-line i { color: var(--orange-500); font-size: .65rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tech-tags span { padding: 8px 11px; border-radius: 99px; background: rgba(255,84,0,.1); color: #ff9a67; font-size: .62rem; font-weight: 600; }
.tech-ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tech-ai-grid article { min-height: 208px; padding: 26px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(255,255,255,.035); }
.tech-ai-grid i { margin-bottom: 32px; color: var(--orange-500); font-size: 1.3rem; }
.tech-ai-grid h3 { margin-bottom: 10px; color: #fff; font-size: 1rem; }
.tech-ai-grid p { color: rgba(238,240,255,.55); font-size: .78rem; line-height: 1.62; }

.tech-funnel-head { display: grid; grid-template-columns: 1fr .75fr; gap: 70px; align-items: end; }
.tech-funnel-head h2 { margin-top: 15px; color: var(--navy-950); font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.1; }
.tech-funnel-head > p { color: #5b5b72; line-height: 1.75; }
.tech-funnel { display: flex; margin: 54px 0 24px; overflow-x: auto; border: 1px solid #dddde7; border-radius: 13px; background: #fff; scrollbar-width: none; }
.tech-funnel::-webkit-scrollbar { display: none; }
.tech-funnel span { position: relative; min-width: 145px; flex: 1; padding: 19px 24px 19px 18px; color: #55556c; font: 600 .63rem var(--mono); text-align: center; white-space: nowrap; }
.tech-funnel span + span { border-left: 1px solid #e5e5ec; }
.tech-funnel span + span::before { content: ""; position: absolute; top: 50%; left: -5px; width: 9px; height: 9px; border-top: 1px solid #d7d7e0; border-right: 1px solid #d7d7e0; background: #fff; transform: translateY(-50%) rotate(45deg); }
.tech-funnel span:last-child { color: #fff; background: var(--orange-500); }
.tech-data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.tech-data-grid article { padding: 30px; border: 1px solid #dfdfe8; border-radius: 17px; background: #f7f7f9; }
.tech-data-grid i { margin-bottom: 30px; color: var(--orange-500); font-size: 1.25rem; }
.tech-data-grid h3 { margin-bottom: 13px; color: var(--navy-950); font-size: 1.05rem; }
.tech-data-grid p { color: #66667b; font-size: .8rem; line-height: 1.7; }

.tech-network { background: #0b0b34; }
.tech-network-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 8vw, 112px); align-items: center; }
.tech-network-copy h2 { max-width: 700px; margin: 15px 0 24px; color: #fff; font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.08; }
.tech-network-copy > p:not(.eyebrow) { color: rgba(238,240,255,.62); line-height: 1.78; }
.tech-network-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.tech-network-items span { display: flex; gap: 10px; align-items: center; padding: 13px 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; color: rgba(255,255,255,.72); font-size: .72rem; }
.tech-network-items i { width: 18px; color: var(--orange-500); text-align: center; }
.tech-portal-card { padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: linear-gradient(145deg, #17174d, #0d0d37); box-shadow: 0 35px 80px rgba(0,0,0,.28); }
.tech-portal-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.66); font-size: .72rem; }
.tech-portal-top i { color: var(--orange-500); }
.tech-portal-welcome { display: grid; gap: 8px; padding: 28px 0; }
.tech-portal-welcome small { color: rgba(255,255,255,.38); font-size: .62rem; }
.tech-portal-welcome strong { color: #fff; font-size: 1.35rem; }
.tech-portal-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tech-portal-modules div { display: grid; gap: 14px; min-height: 105px; padding: 17px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; background: rgba(255,255,255,.035); color: rgba(255,255,255,.7); font-size: .67rem; }
.tech-portal-modules i { color: var(--orange-500); font-size: 1rem; }
.tech-portal-progress { display: grid; grid-template-columns: 1fr 90px; gap: 18px; align-items: center; margin-top: 18px; padding: 16px; border-radius: 10px; background: rgba(255,84,0,.08); }
.tech-portal-progress span { display: grid; gap: 4px; }
.tech-portal-progress b { color: #fff; font-size: .67rem; }
.tech-portal-progress small { color: rgba(255,255,255,.4); font-size: .55rem; }
.tech-portal-progress > i { position: relative; height: 5px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.1); }
.tech-portal-progress > i::after { content: ""; position: absolute; inset: 0 22% 0 0; border-radius: inherit; background: var(--orange-500); }

.tech-journeys .section-head { max-width: 950px; }
.tech-journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tech-journey-grid article { position: relative; min-height: 390px; padding: clamp(30px, 4vw, 46px); overflow: hidden; border: 1px solid #dedee8; border-radius: 20px; background: #f7f7f9; }
.tech-journey-grid article > span { position: absolute; top: 20px; right: 28px; color: #e9e9ef; font-size: 5rem; font-weight: 800; line-height: 1; }
.tech-journey-grid h3 { position: relative; max-width: 530px; margin: 70px 0 17px; color: var(--navy-950); font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
.tech-journey-grid article > p:not(.tech-card-label) { position: relative; max-width: 620px; color: #606078; line-height: 1.7; }
.tech-journey-grid a { position: absolute; bottom: 40px; left: clamp(30px, 4vw, 46px); color: var(--orange-500); font-size: .76rem; font-weight: 700; text-decoration: none; }
.tech-journey-grid a i { margin-left: 7px; }

.tech-pillars { background: #08082d; }
.tech-pillars .section-head { max-width: 820px; }
.tech-pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tech-pillar-grid article { position: relative; min-height: 290px; padding: 32px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.035); }
.tech-pillar-grid article > span { position: absolute; top: 18px; right: 23px; color: rgba(255,255,255,.05); font-size: 4.7rem; font-weight: 800; }
.tech-pillar-grid i { margin: 16px 0 74px; color: var(--orange-500); font-size: 1.4rem; }
.tech-pillar-grid h3 { margin-bottom: 12px; color: #fff; font-size: 1.25rem; }
.tech-pillar-grid p { color: rgba(238,240,255,.56); font-size: .82rem; line-height: 1.65; }

.tech-final-cta { position: relative; min-height: 590px; display: grid; place-items: center; overflow: hidden; background: #030327; text-align: center; }
.tech-final-cta #eclipse { position: absolute; inset: 0; opacity: .6; }
.tech-final-cta .wrap { position: relative; z-index: 2; max-width: 920px; }
.tech-final-cta h2 { margin: 18px auto 22px; color: #fff; font-size: clamp(2.15rem, 5vw, 4.3rem); line-height: 1.03; }
.tech-final-cta .wrap > p:not(.tech-kicker) { max-width: 790px; margin: 0 auto; color: rgba(238,240,255,.67); line-height: 1.75; }
.tech-final-cta .hero-ctas { justify-content: center; margin-top: 34px; }

@media (max-width: 1100px) {
  .tech-hero-grid { grid-template-columns: 1fr; }
  .tech-hero-copy { max-width: 800px; }
  .tech-dashboard { max-width: 850px; transform: none; }
  .tech-stack .wrap { flex-wrap: wrap; justify-content: center; padding-top: 24px; padding-bottom: 24px; }
  .tech-network-grid { grid-template-columns: 1fr; }
  .tech-portal-card { max-width: 650px; }
}

@media (max-width: 820px) {
  .tech-hero { min-height: auto; padding-top: 125px; }
  .tech-dashboard-body { grid-template-columns: 46px 1fr; }
  .tech-board { padding: 16px; }
  .tech-metrics { grid-template-columns: 1fr; }
  .tech-metrics > div { grid-template-columns: 1fr auto; align-items: center; }
  .tech-metrics > div span { grid-column: 1 / -1; }
  .tech-kanban { grid-template-columns: 1fr 1fr; }
  .tech-kanban > div { min-height: 155px; }
  .tech-intro-grid,
  .tech-feature-grid,
  .tech-ai-layout,
  .tech-funnel-head,
  .tech-mid-cta-inner,
  .tech-journey-grid { grid-template-columns: 1fr; }
  .tech-mid-cta .btn { justify-self: start; }
  .tech-data-grid,
  .tech-pillar-grid { grid-template-columns: 1fr; }
  .tech-feature-card { min-height: auto; }
  .tech-pillar-grid article { min-height: 240px; }
  .tech-pillar-grid i { margin-bottom: 48px; }
}

@media (max-width: 560px) {
  .tech-hero-copy h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .tech-hero .hero-ctas,
  .tech-final-cta .hero-ctas { align-items: stretch; }
  .tech-hero .hero-ctas .btn,
  .tech-final-cta .hero-ctas .btn { width: 100%; justify-content: center; }
  .tech-dashboard { border-radius: 14px; }
  .tech-side-menu { display: none; }
  .tech-dashboard-body { display: block; }
  .tech-board-head small { display: none; }
  .tech-kanban { grid-template-columns: repeat(4, 120px); overflow-x: auto; }
  .tech-stack .wrap { gap: 15px; }
  .tech-stack i { display: none; }
  .tech-stack span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.08); border-radius: 99px; }
  .tech-check-list,
  .tech-ai-grid,
  .tech-network-items,
  .tech-portal-modules { grid-template-columns: 1fr; }
  .tech-flow-line { flex-wrap: wrap; }
  .tech-flow-line i { transform: rotate(90deg); }
  .tech-mid-cta .btn { width: 100%; white-space: normal; text-align: center; justify-content: center; }
  .tech-portal-progress { grid-template-columns: 1fr; }
  .tech-journey-grid article { min-height: 430px; }
}

/* ================================================================
   CÉLULA PARTNER
   ================================================================ */
.partner-page { background: var(--navy-950); }
.partner-page main { overflow: hidden; }
.partner-hero { min-height: 720px; }
.partner-hero .wrap { position: relative; z-index: 2; max-width: 1280px; }
.partner-hero h1 { max-width: 20ch; margin-top: 18px; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.01em; }
.partner-hero h1 em { color: var(--orange-500); font-style: normal; }
.partner-hero .lead { max-width: 760px; }
.partner-kicker { display: inline-flex; gap: 9px; align-items: center; color: var(--orange-500); font: 800 .7rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.partner-hero-line { max-width: 720px; margin-top: 24px; color: rgba(238,240,255,.6); font-size: .9rem; line-height: 1.7; }
.partner-hero-line strong { color: #fff; }
.partner-hero .hero-ctas { margin-top: 34px; }

.partner-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.partner-intro-media { min-height: 650px; }
.partner-intro-media img { width: 100%; height: 100%; object-fit: cover; }
.partner-intro-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 9vw, 130px) var(--gutter) clamp(60px, 9vw, 130px) clamp(42px, 7vw, 100px); }
.partner-intro-copy h2 { max-width: 690px; margin: 18px 0 16px; color: var(--navy-950); font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 700; line-height: 1; }
.partner-intro-copy > p:not(.eyebrow) { max-width: 700px; color: #4a4a6a; font-size: .95rem; line-height: 1.75; }
.partner-intro-copy > p + p { margin-top: 16px; }
.partner-highlight { display: flex; gap: 15px; max-width: 680px; margin-top: 30px; padding: 20px; border-left: 3px solid var(--orange-500); border-radius: 0 10px 10px 0; background: #f0f0f5; color: #343453; font-size: .85rem; line-height: 1.6; }
.partner-highlight i { margin-top: 4px; color: var(--orange-500); }

.partner-role { background: #09092f; }
.partner-role .section-head { max-width: 820px; }
.partner-role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner-role-grid article { position: relative; min-height: 330px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: rgba(255,255,255,.035); }
.partner-role-grid article > span { position: absolute; top: 17px; right: 22px; color: rgba(255,255,255,.045); font-size: 4.6rem; font-weight: 800; line-height: 1; }
.partner-role-grid i { margin: 18px 0 90px; color: var(--orange-500); font-size: 1.25rem; }
.partner-role-grid h3 { margin-bottom: 12px; color: #fff; font-size: 1.25rem; }
.partner-role-grid p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

.partner-mid-cta { position: relative; padding: clamp(54px, 7vw, 84px) 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: #030327; }
.partner-mid-cta::after { content: ""; position: absolute; top: 50%; right: 4%; width: 360px; height: 360px; border: 1px solid rgba(255,84,0,.17); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 42px rgba(255,84,0,.035), 0 0 0 84px rgba(255,84,0,.02); }
.partner-mid-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.partner-mid-cta h2 { max-width: 850px; margin-top: 18px; color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 700; line-height: 1; }
.partner-mid-cta .btn { white-space: nowrap; }
.partner-mid-cta-orange { background: var(--orange-500); }
.partner-mid-cta-orange::after { border-color: rgba(255,255,255,.22); box-shadow: 0 0 0 42px rgba(255,255,255,.04), 0 0 0 84px rgba(255,255,255,.025); }
.partner-mid-cta-orange .eyebrow { color: rgba(255,255,255,.72); }
.partner-mid-cta-orange .btn-primary { background: var(--navy-950); box-shadow: none; }

.partner-profile-head { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.partner-profile-head h2 { max-width: 800px; margin: 18px 0 16px; color: var(--navy-950); font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 700; line-height: 1; }
.partner-profile-head > p { color: #4a4a6a; font-size: .95rem; line-height: 1.75; }
.partner-professions { display: flex; flex-wrap: wrap; gap: 10px; }
.partner-professions span { display: inline-flex; gap: 10px; align-items: center; padding: 14px 18px; border: 1px solid #dfdfe8; border-radius: 99px; background: #f7f7f9; color: #44445f; font-size: .9rem; font-weight: 600; transition: transform .2s, border-color .2s, background .2s; }
.partner-professions span:hover { transform: translateY(-2px); border-color: rgba(255,84,0,.35); background: #fff; }
.partner-professions i { color: var(--orange-500); }

.partner-portfolio { background: #0b0b34; }
.partner-portfolio .section-head { max-width: 850px; }
.partner-service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.partner-service-grid article { position: relative; min-height: 330px; padding: 28px; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: rgba(255,255,255,.035); }
.partner-service-grid article:nth-child(1),
.partner-service-grid article:nth-child(2),
.partner-service-grid article:nth-child(3) { grid-column: span 2; }
.partner-service-grid article > i { margin: 10px 0 60px; color: var(--orange-500); font-size: 1.3rem; }
.partner-service-grid h3 { margin-bottom: 12px; color: #fff; font-size: 1.25rem; }
.partner-service-grid p { color: var(--text-muted); font-size: .9rem; line-height: 1.66; }
.partner-service-grid a { position: absolute; bottom: 27px; left: 28px; color: #ff8a4e; font-size: .88rem; font-weight: 700; text-decoration: none; }

.partner-benefits .section-head { max-width: 820px; }
.partner-benefit-list { border-top: 1px solid #dedee7; }
.partner-benefit-list article { display: grid; grid-template-columns: 90px 1fr; gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid #dedee7; }
.partner-benefit-list article > span { color: var(--orange-500); font: 700 .75rem var(--mono); }
.partner-benefit-list h3 { margin-bottom: 8px; color: var(--navy-950); font-size: 1.25rem; }
.partner-benefit-list p { max-width: 850px; color: #4a4a6a; font-size: .95rem; line-height: 1.65; }

.partner-relationship { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: #08082e; }
.partner-relationship-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(65px, 9vw, 125px) clamp(42px, 7vw, 105px) clamp(65px, 9vw, 125px) var(--gutter); }
.partner-relationship-copy h2 { max-width: 680px; margin: 18px 0 16px; color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 700; line-height: 1; }
.partner-relationship-copy > p:not(.eyebrow) { max-width: 680px; color: var(--text-muted); font-size: .95rem; line-height: 1.75; }
.partner-relationship-copy > p + p { margin-top: 15px; }
.partner-relationship-copy strong { max-width: 680px; margin-top: 30px; padding: 20px; border-left: 3px solid var(--orange-500); color: #fff; font-size: .9rem; line-height: 1.65; }
.partner-relationship-media { min-height: 620px; }
.partner-relationship-media img { width: 100%; height: 100%; object-fit: cover; }

.partner-opportunity-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.partner-opportunity-grid h2 { margin: 18px 0 16px; color: var(--navy-950); font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 700; line-height: 1; }
.partner-opportunity-grid > div > p:not(.eyebrow) { color: #4a4a6a; font-size: .95rem; line-height: 1.75; }
.partner-opportunity-grid ul { display: grid; gap: 12px; }
.partner-opportunity-grid li { display: flex; gap: 13px; padding: 16px 18px; border: 1px solid #dfdfe7; border-radius: 10px; background: #f7f7f9; color: #4a4a6a; font-size: .9rem; line-height: 1.5; }
.partner-opportunity-grid li::before { content: "✓"; color: var(--orange-500); font-weight: 800; }

.partner-natural { background: #09092f; text-align: center; }
.partner-natural .wrap { max-width: 1050px; }
.partner-natural blockquote { margin: 25px auto 34px; color: #fff; font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.32; letter-spacing: -.01em; }
.partner-natural .wrap > div { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.partner-natural .wrap > div span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.11); border-radius: 99px; color: rgba(255,255,255,.62); font: 600 .65rem var(--mono); }

.partner-final-cta { min-height: 620px; text-align: center; }
.partner-final-cta .wrap { position: relative; z-index: 2; max-width: 950px; }
.partner-final-cta .partner-kicker { justify-content: center; }
.partner-final-cta h2 { margin-top: 18px; font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1; }
.partner-final-cta p:not(.partner-kicker) { max-width: 780px; margin-right: auto; margin-left: auto; }
.partner-final-cta .hero-ctas { justify-content: center; }

.partner-page #faq .section-head h2 { color: var(--navy-950); }
.partner-page #faq .section-head p.eyebrow { color: #8888a3; }
.partner-page #faq .faq-list details { border-color: #dedee7; }
.partner-page #faq .faq-list summary { color: var(--navy-950); }
.partner-page #faq .faq-list details p { color: #4a4a6a; }

@media (max-width: 1050px) {
  .partner-role-grid { grid-template-columns: 1fr 1fr; }
  .partner-service-grid { grid-template-columns: 1fr 1fr; }
  .partner-service-grid article:nth-child(n) { grid-column: auto; }
  .partner-service-grid article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .partner-intro,
  .partner-relationship { grid-template-columns: 1fr; }
  .partner-intro-media,
  .partner-relationship-media { min-height: 420px; }
  .partner-intro-copy,
  .partner-relationship-copy { padding-right: var(--gutter); padding-left: var(--gutter); }
  .partner-mid-cta-inner,
  .partner-profile-head,
  .partner-opportunity-grid { grid-template-columns: 1fr; }
  .partner-mid-cta .btn { justify-self: start; }
}

@media (max-width: 560px) {
  .partner-hero { min-height: auto; }
  .partner-hero .hero-ctas,
  .partner-final-cta .hero-ctas { align-items: stretch; }
  .partner-hero .hero-ctas .btn,
  .partner-final-cta .hero-ctas .btn { width: 100%; justify-content: center; }
  .partner-role-grid,
  .partner-service-grid { grid-template-columns: 1fr; }
  .partner-service-grid article:last-child { grid-column: auto; }
  .partner-role-grid article { min-height: 280px; }
  .partner-role-grid i { margin-bottom: 62px; }
  .partner-professions span { width: 100%; border-radius: 10px; }
  .partner-benefit-list article { grid-template-columns: 48px 1fr; gap: 12px; }
  .partner-mid-cta .btn { width: 100%; white-space: normal; justify-content: center; text-align: center; }
  .partner-relationship-media { min-height: 340px; }
}

/* ---------- página de contato ---------- */
.contact-hero .wrap { max-width: 1120px; }
.contact-hero h1 { max-width: 19ch; font-size: clamp(2.45rem, 5.8vw, 4.8rem); letter-spacing: -.04em; }
.contact-hero .lead { max-width: 720px; }
.contact-kicker {
  margin: 28px 0 12px;
  color: var(--orange-500);
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-main { background: #f5f5f8; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: start;
  max-width: 1180px;
}
.contact-info .section-head { margin-bottom: 32px; }
.contact-info .section-head h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); line-height: 1.12; }
.contact-channel-grid { display: grid; gap: 12px; }
.contact-channel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(2, 2, 34, .09);
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
a.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 84, 0, .34);
  box-shadow: 0 14px 34px rgba(2, 2, 34, .08);
}
.contact-channel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: #fff1e9;
  color: var(--orange-500);
  font-size: 1.15rem;
}
.contact-channel > div { display: grid; min-width: 0; }
.contact-channel small {
  color: #77778e;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-channel strong { overflow-wrap: anywhere; color: var(--navy-950); font-size: .96rem; }
.contact-channel > div > span { color: #6a6a82; font-size: .79rem; }
.contact-assurance {
  display: flex;
  gap: 13px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 13px;
  background: #eaeaf1;
}
.contact-assurance i { margin-top: 4px; color: var(--orange-500); }
.contact-assurance p { color: #56566f; font-size: .82rem; line-height: 1.6; }
.contact-assurance strong { color: var(--navy-950); }
.contact-form-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(2, 2, 34, .09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(2, 2, 34, .1);
}
.contact-form-card .eyebrow { margin-bottom: 14px; color: var(--orange-500); opacity: 1; }
.contact-form-card h2 { margin-bottom: 10px; color: var(--navy-950); font-size: clamp(1.65rem, 3vw, 2.3rem); line-height: 1.15; }
.contact-form-intro { margin-bottom: 28px; color: #65657c; font-size: .92rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-card textarea.form-control { min-height: 125px; resize: vertical; line-height: 1.55; }
.contact-form-card select.form-control { cursor: pointer; }
.contact-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 5px 0 20px;
  color: #5d5d74;
  font-size: .79rem;
  line-height: 1.5;
  cursor: pointer;
}
.contact-consent input { width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--orange-500); }
.contact-consent .req { color: var(--orange-500); }
.contact-form-error { margin: -8px 0 16px; color: #b02c20; font-size: .8rem; font-weight: 600; }
.contact-submit { width: 100%; justify-content: center; min-height: 52px; }

.contact-steps { background: var(--navy-950); }
.contact-steps .section-head { max-width: 720px; }
.contact-steps .section-head h2 { line-height: 1.12; }
.contact-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.contact-step {
  position: relative;
  min-height: 285px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
}
.contact-step > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, .12);
  font-size: 2.5rem;
  font-weight: 800;
}
.contact-step > i { display: block; margin-bottom: 44px; color: var(--orange-500); font-size: 1.35rem; }
.contact-step h3 { margin-bottom: 14px; color: #fff; font-size: 1.2rem; line-height: 1.25; }
.contact-step p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

.contact-faq { background: #fff; }
.contact-faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(38px, 7vw, 100px); align-items: start; }
.contact-faq .section-head { margin: 0; }
.contact-faq .faq details { border-bottom: 1px solid #e2e2eb; }
.contact-faq .faq summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}
.contact-faq .faq summary::-webkit-details-marker { display: none; }
.contact-faq .faq summary span { color: var(--orange-500); font-size: 1.35rem; transition: transform .2s; }
.contact-faq .faq details[open] summary span { transform: rotate(45deg); }
.contact-faq .faq details p { max-width: 66ch; padding: 0 34px 22px 0; color: #5d5d74; font-size: .91rem; line-height: 1.7; }

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-channel-grid { grid-template-columns: 1fr 1fr; }
  .contact-faq-layout { grid-template-columns: 1fr; }
  .contact-faq .section-head { margin-bottom: 12px; }
}

@media (max-width: 720px) {
  .contact-hero h1 { font-size: clamp(2.2rem, 12vw, 3.55rem); }
  .contact-channel-grid,
  .contact-form-row,
  .contact-step-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px 20px; border-radius: 18px; }
  .contact-step { min-height: 240px; }
}

/* ---------- página de metodologia ---------- */
.method-hero .wrap { max-width: 1120px; }
.method-hero h1 { max-width: none; font-size: clamp(2.7rem, 6vw, 5.3rem); letter-spacing: -.045em; }
.method-hero .lead { max-width: 760px; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.method-kicker {
  margin-top: 28px;
  color: var(--orange-500);
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.method-hero-phases {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
}
.method-hero-phases a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.method-hero-phases a:hover { border-color: rgba(255, 84, 0, .65); background: rgba(255, 84, 0, .09); }
.method-hero-phases a span { color: var(--orange-500); font-family: 'JetBrains Mono', monospace; font-size: .72rem; }
.method-hero-phases a strong { font-size: .88rem; }
.method-hero-phases > i { color: rgba(255, 255, 255, .35); }

.method-intro { background: #fff; }
.method-intro-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
}
.method-intro-layout .section-head { margin: 0; }
.method-intro-layout .section-head h2 { font-size: clamp(1.8rem, 3.7vw, 2.85rem); line-height: 1.12; }
.method-intro-copy { display: grid; gap: 18px; }
.method-intro-copy p { color: #4f4f69; font-size: 1rem; line-height: 1.8; }
.method-intro-copy strong { color: var(--navy-950); }
.method-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 62px; }
.method-overview-card {
  position: relative;
  display: block;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e1e1e9;
  border-radius: 20px;
  background: #f6f6f9;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.method-overview-card:hover { transform: translateY(-4px); border-color: rgba(255, 84, 0, .4); box-shadow: 0 20px 50px rgba(2, 2, 34, .1); }
.method-overview-number { position: absolute; top: 18px; right: 25px; color: #e1e1e8; font-size: 4.5rem; font-weight: 800; line-height: 1; }
.method-overview-card > i { margin-bottom: 54px; color: var(--orange-500); font-size: 1.45rem; }
.method-overview-card h3 { margin-bottom: 12px; color: var(--navy-950); font-size: 1.45rem; }
.method-overview-card p { max-width: 50ch; margin-bottom: 18px; color: #5a5a72; font-size: .92rem; line-height: 1.65; }
.method-overview-card b { color: var(--orange-500); font-size: .84rem; }
.method-overview-addon { border-color: rgba(255, 84, 0, .26); background: #fff9f5; }
.method-overview-addon::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange-500);
  content: "";
}

.method-format { background: var(--navy-950); }
.method-phase-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 78px);
}
.method-phase-head h2 { margin-top: 18px; color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); }
.method-phase-head > p { color: var(--text-muted); line-height: 1.75; }
.method-timeline { position: relative; display: grid; gap: 20px; }
.method-timeline::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 65px;
  width: 1px;
  background: linear-gradient(var(--orange-500), rgba(255, 84, 0, .12));
  content: "";
}
.method-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 60px minmax(0, 1fr);
  gap: 28px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}
.method-step-mark { position: relative; z-index: 1; display: grid; align-content: start; justify-items: center; padding: 10px 8px; border-radius: 12px; background: var(--navy-950); }
.method-step-mark span { color: var(--text-faint); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.method-step-mark strong { color: var(--orange-500); font-size: 1.55rem; }
.method-step-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 14px; background: rgba(255, 84, 0, .12); color: var(--orange-500); font-size: 1.2rem; }
.method-step-content h3 { margin-bottom: 18px; color: #fff; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.method-step-content p { max-width: 78ch; color: var(--text-muted); font-size: .96rem; line-height: 1.75; }
.method-step-content p + p { margin-top: 14px; }
.method-step-content strong { color: #fff; }
.method-step-featured { border-color: rgba(255, 84, 0, .32); background: linear-gradient(135deg, rgba(255, 84, 0, .09), rgba(255, 255, 255, .035)); }
.method-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin: 24px 0; padding: 0; list-style: none; }
.method-check-grid li { position: relative; padding-left: 23px; color: #d8d8e7; font-size: .88rem; line-height: 1.45; }
.method-check-grid li::before { position: absolute; left: 0; color: var(--orange-500); content: "✓"; font-weight: 800; }
.method-step-conclusion { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .1); }
.method-step-card[id] { scroll-margin-top: 120px; }
.method-additional-break {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  margin: 28px 0 4px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 84, 0, .34);
  border-radius: 18px;
  background: #11113d;
}
.method-additional-break > span,
.method-addon-badge {
  position: relative;
  display: inline-block;
  width: max-content;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--orange-500);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}
.method-additional-break > span::after,
.method-addon-badge::after {
  position: absolute;
  bottom: -5px;
  left: 14px;
  width: 10px;
  height: 10px;
  background: var(--orange-500);
  content: "";
  transform: rotate(45deg);
}
.method-additional-break h3 { margin-bottom: 7px; color: #fff; font-size: 1.25rem; }
.method-additional-break p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }
.method-step-addon { border-color: rgba(255, 84, 0, .34); background: linear-gradient(135deg, rgba(255, 84, 0, .1), rgba(255, 255, 255, .035)); }
.method-addon-badge { margin-bottom: 18px; }

.method-expansion { background: #f5f5f8; }
.method-expansion-hero { max-width: 860px; margin: 0 auto 38px; text-align: center; }
.method-expansion-icon { display: grid; width: 64px; height: 64px; margin: 0 auto 22px; place-items: center; border-radius: 18px; background: var(--orange-500); color: #fff; font-size: 1.35rem; box-shadow: 0 15px 35px rgba(255, 84, 0, .25); }
.method-expansion-hero .eyebrow { justify-content: center; color: var(--orange-500); opacity: 1; }
.method-expansion-hero h2 { margin: 16px 0; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
.method-expansion-lead { color: #494963; font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.5; }
.method-expansion-intro { max-width: 880px; margin: 0 auto 56px; padding: 30px; border-left: 4px solid var(--orange-500); border-radius: 0 14px 14px 0; background: #fff; }
.method-expansion-intro p { color: #55556d; font-size: .96rem; line-height: 1.75; }
.method-expansion-intro p + p { margin-top: 15px; }
.method-expansion-intro strong { color: var(--navy-950); }
.method-capabilities { display: grid; grid-template-columns: .72fr 1.28fr; gap: 46px; padding: clamp(30px, 5vw, 52px); border: 1px solid #e0e0e8; border-radius: 22px; background: #fff; }
.method-capabilities-head h3 { margin: 16px 0; color: var(--navy-950); font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.16; }
.method-capabilities-head > p:last-child { color: #606078; font-size: .9rem; line-height: 1.7; }
.method-capability-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 20px; margin: 0; padding: 0; list-style: none; }
.method-capability-list li { display: flex; gap: 9px; color: #4c4c65; font-size: .85rem; line-height: 1.45; }
.method-capability-list i { margin-top: 3px; color: var(--orange-500); font-size: .72rem; }
.method-tech { display: grid; grid-template-columns: .72fr 1.28fr; gap: 50px; align-items: center; margin-top: 24px; padding: clamp(34px, 6vw, 62px); border-radius: 22px; background: var(--navy-950); }
.method-tech-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 230px; }
.method-tech-visual::before { position: absolute; width: 220px; height: 220px; border: 1px solid rgba(255, 84, 0, .36); border-radius: 50%; content: ""; }
.method-tech-visual span { position: relative; display: grid; width: 72px; height: 72px; margin: 0 -6px; place-items: center; border: 1px solid rgba(255, 255, 255, .13); border-radius: 18px; background: #151541; color: var(--orange-500); font-size: 1.3rem; }
.method-tech-visual span:nth-child(2) { z-index: 2; width: 86px; height: 86px; background: var(--orange-500); color: #fff; }
.method-tech .eyebrow { color: var(--orange-500); opacity: 1; }
.method-tech h3 { margin: 16px 0 20px; color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.15; }
.method-tech p { color: var(--text-muted); font-size: .92rem; line-height: 1.75; }
.method-tech p + p { margin-top: 14px; }
.method-tech strong { color: #fff; }
.method-operation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.method-operation-card { padding: 32px; border: 1px solid #e0e0e8; border-radius: 18px; background: #fff; }
.method-operation-card > span { color: var(--orange-500); font-size: .69rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.method-operation-card h3 { margin: 13px 0; color: var(--navy-950); font-size: 1.35rem; }
.method-operation-card p { color: #5a5a72; font-size: .9rem; line-height: 1.7; }

.method-summary { background: var(--navy-950); text-align: center; }
.method-summary .section-head { margin-inline: auto; }
.method-summary .section-head .eyebrow { justify-content: center; }
.method-summary-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; }
.method-summary-grid article { min-height: 235px; padding: 34px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 20px; background: rgba(255, 255, 255, .04); text-align: left; }
.method-summary-grid article > span { color: var(--orange-500); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.method-summary-grid h3 { margin: 22px 0 15px; color: #fff; font-size: clamp(1.35rem, 2.5vw, 1.9rem); line-height: 1.2; }
.method-summary-grid p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }
.method-summary-plus { color: var(--orange-500); font-size: 2rem; font-weight: 300; }
.method-summary-note { max-width: 850px; margin: 38px auto 0; color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.method-summary-note strong { color: #fff; }

@media (max-width: 960px) {
  .method-intro-layout,
  .method-phase-head,
  .method-capabilities,
  .method-tech { grid-template-columns: 1fr; }
  .method-capabilities { gap: 30px; }
  .method-tech-visual { min-height: 200px; }
  .method-summary-grid { grid-template-columns: 1fr; }
  .method-summary-grid article { min-height: 0; }
}

@media (max-width: 720px) {
  .method-hero-phases { align-items: stretch; flex-direction: column; }
  .method-hero-phases > i { align-self: center; transform: rotate(90deg); }
  .method-hero-phases a { justify-content: center; }
  .method-overview-grid,
  .method-operation-grid,
  .method-capability-list,
  .method-check-grid { grid-template-columns: 1fr; }
  .method-timeline::before { left: 29px; }
  .method-step-card { grid-template-columns: 58px minmax(0, 1fr); gap: 18px; padding: 24px 18px; }
  .method-step-mark { grid-row: 1 / span 2; padding-inline: 5px; }
  .method-step-icon { grid-column: 2; }
  .method-step-content { grid-column: 2; }
  .method-summary-grid { grid-template-columns: 1fr; }
  .method-summary-plus { transform: none; }
  .method-tech { padding-inline: 22px; }
  .method-tech-visual span { width: 62px; height: 62px; }
  .method-tech-visual span:nth-child(2) { width: 74px; height: 74px; }
  .method-additional-break { grid-template-columns: 1fr; padding: 24px 20px; }
}

/* ---------- página sobre ---------- */
.about-hero .wrap { max-width: 1120px; }
.about-hero h1 { max-width: 17ch; font-size: clamp(2.55rem, 6vw, 5.15rem); letter-spacing: -.045em; }
.about-hero .lead { max-width: 760px; font-size: clamp(1.02rem, 2vw, 1.2rem); }
.about-kicker {
  margin-top: 28px;
  color: var(--orange-500);
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.about-hero-facts > div { display: grid; gap: 4px; padding: 22px 26px 0 0; }
.about-hero-facts strong { color: #fff; font-size: 1rem; }
.about-hero-facts span { color: var(--text-muted); font-size: .78rem; line-height: 1.45; }

.about-story { background: #fff; }
.about-story-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.about-story-media { position: relative; }
.about-story-media img { display: block; width: 100%; min-height: 520px; object-fit: cover; border-radius: 22px; }
.about-story-year {
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: grid;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 18px 45px rgba(255, 84, 0, .3);
}
.about-story-year span { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.about-story-year strong { font-size: 2rem; line-height: 1.1; }
.about-story-copy .eyebrow { margin-bottom: 18px; color: var(--orange-500); opacity: 1; }
.about-story-copy h2 { margin-bottom: 24px; color: var(--navy-950); font-size: clamp(1.8rem, 3.8vw, 2.9rem); line-height: 1.12; }
.about-story-copy p { color: #52526b; font-size: .97rem; line-height: 1.8; }
.about-story-copy p + p { margin-top: 16px; }
.about-story-copy .btn { margin-top: 30px; }

.about-belief { background: var(--navy-950); }
.about-belief-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.about-belief-title h2 { margin-top: 18px; color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.12; }
.about-belief-copy { padding-left: 34px; border-left: 3px solid var(--orange-500); }
.about-belief-copy p { color: var(--text-muted); font-size: 1rem; line-height: 1.85; }
.about-belief-copy p + p { margin-top: 18px; }

.about-pillars { background: #f5f5f8; }
.about-pillars .section-head { max-width: 720px; }
.about-pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.about-pillar-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e0e0e8;
  border-radius: 20px;
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.about-pillar-card:hover { transform: translateY(-4px); border-color: rgba(255, 84, 0, .35); box-shadow: 0 20px 50px rgba(2, 2, 34, .09); }
.about-pillar-card > span { position: absolute; top: 20px; right: 25px; color: #ededf2; font-size: 4.4rem; font-weight: 800; line-height: 1; }
.about-pillar-card > i { margin-bottom: 76px; color: var(--orange-500); font-size: 1.45rem; }
.about-pillar-card h3 { margin-bottom: 14px; color: var(--navy-950); font-size: 1.4rem; }
.about-pillar-card p { color: #5a5a72; font-size: .9rem; line-height: 1.7; }

.about-partnership { background: #fff; }
.about-partnership-layout { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(40px, 7vw, 92px); align-items: center; }
.about-partnership-copy .eyebrow { margin-bottom: 18px; color: var(--orange-500); opacity: 1; }
.about-partnership-copy h2 { margin-bottom: 22px; color: var(--navy-950); font-size: clamp(1.8rem, 3.7vw, 2.8rem); line-height: 1.12; }
.about-partnership-copy > p { color: #55556d; font-size: .95rem; line-height: 1.78; }
.about-value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.about-value-grid > div { display: flex; gap: 12px; padding: 16px; border-radius: 13px; background: #f2f2f6; }
.about-value-grid i { margin-top: 3px; color: var(--orange-500); }
.about-value-grid span { display: grid; color: #66667d; font-size: .76rem; line-height: 1.5; }
.about-value-grid strong { color: var(--navy-950); font-size: .85rem; }
.about-partnership-media { position: relative; }
.about-partnership-media img { display: block; width: 100%; min-height: 500px; object-fit: cover; border-radius: 22px; }
.about-partnership-media > div { position: absolute; right: 20px; bottom: 20px; left: 20px; padding: 22px; border-radius: 15px; background: rgba(2, 2, 34, .9); backdrop-filter: blur(10px); }
.about-partnership-media span { display: block; margin-bottom: 7px; color: var(--orange-500); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.about-partnership-media strong { display: block; color: #fff; font-size: 1.05rem; line-height: 1.45; }

@media (max-width: 960px) {
  .about-story-layout,
  .about-belief-layout,
  .about-partnership-layout { grid-template-columns: 1fr; }
  .about-story-media { max-width: 680px; }
  .about-belief-copy { padding-left: 24px; }
}

@media (max-width: 720px) {
  .about-hero-facts { grid-template-columns: 1fr; }
  .about-hero-facts > div { padding-top: 16px; }
  .about-story-media img,
  .about-partnership-media img { min-height: 390px; }
  .about-story-year { right: 14px; bottom: 14px; }
  .about-pillar-grid,
  .about-value-grid { grid-template-columns: 1fr; }
  .about-pillar-card { min-height: 300px; }
}
/* SEO programático */
.programmatic-breadcrumb{display:flex;gap:.65rem;align-items:center;flex-wrap:wrap;margin-bottom:2rem;color:var(--text-muted);font-size:.82rem}.programmatic-breadcrumb a{color:var(--text-muted);text-decoration:none}.programmatic-breadcrumb a:hover{color:var(--orange-500)}.programmatic-hero .btn{margin-top:1.5rem}.programmatic-grid{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(280px,.75fr);gap:clamp(2.5rem,6vw,6rem);align-items:start}.programmatic-prose{color:#4a4a6a;font-size:1.02rem;line-height:1.82}.programmatic-prose h2,.programmatic-prose h3{color:var(--navy-950);line-height:1.18}.programmatic-prose h2{font-size:clamp(2rem,4vw,3.2rem);margin:.6rem 0 1.5rem}.programmatic-prose h3{font-size:1.35rem;margin:2.2rem 0 .7rem}.programmatic-answer{border-left:4px solid var(--orange-500);padding:1.15rem 1.4rem;background:#fff5ef;color:var(--navy-950);font-weight:600;border-radius:0 12px 12px 0}.programmatic-body{white-space:normal}.programmatic-market{position:sticky;top:110px;padding:2rem;border-radius:18px;background:var(--navy-950);color:#fff;box-shadow:0 22px 60px rgba(9,9,40,.22)}.programmatic-market .kicker{color:var(--orange-500);font-family:'JetBrains Mono',monospace;font-size:.74rem;text-transform:uppercase;letter-spacing:.12em}.programmatic-market h2{font-size:1.9rem;margin:.45rem 0 1.4rem}.programmatic-market dl{display:grid;gap:0;margin:0 0 1.25rem}.programmatic-market dl div{display:flex;justify-content:space-between;gap:1rem;padding:.8rem 0;border-bottom:1px solid rgba(255,255,255,.12)}.programmatic-market dt{color:#aaaac0}.programmatic-market dd{margin:0;text-align:right;font-weight:700}.programmatic-market p{color:#c8c8d6;line-height:1.65}.programmatic-steps{grid-template-columns:repeat(3,1fr)}.programmatic-related-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(2rem,6vw,6rem)}.programmatic-related h2{font-size:clamp(1.7rem,3vw,2.4rem);margin:.6rem 0 1.4rem}.programmatic-links{display:grid;gap:.6rem}.programmatic-links a{display:flex;justify-content:space-between;gap:1rem;padding:1rem 1.1rem;border:1px solid rgba(255,255,255,.12);border-radius:10px;color:#fff;text-decoration:none}.programmatic-links a:hover{border-color:var(--orange-500);color:var(--orange-500)}.programmatic-cta{text-align:center;background:radial-gradient(circle at 50% 0,rgba(255,78,0,.16),transparent 52%),var(--navy-950)}.programmatic-cta .wrap{max-width:800px}.programmatic-cta h2{font-size:clamp(2.1rem,5vw,4rem);margin:.5rem 0 1rem}.programmatic-cta p{color:var(--text-muted);margin-bottom:1.6rem}.programmatic-challenges{display:grid;gap:.8rem;padding:0;list-style:none}.programmatic-challenges li{padding:1rem 1.1rem 1rem 2.7rem;background:#f4f4f8;border-radius:10px;position:relative}.programmatic-challenges li::before{content:'✓';position:absolute;left:1rem;color:var(--orange-500);font-weight:800}@media(max-width:900px){.programmatic-grid,.programmatic-related-grid{grid-template-columns:1fr}.programmatic-market{position:static}.programmatic-steps{grid-template-columns:1fr}}
