/* ==============================================================
   LION INTERNATIONAL — Home corporativa
   Hero escuro + conteúdo claro. Geometria reta, tipografia
   editorial, ouro como acento. Blocos independentes, pensados
   para virar template parts de um tema WordPress.
   ============================================================== */

:root {
    /* Escuro */
    --ink:        #05061a;
    --ink-2:      #0a0e33;
    --ink-3:      #131a6e;
    --blue:       #1b2ba8;

    /* Ouro */
    --gold:       #d4af37;
    --gold-lt:    #f2dfa8;
    --gold-dk:    #a8801f;
    --gold-metal: linear-gradient(100deg, #a8801f, #ffeab4 34%, #d4af37 58%, #f2dfa8 78%, #a8801f);
    --gold-flat:  #d4af37;   /* botões: dourado chapado, sem degradê */
    --steps-azul: #0a0e33;   /* aba ativa e painel do onboarding */

    /* Claro */
    --paper:      #faf8f3;
    --paper-2:    #f2eee4;
    --text:       #0f1330;
    --text-2:     #464c6b;
    --rule:       rgba(15, 19, 48, .13);
    --rule-soft:  rgba(15, 19, 48, .07);

    /* Tipografia */
    --serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
    --sans:  'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --brand: 'Cinzel', 'Times New Roman', serif;
    --ar:    'Noto Kufi Arabic', var(--sans);

    /* Layout: o conteúdo ocupa 90% da largura da tela */
    --shell: min(90vw, 1680px);
    --band-y: clamp(5.5rem, 9vw, 11rem);

    --ease: cubic-bezier(.16, 1, .3, 1);
    --slow: .8s var(--ease);
}

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

/* O atributo hidden precisa vencer o display das classes (.btn é flex) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
    background: var(--paper);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-ar { font-family: var(--ar); }
body.is-ar .display,
body.is-ar .hero-title { font-family: var(--ar); letter-spacing: 0; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }

section[id] { scroll-margin-top: 5.5rem; }

.skip {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 200;
    padding: .8rem 1.2rem;
    background: var(--gold);
    color: var(--ink);
    font-size: .8rem;
    font-weight: 600;
}
.skip:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --------------------------------------------------------------
   TIPOGRAFIA DE APOIO
   -------------------------------------------------------------- */
.label {
    font-family: var(--brand);
    font-size: clamp(.62rem, .72vw, .72rem);
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.band-ink .label,
.hero .label { color: var(--gold); }

.eyebrow {
    font-family: var(--brand);
    font-size: clamp(.6rem, .76vw, .74rem);
    font-weight: 600;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
}

.display {
    font-family: var(--serif);
    font-size: clamp(1.65rem, 2.6vw, 2.7rem);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -.012em;
    text-wrap: balance;
}

.band-ink .display { color: #fff; }

.band-sub {
    margin-top: 1.6rem;
    /* medida larga o bastante para a frase caber em uma linha no desktop */
    max-width: 54em;
    font-size: clamp(.95rem, 1.05vw, 1.06rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-2);
}

.band-ink .band-sub { color: rgba(255, 255, 255, .66); }

/* --------------------------------------------------------------
   BOTÕES
   -------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1.15rem 2.4rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    transition: color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}

.btn-sm { padding: .8rem 1.5rem; font-size: .68rem; letter-spacing: .12em; }

.btn-gold { background: var(--gold-flat); color: var(--ink); }
.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .55), transparent 80%);
    transform: translateX(-120%);
    transition: transform .9s var(--ease);
}
.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:hover { transform: translateY(-2px); }

.btn-ghost { border: 1px solid rgba(212, 175, 55, .5); color: var(--gold-lt); }
.btn-ghost:hover { border-color: var(--gold); color: #fff; transform: translateY(-2px); }

.band-paper .btn-ghost { border-color: rgba(15, 19, 48, .25); color: var(--text); }
.band-paper .btn-ghost:hover { border-color: var(--text); color: var(--text); }

.link-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dk);
    border-bottom: 1px solid rgba(168, 128, 31, .35);
    padding-bottom: .3rem;
    transition: var(--slow);
}
.link-gold:hover { border-bottom-color: var(--gold-dk); letter-spacing: .13em; }

/* --------------------------------------------------------------
   CABEÇALHO
   -------------------------------------------------------------- */
.masthead {
    position: fixed;
    inset: 0 0 auto;
    z-index: 90;
    padding: 1.4rem 0;
    transition: padding .5s var(--ease), background-color .5s var(--ease), box-shadow .5s var(--ease);
}

.masthead::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 34, .9);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(212, 175, 55, .2);
    opacity: 0;
    transition: opacity .5s var(--ease);
}

.masthead.is-stuck { padding: .75rem 0; }
.masthead.is-stuck::before { opacity: 1; }

.masthead-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.lockup { position: relative; z-index: 2; display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }

.lockup-mark {
    width: 72px;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, .35));
    transition: width .5s var(--ease);
}
.masthead.is-stuck .lockup-mark { width: 60px; }

/* Latim e árabe lado a lado, alinhados pela base e separados por um
   filete dourado. Empilhado eles caberiam melhor, mas a leitura bilíngue
   em linha é mais forte — e a barra ainda comporta. */
.lockup-text {
    display: flex;
    align-items: baseline;
    gap: .55rem;
    line-height: 1;
}
.lockup-text::before { content: none; }

.lockup-text strong {
    font-family: var(--brand);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .14em;
    background: var(--gold-metal);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.lockup-ar {
    position: relative;
    /* lado físico: o elemento é dir="rtl", então inline-start apontaria
       para a direita e o filete cairia depois do árabe */
    padding-left: .6rem;
    font-family: var(--ar);
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
    transition: color .5s var(--ease);
}
body.is-ar .lockup-ar { padding-left: 0; padding-right: .6rem; }
body.is-ar .lockup-ar::before { left: auto; right: 0; }

/* filete separando as duas grafias */
.lockup-ar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    width: 1px;
    height: 1.15em;
    background: rgba(212, 175, 55, .5);
}

.nav { display: flex; gap: clamp(.45rem, .85vw, 1.4rem); margin-inline-start: auto; }
.nav a { white-space: nowrap; }

.nav a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .42rem;
    font-family: var(--serif);
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
    padding: .35rem 0;
    transition: color .4s var(--ease);
}
.nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    translate: -50% 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .5s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: #fff; }


.masthead-actions { display: flex; align-items: center; gap: .9rem; }

/* O botão do topo é um atalho, não o CTA principal: cabe mais enxuto e
   ainda deixa a barra caber em telas de 1366px. */
.masthead-actions .btn { padding: .8rem 1.1rem; font-size: .63rem; letter-spacing: .1em; }

.langs { display: flex; gap: .1rem; }
.langs-menu { display: none; }

.lang {
    padding: .4rem .7rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .5);
    transition: color .4s var(--ease);
}
.lang:hover { color: var(--gold-lt); }
.lang.is-on { color: var(--gold); }

