html, body { margin: 0; padding: 0; background: var(--pipo-cream); }
    * { box-sizing: border-box; }
    @keyframes pipoScrollHint {
      0%, 100% { transform: translateY(0); opacity: .7; }
      50% { transform: translateY(7px); opacity: 1; }
    }
    /* esteira de logos — loop infinito (track tem 2 cópias iguais) */
    @keyframes pipoMarquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    /* ======= Seção Agente Pipo (cena fixada: menu · títulos · painel) ======= */
    .ag-section { position: relative; z-index: 5; background: var(--pipo-cream); color: #14110E; padding: clamp(84px,11vh,148px) 0 clamp(72px,9vh,120px); overflow: visible; }
    .ag-wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px,4vw,56px); overflow: visible; }
    .ag-head { max-width: 820px; margin: 0 0 clamp(36px,5vh,64px); }
    .ag-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
    .ag-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px,4.6vw,62px); line-height: 1.04; letter-spacing: -.03em; color: #14110E; margin: 18px 0 0; text-wrap: balance; }
    .ag-title em { font-style: italic; }
    .ag-lead { font-family: var(--font-body); font-weight: 500; font-size: clamp(15px,1.5vw,19px); line-height: 1.6; color: rgba(20,17,14,.62); margin: 24px 0 0; max-width: 64ch; text-wrap: pretty; }

    .ag-grid { display: grid; grid-template-columns: 158px minmax(196px, .68fr) 1.14fr; gap: clamp(26px,3.4vw,52px); align-items: start; overflow: visible; }

    /* menu lateral (sticky) */
    .ag-menu { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 2px; }
    .ag-menu__item { display: flex; align-items: baseline; font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(20,17,14,.30); text-decoration: none; padding: 11px 0 11px 16px; border-left: 2px solid transparent; transition: color .4s var(--ease,cubic-bezier(.16,1,.3,1)), border-color .4s var(--ease,cubic-bezier(.16,1,.3,1)); }
    .ag-menu__item:hover { color: rgba(20,17,14,.6); }
    .ag-menu__item.is-active { color: #14110E; border-color: var(--accent); }
    .ag-menu__num { font-family: var(--mono); font-size: 10px; color: var(--accent); margin-right: 9px; opacity: 0; transition: opacity .4s; }
    .ag-menu__item.is-active .ag-menu__num { opacity: 1; }

    /* coluna de títulos (rola; o ativo fica nítido, os demais esmaecem) */
    .ag-textcol { display: flex; flex-direction: column; }
    .ag-text { min-height: 84vh; display: flex; flex-direction: column; justify-content: center; padding: 6px 0; opacity: .26; filter: blur(.4px); transition: opacity .55s var(--ease,cubic-bezier(.16,1,.3,1)), filter .55s var(--ease,cubic-bezier(.16,1,.3,1)); }
    .ag-text.is-active { opacity: 1; filter: none; }
    .ag-text__tag { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
    .ag-text__t { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px,3.1vw,44px); line-height: 1.08; letter-spacing: -.025em; color: #14110E; margin: 13px 0 0; text-wrap: balance; }
    .ag-text__p { font-family: var(--font-body); font-weight: 500; font-size: clamp(14px,1.3vw,16.5px); line-height: 1.62; color: rgba(20,17,14,.6); margin: 18px 0 0; max-width: 42ch; text-wrap: pretty; }

    /* coluna de cards (sem box atrás): cada card gruda e EMPILHA, acumulando
       em cima — nenhum sai de cena. O mais recente fica à frente, embaixo;
       os anteriores deixam só o topo (chrome) à mostra. */
    .ag-cards { position: relative; }
    .ag-card { position: sticky; top: calc(116px + var(--i) * 48px); height: min(560px, 62vh); margin-bottom: 22vh; will-change: transform; }
    .ag-card:last-child { margin-bottom: 22vh; }
    /* spacer de trava: folga abaixo do último card p/ ele FICAR grudado (a
       pilha trava) em vez de soltar e subir por cima dos demais ao chegar no 06 */
    .ag-cards__lock { height: 56vh; pointer-events: none; }
    /* sombra justa e direcionada p/ baixo (offset>blur-spread): não vaza para
       cima sobre a faixa do card anterior, então NÃO acumula ao empilhar.
       A separação entre cards empilhados vem da borda 1px. */
    .ag-card .ai-demo { height: 100%; min-height: 0; border-radius: 20px; border: 1px solid var(--line-strong); box-shadow: 0 14px 28px -22px rgba(20,17,14,.42); }
    /* topo do card mais enxuto, p/ a faixa empilhada ficar discreta */
    .ag-card .ai-demo__chrome { padding: 11px 16px; }
    .ag-card .ai-demo__screen { overflow: hidden; }

    /* placeholder idle (antes do card virar ativo): mark de 3 barras da Pipo */
    .ai-demo__idle { flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; }
    .ai-demo__idle-bars { display: flex; align-items: flex-end; gap: 7px; height: 50px; }
    .ai-demo__idle-bars i { width: 9px; border-radius: 6px; background: var(--accent); opacity: .16; animation: aiIdleBar 1.5s ease-in-out infinite; }
    .ai-demo__idle-bars i:nth-child(1) { height: 55%; }
    .ai-demo__idle-bars i:nth-child(2) { height: 78%; animation-delay: .18s; }
    .ai-demo__idle-bars i:nth-child(3) { height: 100%; animation-delay: .36s; }
    @keyframes aiIdleBar { 0%,100% { opacity: .12; } 50% { opacity: .34; } }

    /* =====================================================================
       Seção PIPO CUIDA — índice scroll-driven (efeito próprio, isolado).
       Esquerda: lista de 6 títulos (ativo ilumina + leve parallax).
       Direita: palco com a tela do item ativo + descrição (slide+fade).
       Nada em comum com a mecânica de empilhamento da seção Agente.
       ===================================================================== */
    .cu { position: relative; z-index: 5; background: var(--beige); color: #14110E; overflow: visible; }
    .cu__head { max-width: 1280px; margin: 0 auto; padding: clamp(84px,11vh,148px) clamp(20px,4vw,56px) clamp(20px,3vh,40px); }
    .cu__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
    .cu__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px,4.6vw,62px); line-height: 1.04; letter-spacing: -.03em; color: #14110E; margin: 18px 0 0; text-wrap: balance; max-width: 20ch; }
    .cu__title em { font-style: italic; }
    .cu__lead { font-family: var(--font-body); font-weight: 500; font-size: clamp(15px,1.5vw,19px); line-height: 1.6; color: rgba(20,17,14,.62); margin: 24px 0 0; max-width: 64ch; text-wrap: pretty; }

    /* pista alta: dá um passo de scroll a cada um dos 6 itens */
    .cu__driver { position: relative; height: 480vh; }
    /* cena fixada (pin) durante toda a pista */
    .cu__pin { position: sticky; top: 0; height: 100vh; display: grid; grid-template-columns: minmax(260px,.92fr) 1.08fr; gap: clamp(32px,5vw,84px); align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px,4vw,56px); }
    /* lista de títulos (parallax aplicado via JS no transform) */
    .cu__index { display: flex; flex-direction: column; gap: clamp(12px,2vh,26px); will-change: transform; }
    .cu__item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline; cursor: pointer; }
    .cu__item:hover:not(.is-active) .cu__label { color: rgba(20,17,14,.5); }
    .cu__num { font-family: var(--mono); font-size: 12px; color: var(--accent); opacity: .28; transition: opacity .5s var(--ease,cubic-bezier(.16,1,.3,1)); }
    .cu__item.is-active .cu__num { opacity: 1; }
    .cu__label { font-family: var(--font-display); font-weight: 500; font-size: clamp(21px,2.5vw,36px); line-height: 1.1; letter-spacing: -.02em; color: rgba(20,17,14,.24); transition: color .55s var(--ease,cubic-bezier(.16,1,.3,1)); text-wrap: balance; }
    .cu__item.is-active .cu__label { color: #14110E; }

    .cu__stage { position: relative; min-width: 0; min-height: min(640px,76vh); display: flex; align-items: center; }
    .cu__panel { width: 100%; }
    .cu__panel .ai-demo { height: min(500px,56vh); min-height: 0; border-radius: 20px; border: 1px solid var(--line-strong); box-shadow: 0 18px 40px -26px rgba(20,17,14,.5); -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--paper); }
    .cu__desc { margin: 20px 2px 0; }
    .cu__desc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
    .cu__desc-p { font-family: var(--font-body); font-weight: 500; font-size: clamp(14px,1.25vw,16.5px); line-height: 1.6; color: rgba(20,17,14,.62); margin: 10px 0 0; max-width: 52ch; text-wrap: pretty; }

    /* troca do palco: deslizamento vertical + fade ao montar o novo item */
    @keyframes cuEnter { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
    .cu-enter { animation: cuEnter .6s var(--ease,cubic-bezier(.16,1,.3,1)) both; }

    .cu__mobile { display: none; }

    @media (max-width: 760px) {
      .pipo-nav-links { display: none !important; }
      .pipo-nav-contact { display: none !important; }
      .pipo-nums-grid { grid-template-columns: repeat(2, 1fr) !important; row-gap: 28px !important; }
    }
    @media (max-width: 820px) {
      /* sem cena fixada: menu no topo, depois título + card intercalados */
      .ag-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
      .ag-menu { position: static; top: auto; flex-direction: row; flex-wrap: wrap; gap: 6px 16px; margin: 0 0 28px; order: -1; }
      .ag-menu__item { border-left: 0; padding: 6px 0; }
      .ag-menu__item.is-active { border-color: transparent; }
      .ag-textcol, .ag-cards { display: contents; }
      .ag-cards__lock { display: none; }
      .ag-text { min-height: 0; opacity: 1; filter: none; padding: 0; margin: 0 0 18px; }
      .ag-card { position: static; height: auto; transform: none !important; top: auto; margin: 0 0 44px; }
      .ag-card .ai-demo { min-height: 420px; }
      /* intercala: título i (order 2i) seguido do card i (order 2i+1) */
      .ag-text:nth-of-type(1){order:0} .ag-card:nth-of-type(1){order:1}
      .ag-text:nth-of-type(2){order:2} .ag-card:nth-of-type(2){order:3}
      .ag-text:nth-of-type(3){order:4} .ag-card:nth-of-type(3){order:5}
      .ag-text:nth-of-type(4){order:6} .ag-card:nth-of-type(4){order:7}
      .ag-text:nth-of-type(5){order:8} .ag-card:nth-of-type(5){order:9}
      .ag-text:nth-of-type(6){order:10} .ag-card:nth-of-type(6){order:11}
    }
    @media (max-width: 820px) {
      /* Pipo Cuida no mobile: sem duas colunas, sem índice, sem parallax.
         Só a sequência empilhada — tela em cima, título + descrição embaixo. */
      .cu__driver { display: none; }
      .cu__head { padding-bottom: clamp(8px,2vh,18px); }
      .cu__mobile { display: flex; flex-direction: column; gap: clamp(48px,8vw,64px); max-width: 560px; margin: 0 auto; padding: 8px clamp(18px,5vw,28px) clamp(60px,9vh,104px); }
      .cu__block { display: flex; flex-direction: column; }
      .cu__block .ai-demo { min-height: 460px; border-radius: 18px; border: 1px solid var(--line-strong); box-shadow: 0 16px 36px -26px rgba(20,17,14,.5); -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--paper); }
      .cu__block-text { margin: 22px 2px 0; }
      .cu__block-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
      .cu__block-t { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px,7vw,32px); line-height: 1.1; letter-spacing: -.02em; color: #14110E; margin: 10px 0 0; }
      .cu__block-p { font-family: var(--font-body); font-weight: 500; font-size: 15px; line-height: 1.6; color: rgba(20,17,14,.62); margin: 12px 0 0; text-wrap: pretty; }
    }

    /* =====================================================================
       SEÇÃO CONTROLE DE CUSTO — vídeo com scrub por scroll (mesmo mecanismo do
       hero). O gráfico aparece DENTRO do vídeo (cena final). Por cima, o título
       entra em blocos sincronizados com o avanço do vídeo. Véu escuro garante
       contraste do texto claro. A pista alta dá curso ao scrub + às frases.
       ===================================================================== */
    .co { position: relative; z-index: 5; background: #0a0c11; color: #fff; overflow: visible; }
    .co__driver { position: relative; height: 360vh; }
    .co__pin { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #0a0c11; }

    /* (1) vídeo de fundo — scrub controlado pelo scroll */
    .co__videolayer { position: absolute; inset: 0; background: #0a0c11; }
    .co__videolayer video { width: 100%; height: 100%; object-fit: cover; display: block; }
    /* overlay de escurecimento: entra ao fim das frases (escurece a cena toda) */
    .co__veil { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: #06080c; opacity: 0; }

    /* (2) texto por cima — blocos em sequência */
    .co__content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 3; }
    .co__inner { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px,6vw,96px); }
    .co__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--pipo-blue-light); margin: 0 0 clamp(22px,3.4vh,38px); opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease,cubic-bezier(.16,1,.3,1)), transform .7s var(--ease,cubic-bezier(.16,1,.3,1)); }
    .co__eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .7; }
    .co__lines { display: flex; flex-direction: column; gap: clamp(12px,1.8vh,24px); max-width: clamp(340px, 44vw, 660px); }
    .co__line { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(30px,4.3vw,66px); line-height: 1.04; letter-spacing: -.025em; color: #fff; text-wrap: balance; text-shadow: 0 2px 44px rgba(0,0,0,.5); opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease,cubic-bezier(.16,1,.3,1)), transform .8s var(--ease,cubic-bezier(.16,1,.3,1)); }
    .co__up { color: var(--pipo-coral); font-style: italic; }
    .co__dn, .co__dn-em { color: var(--pipo-blue-light); font-style: italic; }
    /* estado revelado (scroll-driven, .is-on por bloco) */
    .co__eyebrow.is-on, .co__line.is-on { opacity: 1; transform: none; }

    @media (max-width: 820px) {
      /* mantém o mecanismo (pin + scrub); ajusta tipografia e respiro */
      .co__content { align-items: flex-start; }
      .co__inner { padding: clamp(104px,16vh,150px) clamp(22px,7vw,30px) clamp(48px,8vh,80px); }
      .co__lines { max-width: none; gap: 14px; }
      .co__line { font-size: clamp(27px,7.4vw,40px); line-height: 1.08; }
    }

    /* =====================================================================
       SEÇÃO DEPOIMENTOS — "O que dizem os clientes". Fundo escuro, texto claro.
       Eyebrow no topo, fileira horizontal das fotos (a ativa cresce + anel de
       progresso que carrega ~5s e avança sozinho), depoimento centralizado
       abaixo. Clique abre na hora e reinicia o anel. Entrada animada.
       ===================================================================== */
    .qz { position: relative; z-index: 5; background: #060D41; color: #fff; overflow: hidden; padding: clamp(80px,11vh,138px) 0; }
    .qz-inner { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 clamp(24px,5vw,64px); }

    .qz-eyebrow { display: flex; align-items: center; gap: 14px; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 clamp(34px,6vh,68px); }
    .qz-eyebrow__line { width: 40px; height: 1px; background: rgba(255,255,255,.4); flex: none; }

    /* fileira de fotos */
    .qz-faces { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(16px,2.4vw,30px); min-height: 116px; margin: 0 0 clamp(30px,4.5vh,52px); }
    .qz-face { position: relative; width: clamp(56px,6.2vw,68px); height: clamp(56px,6.2vw,68px); flex: none; padding: 0; border: 0; cursor: pointer; background: none; border-radius: 50%;
      opacity: 0; transform: scale(.4); transition: opacity .4s var(--ease,cubic-bezier(.16,1,.3,1)), transform .45s var(--ease,cubic-bezier(.16,1,.3,1)), width .42s var(--ease,cubic-bezier(.16,1,.3,1)), height .42s var(--ease,cubic-bezier(.16,1,.3,1)); }
    .qz-inner.is-in .qz-face { opacity: .5; transform: scale(1); animation: qzPop .5s cubic-bezier(.2,1.25,.3,1) var(--d,0s) backwards; }
    .qz-inner.is-in .qz-face:hover { opacity: .8; }
    .qz-inner.is-in .qz-face.is-active { opacity: 1; z-index: 2; width: clamp(86px,9.4vw,100px); height: clamp(86px,9.4vw,100px); }
    .qz-face__img { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; background: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 14px 30px -16px rgba(0,0,0,.6); }
    .qz-face__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; display: block; }
    /* anel de progresso na foto ativa */
    .qz-prog { position: absolute; inset: -6px; transform: rotate(-90deg); pointer-events: none; }
    .qz-prog__track { fill: none; stroke: rgba(255,255,255,.2); stroke-width: 4; }
    .qz-prog__bar { fill: none; stroke: #2A6FDB; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: qzProg 5s linear forwards; }
    @keyframes qzProg { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }

    @media (prefers-reduced-motion: reduce) { .qz-face { animation: none !important; } }
    @keyframes qzPop { 0% { opacity: 0; transform: scale(.4); } 60% { opacity: 1; transform: scale(1.1); } 100% { opacity: .5; transform: scale(1); } }

    /* depoimento centralizado */
    .qz-stage { max-width: 820px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .qz-stage__mark { display: block; font-family: var(--font-display); font-size: 66px; line-height: .4; height: 26px; color: rgba(255,255,255,.36); }
    .qz-stage__quote { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(20px,2.3vw,30px); line-height: 1.5; letter-spacing: -.01em; color: #fff; margin: 16px 0 0; max-width: 760px; text-wrap: pretty; animation: qzFade .55s var(--ease,cubic-bezier(.16,1,.3,1)); }
    .qz-stage__who { display: flex; flex-direction: column; gap: 5px; margin-top: clamp(22px,3.4vh,34px); animation: qzFade .55s var(--ease,cubic-bezier(.16,1,.3,1)) .05s both; }
    .qz-stage__name { font-family: var(--font-body); font-weight: 700; font-size: 16px; color: #fff; }
    .qz-stage__role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.6); }
    @keyframes qzFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

    @media (max-width: 880px) {
      .qz-eyebrow { justify-content: center; margin-bottom: clamp(28px,5vh,44px); }
      .qz-face { width: clamp(54px,15vw,64px); height: clamp(54px,15vw,64px); }
      .qz-inner.is-in .qz-face.is-active { width: clamp(80px,22vw,94px); height: clamp(80px,22vw,94px); }
    }

    /* =====================================================================
       DOBRA FINAL — EFEITO CORTINA. Começa coberta pela cor terracota; ao
       rolar, a cortina desliza da direita p/ a esquerda (translateX) e some
       pela esquerda, revelando a foto do café atrás. Com a foto revelada,
       surgem a frase serifada + o botão pill que abre o formulário HubSpot.
       ===================================================================== */
    .ct { position: relative; z-index: 5; background: #DE785C; color: #14110E; overflow: hidden; }
    .ct__driver { position: relative; }
    .ct__pin { position: relative; height: 100svh; overflow: hidden; }
    .ct__bg { position: absolute; inset: 0; z-index: 1; }
    .ct__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block; }
    /* cortina: painel terracota que, ao entrar na viewport, desliza rápido p/ a
       esquerda (animação automática, sem depender do scroll) e revela a foto */
    .ct__curtain { position: absolute; inset: 0; z-index: 3; background: #DE785C; will-change: transform;
      box-shadow: 30px 0 70px -22px rgba(91,49,28,.4); transform: translateX(0); }
    /* conteúdo revelado, sobre a foto. Scrim radial suave atrás do texto p/
       legibilidade do lettering branco (sem filtro cobrindo a dobra toda). */
    .ct__content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: clamp(22px,3.4vh,38px); padding: 0 clamp(24px,6vw,80px);
      background: radial-gradient(58% 48% at 50% 50%, rgba(8,12,22,.5) 0%, rgba(8,12,22,.22) 52%, rgba(8,12,22,0) 78%); }
    .ct__inner { display: flex; flex-direction: column; align-items: center; gap: clamp(24px,3.6vh,40px); }
    /* lettering: mesmo estilo dos títulos grandes do site (serifa display, branco) */
    .ct__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-style: normal; font-size: clamp(40px,6.6vw,96px); line-height: 1; letter-spacing: -.03em; color: #fff; text-wrap: balance; text-shadow: 0 2px 40px rgba(0,0,0,.42); }
    .ct__word { display: inline-block; white-space: nowrap; }
    .ct__title .ltr { display: inline-block; opacity: 0; transform: translateY(.5em); will-change: opacity, transform; }
    .ct__title .ct__accent { color: #DE785C; }
    .ct__cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 600; font-size: clamp(14px,1.3vw,16px); letter-spacing: .01em; color: #fff; text-decoration: none; cursor: pointer; padding: 14px 30px; border-radius: 999px; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.08); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
      opacity: 0; transform: translateY(14px); transition: background .25s var(--ease,cubic-bezier(.16,1,.3,1)), border-color .25s var(--ease,cubic-bezier(.16,1,.3,1)), color .25s var(--ease,cubic-bezier(.16,1,.3,1)); }
    .ct__cta:hover { background: #fff; border-color: #fff; color: #14110E; }
    @media (max-width: 820px) {
      .ct__title { text-shadow: 0 2px 30px rgba(0,0,0,.5); }
    }

    /* ----- Modal do formulário HubSpot (fechado por padrão; abre só no clique) ----- */
    .hsmodal { position: fixed; inset: 0; z-index: 60; display: none; align-items: center; justify-content: center; padding: 24px; }
    .hsmodal.is-open { display: flex; }
    .hsmodal__backdrop { position: absolute; inset: 0; background: rgba(8,12,22,.62); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
    .hsmodal__panel { position: relative; z-index: 1; width: 100%; max-width: 520px; max-height: 88vh; overflow-y: auto; background: #fff; border-radius: 20px; padding: clamp(26px,4vw,42px); box-shadow: 0 40px 90px -30px rgba(0,0,0,.5); animation: hsmodalIn .4s var(--ease,cubic-bezier(.16,1,.3,1)); }
    @keyframes hsmodalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
    .hsmodal__close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(20,17,14,.06); color: #14110E; font-size: 20px; line-height: 1; cursor: pointer; }
    .hsmodal__close:hover { background: rgba(20,17,14,.12); }
    .hsmodal__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--pipo-coral); margin: 0 0 6px; }
    .hsmodal__title { font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1.1; letter-spacing: -.02em; color: #14110E; margin: 0 0 18px; }
    .hsmodal__fallback { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: rgba(20,17,14,.6); margin: 0; }
