/* =============================================================
   Center Seals — Landing v2 (Claude Design import, fidelidade total)
   Escala fluida: 1rem = 100vw/192, travado em 7.9px acima de ~1517px.
   Cores de marca fixas (não é o espectro HSL do Static Sites DS —
   este projeto foge deliberadamente das regras visuais do DS).
   ============================================================= */

html { font-size: min(calc(100vw / 192), 7.9px); scroll-behavior: smooth; }
body { margin: 0; background: #ffffff; color: #0F3989; font-family: "Inter", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
*, *::before, *::after { box-sizing: border-box; }
a { color: #0F3989; text-decoration: none; }
a:hover { color: #FDB339; }
img { display: block; }
::selection { background: #FDB339; color: #0F3989; }

.wrap { max-width: 192rem; margin: 0 auto; }

@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.04); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(3rem); } to { opacity: 1; transform: none; } }
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1.2rem); } }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(1.4rem); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes sheen { 0% { transform: translateX(-140%) skewX(-18deg); } 60%, 100% { transform: translateX(420%) skewX(-18deg); } }

/* ---------- Scroll-reveal (JS liga .is-visible) ---------- */
[data-reveal] { opacity: 0; transform: translateY(3rem); transition: opacity .4s cubic-bezier(.2,.7,.2,1), transform .4s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-hex][data-reveal] { transform: translateY(4.5rem) scale(.9); transition: opacity .35s cubic-bezier(.2,.7,.2,1), transform .3s cubic-bezier(.34,1.4,.5,1), filter .2s ease; filter: drop-shadow(0 0 0 rgba(15,57,137,0)); }
[data-hex][data-reveal].is-visible { opacity: 1; transform: none; }
/* Sem bloco de prefers-reduced-motion, de propósito. Ele desligava a
   entrada/saída/hover dos hexágonos (e o main.js nem dava play no vídeo)
   em qualquer aparelho com "reduzir animações" ligado no sistema. No
   Windows isso vem junto com "ajustar para melhor desempenho", comum em
   PC de escritório. O cliente testou nesses PCs e viu a página "quebrada".
   Decisão de 11/09/2026: vídeo e hexágonos rodam em todo lugar. */