.burger { display: none; width: 30px; height: 30px; position: relative; }
.burger span {
    position: absolute;
    left: 3px;
    right: 3px;
    height: 1px;
    background: currentColor;
    transition: transform .45s var(--ease), opacity .3s;
}
.burger span:first-child { top: 11px; }
.burger span:last-child  { top: 18px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* --------------------------------------------------------------
   HERO
   -------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: clamp(8rem, 13vh, 11rem) 0 0;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.hero-art { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

/* Esteira de fotos do hero. A sobra de 3% em volta evita borda aparecendo
   quando a paralaxe desloca a camada. */
.hero-slides {
    position: absolute;
    inset: -3%;
    will-change: transform;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: 62% center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s var(--ease);
}
.hero-slide.is-on { opacity: 1; }

/* Vídeo do primeiro slide. O pôster é o próprio fundo do slide
   (bg-hero-1.jpg), que continua pintado por baixo: o vídeo só surge
   quando já dá para tocar, então o hero nunca aparece vazio.
   O object-position acompanha o enquadramento das fotos. */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    pointer-events: none;
}
.hero-video.is-ready { opacity: 1; }
body.is-ar .hero-video { object-position: 95% center; }

/* Indicadores: barra fina que preenche no tempo do slide */
.hero-dots {
    display: flex;
    gap: .55rem;
    margin-top: clamp(2.2rem, 3.2vw, 3rem);
}

.hero-dot {
    position: relative;
    width: 52px;
    height: 2px;
    background: rgba(255, 255, 255, .22);
    overflow: hidden;
    cursor: pointer;
    transition: background-color .4s var(--ease);
}
.hero-dot:hover { background: rgba(255, 255, 255, .4); }

.hero-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
}
body.is-ar .hero-dot::after { transform-origin: right center; }
.hero-dot.is-on::after { animation: heroFill var(--hero-dur, 7s) linear forwards; }

@keyframes heroFill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Troca do texto entre um slide e outro */
.hero-copy { transition: opacity .45s var(--ease), transform .45s var(--ease); }
.hero-copy.is-out { opacity: 0; transform: translateY(8px); }

/* Véu: pesado à esquerda, onde fica o texto; leve à direita, para o Burj
   aparecer. Em árabe o texto vai para a direita e o véu espelha. */
.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(3, 4, 20, .92) 0%,
            rgba(3, 4, 20, .74) 32%,
            rgba(3, 4, 20, .34) 62%,
            rgba(3, 4, 20, .48) 100%),
        radial-gradient(55% 60% at 78% 42%, rgba(212, 175, 55, .1), transparent 70%);
}

/* Em árabe o texto ocupa a direita: reenquadro a foto para o Burj cair na
   esquerda livre. Espelhar não é opção — é um lugar real. */
body.is-ar .hero-slide { background-position: 95% center; }
body.is-ar .hero-scrim { transform: scaleX(-1); }

.hero-fade {
    position: absolute;
    inset: auto 0 0;
    height: 34vh;
    background: linear-gradient(to top, var(--ink) 8%, rgba(5, 6, 26, .72) 42%, transparent);
}

.hero-inner { position: relative; align-self: center; }

.hero-title {
    margin: 1.6rem 0 0;
    font-family: var(--serif);
    font-size: clamp(2.1rem, 4.9vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(96deg, var(--gold-lt), var(--gold) 55%, var(--gold-dk));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lede {
    margin-top: 2rem;
    max-width: 52ch;
    font-size: clamp(.98rem, 1.15vw, 1.18rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .72);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.8rem; }

.hero-stats {
    position: relative;
    align-self: end;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(3.5rem, 7vh, 6rem);
    border-top: 1px solid rgba(212, 175, 55, .22);
}

.stat { padding: 1.5rem 1.6rem 2.2rem 0; }

.stat-icon {
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 1.1rem;
    color: var(--gold);
    opacity: .72;
}
.stat + .stat { padding-inline-start: 1.6rem; border-inline-start: 1px solid rgba(212, 175, 55, .16); }

.stat b {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.1vw, 2.15rem);
    font-weight: 500;
    line-height: 1;
    color: var(--gold-lt);
    font-variant-numeric: tabular-nums;
}

.stat span {
    display: block;
    margin-top: .7rem;
    max-width: 27ch;
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5;
}

/* --------------------------------------------------------------
   TICKER
   -------------------------------------------------------------- */
.ticker {
    background: var(--ink);
    border-top: 1px solid rgba(212, 175, 55, .18);
    border-bottom: 1px solid rgba(212, 175, 55, .18);
    overflow: hidden;
    padding: 1.1rem 0;
}

.ticker-run {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    width: max-content;
    animation: run 46s linear infinite;
}

.ticker span {
    font-family: var(--brand);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(242, 223, 168, .62);
    white-space: nowrap;
}

.ticker i { width: 4px; height: 4px; background: var(--gold); opacity: .5; }

@keyframes run { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------
   FAIXAS
   -------------------------------------------------------------- */
.band { position: relative; padding: var(--band-y) 0; }
.band-paper { background: var(--paper); }

/* A faixa dourada fecha a seção encostando na seguinte: sem respiro
   embaixo, senão sobra uma tira clara entre as duas e parece defeito. */
#modelo { padding-bottom: 0; }

/* Skyline de Dubai atrás do bloco de título de "A jornada". A arte do arquivo
   fica na direita e a esquerda é creme vazio — encaixa exatamente onde o
   título termina. Máscara radial para não aparecer o recorte da imagem.
   `isolation` é obrigatório: sem contexto de empilhamento próprio, o
   z-index negativo joga a imagem atrás do fundo da própria seção. */
#jornada { isolation: isolate; }

#jornada::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: clamp(260px, 31vw, 470px);
    background: url('/img/bg-a-jornada.jpg') no-repeat right top / auto 100%;
    /* multiply tira o creme do arquivo e deixa só a tinta da cidade sobre o
       papel; sem isso a arte, clarissima, desaparece no fundo. */
    mix-blend-mode: multiply;
    filter: contrast(1.12) saturate(1.15);
    mask-image: radial-gradient(80% 130% at 74% 26%, #000 34%, transparent 74%);
    -webkit-mask-image: radial-gradient(80% 130% at 74% 26%, #000 34%, transparent 74%);
    pointer-events: none;
}
.band-line  { border-top: 1px solid var(--rule-soft); }
.band-ink   { background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }

/* A medida do título é em `em`, não em `ch` do corpo de texto: assim ela
   cresce junto com a fonte e o título se mantém em duas linhas em qualquer
   largura de tela. O parágrafo tem a própria medida, em .band-sub. */
.band-head { max-width: none; }
.band-head .display { margin-top: 1.5rem; max-width: 17em; }

/* --------------------------------------------------------------
   O MODELO
   -------------------------------------------------------------- */
.lede-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(2.5rem, 6vw, 7rem);
    align-items: start;
}

.lede-side { position: sticky; top: 9rem; }
.lede-side .display { margin-top: 1.5rem; }

.lede-body p {
    font-size: clamp(1rem, 1.12vw, 1.14rem);
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-2);
}
.lede-body p + p { margin-top: 1.5rem; }

.note {
    display: flex;
    gap: 1.1rem;
    margin-top: 2.6rem;
    padding: 1.7rem 1.9rem;
    background: var(--paper-2);
    border-inline-start: 2px solid var(--gold);
}
.note p { font-size: .95rem; line-height: 1.75; color: var(--text); }
.note-mark {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: .6rem;
    background: var(--gold);
    transform: rotate(45deg);
}

/* Faixa dourada: sangra de ponta a ponta da tela e devolve o conteúdo à
   medida do shell (a margem negativa e o padding usam a mesma conta, então
   se anulam). A imagem entra como primeira camada — enquanto o arquivo não
   existir, valem o gradiente e a textura abaixo dela. */
.flow {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 3rem);
    margin-top: clamp(4rem, 8vw, 7rem);
    /* Sangra 100vw e sobra meia barra de rolagem de cada lado; quem corta
       isso é o overflow-x: clip do html, sem gerar rolagem lateral. */
    margin-inline: calc(50% - 50vw);
    padding: clamp(3rem, 5vw, 4.5rem) calc(50vw - 50%) clamp(2.5rem, 4vw, 4rem);
    border-block: 1px solid rgba(122, 95, 26, .3);
    min-height: clamp(250px, 30vw, 430px);
    background:
        url('/img/bg-modelo-dourado.jpg') no-repeat center / cover,
        radial-gradient(130% 120% at 50% -10%, rgba(255, 252, 240, .62), transparent 58%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, .14) 0 1px, transparent 1px 24px),
        linear-gradient(148deg, #dcbb6d 0%, #cba851 32%, #e7d193 58%, #c39c46 100%);
}

