/*
 * Juliana Graciano: estilos do tema.
 *
 * Variáveis de cor no CSS crítico (functions.php, jg_critical_css) e
 * repetidas aqui para o arquivo funcionar sozinho. Paleta tirada da
 * identidade atual: salmão do logo, azul petróleo, azul claro, pêssego.
 */

:root {
	--jg-ink: #24323E;
	--jg-petrol: #4E667A;
	--jg-blue: #6A8AA6;
	--jg-sky: #9CC1D9;
	--jg-salmon: #E8915F;
	--jg-salmon-deep: #B9592C;
	--jg-peach: #E9C2AB;
	--jg-sand: #F6E6DA;
	--jg-cream: #FCF7F2;
	--jg-white: #fff;
	--jg-text: #4A5561;
	--jg-shell: 1160px;
	--jg-gutter: clamp(1rem, 4vw, 2.5rem);
	--jg-radius: 22px;
	--jg-sec: clamp(4rem, 3rem + 5vw, 7.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--jg-cream); color: var(--jg-text); font-family: "Chivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 1.0625rem; line-height: 1.7; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { color: var(--jg-ink); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); line-height: 1.15; margin: 0 0 .6em; }
h3 { font-size: 1.25rem; line-height: 1.3; margin: 0 0 .35em; }
p { margin: 0 0 1.1em; }
a { color: var(--jg-salmon-deep); }
:focus-visible { outline: 3px solid var(--jg-salmon); outline-offset: 3px; border-radius: 6px; }

.jg-shell { width: 100%; max-width: var(--jg-shell); margin-inline: auto; padding-inline: var(--jg-gutter); }
.jg-skip { position: absolute; left: -9999px; top: 0; background: var(--jg-ink); color: #fff; padding: .6rem 1rem; z-index: 100; }
.jg-skip:focus { left: 1rem; top: 1rem; }
.jg-center { text-align: center; }

/* Realce tipográfico ({{trecho}}) */
.jg-hl { background: linear-gradient(transparent 58%, rgba(232, 145, 95, .38) 58%); color: inherit; padding: 0 .08em; font-weight: 700; }

/* Eyebrow */
.jg-eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--jg-salmon-deep); margin: 0 0 1.1rem; }
.jg-eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.jg-eyebrow--light { color: var(--jg-peach); }

/* Botão */
.jg-btn { display: inline-flex; align-items: center; justify-content: center; gap: .7rem; min-height: 56px; padding: .9rem 1.6rem; border-radius: 999px; background: var(--jg-salmon-deep); color: #fff; font-weight: 700; font-size: .95rem; letter-spacing: .02em; text-decoration: none; text-align: center; box-shadow: 0 10px 24px -12px rgba(185, 89, 44, .7); transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease; }
.jg-btn:hover { background: #9E4A22; transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(185, 89, 44, .8); }
.jg-btn svg { flex: none; transition: transform .2s ease; }
.jg-btn:hover svg { transform: translateX(3px); }
.jg-btn--light { background: var(--jg-salmon); color: var(--jg-ink); box-shadow: none; }
.jg-btn--light:hover { background: var(--jg-peach); }
.jg-btn--sm { min-height: 44px; padding: .55rem 1.15rem; font-size: .85rem; }

/* Header: transparente sobre o hero escuro, ganha fundo ao rolar */
.jg-header { position: fixed; inset: 0 0 auto; z-index: 50; background: transparent; border-bottom: 1px solid transparent; transition: background-color .3s ease, border-color .3s ease; }
.jg-header.is-scrolled { background: rgba(28, 40, 49, .88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: rgba(255, 255, 255, .08); }
.jg-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 84px; max-width: 1280px; }
.jg-logo img { width: auto; height: 52px; }
/* CTA do topo: pulso leve em anel, para chamar o olho sem distrair a leitura. */
.jg-header .jg-btn { position: relative; animation: jg-cta-pulso 2.6s ease-out infinite; }
.jg-header .jg-btn:hover { animation-play-state: paused; }
@keyframes jg-cta-pulso {
	0% { box-shadow: 0 0 0 0 rgba(232, 145, 95, .55), 0 10px 24px -12px rgba(185, 89, 44, .7); }
	70% { box-shadow: 0 0 0 12px rgba(232, 145, 95, 0), 0 10px 24px -12px rgba(185, 89, 44, .7); }
	100% { box-shadow: 0 0 0 0 rgba(232, 145, 95, 0), 0 10px 24px -12px rgba(185, 89, 44, .7); }
}

/* Hero: painel escuro com o símbolo da marca desenhado em linha */
.jg-hero { position: relative; min-height: min(100svh, 980px); display: flex; flex-direction: column; justify-content: center; padding: calc(84px + clamp(2rem, 1rem + 4vw, 4.5rem)) 0 clamp(1.5rem, 1rem + 2vw, 2.5rem); overflow: hidden; background: var(--jg-ink); color: rgba(255, 255, 255, .78); isolation: isolate; }
.jg-hero__bg { position: absolute; inset: 0; z-index: -1; background:
	radial-gradient(60% 70% at 85% 30%, rgba(232, 145, 95, .30), transparent 60%),
	radial-gradient(50% 60% at 10% 100%, rgba(106, 138, 166, .45), transparent 65%),
	linear-gradient(160deg, #2B3B49 0%, #1C2831 100%); }
.jg-hero__bg::after { content: ""; position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%); }
.jg-hero .jg-shell { max-width: 1280px; }
.jg-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }

.jg-hero__pill { display: inline-flex; align-items: center; gap: .6rem; margin: 0 0 1.6rem; padding: .45rem 1rem .45rem .75rem; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); color: var(--jg-peach); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.jg-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--jg-salmon); box-shadow: 0 0 0 0 rgba(232, 145, 95, .7); animation: jg-pulse 2.2s infinite; }
@keyframes jg-pulse { 70% { box-shadow: 0 0 0 10px rgba(232, 145, 95, 0); } 100% { box-shadow: 0 0 0 0 rgba(232, 145, 95, 0); } }