/* ---------- Progress bar ---------- */
.progress-track { position: fixed; top: 0; left: 0; height: .4rem; width: 100%; z-index: 120; }
.progress-bar { height: 100%; width: 0%; background: #FDB339; }

/* ---------- Header ---------- */
/* Header no padrão da versão Motion: barra escura fixa, logo em branco,
   links compactos e CTA âmbar de WhatsApp (era barra branca alta, com
   logo gigante de 14.4rem e "Contato" como único botão). */
/* O padding de 15rem mora no <header>, não na barra: assim a barra é o
   próprio .wrap e a logo/menu nascem na mesma coluna das seções (que
   são .section com padding + .wrap dentro). Antes a barra somava o
   padding por cima do wrap e o conteúdo do header ficava 118px mais
   pra dentro que o resto da página. */
.site-header { position: sticky; top: 0; z-index: 100; padding: 0 15rem; background: rgba(15,23,48,.92); backdrop-filter: blur(1.8rem); border-bottom: .13rem solid rgba(255,255,255,.1); box-shadow: none; transition: box-shadow .3s ease; }
.site-header.is-scrolled { background: rgba(10,16,32,.96); box-shadow: 0 1.5rem 4.3rem rgba(0,0,0,.28); }
.site-header__bar { height: 11.6rem; padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 3rem; transition: height .3s ease; }
.site-header.is-scrolled .site-header__bar { height: 9.4rem; }
.site-header__brand { display: flex; align-items: center; gap: 1.8rem; flex: 0 0 auto; }
.site-header__logo { height: 8.4rem; width: auto; display: block; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: .8rem; }
.site-nav__link { padding: 1.3rem 1.8rem; border-radius: 1rem; font-size: 1.85rem; font-weight: 500; color: rgba(255,255,255,.82); transition: color .2s ease, background .2s ease; }
.site-nav__link:hover { color: #fff; background: rgba(255,255,255,.09); }
.site-nav__link--cta { margin-left: 1rem; padding: 1.4rem 2.3rem; border-radius: 1.1rem; background: #FDB339; color: #14183a; font-weight: 700; font-size: 1.7rem; letter-spacing: .02em; transition: transform .25s ease, box-shadow .25s ease; }
.site-nav__link--cta:hover { background: #FDB339; color: #14183a; transform: translateY(-.3rem); box-shadow: 0 1.3rem 3.3rem rgba(253,179,57,.35); }

/* Menu hambúrguer — só existe abaixo do breakpoint mobile (não faz parte do
   design de desktop original); mesmo padrão da versão CenterSealsMotion. */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; border: none; background: transparent; padding: 0; cursor: pointer; flex: 0 0 auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hex bullet (usado no texto do hero) ---------- */
/* vertical-align fixo (.1rem) deixava o hexágono colado na base da linha;
   middle centraliza ele na altura do texto da primeira frase. */
.hex-bullet { display: inline-grid; place-items: center; width: 3.2rem; height: 2.9rem; background: #0F3989; clip-path: url(#hexr); vertical-align: middle; margin-right: 1.4rem; }
.hex-bullet__inner { width: calc(100% - .8rem); height: calc(100% - .8rem); background: #FCFCFC; clip-path: url(#hexr); }

/* ---------- Hero ---------- */
.hero { position: relative; background: #FCFCFC url(assets/bg-hero.webp) center top/100% auto no-repeat; }
/* A foto do hero ocupa a largura toda: o wrap do hero perde o teto de
   192rem (em tela larga sobrava faixa branca dos dois lados) e a imagem
   preenche a caixa inteira. O título continua alinhado à coluna de
   conteúdo, não à borda da tela. */
.hero__inner { position: relative; max-width: none; }
/* A faixa do hero tem a mesma proporção do arquivo (1920x800), então a
   foto aparece inteira: nenhuma peça é cortada em nenhuma largura. Sem
   degradê branco por cima (pedido do cliente) — o título se apoia na
   área clara do próprio desenho técnico, à esquerda. O slowZoom saiu:
   ele ampliava 4% e voltaria a cortar as bordas. */
.hero__media { position: relative; margin: 0; width: 100%; aspect-ratio: 1920 / 800; height: auto; overflow: hidden; border-radius: 0; background: #FCFCFC; }
/* .hero__frame é a caixa (a foto/vídeo entram como camadas absolutas dentro
   dela); no mobile ela é quem carrega aspect-ratio/tamanho, porque lá o
   hero deixa de ser absoluto e passa a empurrar layout (ver breakpoint). */
.hero__frame { position: absolute; inset: 0; }
/* Foto por baixo, vídeo por cima, mesmo enquadramento dos dois. A foto
   nunca sai da tela: o vídeo só aparece (is-ready, via main.js) depois
   que realmente começa a tocar. Se o autoplay for bloqueado (iPhone em
   Modo de Baixo Consumo, Safari/Firefox com autoplay desligado), o
   visitante vê a foto, nunca uma caixa lisa. */
.hero__img, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__video { opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.hero__video.is-ready { opacity: 1; }
/* left alinhado à mesma coluna das seções: borda do wrap + 15rem */
/* Véu escuro sobre o vídeo: mais forte à esquerda (onde o texto fica),
   sumindo à direita — dá contraste pro texto branco em qualquer quadro
   do vídeo, sem escurecer a peça que aparece do lado direito. Só entra
   em cena onde o texto fica por cima do vídeo (>880px); no celular o
   texto sai de cima da foto (ver breakpoint), o véu não faz sentido lá. */
/* Sempre visível: com a foto por baixo, há conteúdo pra escurecer mesmo
   quando o vídeo não toca. */
.hero__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,20,46,.86) 0%, rgba(9,20,46,.62) 38%, rgba(9,20,46,.22) 68%, rgba(9,20,46,0) 100%); pointer-events: none; }
.hero__copy { position: absolute; z-index: 2; left: max(15rem, calc(50% - 96rem)); top: 0; bottom: 0; width: min(52rem, 33%); display: grid; align-content: center; gap: 2.6rem; }
.hero__title { margin: 0; font-weight: 800; font-size: 8.4rem; line-height: 1.08; letter-spacing: -.02em; color: #fff; animation: riseIn 1s cubic-bezier(.2,.7,.2,1) both; }
.hero__subtitle { margin: 0; font-size: 2.6rem; line-height: 1.4; font-weight: 400; color: rgba(255,255,255,.88); animation: riseIn 1s cubic-bezier(.2,.7,.2,1) .1s both; }
/* Mesmo padrão de CTA amber usado no .btn-wa e no .site-nav__link--cta:
   fundo sólido, texto navy, pill, hover sobe com sombra amber. Funciona
   igual sobre o vídeo escurecido (desktop) e sobre a foto clara
   (mobile) — não precisa trocar de esquema de cor por breakpoint. */
.hero__cta { justify-self: start; display: inline-flex; align-items: center; padding: 1.7rem 3.4rem; border: none; border-radius: 99px; background: #FDB339; color: #0F3989; font-weight: 700; font-size: 1.9rem; letter-spacing: .01em; transition: transform .25s ease, box-shadow .25s ease; animation: riseIn 1s cubic-bezier(.2,.7,.2,1) .2s both; }
.hero__cta:hover { color: #0F3989; transform: translateY(-.3rem); box-shadow: 0 1.3rem 3.3rem rgba(253,179,57,.35); }
.hero__tagline-wrap { padding: 11rem 10rem 11rem; text-align: center; }
.hero__tagline { margin: 0; font-size: 6.09rem; line-height: 1.19; color: #0F3989; font-weight: 400; }
.hero__tagline strong { font-weight: 600; }

/* ---------- Seção genérica ---------- */
.section { padding: 10rem 15rem 12rem; }
.section-title { margin: 0; font-weight: 700; font-size: 9.9rem; line-height: 1.02; letter-spacing: -.01em; color: #fff; }
.section-lead { margin: 2.2rem 0 0; font-size: 4.3rem; line-height: 1.3; color: #fff; }
.on-dark { background: #0F3989; }
.on-light .section-title, .on-light .section-lead { color: #0F3989; }
.section-eyebrow { display: block; font-size: 1.6rem; font-weight: 700; letter-spacing: .26em; color: #0F3989; }

/* ---------- WhatsApp CTA (botão âmbar com sheen) ---------- */
.cta-wrap { margin-top: 8rem; text-align: center; }
.btn-wa { position: relative; overflow: hidden; width: 107rem; max-width: 100%; height: 11.8rem; border-radius: 5.9rem; background: #FDB339; color: #0F3989; display: inline-flex; align-items: center; gap: 2.4rem; padding: 0 4.9rem; font-size: 5.26rem; font-weight: 500; transition: transform .3s ease, box-shadow .3s ease; }
.btn-wa:hover { color: #0F3989; transform: translateY(-.6rem); box-shadow: 0 2rem 5rem rgba(0,0,0,.28); }
.btn-wa::before { content: ''; position: absolute; top: 0; left: 0; width: 35%; height: 100%; background: linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.6),rgba(255,255,255,0)); animation: sheen 4s ease-in-out infinite; }
.btn-wa__icon { position: relative; width: 6.7rem; height: 6.7rem; flex: 0 0 6.7rem; display: block; }
.btn-wa__label { position: relative; }

/* ---------- Diferenciais ---------- */
.diff__grid { margin-top: 10rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 4.4rem; }
.diff-card { display: flex; flex-direction: column; height: 100%; }
.diff-card__media { height: 60rem; flex: 0 0 60rem; overflow: hidden; border-radius: 2.4rem; }
/* As peças ficam na metade de baixo das fotos (retrato 1000x1339); com
   o recorte centralizado o pé das vedações era cortado. Ancorado embaixo. */
.diff-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.diff-card:hover .diff-card__media img { transform: scale(1.06); }
.diff-card__title { margin: 6.3rem 0 0; min-height: 13rem; font-weight: 400; font-size: 5.57rem; line-height: 1.16; letter-spacing: -.025em; white-space: nowrap; color: #fff; }
.diff-card__text { margin: 1.8rem 0 0; min-height: 7.4rem; font-size: 2.57rem; line-height: 1.42; font-weight: 400; color: #fff; }

/* ---------- Nossa linha de produtos ---------- */
.products { background: #FBFBFC url(assets/blueprint-tile.webp) top center/96rem auto repeat; }
.products__lead { color: #0F3989; }
.products__grid { margin-top: 10rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 7.2rem; }
.product-panel { position: relative; padding-top: 4.7rem; }
.product-panel__ribbon { position: absolute; left: 0; top: 0; width: 100%; height: 8.1rem; border-radius: 1.6rem 1.6rem 0 0; background: #FDB339; }
.product-panel__card { position: relative; border-radius: 2rem; background: #fff; box-shadow: 0 1.4rem 3.6rem rgba(15,57,137,.1); padding: 6.4rem 7.8rem 7rem; }
.product-panel__eyebrow { display: block; font-weight: 500; font-size: 6.64rem; line-height: 1; color: #536264; }
/* "industrializadas"/"distribuídas" quebravam no meio da palavra em duas
   linhas; corpo menor + nowrap deixa cada uma numa linha só, igual Motion. */
.product-panel__heading { display: block; margin-top: .4rem; font-weight: 700; font-size: 7.2rem; line-height: 1.02; letter-spacing: -.03em; white-space: nowrap; color: #0F3989; }
.product-panel__list { margin: 5.4rem 0 0; padding: 0; list-style: none; display: grid; gap: 1.9rem; }
.product-panel__list li { min-height: 7.1rem; border-radius: .8rem; background: #EBEEED; border-left: .7rem solid #FDB339; display: flex; align-items: center; padding: 1.2rem 2.4rem; font-size: 4.29rem; line-height: 1.12; color: #0F3989; transition: background .25s ease, transform .25s ease; }
.product-panel__list li:hover { background: #FDE3AC; transform: translateX(.8rem); }

/* ---------- Produtos em destaque ---------- */
.featured__title { text-align: center; font-size: 8.1rem; white-space: nowrap; }
.featured__grid { margin-top: 11rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 4.4rem; }
.featured-card { background: #152754; border-radius: 2.4rem; overflow: hidden; padding-bottom: 6rem; transition: box-shadow .3s ease; }
.featured-card:hover { box-shadow: 0 3rem 6rem rgba(0,0,0,.3); }
/* As fotos de produto são retrato (1000x1339); na caixa paisagem de
   33.9rem só 42% da altura da foto aparecia. Quadrado mostra 75% e
   segue o mesmo formato dos cards de Diferenciais. */
.featured-card__media { height: auto; aspect-ratio: 1 / 1; overflow: hidden; }
.featured-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.featured-card:hover .featured-card__media img { transform: scale(1.07); }
.featured-card__title { margin: 4.4rem 6rem 0; font-weight: 600; font-size: 4.95rem; line-height: 1.04; color: #fff; }
.featured-card__text { margin: 2.2rem 6rem 0; font-size: 2.43rem; line-height: 1.16; color: #fff; }
.featured-card__tags { margin: 3.4rem 6rem 0; padding: 0; list-style: none; display: grid; gap: .6rem; }
.featured-card__tags li { font-size: 2.69rem; line-height: 1.26; font-weight: 500; color: #FDB339; }
.featured__float { display: flex; align-items: center; justify-content: center; }
.featured__float img { width: 42rem; max-width: 100%; height: auto; display: block; animation: floatA 7s ease-in-out infinite; }

/* ---------- Segmentos (favo de hexágonos) ---------- */
.segments { background: #fff url(assets/bg-hexagonos.webp) center/cover no-repeat; overflow: hidden; }
.segments__wrap { padding: 11rem 0 8rem; }
.segments__title { margin: 0 auto; max-width: 132rem; text-align: center; font-weight: 600; font-size: 6.47rem; line-height: 1.14; color: #0F3989; }
/* Favo em largura total (era travado em 192rem, sobrando faixa vazia dos
   dois lados em tela larga). Posições dos hexágonos viraram % do favo, e o
   corpo do texto virou vw pra crescer junto com eles (em rem fixo o texto
   ficava pequeno demais dentro do hexágono maior). O padding em em segue
   a mesma proporção de antes. .segments tem overflow:hidden, então o
   100vw não gera barra horizontal. */
/* aspect-ratio no lugar de padding-bottom: a porcentagem do padding
   resolve contra a largura do CONTAINER (o wrap de 192rem), não contra
   os 100vw do favo — o resultado era um favo 20% mais baixo do que
   devia, com os hexágonos achatados. */
.hive { position: relative; width: 100vw; margin: 6rem 0 0 calc(50% - 50vw); height: auto; aspect-ratio: 192 / 167.1; }
.hex { position: absolute; left: var(--x); top: var(--y); width: var(--w); height: var(--h); clip-path: url(#hexr); display: grid; place-items: center; text-align: center; cursor: default; transition: transform .35s cubic-bezier(.34,1.4,.5,1), filter .25s ease; }
.hex[data-hex][data-reveal]:hover { transform: translateY(-1.4rem) scale(1.06) rotate(-2.5deg); filter: drop-shadow(0 2.2rem 4rem rgba(15,57,137,.4)) brightness(1.05); z-index: 6; }
.hex--amber { background: #FDB339; color: #0F3989; padding: 0 1.45em; font-weight: 600; font-size: min(2vw, 40px); line-height: 1.1; }
.hex--navy { background: #0F3989; color: #fff; padding: 0 1.32em; font-weight: 600; font-size: min(2vw, 40px); line-height: 1.1; }
.hex--img { overflow: hidden; }
.hex--img img { width: 100%; height: 100%; object-fit: cover; }
.hex--outline { background: #0F3989; }
.hex--outline .hex__inner { width: calc(100% - .9rem); height: calc(100% - .9rem); background: #fff; clip-path: url(#hexr); display: grid; place-items: center; text-align: center; padding: 0 1.37em; font-weight: 600; font-size: min(2vw, 40px); line-height: 1.1; color: #0F3989; }

/* ---------- Lista de perfis ---------- */
.profiles { background: #0F3989; }
.profiles__title { margin: 0; font-weight: 800; font-size: 10.82rem; line-height: 1; color: #fff; }
.profiles__title-mark { display: inline-block; margin-right: 2rem; font-size: 1.5em; line-height: .7; vertical-align: -.06em; color: #fff; font-weight: 800; }
.profiles__lead { margin: 2.6rem 0 0; font-size: 4.3rem; line-height: 1.2; color: #fff; }
.profiles__tabs { margin-top: 6.4rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.profiles__tab { height: 7.2rem; padding: 0 3.4rem; border: none; border-radius: 3.6rem; font-family: inherit; font-weight: 600; font-size: 2.89rem; cursor: pointer; transition: background .22s ease, color .22s ease, transform .22s ease; background: transparent; color: #fff; box-shadow: inset 0 0 0 .2rem rgba(255,255,255,.65); }
.profiles__tab.is-active { background: #FDB339; color: #0F3989; box-shadow: none; }
/* Abas e chips já declaravam transição de background/transform, mas nunca
   ganharam o estado de hover — a maior área clicável da página não dava
   retorno nenhum ao mouse. Em (hover: hover) pra não grudar no toque. */
@media (hover: hover) {
  .profiles__tab:hover:not(.is-active) { background: rgba(255,255,255,.14); transform: translateY(-.3rem); }
}
.profiles__panel { margin-top: 6.4rem; background: #0F3989; border: .4rem solid #fff; border-radius: 4rem; padding: 1.6rem; overflow: hidden; }
.profiles__panel-inner { background: #fff; border-radius: 2.8rem; padding: 4rem 3rem; display: grid; grid-template-columns: repeat(12,1fr); gap: .6rem; }
.profiles__chip { border: none; background: transparent; padding: .6rem .4rem 1rem; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: .8rem; border-radius: 1rem; transition: background .22s ease, transform .22s ease, box-shadow .22s ease; }
.profiles__chip.is-active { background: #FDB339; transform: translateY(-.5rem); box-shadow: 0 .9rem 1.8rem rgba(15,57,137,.2); }
@media (hover: hover) {
  .profiles__chip:hover:not(.is-active) { background: #FDE3AC; transform: translateY(-.4rem); box-shadow: 0 .7rem 1.5rem rgba(15,57,137,.14); }
}
.profiles__chip-thumb { display: block; width: 100%; aspect-ratio: 36.7 / 24.5; background-image: url(assets/perfis-lista.svg?v=2); background-repeat: no-repeat; }
/* PFS: o desenho no sprite aponta pro lado oposto dos vizinhos; espelhado a pedido do João (11/09). */
.profiles__chip-thumb--flip { transform: scaleX(-1); }
.profiles__chip-label { font-weight: 600; font-size: 2.05rem; letter-spacing: .01em; white-space: nowrap; color: #0F3989; }
.profiles__detail { padding: 6.4rem 5rem 4.4rem; display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 6rem; align-items: start; }
.profiles__detail-title { margin: 0; font-weight: 700; font-size: 6.2rem; line-height: 1.06; color: #fff; }
.profiles__detail-text { margin: 0; font-size: 3.4rem; line-height: 1.28; color: #fff; }

/* ---------- Depoimentos (mesmo desenho da versão Motion: cartão branco
   com borda fina, 5 estrelas dentro de cada um e grade que se adapta,
   em vez das 2 colunas azuis com um único bloco de estrelas em cima) ---- */
.reviews { background: #F1F3F2 url(assets/bg-depoimentos.webp) center/cover no-repeat; }
.reviews__head { max-width: 92rem; margin: 0 auto; text-align: center; }
.reviews__title { margin: 2rem 0 0; text-align: center; font-weight: 600; font-size: 8.6rem; line-height: 1.02; color: #0F3989; }
.reviews__grid { margin-top: 6rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(34rem,100%),1fr)); gap: 2.8rem; }
.review-card { margin: 0; background: #fff; border: .13rem solid #e6e8ef; border-radius: 2rem; padding: 3.6rem 3.2rem; display: flex; flex-direction: column; gap: 2rem; transition: box-shadow .3s ease, transform .3s ease; }
.review-card:hover { transform: translateY(-.8rem); box-shadow: 0 2.4rem 5rem rgba(20,24,58,.12); }
.review-card__stars { color: #FDB339; font-size: 2.4rem; line-height: 1; letter-spacing: .16em; }
.review-card__quote { margin: 0; font-size: 2.4rem; line-height: 1.5; color: #3c4257; }
.review-card__author { margin-top: auto; display: flex; align-items: center; gap: 1.7rem; }
.review-card__avatar { width: 5.2rem; height: 5.2rem; flex: 0 0 5.2rem; border-radius: 50%; object-fit: cover; background: #EBF2FA; }
.review-card__name { font-weight: 700; font-size: 2.2rem; color: #14183a; }

/* ---------- Indicador de confiança (+500) — faixa navy com número âmbar,
   igual Motion (era fundo branco com número azul) ---------- */
.trust { background: #0F3989; }
.trust__wrap { padding: 7rem 15rem; display: flex; align-items: center; justify-content: center; gap: 4rem; text-align: center; flex-wrap: wrap; }
.count { font-weight: 700; font-size: 12.02rem; line-height: 1; color: #0F3989; }
.trust .count { color: #FDB339; }
.trust__text { max-width: 81rem; font-size: 4.2rem; line-height: 1.25; font-weight: 600; color: #fff; }

/* ---------- Sobre (layout do Motion: texto + números à esquerda, foto
   à direita; antes era texto centralizado e uma faixa de números
   separada logo abaixo) ---------- */
.about { background: #fff url(assets/bg-anos.webp) center/cover no-repeat; }
.about__grid { padding: 11rem 15rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(46rem,100%),1fr)); gap: 7.1rem; align-items: center; }
.about__title { margin: 2rem 0 2.8rem; font-weight: 600; font-size: 8.66rem; line-height: 1.05; color: #14183a; }
.about__text { margin: 0 0 2.3rem; font-size: 3.2rem; line-height: 1.5; color: #5b6076; }
.about__text:last-of-type { margin-bottom: 0; }
.about__media { position: relative; border-radius: 2.5rem; overflow: hidden; min-height: 53rem; height: 100%; background: #0f1730; }
.about__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: slowZoom 30s ease-in-out infinite alternate; }
.about__caption { position: absolute; left: 2.8rem; bottom: 2.8rem; padding: 1.5rem 2.3rem; border-radius: 1.3rem; background: rgba(15,23,48,.82); backdrop-filter: blur(.8rem); color: #fff; font-size: 1.7rem; letter-spacing: .04em; }

/* ---------- Números (cartões dentro do Sobre) ---------- */
.stats__grid { margin-top: 4.8rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(17rem,100%),1fr)); gap: 2.5rem; }
.stat { display: block; padding: 2.8rem 2.5rem; border-radius: 1.8rem; background: #f4f5f8; border-left: .4rem solid #FDB339; text-align: left; }
.stat .count { display: block; font-size: 4.6rem; }
.stat__label { display: block; margin-top: 1rem; text-align: left; font-size: 1.8rem; line-height: 1.3; font-weight: 400; color: #5b6076; }

/* ---------- Contato ---------- */
.contact__title { margin: 0 0 8.6rem; text-align: center; font-weight: 600; font-size: 9.9rem; line-height: 1.05; color: #fff; }
.contact__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.7rem; }
/* align-items:stretch (não flex-start): o texto usa a largura toda do
   card em vez de encolher pro próprio conteúdo — é isso que deixava o
   endereço quebrando em 3 linhas mesmo sobrando espaço no card. */
.contact-card { background: #fff; border-radius: 1.6rem; height: 30.2rem; padding: 4.4rem; display: flex; flex-direction: column; justify-content: space-between; align-items: stretch; text-align: left; gap: 1.4rem; transition: background .25s ease; }
a.contact-card:hover { background: #EBF2FA; color: #0F3989; }
.contact-card__icon { width: 5.4rem; height: 5.4rem; color: #FDB339; }
.contact-card__label { font-size: 2.5rem; font-weight: 600; color: #0F3989; }
.contact-card__value { font-size: 2.5rem; color: #0F3989; }
/* Card de e-mail: dois endereços diferentes não cabem num <a> só (cada
   um precisa do próprio mailto:), então o card virou <div> com um <a>
   por linha. */
.contact-card__value--stack { display: flex; flex-direction: column; gap: .3em; }
.contact-card__value--stack a { color: inherit; }
.contact-card__value--stack a:hover { color: #FDB339; }

/* ---------- Rodapé ---------- */
/* Rodapé no padrão Motion: faixa escura compacta, títulos de coluna em
   caixa alta espaçada, links claros e barra inferior com a assinatura.
   Era faixa clara de 31rem de respiro com tipografia de 4.5rem. */
.site-footer { background: #0a1020; border-top: .13rem solid rgba(255,255,255,.09); }
.footer__grid { padding: 8rem 15rem 5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(25rem,100%),1fr)); gap: 5rem; align-items: start; }
.footer__brand { display: flex; align-items: center; gap: 1.8rem; }
.footer__brand img { width: 25rem; max-width: 100%; height: auto; display: block; filter: brightness(0) invert(1); }
.footer__col-title { display: block; font-weight: 700; font-size: 1.5rem; letter-spacing: .2em; line-height: 1; color: rgba(255,255,255,.45); }
.footer__links { margin-top: 2.3rem; display: grid; gap: 1.4rem; }
.footer__links a { font-size: 1.9rem; color: rgba(255,255,255,.8); }
.footer__links a:hover { color: #FDB339; }
.footer__social { margin-top: 2.3rem; display: grid; gap: 1.4rem; }
.footer__social a { display: flex; align-items: center; gap: 1.5rem; font-size: 1.9rem; color: rgba(255,255,255,.8); transition: color .2s ease, transform .2s ease; }
.footer__social a:hover { color: #FDB339; transform: translateX(.6rem); }
.footer__social img { width: 2.3rem; height: 2.3rem; flex: 0 0 2.3rem; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.footer__partner { text-align: left; }
.footer__partner-label { display: block; font-weight: 700; font-size: 1.5rem; letter-spacing: .2em; color: rgba(255,255,255,.45); }
.footer__partner img { margin-top: 2.3rem; width: 32rem; max-width: 100%; height: auto; margin-left: 0; opacity: .9; }
.footer__bottom { padding: 3rem 15rem 5rem; margin-top: 2.6rem; border-top: .13rem solid rgba(255,255,255,.09); display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; font-size: 1.65rem; color: rgba(255,255,255,.4); }

/* ---------- Botão flutuante de WhatsApp (igual Motion). Em px de
   propósito: é overlay fixo, não deve encolher junto com a escala
   fluida em rem do layout. ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 110; display: inline-flex; align-items: center; gap: 10px; padding: 15px 22px; border-radius: 999px; background: #FDB339; color: #14183a; font-weight: 700; font-size: 14.5px; box-shadow: 0 14px 36px rgba(0,0,0,.25); animation: floatA 5s ease-in-out infinite; transition: transform .25s ease; }
.wa-float:hover { color: #14183a; transform: scale(1.04); }

/* =============================================================
   Mobile (<=880px, mesmo corte da versão CenterSealsMotion).

   A escala fluida vw/rem é ótima pro desktop (tudo escala junto,
   pixel-perfect com o design original) mas em tela de celular ela
   encolhe o TEXTO junto com o layout e o resultado fica ilegível
   (chegava a 5px em alguns parágrafos). Aqui a estrutura/espaçamento
   continua em rem (a proporção do layout se mantém), e a tipografia
   usa clamp() com vw — escala suave entre 320 e 880px (não trava num
   tamanho fixo só, não estoura acima disso), com piso de legibilidade.
   ============================================================= */
@media (max-width: 880px) {
  .section { padding: 8rem 6rem 9rem; }
  .diff__grid, .products__grid, .stats__grid, .contact__grid, .about__grid { grid-template-columns: 1fr; }
  /* Destaques em coluna unica; o selo 24h acompanha a largura do card (no
     desktop ele tem ~75% da largura de um card, mesma proporcao aqui). */
  /* Respiro maior em cima/embaixo nesta secao (pedido do Joao, 11/09): o
     .section generico fica com ~16px aqui porque o padding e em rem. */
  .section.featured { padding-top: 40px; padding-bottom: 48px; }
  .featured__grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
  .featured__float { padding: 16px 0 8px; }
  .featured__float img { width: 75%; max-width: 280px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; padding: 6rem 6rem 3rem; gap: 3.2rem; }
  .footer__bottom { padding: 16px 6rem 24px; margin-top: 16px; font-size: clamp(10px, 3vw, 13px); }
  .footer__partner { text-align: left; }
  .footer__partner img { margin-left: 0; }
  .hero__tagline-wrap { padding: 24px 20px 28px; }

  /* ---- Menu hambúrguer (nav de desktop não cabe em tela estreita) ---- */
  .nav-toggle { display: flex; }
  .site-header__bar { gap: 1.6rem; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 99; flex-direction: column; align-items: stretch; gap: .4rem; padding: 1.6rem; background: rgba(10,16,32,.98); box-shadow: 0 1.2rem 3rem rgba(0,0,0,.3); }
  .site-nav.is-open { display: flex; }
  .site-nav__link { font-size: clamp(15px, 4.3vw, 17px); padding: 1.2rem 1.6rem; }
  .site-nav__link--cta { text-align: center; margin-top: .4rem; }

  /* ---- Segmentos: favo absoluto não sobrevive a tela estreita (hexágonos
     cortados na borda) — 2 por linha, centralizado como blocos, decorativos
     em branco escondidos (mesmo tratamento da versão Motion). Proporção do
     hexágono (42.3/38.7) mantida igual à do desktop — 1/1 distorcia o
     clip-path (ficava alto e estreito em vez do hexágono achatado certo). ---- */
  .segments__title { font-size: clamp(19px, 5.9vw, 25px); }
  /* Aqui 1rem vale ~2px (html font-size = 100vw/192), entao gap, padding e
     a borda do hexagono de contorno ficam em px/%: em rem viravam 3px de
     padding (texto encostando no recorte) e um contorno desigual, porque
     o padding horizontal do .hex apertava o interno so na largura. */
  .hive { position: static; width: 100%; height: auto; aspect-ratio: auto; margin: 20px auto 0; padding: 0 16px; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 8px; }
  /* min-width:0 e obrigatorio: flex item nasce com min-width:auto, e uma
     palavra longa ("Farmacêutica") + o padding de 12% passava do
     flex-basis em 0,35px, quebrava a dupla e desemparelhava o resto. */
  .hex { position: static; left: auto; top: auto; flex: 0 0 calc((100% - 8px) / 2); min-width: 0; width: auto; height: auto; aspect-ratio: 42.3 / 38.7; font-size: clamp(11px, 3.5vw, 15px); padding: 0; }
  /* 12% de cada lado: mesma proporcao do 1.32em do desktop (~12.5% da
     largura do hexagono). Em 3-4 linhas centradas, a parte inclinada do
     recorte come no maximo ~10% de cada lado. */
  .hex--amber, .hex--navy { padding: 0 12%; font-size: clamp(11px, 3.5vw, 15px); }
  /* Borda de ~2px com lados paralelos: num hexagono de topo reto a
     largura encolhe 1.15x mais que a altura pra mesma espessura. */
  .hex--outline .hex__inner { width: calc(100% - 5px); height: calc(100% - 4px); padding: 0 12%; font-size: clamp(11px, 3.5vw, 15px); }
  .hex--empty { display: none; }

  /* ---- Lista de perfis: 12 colunas do desktop ficavam ilegíveis (chip de
     ~26px) — 5 por linha, flex centralizado (última linha incompleta fica
     centralizada, não colada à esquerda). ---- */
  .profiles__title { font-size: clamp(22px, 7vw, 30px); }
  .profiles__lead { font-size: clamp(13px, 4vw, 17px); }
  .profiles__tabs { justify-content: center; gap: 8px; margin-top: 24px; margin-bottom: 8px; }
  /* height/padding/raio em px: em rem a aba tinha 7px de altura atras de
     um texto de 13px e o contorno (.2rem) sumia. */
  .profiles__tab { font-size: clamp(11px, 3.5vw, 15px); height: 36px; padding: 0 16px; border-radius: 18px; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.65); }
  .profiles__panel { margin-top: 24px; }
  .profiles__panel-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 16px 12px; border-radius: 14px; }
  .profiles__chip { flex: 0 0 calc((100% - 4 * 8px) / 5); padding: 4px 2px 6px; gap: 4px; border-radius: 6px; }
  .profiles__chip.is-active { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(15,57,137,.2); }
  .profiles__chip-label { font-size: clamp(9px, 3vw, 13px); }
  .profiles__detail { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 1.2rem; }
  .profiles__detail-title { font-size: clamp(16px, 5vw, 21px); }
  .profiles__detail-text { font-size: clamp(13px, 4vw, 17px); }

  /* ---- Tipografia: clamp() com vw em vez da escala fluida "crua" (que
     encolhia demais) ou de um tamanho fixo só (que não respira entre
     320 e 880px). ---- */
  /* Título maior não cabe mais só na metade clara da foto (como no desktop);
     apaga a foto + escrim atrás do texto pra continuar legível, mesma
     solução usada na versão Motion pro herói no mobile. */
  /* Hero empilhado: título em cima, foto embaixo. A foto do hero é
     panorâmica (2.4:1) — atrás do texto numa tela estreita ela sempre
     ia sair cortada no meio das peças e o título ficava disputando
     leitura com o maquinário. Empilhado, o título respira e a foto
     aparece inteira na largura toda. */
  .hero__media { height: auto; aspect-ratio: auto; min-height: 0; padding: 34px 0 0; display: flex; flex-direction: column; background: #FCFCFC; }
  .hero__media::before { display: none; }
  /* Imagem preenche a caixa inteira (inset:0) — a altura fluida antiga
     (79.1rem) não batia com o min-height fixo da caixa e sobrava um vão
     vazio embaixo do título, sem foto nem texto. */
  /* Foto em fluxo normal, sem véu por cima: 3/2 dá altura de verdade
     no celular e o enquadramento em 67% garante os anéis inteiros,
     nenhuma peça cortada pela metade. */
  .hero__frame { position: relative; inset: auto; width: 100%; aspect-ratio: 3 / 2; }
  .hero__img, .hero__video { object-position: 67% 50%; }
  /* order:-1 sobe o título: no HTML a foto vem antes (ela é o fundo no
     desktop), mas empilhado o título é que precisa abrir o hero. */
  .hero__veil { display: none; }
  .hero__copy { order: -1; position: static; z-index: 2; left: auto; top: auto; bottom: auto; width: auto; display: block; margin: 0 auto 30px; padding: 0 20px; text-align: center; }
  .hero__title { max-width: 18ch; margin: 0 auto; font-size: clamp(28px, 8vw, 42px); line-height: 1.15; color: #0F3989; }
  .hero__subtitle { max-width: 34ch; margin: 10px auto 0; font-size: clamp(14px, 4vw, 17px); line-height: 1.4; color: rgba(15,57,137,.78); }
  .hero__cta { margin: 18px auto 0; padding: 12px 26px; font-size: 14px; }
  .hero__tagline { font-size: clamp(15px, 4.5vw, 19px); line-height: 1.4; }
  .hex-bullet { width: 12px; height: 11px; }
  .section-title { font-size: clamp(22px, 7vw, 30px); }
  .section-lead { font-size: clamp(14px, 4.3vw, 18px); }
  /* padding em px: em rem dava ~5px e o icone caia dentro da curva da
     pilula (overflow:hidden recortava a lateral dele). Com 22px de
     padding o icone comeca depois do trecho curvo em qualquer altura. */
  .btn-wa { width: 100%; max-width: 420px; justify-content: center; height: auto; min-height: 46px; padding: 12px 22px; gap: 10px; border-radius: 999px; }
  .btn-wa__label { font-size: clamp(14px, 4.3vw, 18px); }
  .btn-wa__icon { width: 22px; height: 22px; flex-basis: 22px; }
  /* Fotos misturam paisagem (1.79:1) e retrato (0.75:1) — a caixa larga e
     baixa do desktop (60rem, ~3:1) cortava boa parte de qualquer uma das
     duas. contain (sem cortar nada) ficou com barra vazia de sobra —
     feio. Formato padronizado quadrado + cover: preenche a caixa inteira
     sem faixa vazia, e por ser quadrado corta bem menos que os 3:1
     originais (a maior parte de qualquer uma das fotos continua visível). */
  .diff-card__media { height: auto; flex-basis: auto; aspect-ratio: 1 / 1; }
  .diff-card__media img { object-fit: cover; }
  .diff-card__title { font-size: clamp(16px, 5.1vw, 22px); white-space: normal; min-height: 0; }
  .diff-card__text { font-size: clamp(12px, 3.7vw, 16px); min-height: 0; }
  .product-panel__eyebrow { font-size: clamp(12px, 3.7vw, 16px); }
  .product-panel__heading { font-size: clamp(20px, 6.4vw, 28px); }
  .product-panel__list li { font-size: clamp(12px, 3.7vw, 16px); min-height: 0; padding: 1rem 1.6rem; }
  .featured__title { font-size: clamp(19px, 5.9vw, 25px); white-space: normal; }
  .featured-card__title { font-size: clamp(16px, 4.8vw, 20px); }
  .featured-card__text { font-size: clamp(11px, 3.5vw, 15px); }
  .featured-card__tags li { font-size: clamp(10px, 3.2vw, 14px); }
  .reviews__title { font-size: clamp(20px, 6.4vw, 28px); }
  .review-card__quote { font-size: clamp(12px, 3.7vw, 16px); }
  .review-card__name { font-size: clamp(12px, 3.7vw, 16px); }
  .review-card__avatar { width: 40px; height: 40px; flex-basis: 40px; }
  .count { font-size: clamp(28px, 8.5vw, 38px); }
  .trust__text { font-size: clamp(13px, 4vw, 17px); }
  .about__title { font-size: clamp(19px, 5.9vw, 25px); }
  .about__text { font-size: clamp(13px, 4vw, 17px); }
  .stat__label { font-size: clamp(12px, 3.7vw, 16px); }
  .contact__title { font-size: clamp(20px, 6.4vw, 28px); }
  .contact-card { height: auto; min-height: 15rem; }
  .contact-card__icon { width: 22px; height: 22px; }
  .contact-card__label, .contact-card__value { font-size: clamp(12px, 3.7vw, 16px); }
  .footer__brand img { width: 140px; height: auto; }
  .footer__col-title { font-size: clamp(10px, 3vw, 12px); }
  .footer__links a, .footer__social a { font-size: clamp(12px, 3.7vw, 16px); }
  .footer__social img { width: 18px; height: 18px; flex-basis: 18px; }
  .footer__partner-label { font-size: clamp(9px, 3vw, 13px); }
  .footer__partner img { width: 120px; }

  /* ---- Header/hero: barra menor e logo proporcional na barra escura ---- */
  .site-header__bar { height: 70px; }
  .site-header.is-scrolled .site-header__bar { height: 60px; }
  .site-header__logo { height: 46px; }
  .site-nav__link--cta { font-size: clamp(12px, 3.7vw, 15px); }

  /* ---- Blocos novos (eyebrow, estrelas, Sobre em 1 coluna, números em
     cartão, botão flutuante): tudo em px/clamp porque o rem fluido
     encolhe demais nessa faixa. ---- */
  .section-eyebrow { font-size: clamp(10px, 3vw, 13px); letter-spacing: .22em; }
  .review-card { padding: 20px 18px; gap: 12px; border-radius: 14px; }
  .review-card__stars { font-size: clamp(13px, 4vw, 17px); }
  .review-card__quote { font-size: clamp(12px, 3.7vw, 16px); }
  .review-card__name { font-size: clamp(12px, 3.7vw, 16px); }
  .review-card__avatar { width: 38px; height: 38px; flex-basis: 38px; }

  .about__grid { padding: 8rem 6rem; gap: 3.2rem; }
  /* height:100% do desktop esticava a foto pra ~780px numa coluna só */
  .about__media { height: auto; min-height: 0; aspect-ratio: 3 / 2; border-radius: 16px; }
  .about__caption { left: 12px; bottom: 12px; padding: 8px 12px; border-radius: 8px; font-size: clamp(10px, 3vw, 13px); }
  .stats__grid { margin-top: 24px; gap: 12px; }
  .stat { padding: 14px 16px; border-radius: 12px; border-left-width: 3px; }
  .stat .count { font-size: clamp(22px, 6.5vw, 30px); }
  .stat__label { margin-top: 4px; font-size: clamp(11px, 3.4vw, 15px); }

  .wa-float { right: 12px; bottom: 12px; padding: 11px 16px; font-size: 12.5px; }
}

/* No tablet sobra largura: a foto do hero fica mais panorâmica (3/2 daria
   512px de altura em 768px, dominando a tela inteira) e mostra ~83% da
   imagem, contra ~62% no celular. */
@media (min-width: 601px) and (max-width: 880px) {
  .hero__frame { aspect-ratio: 2 / 1; }
}