/* O mapa das rotas convergindo em Dubai. Vai num pseudo-elemento para poder
   receber máscara e mistura: o creme do arquivo é levemente mais rosado que o
   papel da página, e sem isso o retângulo da imagem aparecia. */
.flow::before {
    content: '';
    position: absolute;
    inset: clamp(1.5rem, 3vw, 3rem) 0 0;
    background: url('/img/bg-mapa.jpg') no-repeat center top / 112% auto;
    /* multiply apaga o creme do arquivo sobre o ouro e preserva pontos e rotas */
    mix-blend-mode: multiply;
    opacity: .9;
    mask-image: radial-gradient(66% 70% at 50% 50%, #000 30%, transparent 74%);
    -webkit-mask-image: radial-gradient(66% 70% at 50% 50%, #000 30%, transparent 74%);
    pointer-events: none;
}

.flow-node { position: relative; }

.flow-node b {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.4vw, 4.2rem);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    line-height: 1;
    color: var(--text);
}
/* Sobre o ouro, o degradê dourado do "22" desapareceria: vira bronze
   escuro, e o destaque passa a ser o filete sob o número. */
.flow-node-strong b {
    color: #4a3607;
    position: relative;
}
.flow-node-strong b::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: -.35rem;
    width: 2.2rem;
    height: 2px;
    background: #7a5f1a;
}
.flow-node b { color: #14203f; }

.flow-node span {
    display: block;
    margin-top: .9rem;
    max-width: 16ch;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(28, 22, 4, .68);
}

/* --------------------------------------------------------------
   DOIS CAMINHOS — For Suppliers / For Buyers
   -------------------------------------------------------------- */
.head-center { text-align: center; }
.head-center .display, .head-center .band-sub { margin-inline: auto; }

.paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2vw, 1.8rem);
    margin-top: clamp(3rem, 5vw, 4.5rem);
}

.path {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(2rem, 3.2vw, 3.2rem);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 8px;
    background-color: #05061a;
    /* A foto entra como camada de fundo: nas duas o assunto está à direita e
       a esquerda é azul chapado, então o texto do card cai justamente sobre a
       parte vazia. O degradê horizontal por cima só garante o contraste. */
    --path-veil: linear-gradient(96deg, rgba(5, 6, 26, .93) 0 32%, rgba(5, 6, 26, .74) 58%, rgba(5, 6, 26, .4) 100%);
    background-image:
        repeating-linear-gradient(115deg, rgba(212, 175, 55, .05) 0 1px, transparent 1px 26px),
        var(--path-veil),
        var(--path-img, none);
    background-size: auto, auto, cover;
    background-position: 0 0, 0 0, var(--path-pos, center right);
    background-repeat: repeat, no-repeat, no-repeat;
    transition: border-color .6s var(--ease), transform .6s var(--ease);
}
.path-sup { --path-img: url('/img/path-industria.jpg'); }
.path-buy { --path-img: url('/img/path-comprador.jpg'); }
.path:hover { border-color: rgba(212, 175, 55, .5); transform: translateY(-4px); }

.path-i {
    font-family: var(--serif);
    font-size: .82rem;
    letter-spacing: .12em;
    color: var(--gold);
}

.path-name {
    margin-top: .8rem;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.path-en {
    margin-top: .35rem;
    font-family: var(--brand);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-lt);
    opacity: .75;
}

.path-lede {
    margin-top: 1.3rem;
    max-width: 46ch;
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, .72);
}

.path-list {
    margin: 1.8rem 0 2.4rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    list-style: none;
}
.path-list li {
    position: relative;
    padding-inline-start: 1.6rem;
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, .66);
}
.path-list li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: .55rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.path-cta { margin-top: auto; align-self: flex-start; }

/* --------------------------------------------------------------
   JORNADA — ETAPAS
   -------------------------------------------------------------- */
/* O bloco todo vira uma peça só: cantos arredondados e sombra, com as
   abas em cima e o painel embaixo dentro do mesmo recorte. */
.steps {
    margin-top: clamp(3rem, 5vw, 4.5rem);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(5, 6, 26, .16);
}