.jg-hero h1 { color: #fff; font-size: clamp(2rem, 1.1rem + 2.2vw, 3.2rem); line-height: 1.1; letter-spacing: -.035em; margin: 0 0 .55em; font-weight: 800; }
.jg-hero h1 .jg-hl { background: none; padding: 0; color: var(--jg-salmon); font-weight: inherit; position: relative; white-space: nowrap; }
.jg-hero h1 .jg-hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.08em; height: .12em; border-radius: 99px; background: var(--jg-salmon); transform-origin: left; transform: scaleX(0); animation: jg-risco .9s .5s cubic-bezier(.65, 0, .35, 1) forwards; }
@keyframes jg-risco { to { transform: scaleX(1); } }
.jg-lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); max-width: 34em; margin-bottom: 2.2rem; }
.jg-hero .jg-lead .jg-hl { color: #fff; background: linear-gradient(transparent 62%, rgba(232, 145, 95, .45) 62%); }
.jg-hero__acoes { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.jg-hero .jg-btn--light { box-shadow: 0 18px 40px -16px rgba(232, 145, 95, .8); }
.jg-hero__link { color: rgba(255, 255, 255, .8); text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, .3); padding-bottom: 2px; }
.jg-hero__link:hover { color: #fff; border-color: var(--jg-salmon); }

/* Visual */
.jg-hero__visual { position: relative; aspect-ratio: 1; width: 100%; max-width: 440px; justify-self: center; }
.jg-orbita { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.jg-orbita__fios ellipse, .jg-orbita__folhas path { stroke: var(--jg-peach); stroke-width: 1.6; stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: jg-desenha 2.6s cubic-bezier(.45, 0, .2, 1) forwards; }
.jg-orbita__fios ellipse:nth-child(2) { animation-delay: .15s; stroke: var(--jg-salmon); }
.jg-orbita__fios ellipse:nth-child(3) { animation-delay: .3s; opacity: .7; }
.jg-orbita__fios ellipse:nth-child(4) { animation-delay: .45s; stroke: var(--jg-sky); opacity: .6; }
.jg-orbita__fios ellipse:nth-child(5) { animation-delay: .6s; opacity: .5; }
.jg-orbita__fios ellipse:nth-child(6) { animation-delay: .75s; stroke: var(--jg-salmon); opacity: .8; }
.jg-orbita__folhas path { animation-delay: 1.6s; animation-duration: 1.4s; stroke: var(--jg-salmon); stroke-width: 2; }
@keyframes jg-desenha { to { stroke-dashoffset: 0; } }
@keyframes jg-gira { to { transform: rotate(360deg); } }

.jg-hero__centro { position: absolute; inset: 31%; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 1rem; opacity: 0; animation: jg-surge .8s 1.2s ease forwards; }
.jg-hero__centro strong { font-size: clamp(2.2rem, 1.4rem + 2.4vw, 3.4rem); line-height: 1; color: #fff; font-weight: 800; }
.jg-hero__centro span { font-size: .78rem; line-height: 1.35; color: rgba(255, 255, 255, .7); margin-top: .4rem; max-width: 12ch; }
@keyframes jg-surge { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: none; } }

.jg-chip-f { position: absolute; display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .95rem; border-radius: 999px; background: rgba(252, 247, 242, .96); color: var(--jg-ink); font-size: .8rem; font-weight: 700; white-space: nowrap; box-shadow: 0 16px 34px -16px rgba(0, 0, 0, .6); opacity: 0; animation: jg-surge .6s ease forwards, jg-flutua 6s ease-in-out infinite; }
.jg-chip-f::before { content: "−"; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--jg-salmon); color: #fff; font-size: .8rem; line-height: 1; }
.jg-chip-f--1 { top: 6%; left: 2%; animation-delay: 1.5s, 0s; }
.jg-chip-f--2 { top: 20%; right: -4%; animation-delay: 1.7s, -1.2s; }
.jg-chip-f--3 { top: 52%; left: -8%; animation-delay: 1.9s, -2.4s; }
.jg-chip-f--4 { bottom: 16%; right: -2%; animation-delay: 2.1s, -3.6s; }
.jg-chip-f--5 { bottom: 2%; left: 18%; animation-delay: 2.3s, -4.8s; }
@keyframes jg-flutua { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

.jg-selos { list-style: none; margin: clamp(2.5rem, 4vw, 4rem) 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.jg-selos li { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; border-radius: 18px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.jg-selos strong { font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem); color: var(--jg-peach); line-height: 1; font-weight: 800; white-space: nowrap; }
.jg-selos span { font-size: .85rem; line-height: 1.35; color: rgba(255, 255, 255, .75); }

/* Seções */
.jg-sec { padding: var(--jg-sec) 0; }
.jg-head { max-width: 46rem; margin-bottom: clamp(2rem, 3vw, 3rem); }
.jg-head--center { margin-inline: auto; text-align: center; }
.jg-head--center .jg-eyebrow { justify-content: center; }
.jg-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.jg-split .jg-head { position: sticky; top: 110px; }
.jg-fecho { font-size: 1.15rem; max-width: 44rem; margin-top: 2.2rem; }
.jg-fecho--center { margin-inline: auto; text-align: center; }

/* Ciclo: trilha de investimento que termina na saída e recomeça */
.jg-ciclo { background: var(--jg-cream); position: relative; overflow: hidden; }
.jg-ciclo .jg-shell { max-width: 1320px; }
.jg-ciclo__head { max-width: 52rem; }
.jg-trilha { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(0, 1.15fr); gap: 1rem; position: relative; }
.jg-trilha__passo { position: relative; display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem 1.4rem 1.3rem; border-radius: var(--jg-radius); background: var(--jg-white); border: 1px solid rgba(78, 102, 122, .12); box-shadow: 0 18px 40px -30px rgba(36, 50, 62, .45); }
.jg-trilha__passo:not(:last-of-type)::after { content: ""; position: absolute; top: 2.55rem; right: -1rem; width: 1rem; height: 2px; background: var(--jg-sky); }
.jg-trilha__passo:nth-child(4)::after { background: repeating-linear-gradient(90deg, var(--jg-salmon) 0 4px, transparent 4px 8px); }
.jg-trilha__topo { display: flex; align-items: center; justify-content: space-between; }
.jg-trilha__icone { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--jg-sand); color: var(--jg-petrol); }
.jg-trilha__n { font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--jg-blue); }
.jg-trilha__passo p { margin: 0; color: var(--jg-ink); font-weight: 600; font-size: 1.02rem; line-height: 1.45; flex: 1; }
/* A barra enche a cada passo: o investimento acumulado que vai embora junto. */
.jg-trilha__barra { display: block; height: 6px; border-radius: 99px; background: rgba(78, 102, 122, .1); overflow: hidden; }
.jg-trilha__barra span { display: block; height: 100%; width: calc(var(--n) * 25%); border-radius: inherit; background: linear-gradient(90deg, var(--jg-sky), var(--jg-petrol)); transform-origin: left; transform: scaleX(0); transition: transform 1s cubic-bezier(.65, 0, .35, 1) .3s; }
.jg-trilha__passo.is-in .jg-trilha__barra span, html:not(.js) .jg-trilha__barra span { transform: none; }

.jg-trilha__saida { display: flex; flex-direction: column; justify-content: center; gap: 1rem; padding: 1.6rem; border-radius: var(--jg-radius); background: var(--jg-ink); color: #fff; position: relative; overflow: hidden; }
.jg-trilha__saida::before { content: ""; position: absolute; width: 180px; height: 180px; right: -60px; bottom: -70px; border-radius: 50%; border: 28px solid rgba(232, 145, 95, .16); }
.jg-trilha__saida .jg-trilha__icone { background: var(--jg-salmon); color: var(--jg-ink); }
.jg-trilha__saida p { margin: 0; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; color: var(--jg-salmon); position: relative; }
.jg-trilha__saida.is-in .jg-trilha__icone svg { animation: jg-sai 1.6s .6s ease-in-out 2; }
@keyframes jg-sai { 50% { transform: translateX(5px); } }

/* Seta tracejada de volta ao começo: o ciclo se repete. */
.jg-trilha__volta { position: relative; height: 46px; margin: 0 8% 0 4%; border: 2px dashed rgba(232, 145, 95, .55); border-top: 0; border-radius: 0 0 28px 28px; }
.jg-trilha__volta span { position: absolute; left: 50%; bottom: -15px; transform: translateX(-50%); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--jg-cream); color: var(--jg-salmon-deep); font-weight: 800; }
.jg-trilha__volta::before { content: ""; position: absolute; left: -7px; top: -2px; border: 6px solid transparent; border-bottom: 9px solid rgba(232, 145, 95, .8); transform: translateY(-9px); }

.jg-ciclo__fecho { max-width: 46rem; margin: clamp(2.5rem, 4vw, 3.5rem) auto 0; text-align: center; font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem); line-height: 1.5; color: var(--jg-ink); font-weight: 500; }

/* Custo: iceberg. Poucos custos acima da linha d'água, a maioria abaixo. */
.jg-custo { background: var(--jg-ink); color: rgba(255, 255, 255, .78); overflow: hidden; }
.jg-custo h2 { color: #fff; }
.jg-custo .jg-hl { color: #fff; }
.jg-custo .jg-shell { max-width: 1280px; }
.jg-custo__grid2 { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.jg-custo__texto { max-width: 34rem; }
.jg-custo__fecho { font-size: clamp(1.15rem, 1rem + .5vw, 1.35rem); line-height: 1.5; color: #fff; margin: 1.8rem 0 2rem; padding-left: 1.2rem; border-left: 3px solid var(--jg-salmon); }

.jg-ice { position: relative; border-radius: 28px; overflow: hidden; background: #121B22; isolation: isolate; }
.jg-ice__topo { position: relative; z-index: 0; display: flex; flex-direction: column; align-items: center; padding: 2rem 1.5rem 1.5rem; background: linear-gradient(180deg, #3B5163, #2F4353); }
.jg-ice__pico { position: absolute; z-index: -1; left: 50%; bottom: 0; transform: translateX(-50%); width: 62%; height: 78%; fill: rgba(252, 247, 242, .92); }
.jg-ice__agua { position: relative; z-index: 2; height: 14px; margin-top: -7px; background: repeating-radial-gradient(circle at 10px -6px, transparent 0 9px, rgba(156, 193, 217, .7) 10px 11px, transparent 12px 20px); background-size: 20px 14px; animation: jg-onda 6s linear infinite; }
@keyframes jg-onda { to { background-position: 200px 0; } }
.jg-ice__corpo { position: absolute; z-index: -1; left: 50%; top: 0; transform: translateX(-50%); width: 94%; height: 100%; }
.jg-ice__rot { display: inline-block; margin-bottom: .9rem; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--jg-ink); background: var(--jg-peach); padding: .3rem .7rem; border-radius: 999px; }
.jg-ice__rot--fundo { background: rgba(232, 145, 95, .15); color: var(--jg-salmon); border: 1px solid rgba(232, 145, 95, .35); }
.jg-ice__lista { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.jg-ice__lista li { padding: .6rem 1rem; border-radius: 12px; font-weight: 700; font-size: .92rem; line-height: 1.3; color: #fff; background: rgba(255, 255, 255, .06); border: 1px solid rgba(156, 193, 217, .22); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.jg-ice__lista--topo li { background: var(--jg-white); color: var(--jg-ink); border-color: transparent; box-shadow: 0 10px 24px -14px rgba(0, 0, 0, .6); }
.jg-ice__fundo { position: relative; z-index: 0; padding: 2.4rem 1.5rem 2.6rem; text-align: center; background: linear-gradient(180deg, #1A2630, #0F171D); }
.jg-ice__fundo .jg-ice__lista { gap: .7rem; }
.jg-ice__fundo li:nth-child(odd) { border-color: rgba(232, 145, 95, .35); }
/* Os custos ocultos surgem do fundo, como quem enxerga abaixo da superfície. */
.js .jg-ice__fundo .jg-reveal { filter: blur(6px); transform: translateY(18px); transition: opacity .8s ease, transform .8s ease, filter .8s ease; }
.js .jg-ice__fundo .jg-reveal.is-in { filter: none; transform: none; }

/* Ambiente: a pessoa no centro, os fatores do ambiente em órbita */
.jg-ambiente .jg-shell { max-width: 1280px; }
.jg-amb__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.jg-amb__lead { font-size: 1.15rem; color: var(--jg-ink); }
.jg-amb__nota { margin-top: 1.6rem; padding: 1.3rem 1.4rem; border-radius: 18px; background: var(--jg-white); border: 1px solid rgba(78, 102, 122, .12); box-shadow: 0 18px 40px -30px rgba(36, 50, 62, .45); }

.jg-radar { --r: 41cqw; container-type: inline-size; position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; justify-self: center; }
.jg-radar__anel { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(78, 102, 122, .22); }
.jg-radar__anel--1 { inset: 8%; }
.jg-radar__anel--2 { inset: 28%; border-style: solid; border-color: rgba(232, 145, 95, .25); background: radial-gradient(circle, rgba(246, 230, 218, .9), rgba(246, 230, 218, 0) 70%); }
.jg-radar__varredura { position: absolute; inset: 8%; border-radius: 50%; background: conic-gradient(from 0deg, rgba(232, 145, 95, 0) 0%, rgba(232, 145, 95, .16) 14%, rgba(232, 145, 95, 0) 15%); -webkit-mask-image: radial-gradient(circle, transparent 30%, #000 31%); mask-image: radial-gradient(circle, transparent 30%, #000 31%); animation: jg-gira 12s linear infinite; }
.jg-radar__centro { position: absolute; left: 50%; top: 50%; width: 22%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; display: grid; place-items: center; background: var(--jg-petrol); color: #fff; box-shadow: 0 0 0 10px rgba(78, 102, 122, .12), 0 20px 40px -20px rgba(36, 50, 62, .7); }
.jg-radar__lista { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; }
.jg-radar__lista li { position: absolute; left: 50%; top: 50%; width: 0; height: 0; transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(var(--a) * -1)); }
.jg-radar__lista li > span { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%); display: inline-block; white-space: nowrap; padding: .55rem .95rem; border-radius: 999px; background: var(--jg-white); border: 1px solid rgba(78, 102, 122, .18); color: var(--jg-petrol); font-weight: 700; font-size: .88rem; box-shadow: 0 10px 22px -16px rgba(36, 50, 62, .6); transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.jg-radar__lista li:nth-child(odd) > span { background: var(--jg-sand); border-color: transparent; }
.jg-radar__lista li > span:hover { background: var(--jg-salmon-deep); color: #fff; transform: translate(-50%, -50%) scale(1.06); }
/* li é só o ponto na órbita: o reveal anima o rótulo, não a posição. */
.js .jg-radar__lista li.jg-reveal { opacity: 1; transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(var(--a) * -1)); transition: none; }
.js .jg-radar__lista li.jg-reveal > span { opacity: 0; transition: opacity .5s ease, background-color .2s ease, color .2s ease; }
.js .jg-radar__lista li.jg-reveal.is-in > span { opacity: 1; }

.jg-nr1 { position: relative; overflow: hidden; margin-top: clamp(3rem, 5vw, 4.5rem); display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center; padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(1.6rem, 4vw, 3rem); border-radius: 28px; background: linear-gradient(120deg, var(--jg-petrol), var(--jg-ink)); color: rgba(255, 255, 255, .82); isolation: isolate; }
.jg-nr1::after { content: ""; position: absolute; z-index: -1; width: 340px; height: 340px; right: -110px; top: -150px; border-radius: 50%; border: 48px solid rgba(232, 145, 95, .12); }
.jg-nr1 p { margin: 0; }
.jg-nr1__marca { font-size: clamp(3rem, 2rem + 4vw, 5.5rem); font-weight: 800; line-height: .9; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 2px var(--jg-salmon); }
.jg-nr1__t { color: #fff; font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); font-weight: 800; line-height: 1.25; letter-spacing: -.01em; margin-bottom: .45rem !important; }
.jg-nr1__sub { font-size: 1.05rem; }
@media (max-width: 1100px) and (min-width: 961px) {
	.jg-nr1 { grid-template-columns: auto 1fr; }
	.jg-nr1 .jg-btn { grid-column: 2; justify-self: start; }
}

/* Escuta: questionário com a escala em aberto, ninguém respondeu ainda */
.jg-escuta { background: var(--jg-sand); position: relative; overflow: hidden; }
.jg-escuta::before { content: "?"; position: absolute; left: -2rem; bottom: -6rem; font-size: 28rem; line-height: 1; font-weight: 800; color: rgba(232, 145, 95, .1); pointer-events: none; }
.jg-escuta .jg-shell { max-width: 1280px; position: relative; }
.jg-escuta__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.jg-escuta__texto h2 { font-size: clamp(2.2rem, 1.4rem + 3vw, 3.8rem); line-height: 1.02; }
.jg-escuta__fecho { font-size: 1.2rem; color: var(--jg-ink); margin: 1.5rem 0 1.8rem; }
.jg-escuta__provoca { margin: 0; padding: 1.6rem 1.7rem; border-radius: 22px; background: var(--jg-ink); position: relative; }
.jg-escuta__provoca::after { content: ""; position: absolute; left: 2.2rem; bottom: -12px; border: 12px solid transparent; border-top-color: var(--jg-ink); border-bottom: 0; }
.jg-escuta__provoca p { margin: 0; color: #fff; font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); line-height: 1.3; font-weight: 800; letter-spacing: -.01em; }

.jg-quest { background: var(--jg-white); border-radius: 26px; box-shadow: 0 40px 80px -40px rgba(36, 50, 62, .45); overflow: hidden; }
.jg-quest__barra { display: flex; gap: 6px; padding: .9rem 1.2rem; background: var(--jg-cream); border-bottom: 1px solid rgba(78, 102, 122, .1); }
.jg-quest__barra span { width: 10px; height: 10px; border-radius: 50%; background: rgba(78, 102, 122, .2); }
.jg-quest__barra span:first-child { background: var(--jg-salmon); }
.jg-quest__lista { list-style: none; margin: 0; padding: .6rem clamp(1rem, 2.5vw, 1.8rem) 1.2rem; }
.jg-quest__lista li { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px dashed rgba(78, 102, 122, .18); }
.jg-quest__lista li:last-child { border-bottom: 0; }
.jg-quest__q { color: var(--jg-ink); font-weight: 700; font-size: 1.05rem; line-height: 1.35; }
.jg-quest__escala { display: flex; gap: 7px; flex: none; }
.jg-quest__escala i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(78, 102, 122, .28); animation: jg-duvida 3.2s ease-in-out infinite; animation-delay: calc(var(--i) * .25s); }
.jg-quest__escala i:nth-child(2) { animation-delay: calc(var(--i) * .25s + .15s); }
.jg-quest__escala i:nth-child(3) { animation-delay: calc(var(--i) * .25s + .3s); }
.jg-quest__escala i:nth-child(4) { animation-delay: calc(var(--i) * .25s + .45s); }
.jg-quest__escala i:nth-child(5) { animation-delay: calc(var(--i) * .25s + .6s); }
/* Cada bolinha acende e apaga: a resposta que você acha que sabe nunca fica marcada. */
@keyframes jg-duvida { 0%, 70%, 100% { background: transparent; border-color: rgba(78, 102, 122, .28); } 20% { background: var(--jg-peach); border-color: var(--jg-salmon); } }

/* Diagnóstico: funil que afunila dados soltos até uma ação */
.jg-diag { background: var(--jg-cream); }
.jg-diag .jg-shell { max-width: 1280px; }
.jg-funil { position: relative; margin-top: 1rem; }
.jg-funil__banda { position: absolute; left: 0; right: 0; top: 50%; height: 88%; transform: translateY(-50%); clip-path: polygon(0 0, 100% 38%, 100% 62%, 0 100%); background: linear-gradient(90deg, rgba(156, 193, 217, .35), rgba(232, 145, 95, .35)); border-radius: 12px; }
.jg-funil__etapas { position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(.6rem, 1.5vw, 1.2rem); align-items: center; }
.jg-funil__etapas li { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: .5rem; text-align: center; padding: 1.4rem 1rem 1.3rem; min-height: calc(260px - var(--i) * 26px); border-radius: 22px; background: var(--jg-white); box-shadow: 0 22px 44px -30px rgba(36, 50, 62, .55); }
.jg-funil__etapas li:last-child { background: var(--jg-salmon-deep); box-shadow: 0 26px 50px -24px rgba(185, 89, 44, .8); }
.jg-funil__pontos { flex: 1; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 6px; max-width: 120px; }
.jg-funil__pontos i { width: 10px; height: 10px; border-radius: 50%; background: var(--jg-sky); opacity: .75; }
.jg-funil__etapas li:nth-child(1) .jg-funil__pontos i:nth-child(3n) { transform: translate(3px, -4px); background: var(--jg-peach); }
.jg-funil__etapas li:nth-child(1) .jg-funil__pontos i:nth-child(4n) { transform: translate(-3px, 5px); opacity: .4; }
.jg-funil__etapas li:nth-child(2) .jg-funil__pontos i:nth-child(odd) { background: var(--jg-salmon); }
.jg-funil__etapas li:nth-child(3) .jg-funil__pontos i { width: 14px; height: 14px; background: var(--jg-salmon); }
.jg-funil__etapas li:nth-child(4) .jg-funil__pontos i { width: 18px; height: 18px; background: var(--jg-salmon-deep); opacity: 1; }
.jg-funil__etapas li:nth-child(5) .jg-funil__pontos i { width: 34px; height: 34px; background: #fff; opacity: 1; box-shadow: 0 0 0 8px rgba(255, 255, 255, .2); animation: jg-alvo 2.4s ease-in-out infinite; }
@keyframes jg-alvo { 50% { box-shadow: 0 0 0 14px rgba(255, 255, 255, .08); } }
.jg-funil__n { font-size: .75rem; font-weight: 800; letter-spacing: .12em; color: var(--jg-blue); }
.jg-funil__etapas strong { color: var(--jg-ink); font-size: clamp(1rem, .9rem + .4vw, 1.2rem); line-height: 1.2; }
.jg-funil__etapas li:last-child .jg-funil__n { color: rgba(255, 255, 255, .7); }
.jg-funil__etapas li:last-child strong { color: #fff; font-size: clamp(1.2rem, 1rem + .6vw, 1.5rem); }

.jg-diag__fim { margin-top: clamp(2.5rem, 4vw, 3.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem; flex-wrap: wrap; padding: 1.6rem 1.8rem; border-radius: 22px; background: var(--jg-sand); }
.jg-diag__fim p { margin: 0; max-width: 34rem; color: var(--jg-ink); font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); font-weight: 700; line-height: 1.4; }

/* Etapas: trilha em zigue-zague da dúvida até a ação */
.jg-etapas { background: var(--jg-ink); color: rgba(255, 255, 255, .78); position: relative; overflow: hidden; }
.jg-etapas::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 100% 50%, rgba(232, 145, 95, .16), transparent 70%), radial-gradient(40% 50% at 0% 50%, rgba(106, 138, 166, .28), transparent 70%); pointer-events: none; }
.jg-etapas .jg-shell { max-width: 1320px; position: relative; }
.jg-etapas h2, .jg-etapas h3 { color: #fff; }
.jg-etapas .jg-fecho { color: rgba(255, 255, 255, .85); margin-bottom: 2rem; }

.jg-rota { --p: 0; position: relative; padding: 0 3.2rem; }
.jg-rota__linha { position: absolute; left: 3.2rem; right: 3.2rem; top: 50%; height: 3px; transform: translateY(-50%); background: rgba(255, 255, 255, .12); border-radius: 3px; }
.jg-rota__linha span { display: block; height: 100%; width: calc(var(--p) * 100%); border-radius: inherit; background: linear-gradient(90deg, var(--jg-sky), var(--jg-salmon)); box-shadow: 0 0 16px rgba(232, 145, 95, .6); transition: width .15s linear; }
.jg-rota__ponta { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; }
.jg-rota__ponta--ini { left: 0; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .2); color: var(--jg-sky); }
.jg-rota__ponta--fim { right: 0; background: var(--jg-salmon); color: var(--jg-ink); box-shadow: 0 0 0 8px rgba(232, 145, 95, .15); }
.jg-rota__etapas { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: auto 70px auto; column-gap: .9rem; }
.jg-rota__etapas li { display: contents; }
.jg-rota__no { grid-row: 2; align-self: center; justify-self: center; width: 18px; height: 18px; border-radius: 50%; background: var(--jg-ink); border: 3px solid rgba(255, 255, 255, .3); position: relative; z-index: 1; transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease; }
.jg-rota__card { position: relative; padding: 1.3rem 1.2rem; border-radius: 20px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); transition: background-color .3s ease, border-color .3s ease, transform .3s ease; }
.jg-rota__card::after { content: ""; position: absolute; left: 50%; width: 2px; height: 26px; background: rgba(255, 255, 255, .18); transform: translateX(-50%); }
.jg-rota__etapas li:nth-child(odd) .jg-rota__card { grid-row: 1; align-self: end; }
.jg-rota__etapas li:nth-child(odd) .jg-rota__card::after { top: 100%; }
.jg-rota__etapas li:nth-child(even) .jg-rota__card { grid-row: 3; align-self: start; }
.jg-rota__etapas li:nth-child(even) .jg-rota__card::after { bottom: 100%; }
.jg-rota__etapas li:nth-child(1) > * { grid-column: 1; }
.jg-rota__etapas li:nth-child(2) > * { grid-column: 2; }
.jg-rota__etapas li:nth-child(3) > * { grid-column: 3; }
.jg-rota__etapas li:nth-child(4) > * { grid-column: 4; }
.jg-rota__etapas li:nth-child(5) > * { grid-column: 5; }
.jg-rota__etapas li:nth-child(6) > * { grid-column: 6; }
.jg-rota__card { width: 160%; justify-self: center; }
.jg-rota__card p { margin: 0; font-size: .92rem; line-height: 1.5; }
.jg-rota__card h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.jg-etapas__n { display: block; font-size: 1.9rem; font-weight: 800; line-height: 1; color: var(--jg-peach); margin-bottom: .7rem; }
/* Etapa alcançada pela linha acende. */
.jg-rota__etapas li.is-on .jg-rota__no { background: var(--jg-salmon); border-color: var(--jg-salmon); box-shadow: 0 0 0 6px rgba(232, 145, 95, .2); }
.jg-rota__etapas li.is-on .jg-rota__card { background: rgba(255, 255, 255, .09); border-color: rgba(232, 145, 95, .45); }
.jg-rota__etapas li.is-on .jg-etapas__n { color: var(--jg-salmon); }
.js .jg-rota__etapas li.jg-reveal { opacity: 1; transform: none; }

/* PDF: o relatório riscado de um lado, os pilares que se encontram na decisão do outro */
.jg-pdf { background: var(--jg-cream); overflow: hidden; }
.jg-pdf .jg-shell { max-width: 1280px; }
.jg-pdf__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.jg-pdf__texto h2 { font-size: clamp(2rem, 1.3rem + 2.4vw, 3.3rem); line-height: 1.1; }
.jg-pdf__eyebrow { display: inline-block; margin: 0 0 1.2rem; font-size: 1.05rem; font-weight: 800; color: var(--jg-salmon-deep); }

.jg-pdf__doc { position: relative; width: 88px; height: 110px; margin-bottom: 1.6rem; }
.jg-pdf__folha { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 7px; padding: 14px 12px; border-radius: 10px; background: var(--jg-white); border: 1px solid rgba(78, 102, 122, .2); box-shadow: 0 14px 30px -18px rgba(36, 50, 62, .6); transform: rotate(-8deg); filter: grayscale(1); opacity: .7; clip-path: polygon(0 0, 72% 0, 100% 22%, 100% 100%, 0 100%); }
.jg-pdf__folha b { font-size: .7rem; letter-spacing: .08em; color: #fff; background: #9aa3ab; align-self: flex-start; padding: 2px 6px; border-radius: 4px; }
.jg-pdf__folha i { height: 5px; border-radius: 3px; background: rgba(78, 102, 122, .2); }
.jg-pdf__folha i:nth-of-type(2) { width: 70%; }
.jg-pdf__folha i:nth-of-type(4) { width: 50%; }
.jg-pdf__x::before, .jg-pdf__x::after { content: ""; position: absolute; left: -12%; top: 50%; width: 124%; height: 4px; border-radius: 4px; background: var(--jg-salmon-deep); transform-origin: center; }
.jg-pdf__x::before { transform: rotate(40deg) scaleX(var(--x, 1)); }
.jg-pdf__x::after { transform: rotate(-40deg) scaleX(var(--x, 1)); }

.jg-flor { --r: 17cqw; container-type: inline-size; position: relative; aspect-ratio: 1; width: 100%; max-width: 540px; justify-self: center; }
.jg-flor__lista { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; }
.jg-flor__lista li { position: absolute; left: 50%; top: 50%; width: 0; height: 0; }
.jg-flor__petala { position: absolute; width: 46cqw; height: 46cqw; left: 0; top: 0; border-radius: 50%; transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)); mix-blend-mode: multiply; background: rgba(233, 194, 171, .4); border: 1.5px solid rgba(232, 145, 95, .5); transition: transform .8s cubic-bezier(.2, .8, .2, 1); }
.jg-flor__lista li:nth-child(even) .jg-flor__petala { background: rgba(156, 193, 217, .32); border-color: rgba(106, 138, 166, .5); }
.jg-flor__rot { position: absolute; left: 0; top: 0; width: 8.5em; text-align: center; transform: translate(-50%, -50%) rotate(var(--a)) translateX(calc(var(--r) + 15cqw)) rotate(calc(var(--a) * -1)); font-weight: 800; font-size: clamp(.8rem, .7rem + .3vw, .98rem); line-height: 1.25; color: var(--jg-ink); }
.jg-flor__centro { position: absolute; left: 50%; top: 50%; width: 15%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; display: grid; place-items: center; background: var(--jg-salmon-deep); color: #fff; box-shadow: 0 0 0 8px rgba(185, 89, 44, .15), 0 16px 30px -12px rgba(185, 89, 44, .7); }
/* As pétalas nascem juntas no centro e se abrem. */
.js .jg-flor__lista li.jg-reveal { opacity: 1; transform: none; }
.js .jg-flor__lista li.jg-reveal .jg-flor__petala { transform: translate(-50%, -50%) rotate(var(--a)) translateX(0) scale(.6); }
.js .jg-flor__lista li.jg-reveal.is-in .jg-flor__petala { transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)); }
.js .jg-flor__lista li.jg-reveal .jg-flor__rot { opacity: 0; transition: opacity .6s .5s ease; }
.js .jg-flor__lista li.jg-reveal.is-in .jg-flor__rot { opacity: 1; }

/* Sobre: cartão de perfil escuro + texto editorial */
.jg-sobre { background: linear-gradient(180deg, var(--jg-white), var(--jg-sand)); }
.jg-sobre .jg-shell { max-width: 1280px; }
.jg-sobre__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.jg-perfil { position: sticky; top: 110px; padding: 0 2rem 2rem; border-radius: 28px; background: var(--jg-ink); color: rgba(255, 255, 255, .8); text-align: center; overflow: hidden; isolation: isolate; box-shadow: 0 40px 80px -40px rgba(36, 50, 62, .6); }
/* Foto com fundo branco: multiply sobre o creme some com o fundo, e o degradê funde na parte escura. */
.jg-perfil__foto { position: relative; margin: 0 -2rem 1.4rem; aspect-ratio: 4 / 4.3; overflow: hidden; background: radial-gradient(circle at 50% 30%, var(--jg-cream), var(--jg-sand)); }
.jg-perfil__foto img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; mix-blend-mode: multiply; }
.jg-perfil__foto::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(180deg, rgba(36, 50, 62, 0), var(--jg-ink)); }
.jg-perfil__nome { margin: 0; color: #fff; font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; }
.jg-perfil__cargo { margin: .2rem 0 1.6rem; color: var(--jg-peach); font-size: .95rem; }
.jg-numeros { list-style: none; margin: 0 0 1.6rem; padding: 1.4rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; border-top: 1px solid rgba(255, 255, 255, .12); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.jg-numeros li { display: flex; flex-direction: column; }
.jg-numeros strong { font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3rem); line-height: 1; color: var(--jg-salmon); font-variant-numeric: tabular-nums; font-weight: 800; }
.jg-numeros li > span { font-size: .82rem; margin-top: .35rem; }
.jg-perfil__selos { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem; }
.jg-perfil__selos li { padding: .35rem .75rem; border-radius: 999px; font-size: .78rem; font-weight: 700; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); color: #fff; }

.jg-sobre__texto h2 { font-size: clamp(2rem, 1.3rem + 2.2vw, 3.1rem); line-height: 1.08; }
.jg-sobre__sub { font-size: 1.1rem; color: var(--jg-salmon-deep); font-weight: 700; }
.jg-sobre__lead { font-size: clamp(1.1rem, 1rem + .35vw, 1.25rem); color: var(--jg-ink); line-height: 1.65; }
.jg-sobre__quote { position: relative; margin: 2rem 0; padding: 1.6rem 1.8rem 1.6rem 3.6rem; border-radius: 22px; background: var(--jg-white); box-shadow: 0 20px 44px -30px rgba(36, 50, 62, .5); }
.jg-sobre__quote::before { content: "“"; position: absolute; left: 1rem; top: .2rem; font-size: 4.5rem; line-height: 1; font-weight: 800; color: var(--jg-salmon); }
.jg-sobre__quote p { margin: 0; color: var(--jg-ink); font-weight: 600; font-size: 1.05rem; line-height: 1.6; }

/* CTA final: fecha a página no mesmo tom do hero e emenda no rodapé */
.jg-final { position: relative; overflow: hidden; isolation: isolate; padding: clamp(5rem, 4rem + 6vw, 9rem) 0; background: radial-gradient(60% 80% at 50% 0%, rgba(232, 145, 95, .22), transparent 60%), linear-gradient(180deg, #243442, #1A252E); color: rgba(255, 255, 255, .8); text-align: center; }
.jg-final__marca { position: absolute; z-index: -1; right: -8vw; top: 50%; width: min(620px, 55vw); transform: translateY(-50%); filter: brightness(0) invert(1); opacity: .05; }
.jg-final__box { display: flex; flex-direction: column; align-items: center; }
.jg-final h2 { color: #fff; font-size: clamp(2.3rem, 1.3rem + 3.8vw, 4.6rem); line-height: 1.02; letter-spacing: -.035em; font-weight: 800; max-width: 22ch; margin: 0 0 .5em; }
.jg-final__texto { max-width: 36rem; margin: 0 auto 2.4rem; font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); }
.jg-final .jg-btn { min-height: 64px; padding: 1rem 2rem; font-size: 1.05rem; box-shadow: 0 20px 44px -16px rgba(232, 145, 95, .8); }

/* Rodapé escuro, continuação do CTA final */
.jg-footer { background: #141D24; color: rgba(255, 255, 255, .55); padding: 3rem 0 1.2rem; font-size: .88rem; border-top: 1px solid rgba(255, 255, 255, .06); }
.jg-footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .7rem; }
.jg-footer__logo { height: 60px; width: auto; }
.jg-footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.4rem; }
.jg-footer__legal a, .jg-footer__contato a { color: rgba(255, 255, 255, .75); }
.jg-footer__contato { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.4rem; }
.jg-footer p { margin: 0; }

/* WhatsApp flutuante */
.jg-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; box-shadow: 0 12px 28px -10px rgba(0, 0, 0, .45); transition: transform .2s ease; }
.jg-float:hover { transform: scale(1.06); }

/* Banner LGPD do DKX System: o plugin traz as cores da agência fixas no CSS
   inline. Aqui só troca a paleta; Aceitar e Recusar seguem idênticos (regra
   do plugin: os dois botões mudam juntos). */
body .dkx-consent { color: var(--jg-ink); }
body .dkx-consent__veu { background: rgba(36, 50, 62, .55); }
body .dkx-consent__shell { background: var(--jg-cream); border-color: var(--jg-peach); box-shadow: 0 24px 64px rgba(36, 50, 62, .35); }
body .dkx-consent__p, body .dkx-consent__cat span, body .dkx-consent__mais, body .dkx-consent__fixa { color: var(--jg-text); }
body .dkx-consent__p a { color: var(--jg-salmon-deep); }
body .dkx-consent__btn { background: var(--jg-petrol); border-color: var(--jg-petrol); color: #fff; border-radius: 999px; }
body .dkx-consent__mais:hover { color: var(--jg-ink); }
body .dkx-consent__painel { border-top-color: var(--jg-peach); }
body .dkx-consent__cat input { accent-color: var(--jg-petrol); }
/* Link de preferências que o plugin imprime depois do rodapé: mesma faixa escura. */
.dkx-consent-rodape { background: #141D24; color: rgba(255, 255, 255, .55); margin: 0 !important; padding: 0 16px 5.5rem !important; }

/* Páginas comuns */
.jg-page { padding: calc(84px + 4rem) var(--jg-gutter) 5rem; }
body:not(.jg-tem-hero) .jg-header { background: rgba(28, 40, 49, .95); }
.jg-prose { max-width: 46rem; margin-inline: auto; }
.jg-prose h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem); line-height: 1.15; }

/* Revelação ao rolar (só com JS; sem JS tudo aparece) */
.js .jg-reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js .jg-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.js .jg-reveal { opacity: 1; transform: none; }
	.jg-orbita__fios ellipse, .jg-orbita__folhas path { stroke-dashoffset: 0; }
	.jg-hero__centro, .jg-chip-f { opacity: 1; }
	.jg-trilha__barra span { transform: none; }
	.js .jg-ice__fundo .jg-reveal { filter: none; }
	.js .jg-flor__lista li.jg-reveal .jg-flor__petala { transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)); }
	.jg-hero h1 .jg-hl::after { transform: none; }
}

/* Responsivo */
@media (max-width: 960px) {
	.jg-hero__grid, .jg-split, .jg-sobre__grid { grid-template-columns: 1fr; }
	.jg-hero__visual { max-width: 420px; }
	.jg-split .jg-head, .jg-perfil { position: static; }
	.jg-custo__grid2 { grid-template-columns: 1fr; }
	.jg-custo__texto { max-width: none; }
	.jg-trilha { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jg-trilha__saida { grid-column: 1 / -1; flex-direction: row; align-items: center; }
	.jg-trilha__passo::after { display: none; }
	.jg-trilha__volta { display: none; }
	.jg-funil__etapas { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
	.jg-funil__etapas li { min-height: 0; flex-direction: row; justify-content: flex-start; text-align: left; gap: 1rem; padding: 1rem 1.2rem; }
	.jg-funil__pontos { flex: none; width: 70px; }
	.jg-funil__banda { display: none; }
	.jg-diag__fim { justify-content: center; text-align: center; }
	.jg-rota { padding: 0 0 0 0; }
	.jg-rota__ponta { display: none; }
	.jg-rota__linha { left: 8px; right: auto; top: 0; bottom: 0; width: 3px; height: auto; transform: none; }
	.jg-rota__linha span { width: 100%; height: calc(var(--p) * 100%); }
	.jg-rota__etapas { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 1rem; padding-left: 2.2rem; }
	.jg-rota__etapas li { display: block; position: relative; }
	.jg-rota__etapas li > * { grid-column: auto !important; }
	.jg-rota__no { position: absolute; left: -2.2rem; top: 1.4rem; margin-left: -1px; }
	.jg-rota__card::after { display: none; }
	.jg-rota__card { width: auto; }
	.jg-pdf__grid { grid-template-columns: 1fr; }
	.jg-flor { max-width: 440px; }
	.jg-nr1 { grid-template-columns: 1fr; text-align: center; justify-items: center; }
	.jg-amb__grid { grid-template-columns: 1fr; }
	.jg-escuta__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.jg-hero__visual { max-width: 300px; margin-top: .5rem; }
	.jg-chip-f { font-size: .7rem; padding: .4rem .7rem; }
	.jg-chip-f--3, .jg-chip-f--5 { display: none; }
	.jg-hero__acoes { flex-direction: column; align-items: stretch; text-align: center; }
	.jg-hero__link { align-self: center; }
	.jg-logo img { height: 40px; }
	.jg-header .jg-btn svg { display: none; }
	.jg-selos { grid-template-columns: 1fr; gap: 1rem; }
	.jg-ice__lista li { font-size: .82rem; padding: .5rem .8rem; }
	.jg-trilha { grid-template-columns: 1fr; }
	.jg-quest__lista li { flex-direction: column; align-items: flex-start; gap: .6rem; }
	.jg-radar { aspect-ratio: auto; max-width: none; }
	.jg-radar__anel, .jg-radar__varredura, .jg-radar__centro { display: none; }
	.jg-radar__lista { position: static; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
	.jg-radar__lista li, .js .jg-radar__lista li.jg-reveal { position: static; width: auto; height: auto; transform: none; }
	.jg-radar__lista li > span { position: static; transform: none; }
	.jg-flor__rot { width: 7em; }
	.jg-btn { width: 100%; }
	.jg-header .jg-btn { width: auto; }
}