.steps-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    padding: 1.7rem 1.5rem;
    text-align: start;
    /* Inativa: dourado chapado. Ativa: azul, igual ao painel — as duas
       continuam sendo uma peça só, agora com inversão de cor. */
    background: var(--gold-flat);
    color: var(--ink);
    transition: color .5s var(--ease), background-color .5s var(--ease);
}
.step + .step { border-inline-start: 1px solid rgba(5, 6, 26, .16); }
.step:hover { background: #dfbc52; }

.step.is-on,
.step.is-on:hover { background: var(--steps-azul); color: #fff; }

.step::before {
    content: '';
    position: absolute;
    top: -1px;
    inset-inline: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s var(--ease);
}
body.is-ar .step::before { transform-origin: right; }
.step.is-on::before { transform: scaleX(1); }

.step-n {
    font-family: var(--serif);
    font-size: .95rem;
    letter-spacing: .1em;
    color: rgba(5, 6, 26, .5);
    transition: color .5s var(--ease);
}
.step.is-on .step-n { color: var(--gold); }

.step-t {
    font-size: clamp(.9rem, 1.05vw, 1.05rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.005em;
}
.step.is-on .step-t { color: #fff; }

.step-panels { position: relative; }

.step-panel {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(2.2rem, 4vw, 3.6rem);
    background:
        repeating-linear-gradient(115deg, rgba(212, 175, 55, .05) 0 1px, transparent 1px 26px),
        var(--steps-azul);
    color: #fff;
    animation: panelIn .7s var(--ease) both;
}
.step-panel[hidden] { display: none; }

@keyframes panelIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

.step-panel h3 {
    grid-column: 1;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.55vw, 1.5rem);
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: -.01em;
    color: #fff;
}

.step-panel > p {
    grid-column: 1;
    margin-top: -.6rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .66);
}

.ticks {
    grid-column: 2;
    grid-row: 1 / span 3;
    list-style: none;
    align-self: start;
}
.ticks li {
    position: relative;
    padding: 1rem 0 1rem 1.9rem;
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, .78);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.ticks li:first-child { padding-top: 0; }
.ticks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.45rem;
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
}
.ticks li:first-child::before { top: .45rem; }

body.is-ar .ticks li { padding: 1rem 1.9rem 1rem 0; }
body.is-ar .ticks li::before { left: auto; right: 0; }

.video-slot {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .62);
}
.video-slot p { font-size: .82rem; line-height: 1.6; }
.video-play {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, .5);
    border-radius: 50%;
    position: relative;
}
.video-play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 9px solid var(--gold);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.modes {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: grid;
    gap: 1rem;
    align-content: start;
}

.mode {
    padding: 1.6rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
}
.mode-best { border-color: rgba(212, 175, 55, .5); background: rgba(212, 175, 55, .09); }

.mode-tag {
    font-family: var(--brand);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}
.mode-best .mode-tag { color: var(--gold-dk); }

.mode h4 {
    margin: .7rem 0 .8rem;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
}
.mode h4 { color: #fff; }
.mode p { font-size: .9rem; font-weight: 300; line-height: 1.75; color: rgba(255, 255, 255, .62); }

/* --------------------------------------------------------------
   FRENTES DE NEGÓCIOS — mosaico estilo metro
   -------------------------------------------------------------- */
.cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(.5rem, .85vw, .9rem);
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.tile {
    position: relative;
    display: flex;
    align-items: flex-end;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    isolation: isolate;
    border-radius: 6px;
    color: #fff;
    /* Base visível enquanto a foto não existir: azul institucional com
       fiapos dourados. Cada card recorta o brasão de um jeito diferente,
       para os cinco não virarem cópia um do outro. */
    background:
        repeating-linear-gradient(115deg, rgba(212, 175, 55, .06) 0 1px, transparent 1px 26px),
        linear-gradient(150deg, #141f7d 0%, #0a0e33 55%, #05061a 100%);
    transition: transform .7s var(--ease), box-shadow .7s var(--ease);
}

.tile::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .13;
    mix-blend-mode: screen;
    background-repeat: no-repeat;
}
.tile::before { background-image: url('/img/logo-mark.png'); }
.tile:nth-child(1)::before { background-position: right -34% center;  background-size: auto 150%; }
.tile:nth-child(2)::before { background-position: left  -38% top 20%; background-size: auto 190%; }
.tile:nth-child(3)::before { background-position: center bottom -22%; background-size: auto 130%; }
.tile:nth-child(4)::before { background-position: right -26% top -8%; background-size: auto 210%; }
.tile:nth-child(5)::before { background-position: left  -30% center;  background-size: auto 165%; }

.tile-media {
    position: absolute;
    inset: 0;
    background-image: var(--photo);
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease);
}

/* Véu apenas na base, para o texto ficar legível sem escurecer a foto toda */
.tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(3, 4, 15, .95) 0%,
        rgba(3, 4, 15, .78) 20%,
        rgba(3, 4, 15, .3) 44%,
        transparent 64%);
}

.tile:hover { transform: translateY(-4px); box-shadow: 0 26px 50px rgba(5, 6, 26, .28); }
.tile:hover .tile-media { transform: scale(1.06); }

.tile-body {
    position: relative;
    z-index: 1;
    padding: clamp(1.1rem, 1.35vw, 1.6rem);
}

.tile-i {
    font-family: var(--serif);
    font-size: .8rem;
    letter-spacing: .12em;
    color: var(--gold);
    opacity: .8;
}

/* Nome e texto reservam duas linhas cada, mesmo quando ocupam uma só. É o que
   mantém o número na mesma altura em todos os cards, em qualquer idioma —
   sem isso o bloco é ancorado embaixo e o nome mais longo empurra tudo. */
.tile-name {
    margin: .5rem 0 .6rem;
    font-family: var(--serif);
    font-size: clamp(.95rem, 1.18vw, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.01em;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tile-text {
    max-width: 44ch;
    font-size: clamp(.78rem, .85vw, .88rem);
    font-weight: 300;
    line-height: 1.6;
    min-height: 3.2em;
    color: rgba(255, 255, 255, .74);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Logo oficial de cada feira, em caixa de tamanho fixo: os cinco têm
   proporções diferentes e `contain` iguala a presença visual de todos.
   Vai no canto esquerdo, que é a área escura das cinco fotos, sobre uma
   placa discreta — o topo do card não tem véu. */
.tile-fair {
    position: absolute;
    top: clamp(1rem, 1.3vw, 1.4rem);
    inset-inline-start: clamp(1rem, 1.3vw, 1.4rem);
    z-index: 1;
    width: clamp(136px, 11.8vw, 172px);
    height: clamp(62px, 5.4vw, 78px);
    object-fit: contain;
    object-position: left center;
    /* Sem placa: só a sombra, para o logo não sumir num ponto claro da foto */
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .75)) drop-shadow(0 0 3px rgba(0, 0, 0, .5));
}
body.is-ar .tile-fair { object-position: right center; }

/* --------------------------------------------------------------
   EVENTOS E INTELIGÊNCIA
   -------------------------------------------------------------- */
.events {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(.7rem, 1.1vw, 1.1rem);
    margin-top: clamp(3rem, 5vw, 4.5rem);
}

/* Cartão escuro sobre o papel claro: o logo das feiras é branco e só
   respira em fundo escuro — e o contraste dá o ar premium que o cliente pede. */
.event {
    display: flex;
    flex-direction: column;
    padding: clamp(1.4rem, 1.8vw, 1.9rem);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 10px;
    background:
        repeating-linear-gradient(115deg, rgba(212, 175, 55, .06) 0 1px, transparent 1px 24px),
        linear-gradient(158deg, #17225f 0%, #0b1038 52%, #05061a 100%);
    box-shadow: 0 18px 40px rgba(5, 6, 26, .12);
    transition: transform .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
}
.event:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, .5);
    box-shadow: 0 26px 54px rgba(5, 6, 26, .22);
}

.event-logo {
    display: flex;
    align-items: center;
    height: clamp(42px, 3.6vw, 54px);
}
.event-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}
body.is-ar .event-logo img { object-position: right center; }

.event-when {
    margin-top: clamp(1.3rem, 1.8vw, 1.7rem);
    padding-top: clamp(1.1rem, 1.5vw, 1.4rem);
    border-top: 1px solid rgba(212, 175, 55, .2);
    font-family: var(--brand);
    font-size: .61rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}

.event-where {
    margin-top: .6rem;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .03em;
    color: rgba(255, 255, 255, .82);
}

/* Sem a linha da data, a régua dourada passa para a linha do local, para
   o card não perder o corte que os outros quatro têm. */
.event-sem-data .event-where {
    margin-top: clamp(1.3rem, 1.8vw, 1.7rem);
    padding-top: clamp(1.1rem, 1.5vw, 1.4rem);
    border-top: 1px solid rgba(212, 175, 55, .2);
}

.event-what {
    margin-top: .9rem;
    font-size: .83rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, .58);
}

.intel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    margin-top: clamp(3rem, 5vw, 4rem);
    padding-top: clamp(2.5rem, 4vw, 3.5rem);
    border-top: 1px solid var(--rule-soft);
}

.intel-title {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 600;
    color: var(--text);
    max-width: 12ch;
}

.intel-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem 2rem;
    list-style: none;
}
.intel-list li {
    position: relative;
    padding-inline-start: 1.5rem;
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-2);
}
.intel-list li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: .5rem;
    width: 6px;
    height: 6px;
    background: var(--gold-dk);
    transform: rotate(45deg);
}

.intel-note {
    grid-column: 2;
    margin-top: 1.6rem;
    padding: 1rem 1.2rem;
    border-inline-start: 2px solid var(--gold-dk);
    background: var(--paper-2);
    font-size: .82rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-2);
}

/* --------------------------------------------------------------
   CONFIANÇA E GOVERNANÇA
   -------------------------------------------------------------- */
.trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem) clamp(2rem, 5vw, 5rem);
    margin-top: clamp(3rem, 5vw, 4.5rem);
}

.trust-item {
    padding-top: 1.8rem;
    border-top: 1px solid rgba(212, 175, 55, .3);
    transition: border-color .5s var(--ease);
}
.trust-item:hover { border-top-color: var(--gold); }

.trust-ico {
    display: block;
    width: 46px;
    height: 46px;
    margin-bottom: 1.2rem;
    color: var(--gold);
    opacity: .78;
    transition: opacity .5s var(--ease), transform .5s var(--ease), filter .5s var(--ease);
}
.trust-item:hover .trust-ico {
    opacity: 1;
    transform: translateY(-3px);
    filter: drop-shadow(0 6px 16px rgba(212, 175, 55, .35));
}

.trust-name {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 600;
    color: #fff;
}

.trust-text {
    margin-top: 1rem;
    max-width: 54ch;
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .68);
}

/* --------------------------------------------------------------
   CANDIDATURA — formulário de qualificação
   -------------------------------------------------------------- */
.qwrap {
    max-width: 980px;
    margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
}

.qswitch {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-bottom: clamp(1.5rem, 2.5vw, 2.2rem);
}

.qsw {
    padding: .85rem 1.6rem;
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-family: var(--brand);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-2);
    background: transparent;
    transition: var(--slow);
}
.qsw:hover { color: var(--text); border-color: var(--gold-dk); }
.qsw.is-on {
    color: var(--ink);
    background: var(--gold-flat);
    border-color: transparent;
}

.qform, .qdone {
    padding: clamp(1.8rem, 3vw, 2.8rem);
    border: 1px solid var(--rule);
    border-radius: 10px;
    background: var(--paper-2);
}

.qhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.4rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid var(--rule-soft);
}

.qcount {
    font-family: var(--brand);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-2);
}
.qcount b { color: var(--gold-dk); }

.qdots { display: flex; gap: .4rem; list-style: none; }
.qdot {
    width: 30px;
    height: 3px;
    background: var(--rule);
    transition: background-color .5s var(--ease);
}
.qdot.is-on { background: var(--gold-dk); }

.qpane { display: none; }
.qpane.is-on { display: block; animation: panelIn .5s var(--ease) both; }

.qpane-title {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.6rem;
}

.qgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.4rem;
}

.qfield { display: flex; flex-direction: column; gap: .5rem; }
.qfield-wide { grid-column: 1 / -1; }

.qlab {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text-2);
}
.qopt {
    font-style: normal;
    font-weight: 400;
    text-transform: lowercase;
    opacity: .6;
}

.qfield input,
.qfield select,
.qfield textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid var(--rule);
    border-radius: 6px;
    background: #fff;
    font-family: var(--sans);
    font-size: .92rem;
    color: var(--text);
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.qfield textarea { resize: vertical; min-height: 84px; }

.qfield input:focus,
.qfield select:focus,
.qfield textarea:focus {
    outline: none;
    border-color: var(--gold-dk);
    box-shadow: 0 0 0 3px rgba(176, 141, 42, .14);
}
.qfield input.is-bad,
.qfield select.is-bad,
.qfield textarea.is-bad,
fieldset.is-bad { border-color: #b4442f; }

fieldset.qfield { border: 0; padding: 0; }
fieldset.qfield legend { padding: 0; margin-bottom: .7rem; }

.qopts { display: flex; flex-wrap: wrap; gap: .5rem; }
.qopt-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .9rem;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: #fff;
    font-size: .8rem;
    color: var(--text-2);
    cursor: pointer;
    transition: var(--slow);
}
.qopt-item:hover { border-color: var(--gold-dk); }
.qopt-item input { accent-color: #8d6c16; }
.qopt-item:has(input:checked) {
    border-color: var(--gold-dk);
    background: rgba(212, 175, 55, .1);
    color: var(--text);
}

.qconsent {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: 1rem 1.1rem;
    border-inline-start: 2px solid var(--gold-dk);
    background: rgba(212, 175, 55, .07);
    font-size: .82rem;
    line-height: 1.6;
    color: var(--text-2);
    cursor: pointer;
}
.qconsent input { margin-top: .2rem; accent-color: #8d6c16; }

.qerro {
    margin-top: 1.2rem;
    padding: .8rem 1rem;
    border-inline-start: 2px solid #b4442f;
    background: rgba(180, 68, 47, .07);
    font-size: .82rem;
    color: #8d2f1e;
}

.qnav {
    display: flex;
    gap: .8rem;
    margin-top: 1.8rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--rule-soft);
}
.qnav .btn { padding: .95rem 2rem; }
.qnext, .qsend { margin-inline-start: auto; }

/* Confirmação */
.qdone { text-align: center; }

.qdone-mark {
    display: block;
    width: 46px;
    height: 46px;
    margin: 0 auto 1.4rem;
    border: 1px solid var(--gold-dk);
    border-radius: 50%;
    position: relative;
}
.qdone-mark::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 8px;
    height: 15px;
    border-right: 1.5px solid var(--gold-dk);
    border-bottom: 1.5px solid var(--gold-dk);
    transform: translate(-50%, -50%) rotate(45deg);
}

.qdone-title {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 600;
    color: var(--text);
}
.qdone-sub {
    max-width: 52ch;
    margin: 1rem auto 0;
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-2);
}
.qproto {
    margin-top: 1.8rem;
    font-family: var(--brand);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-2);
}
.qproto b {
    display: block;
    margin-top: .5rem;
    font-family: var(--serif);
    font-size: 1.6rem;
    letter-spacing: .08em;
    color: var(--gold-dk);
}
.qsla {
    margin-top: 1rem;
    font-size: .78rem;
    color: var(--text-2);
    opacity: .8;
}
.qdone .btn { margin-top: 2rem; }

/* --------------------------------------------------------------
   PRESENÇA GLOBAL
   -------------------------------------------------------------- */
.band-ink::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(60% 70% at 50% 0%, rgba(27, 43, 168, .5), transparent 70%),
        radial-gradient(40% 50% at 85% 90%, rgba(212, 175, 55, .1), transparent 70%);
}

/* Mapa noturno no topo da seção. `aspect-ratio` com a proporção do arquivo
   (2092x941) faz a caixa ter exatamente a altura natural da imagem na largura
   da tela: ela não é esticada nem cortada, e o que sobra da seção fica no
   azul-tinta. A máscara dissolve a base, onde entram os cartões. */
#mundo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    aspect-ratio: 2092 / 941;
    /* véu escuro leve sobre o mapa: primeira camada = por cima da imagem */
    background:
        linear-gradient(rgba(3, 4, 15, .32), rgba(3, 4, 15, .32)),
        url('/img/bg-presenca-global.jpg') no-repeat center top / 100% auto;
    opacity: .55;
    mask-image: linear-gradient(to bottom, #000 58%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent);
    pointer-events: none;
}

/* Presença global e Mundo árabe têm o bloco de título centralizado */
#mundo .band-head,
#arabe .band-head { text-align: center; }
#mundo .band-head .display,
#arabe .band-head .display,
#arabe .band-head .band-sub { margin-inline: auto; }

.meridian { position: relative; margin-top: clamp(3.5rem, 6vw, 6rem); }

.meridian-line {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: clamp(120px, 14vw, 190px);
}

.offices {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    height: clamp(120px, 14vw, 190px);
    align-items: start;
}

.office {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    color: rgba(255, 255, 255, .5);
    transition: color .5s var(--ease), transform .6s var(--ease);
}
.office:nth-child(1),
.office:nth-child(4) { margin-top: clamp(40px, 6.1vw, 88px); }
.office:nth-child(2),
.office:nth-child(3) { margin-top: 0; }

.office:hover, .office.is-on { color: #fff; }

/* A bandeira é o marcador da cidade sobre a curva */
.office-flag {
    width: 46px;
    height: auto;
    border-radius: 3px;
    outline: 1px solid rgba(212, 175, 55, .4);
    outline-offset: -1px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .5);
    opacity: .82;
    margin-bottom: 1rem;
    transition: var(--slow);
}
.office.is-on .office-flag,
.office:hover .office-flag {
    opacity: 1;
    outline-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .14), 0 10px 26px rgba(0, 0, 0, .55);
}

.office-city {
    font-family: var(--serif);
    font-size: clamp(.95rem, 1.15vw, 1.15rem);
    font-weight: 500;
    letter-spacing: -.008em;
}

/* Relógio antes da hora. Vai em pseudo-elemento porque o JS reescreve o
   textContent do .office-time a cada minuto — um <svg> filho seria apagado.
   A máscara faz o ícone herdar a cor do texto. */
.office-time::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-inline-end: .38rem;
    vertical-align: -1px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.2'%20stroke-linecap='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='9'/%3E%3Cpath%20d='M12%207.4V12l3.3%202'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.2'%20stroke-linecap='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='9'/%3E%3Cpath%20d='M12%207.4V12l3.3%202'/%3E%3C/svg%3E") no-repeat center / contain;
}

.office-time {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
    color: rgba(242, 223, 168, .55);
    font-variant-numeric: tabular-nums;
}

.office-cards { margin-top: clamp(2rem, 4vw, 3.5rem); }

.office-card {
    max-width: 64ch;
    margin-inline: auto;
    text-align: center;
    padding-top: clamp(2rem, 3vw, 2.8rem);
    border-top: 1px solid rgba(212, 175, 55, .25);
    animation: panelIn .7s var(--ease) both;
}
.office-card[hidden] { display: none; }

.office-role {
    font-family: var(--brand);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
}

.office-card h3 {
    margin: 1rem 0 1rem;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

.office-card p {
    font-size: clamp(.95rem, 1.08vw, 1.06rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .66);
}

/* --------------------------------------------------------------
   MUNDO ÁRABE
   -------------------------------------------------------------- */
.facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: clamp(3rem, 5vw, 4.5rem);
    background: var(--rule-soft);
    border: 1px solid var(--rule-soft);
}

.fact {
    padding: clamp(1.8rem, 3vw, 2.6rem);
    background-color: var(--paper);
    /* Cada arte já vem com o desenho à direita e creme liso à esquerda, que é
       onde ficam o número e o texto. O véu horizontal só reforça isso — sem
       ele a ilustração subiria por baixo da primeira linha do parágrafo. */
    background-image:
        linear-gradient(96deg, var(--paper) 0 30%, rgba(250, 248, 243, .82) 58%, rgba(250, 248, 243, .06) 100%),
        var(--fact-img, none);
    background-size: auto, cover;
    background-position: 0 0, center right;
    background-repeat: no-repeat, no-repeat;
    transition: background-color .6s var(--ease);
}
.fact:hover { background-color: var(--paper-2); }

.fact-1 { --fact-img: url('/img/fato-1.jpg'); }
.fact-2 { --fact-img: url('/img/fato-2.jpg'); }
.fact-3 { --fact-img: url('/img/fato-3.jpg'); }
.fact-4 { --fact-img: url('/img/fato-4.jpg'); }

.fact b {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.1vw, 2.9rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--text);
}
.fact b small {
    font-size: .5em;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--gold-dk);
    margin-inline-start: .12em;
}

.fact p {
    margin-top: 1.4rem;
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-2);
}

.arabe-note {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.arabe-note p {
    max-width: 72ch;
    font-size: clamp(.95rem, 1.08vw, 1.06rem);
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-2);
}

/* --------------------------------------------------------------
   CHAMADA FINAL
   -------------------------------------------------------------- */
.band-cta { text-align: center; }
.cta-glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 180%;
    z-index: -1;
    background: radial-gradient(45% 40% at 50% 30%, rgba(212, 175, 55, .16), transparent 70%);
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }

.cta-title {
    max-width: 34ch;
    margin-top: 1.8rem;
    font-size: clamp(1.6rem, 2.9vw, 3rem);
    font-weight: 500;
    line-height: 1.25;
}

.cta-sub {
    max-width: 56ch;
    margin-top: 2rem;
    font-size: clamp(.98rem, 1.1vw, 1.12rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .66);
}

.band-cta .hero-actions { justify-content: center; }

.cta-fine {
    margin-top: 3rem;
    max-width: 60ch;
    font-size: .74rem;
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 1.7;
    color: rgba(255, 255, 255, .38);
}


/* --------------------------------------------------------------
   ÍCONES — um sprite para hero, menu e rodapé
   -------------------------------------------------------------- */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* No topo o ícone vai ACIMA do rótulo: empilhado ele não consome largura
   nenhuma na barra, que já estava no limite, e nem altura — a marca ao lado
   é mais alta que o item de menu. */
.nav-ico {
    display: block;
    width: 17px;
    height: 17px;
    color: var(--gold);
    opacity: .6;
    transition: opacity .4s var(--ease);
}
.nav a:hover .nav-ico { opacity: 1; }

.foot-ico {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--gold);
    opacity: .6;
    transition: opacity .4s var(--ease);
}
.foot-col a { display: flex; align-items: flex-start; gap: .6rem; }
.foot-col a .foot-ico { margin-top: .3rem; }
.foot-col a:hover .foot-ico { opacity: 1; }
.foot-col p.foot-hint:has(.foot-ico) { display: flex; align-items: flex-start; gap: .6rem; }
.foot-col p.foot-hint .foot-ico { margin-top: .25rem; }

.socials {
    display: flex;
    gap: .7rem;
    margin-top: 1.8rem;
}

.social {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--slow);
}
.social svg { width: 17px; height: 17px; }
.social:hover {
    color: var(--ink);
    background: var(--gold-flat);
    border-color: transparent;
    transform: translateY(-3px);
}

.foot-name {
    margin-top: 1.1rem;
    font-family: var(--brand);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .19em;
    background: var(--gold-metal);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.foot-slogan { margin-top: .7rem; }

/* --------------------------------------------------------------
   RODAPÉ
   -------------------------------------------------------------- */
.foot {
    background: #03040f;
    color: rgba(255, 255, 255, .6);
    padding: clamp(4rem, 7vw, 7rem) 0 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, .18);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
}

.foot-mark { width: 56px; }
.foot-slogan {
    margin-top: 1.4rem;
    font-family: var(--serif);
    font-size: 1.02rem;
    font-style: italic;
    color: var(--gold-lt);
}
.foot-ar { margin-top: .6rem; font-family: var(--ar); font-size: .72rem; color: rgba(255, 255, 255, .4); }

.foot-col { display: flex; flex-direction: column; align-items: start; gap: .85rem; }

.foot-col h4 {
    font-family: var(--brand);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.foot-col a {
    font-family: var(--serif);
    font-size: .88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .6);
    transition: color .4s var(--ease);
}
.foot-col a:hover { color: var(--gold-lt); }

.foot-hint { font-size: .76rem; font-weight: 300; line-height: 1.7; color: rgba(255, 255, 255, .38); }

.foot-base {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: clamp(3rem, 5vw, 5rem);
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.foot-legal, .foot-copy { font-size: .72rem; font-weight: 300; color: rgba(255, 255, 255, .35); }
.foot-legal { max-width: 78ch; }

/* --------------------------------------------------------------
   WHATSAPP
   -------------------------------------------------------------- */
.wa {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 80;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 14px 34px rgba(37, 211, 102, .35);
    transition: transform .45s var(--ease), background-color .4s;
}
.wa svg { width: 27px; height: 27px; }
.wa:hover { transform: translateY(-4px) scale(1.04); background: #1fb457; }
body.is-ar .wa { right: auto; left: 2rem; }

/* --------------------------------------------------------------
   REVELAÇÃO NO SCROLL
   -------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------
   RESPONSIVO
   -------------------------------------------------------------- */
@media (max-width: 1180px) {
    .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lede-grid { grid-template-columns: 1fr; }
    .lede-side { position: static; }
    .step-panel { grid-template-columns: 1fr; }
    .ticks, .modes { grid-column: 1; grid-row: auto; }
    .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
    .foot-brand { grid-column: 1 / -1; }
}

/* O cabeçalho troca para o menu de tela cheia antes do resto do layout:
   com sete itens, mais idiomas e o botão, a barra só cabe acima de 1420px — medido, não chutado. */
@media (max-width: 1420px) {
    .nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: 1.35rem;
        padding: 6rem 8vw 3rem;
        overflow-y: auto;
        background: rgba(5, 6, 26, .97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateY(-101%);
        transition: transform .7s var(--ease);
        margin: 0;
    }
    .nav.is-open { transform: none; }
    .nav a { font-family: var(--serif); font-size: 1.55rem; color: #fff; }
    .nav a { flex-direction: row; align-items: center; gap: 1rem; text-transform: none; letter-spacing: 0; }
    .nav a::after { display: none; }
    .nav-ico { width: 26px; height: 26px; opacity: .75; flex-shrink: 0; }
    .masthead.is-stuck .nav a { color: #fff; }

    .burger { display: block; color: #fff; }
    .nav.is-open ~ .masthead-actions .burger { color: #fff; }

    .masthead-actions { margin-inline-start: auto; }
    .masthead-actions .btn { display: none; }

    /* Na barra ficam só a marca e o botão do menu */
    .masthead-actions .langs { display: none; }
    .langs-menu { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
    .langs-menu .lang { padding: .7rem 1.2rem; font-size: .8rem; border: 1px solid rgba(212, 175, 55, .3); border-radius: 999px; }
    .langs-menu .lang.is-on { color: var(--ink); background: var(--gold-flat); border-color: transparent; }

}

@media (max-width: 900px) {
    :root { --shell: 90vw; }

    .lockup-mark { width: 54px; }
    .masthead.is-stuck .lockup-mark { width: 46px; }
    .lockup-text { flex-direction: column; align-items: flex-start; gap: .2rem; }
    .lockup-text strong { font-size: .92rem; letter-spacing: .14em; }
    .lockup-ar { font-size: .7rem; padding-left: 0; padding-right: 0; }
    .lockup-ar::before { display: none; }

    /* Rodapé todo centralizado no celular */
    .foot-grid { text-align: center; justify-items: center; }
    .foot-brand { display: flex; flex-direction: column; align-items: center; }
    .socials { justify-content: center; }
    .foot-col { align-items: center; gap: .25rem; }
    .foot-col a { padding: .55rem 0; }
    .foot-col h4 { margin-bottom: .3rem; }
    .foot-hint { text-align: center; }
    .foot-base { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
    .foot-legal { max-width: none; }
    .foot-ar { direction: rtl; }
    .link-gold { padding: .7rem 0; }
    .cta-fine { color: rgba(255, 255, 255, .52); }

    .hero { padding-top: 8rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stat { padding: 1.4rem 1rem 1.6rem 0; }
    .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid rgba(212, 175, 55, .16); }
    .stat:nth-child(3) { padding-inline-start: 0; border-inline-start: 0; }

    /* As etapas viram acordeão: cada painel abre logo abaixo da própria
       etapa. Em coluna única o padrão de abas desconectava tudo — o toque
       na etapa 03 abria conteúdo no fim da lista, fora da tela.
       `display: contents` faz botões e painéis virarem irmãos, e a
       propriedade `order` intercala os dois na ordem certa. */
    .steps { display: flex; flex-direction: column; }
    .steps-rail, .step-panels { display: contents; }

    .steps-rail .step:nth-child(1)        { order: 1; }
    .step-panels .step-panel:nth-child(1) { order: 2; }
    .steps-rail .step:nth-child(2)        { order: 3; }
    .step-panels .step-panel:nth-child(2) { order: 4; }
    .steps-rail .step:nth-child(3)        { order: 5; }
    .step-panels .step-panel:nth-child(3) { order: 6; }
    .steps-rail .step:nth-child(4)        { order: 7; }
    .step-panels .step-panel:nth-child(4) { order: 8; }

    .step {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1.35rem 1.3rem;
        border-top: 1px solid rgba(5, 6, 26, .16);
        border-inline-start: 0 !important;
    }
    .step.is-on { border-top-color: rgba(212, 175, 55, .3); }
    .step-t { font-size: 1rem; line-height: 1.35; }
    .step-n { font-size: .95rem; }

    /* Seta de abrir e fechar */
    .step::after {
        content: '';
        flex-shrink: 0;
        width: 8px;
        height: 8px;
        margin-inline-start: auto;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: translateY(-2px) rotate(45deg);
        opacity: .5;
        transition: transform .5s var(--ease), opacity .5s var(--ease);
    }
    .step.is-on::after { transform: translateY(2px) rotate(-135deg); opacity: 1; }

    /* O painel continua o bloco da etapa aberta */
    .step-panel { padding: .2rem 1.3rem 2.2rem; }

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

    /* Empilhado o skyline fica atrás do título: menor e mais suave, só como
       textura no alto da seção. */
    #jornada::before {
        height: clamp(140px, 30vw, 210px);
        opacity: .5;
    }

    /* Empilhado: os números em cima e o mapa em faixa cheia embaixo, senão
       ele fica comprimido entre os dois e vira borrão. */
    .flow {
        min-height: 0;
        padding-bottom: clamp(180px, 50vw, 250px);
    }
    .flow::before {
        inset: auto 0 0;
        height: clamp(180px, 50vw, 250px);
        background-size: 150% auto;
        mask-image: radial-gradient(74% 82% at 50% 50%, #000 34%, transparent 78%);
        -webkit-mask-image: radial-gradient(74% 82% at 50% 50%, #000 34%, transparent 78%);
    }

    .paths { grid-template-columns: 1fr; }
    /* Em coluna única o card fica estreito e alto: o `cover` amplia muito a foto
       e ela passaria por baixo da lista. Aqui o véu vira vertical e a imagem
       recua para o pé do card, onde não disputa com o texto. */
    .path {
        --path-veil: linear-gradient(180deg, rgba(5, 6, 26, .95) 0 58%, rgba(5, 6, 26, .82) 80%, rgba(5, 6, 26, .62) 100%);
        --path-pos: right bottom;
    }
    .events { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .intel { grid-template-columns: 1fr; }
    .intel-note { grid-column: 1; }
    .trust { grid-template-columns: 1fr; }


    .qgrid { grid-template-columns: 1fr; }
    .qswitch { flex-direction: column; }
    .qnav { flex-wrap: wrap; }
    .qnav .btn { flex: 1 1 auto; }

    .facts { grid-template-columns: 1fr 1fr; }
    /* Cada cidade vira um cartão: em 2x2 solto, bandeira, nome e hora
       flutuavam sem estrutura e a cidade ativa não se distinguia. */
    .offices {
        grid-template-columns: 1fr 1fr;
        height: auto;
        gap: .6rem;
    }
    .office {
        margin-top: 0 !important;
        gap: .35rem;
        padding: 1.2rem .9rem 1.3rem;
        border: 1px solid rgba(212, 175, 55, .16);
        border-radius: 8px;
        background: rgba(255, 255, 255, .03);
    }
    .office.is-on {
        border-color: rgba(212, 175, 55, .5);
        background: rgba(212, 175, 55, .07);
    }
    .office-flag { width: 40px; margin-bottom: .65rem; }
    .office-city { font-size: .98rem; }
    .office-card { margin-top: 1.5rem; }
    /* o rótulo quebrava deixando o "·" sozinho no fim da linha */
    .office-role { font-size: .6rem; letter-spacing: .16em; }

    /* O mapa é o assunto da seção: no celular ganha altura própria em vez
       da fatia fina que sobrava da proporção do arquivo. */
    #mundo::after {
        aspect-ratio: auto;
        height: clamp(240px, 66vw, 320px);
        background-size: 190% auto;
        background-position: 54% top;
    }
    .office { margin-top: 0 !important; }
    .meridian-line { display: none; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .hero-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
    /* recorte estreito: joga a torre para a direita, longe do texto */
    .hero-slide { background-position: 80% center; }
    /* sobrelinha em uma linha só */
    .eyebrow { font-size: .58rem; letter-spacing: .19em; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    /* 2x2: quatro linhas empilhadas comiam meia tela */
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stat { padding: 1.15rem 1rem 1.25rem 0; border-inline-start: 0; }
    .stat + .stat { padding-inline-start: 0; border-inline-start: 0; }
    .stat:nth-child(2n) { padding-inline: 1rem 0; border-inline-start: 1px solid rgba(212, 175, 55, .16); }
    .stat:nth-child(n+3) { border-top: 1px solid rgba(212, 175, 55, .16); }
    .stat span { max-width: 18ch; font-size: .63rem; letter-spacing: .08em; }
    .stat-icon { width: 24px; height: 24px; margin-bottom: .8rem; }

    /* Card em paisagem: nome e texto sobem de corpo para leitura no celular */
    .tile-name { font-size: 1.12rem; }
    .tile-text { font-size: .87rem; min-height: 0; -webkit-line-clamp: 3; }
    .tile-body { padding: 1.3rem 1.4rem; }
    .facts { grid-template-columns: 1fr; }
    .cards { grid-template-columns: 1fr; }
    .events { grid-template-columns: 1fr; }
    .intel-list { grid-template-columns: 1fr; }

    .tile { aspect-ratio: 4 / 3; }
    .foot-grid { grid-template-columns: 1fr; }
    .wa { right: 1.1rem; bottom: 1.1rem; }
    body.is-ar .wa { left: 1.1rem; }
}

/* --------------------------------------------------------------
   MOVIMENTO REDUZIDO
   -------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .ticker-run { animation: none; }
    .step-panel, .office-card { animation: none; }
    .hero-slide { transition: none; }
    .hero-dot.is-on::after { animation: none; transform: scaleX(1); }
    .hero-copy { transition: none; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
