/* ==========================================================================
   Heroes vivas dos clientes, portadas do site Next.js.

   Cada hero é desenhada em 1290 por 639 dentro do `.palco` e reduzida por
   `transform: scale` para caber na caixa que a chama. `container-type: size`
   faz `cqw` e `cqh` medirem o palco, e não a janela, então as medidas de tela
   dos sites originais continuam valendo aqui dentro.
   ========================================================================== */

.palco {
  --lh-jost: "Jost";
  --lh-parisienne: "Parisienne";
  --lh-archivo: "Archivo";
  --lh-fraunces: "Fraunces";
  --lh-dm-mono: "DM Mono";
  --lh-ivy: "Ivy Mode";
  --lh-open-sans: "Open Sans";
  --lh-inter-tight: "Inter Tight";
  --lh-instrument: "Instrument Serif";

  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 1290px;
  height: 639px;
  container-type: size;
  container-name: hero;
  overflow: hidden;
  isolation: isolate;
  transform: scale(var(--escala, 0));
  transform-origin: top left;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0;
}

.palco h2 {
  text-wrap: initial;
}

/* ---------------------------------------------------------- Casa di Ana -- */

.cda {
  position: relative;
  height: 100cqh;
  --cda-papel: #ede4d8;
  --cda-navy: #1d3a52;
  --cda-suave: cubic-bezier(0.22, 1, 0.36, 1);
  --cda-rapido: 260ms;
  --cda-medio: 620ms;
  --cda-lento: 1100ms;
  --cda-goteira: clamp(1.25rem, 4cqw, 4rem);
  background: var(--cda-papel);
  font-family: var(--lh-jost), system-ui, sans-serif;
  line-height: 1.6;
}

.cda-hero {
  --bolha: 20px;
  position: relative;
  isolation: isolate;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cda-papel);
  padding: 2rem var(--cda-goteira) calc(clamp(2rem, 8cqh, 5rem) + var(--bolha));
  --recorte: radial-gradient(
        circle var(--bolha) at var(--bolha) calc(100% - var(--bolha)),
        #000 99%,
        #0000 101%
      )
      0 0 / calc(2 * var(--bolha)) 100% repeat-x,
    linear-gradient(#000 0 0) 0 0 / 100% calc(100% - var(--bolha)) no-repeat;
  -webkit-mask: var(--recorte);
  mask: var(--recorte);
}

.cda-fundo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--cda-navy);
}

.cda-fundo video,
.cda-fundo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.92);
}

.cda-veu {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      62% 52% at 50% 46%,
      color-mix(in srgb, var(--cda-navy) 42%, transparent) 0%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      color-mix(in srgb, var(--cda-navy) 74%, transparent) 0%,
      color-mix(in srgb, var(--cda-navy) 58%, transparent) 26%,
      color-mix(in srgb, var(--cda-navy) 56%, transparent) 74%,
      color-mix(in srgb, var(--cda-navy) 72%, transparent) 100%
    );
}

.cda-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 4.5cqh, 3rem);
}

.cda-medalhao {
  height: clamp(72px, 14cqh, 116px);
  width: auto;
}

.cda-nome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cda-wordmark {
  width: clamp(15rem, 42cqw, 34rem);
  height: auto;
}

.cda-assinatura {
  font-family: var(--lh-parisienne), cursive;
  font-size: clamp(1.15rem, 2.2cqw, 1.7rem);
  line-height: 1.2;
  opacity: 0.85;
}

.cda-acoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem clamp(2rem, 5cqw, 3.5rem);
}

.cda-acao {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0 6px;
  color: inherit;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.2;
  box-shadow: inset 0 -1px 0 color-mix(in srgb, currentColor 32%, transparent);
}

.cda-acao::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--cda-rapido) var(--cda-suave);
}

.cda-acao svg {
  transition: transform var(--cda-rapido) var(--cda-suave);
}

.cda-acao:hover::after {
  transform: scaleX(1);
}

.cda-acao:hover svg {
  transform: translateX(4px);
}

.cda-revela {
  display: block;
  opacity: 0;
  transition: opacity var(--cda-medio) var(--cda-suave),
    transform var(--cda-medio) var(--cda-suave),
    clip-path var(--cda-lento) var(--cda-suave);
  transition-delay: var(--atraso, 0ms);
}

.cda-subir {
  transform: translateY(2.5rem);
}

.cda-escala {
  transform: scale(1.06);
  clip-path: inset(0 0 12% 0);
}

.cda-revelado .cda-revela {
  opacity: 1;
  transform: none;
}

.cda-revelado .cda-escala {
  clip-path: inset(-10% -10% -10% -10%);
}

/* ----------------------------------------------------------- Fruti Polpa -- */

@property --fp-cor-ativa {
  syntax: "<color>";
  inherits: true;
  initial-value: #f5b200;
}

.fp {
  position: relative;
  height: 100cqh;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: clamp(20px, 2.5cqw, 44px) clamp(20px, 4cqw, 64px) clamp(20px, 2.5cqw, 44px);
  --fp-amarelo: #ffce00;
  --fp-azul: #1450a3;
  --fp-tinta: #14161a;
  --fp-tinta-suave: #4a4f57;
  --fp-creme: #f7f5ef;
  --fp-branco: #ffffff;
  --fp-transicao: 320ms cubic-bezier(0.22, 0.9, 0.3, 1);
  background: var(--fp-creme);
  color: var(--fp-tinta);
  font-family: var(--lh-archivo), system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.fp-fundo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(110px, 19cqh, 200px);
  pointer-events: none;
  z-index: 0;
}

.fp-onda-rosa {
  opacity: 0.92;
}

.fp-onda-pessego {
  opacity: 0.9;
}

.fp::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(40px, 6cqw, 96px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(251, 230, 210, 0),
    rgba(251, 230, 210, 0.72) 58%,
    #fbe6d2
  );
}

.fp-carrossel {
  position: relative;
  z-index: 2;
  overflow: visible;
  max-width: 1560px;
  width: 100%;
  height: min(840px, 84cqh);
  margin: 0 auto;
  touch-action: pan-y;
  user-select: none;
}

.fp-carrossel:focus-visible {
  outline: 2px solid var(--fp-azul);
  outline-offset: 6px;
  border-radius: 8px;
}

.fp-halo {
  position: absolute;
  top: 44%;
  left: 50%;
  z-index: 0;
  width: min(1120px, 78cqw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, var(--fp-cor-ativa) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
  transition: --fp-cor-ativa 720ms ease;
}

.fp-atm-caixa {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.fp-atm {
  position: absolute;
  height: auto;
  transform: rotate(var(--giro, 0deg));
}

.fp-respingo {
  top: -1%;
  right: -1%;
  width: 31%;
  opacity: 0.26;
  --giro: 8deg;
}

.fp-morango {
  top: 0;
  left: 20%;
  width: 8.5%;
  opacity: 0.82;
  --giro: -14deg;
}

.fp-limao {
  top: 66%;
  right: 19%;
  width: 8%;
  opacity: 0.78;
  --giro: 10deg;
}

.fp-folha {
  top: 64%;
  left: 13%;
  width: 9%;
  opacity: 0.62;
  --giro: 22deg;
}

.fp-marca {
  position: absolute;
  top: 26%;
  left: 50%;
  width: 152%;
  margin: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.fp-marca-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%) scaleY(1.05);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 3.5px var(--cor, rgba(240, 188, 0, 0.5));
  opacity: 0;
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.22, 0.9, 0.3, 1);
}

.fp-marca-texto.fp-ativo {
  opacity: 0.78;
  transform: translate(-50%, -50%) scaleY(1);
}

.fp-palco {
  position: absolute;
  inset: 0;
  cursor: grab;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.fp-palco.fp-arrastando {
  cursor: grabbing;
}

.fp-palco.fp-arrastando .fp-slide {
  transition: none;
}

.fp-slide {
  position: absolute;
  top: 44%;
  left: 50%;
  width: clamp(265px, 27.5cqw, 440px);
  transform: translate(-50%, -50%) translateX(calc(var(--deslocamento, 0) * 1px))
    rotateY(var(--giro-y, 0deg)) rotateX(var(--giro-x, 0deg)) rotateZ(var(--giro-z, 0deg))
    scale(var(--escala, 0.3));
  transform-style: preserve-3d;
  opacity: var(--visivel, 0);
  z-index: var(--camada, 0);
  transition: transform 760ms cubic-bezier(0.22, 0.9, 0.3, 1), opacity 620ms ease;
  will-change: transform;
  pointer-events: none;
}

.fp-sache {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.fp-slide::before {
  content: "";
  position: absolute;
  left: 80%;
  bottom: 4%;
  width: 48%;
  height: 5.5%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20, 22, 26, 0.24), rgba(20, 22, 26, 0));
  z-index: 1;
}

.fp-slide::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3%;
  width: 78%;
  height: 7%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20, 22, 26, 0.26), rgba(20, 22, 26, 0));
  z-index: 0;
}

.fp-particula {
  position: absolute;
  top: 62%;
  left: 64%;
  width: 168%;
  max-width: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.fp-contador {
  position: absolute;
  top: 12%;
  left: 0;
  z-index: 40;
}

.fp-etiqueta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: clamp(11px, 0.8cqw, 13px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fp-azul);
}

.fp-numero {
  margin: 0;
  font-size: clamp(30px, 3cqw, 46px);
  font-weight: 900;
  line-height: 1;
  color: var(--fp-azul);
}

.fp-total {
  font-size: 0.48em;
  font-weight: 700;
  color: rgba(20, 22, 26, 0.4);
}

.fp-chamada {
  position: absolute;
  left: 0;
  bottom: 8%;
  z-index: 40;
  max-width: 30ch;
}

.fp-titulo {
  margin: 0;
  font-size: clamp(19px, 1.7cqw, 27px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.fp-azul {
  color: var(--fp-azul);
}

.fp-arraste {
  position: absolute;
  right: 0;
  bottom: 11%;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--fp-tinta-suave);
}

.fp-arraste-circulo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex: none;
  border: 1.5px solid rgba(20, 22, 26, 0.22);
  border-radius: 50%;
  color: var(--fp-tinta);
}

.fp-arraste-circulo svg {
  width: 28px;
  height: 28px;
  animation: fp-arrastar 2.6s ease-in-out infinite;
}

@keyframes fp-arrastar {
  0%,
  100% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
}

.fp-seta {
  position: absolute;
  top: 42%;
  z-index: 45;
  opacity: 0.55;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-top: -27px;
  border: 1.5px solid rgba(20, 22, 26, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--fp-tinta);
  cursor: pointer;
  transition: background var(--fp-transicao), color var(--fp-transicao),
    border-color var(--fp-transicao), transform var(--fp-transicao);
}

.fp-seta svg {
  width: 22px;
  height: 22px;
}

.fp-carrossel:hover .fp-seta,
.fp-seta:focus-visible {
  opacity: 1;
}

.fp-seta:hover {
  background: var(--fp-azul);
  border-color: var(--fp-azul);
  color: var(--fp-branco);
}

.fp-seta-anterior {
  left: 0;
}

.fp-seta-proximo {
  right: 0;
}

.fp-seta-anterior:hover {
  transform: translateX(-3px);
}

.fp-seta-proximo:hover {
  transform: translateX(3px);
}

@container hero (max-width: 980px) {
  .fp-carrossel {
    height: min(700px, 88cqh);
  }

  .fp-palco {
    inset: 16% 0 auto;
    height: 48%;
  }

  .fp-atm-caixa {
    display: none;
  }

  .fp-halo {
    top: 34%;
    width: min(560px, 96cqw);
    opacity: 0.24;
  }

  .fp-marca {
    top: 34%;
    width: 118%;
  }

  .fp-slide {
    width: min(352px, 60cqw);
  }

  .fp-contador {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .fp-chamada {
    left: 50%;
    bottom: 11%;
    max-width: none;
    transform: translateX(-50%);
    text-align: center;
  }

  .fp-titulo {
    font-size: clamp(20px, 5.4cqw, 30px);
  }

  .fp-arraste {
    display: none;
  }

  .fp-seta {
    width: 46px;
    height: 46px;
  }

  .fp-seta svg {
    width: 18px;
    height: 18px;
  }

  .fp-marca-texto {
    -webkit-text-stroke-width: 1.5px;
  }
}

@container hero (max-width: 620px) {
  .fp-carrossel {
    height: min(600px, 84cqh);
  }

  .fp-slide {
    width: min(286px, 66cqw);
  }

  .fp-seta {
    display: none;
  }
}

/* ------------------------------------------------------- Barbearia Lyu's -- */

.lyu {
  position: relative;
  height: 100cqh;
  display: flex;
  align-items: center;
  overflow: hidden;
  --lyu-preto: #080706;
  --lyu-creme: #faf6e1;
  --lyu-creme-suave: rgba(250, 246, 225, 0.72);
  --lyu-ouro: #f5d211;
  --lyu-linha: rgba(250, 246, 225, 0.14);
  --lyu-raio: 2px;
  --lyu-gutter: clamp(1.25rem, 4cqw, 4.5rem);
  background: var(--lyu-preto);
  color: var(--lyu-creme);
  font-family: var(--lh-jost), system-ui, sans-serif;
  line-height: 1.6;
  padding: 2rem var(--lyu-gutter) 3rem;
}

.lyu-fundo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lyu-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 84% center;
  animation: lyu-aproximar 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lyu-veu {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    var(--lyu-preto) 0%,
    rgba(8, 7, 6, 0.95) 18%,
    rgba(8, 7, 6, 0.55) 34%,
    rgba(8, 7, 6, 0.12) 50%,
    rgba(8, 7, 6, 0) 62%
  );
}

.lyu-veu-base {
  position: absolute;
  inset: auto 0 0 0;
  height: 24%;
  background: linear-gradient(to top, rgba(8, 7, 6, 0.6) 0%, rgba(8, 7, 6, 0) 100%);
}

.lyu-conteudo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(0rem, 4cqw, 5rem);
}

.lyu-titulo {
  margin: 0;
  animation: lyu-subir 1s ease 0.2s both;
}

.lyu-lockup {
  width: clamp(250px, 27cqw, 400px);
  height: auto;
}

.lyu-texto {
  max-width: 44ch;
  margin: clamp(1.5rem, 3cqh, 2.25rem) 0 0;
  font-size: clamp(1.02rem, 1.2cqw, 1.2rem);
  line-height: 1.65;
  color: var(--lyu-creme-suave);
  animation: lyu-subir 1s ease 0.35s both;
}

.lyu-destaque {
  color: var(--lyu-creme);
}

.lyu-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3.5cqh, 2.5rem);
  animation: lyu-subir 1s ease 0.5s both;
}

.lyu-btn-1,
.lyu-btn-2 {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  height: 58px;
  padding: 0 2.4rem;
  border-radius: var(--lyu-raio);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.lyu-btn-1 {
  background: var(--lyu-ouro);
  color: var(--lyu-preto);
}

.lyu-btn-1:hover {
  background: var(--lyu-creme);
  transform: translateY(-2px);
}

.lyu-btn-2 {
  border: 1px solid var(--lyu-linha);
  padding: 0 2rem;
  color: var(--lyu-creme);
}

.lyu-btn-2:hover {
  border-color: var(--lyu-ouro);
  color: var(--lyu-ouro);
  transform: translateY(-2px);
}

.lyu-icone {
  width: 18px;
  height: 18px;
  flex: none;
}

@container hero (max-width: 1100px) {
  .lyu-conteudo {
    padding-left: 0;
  }

  .lyu-veu {
    background: linear-gradient(
      110deg,
      var(--lyu-preto) 0%,
      rgba(8, 7, 6, 0.92) 30%,
      rgba(8, 7, 6, 0.6) 55%,
      rgba(8, 7, 6, 0.2) 82%,
      rgba(8, 7, 6, 0) 100%
    );
  }
}

@container hero (max-width: 820px) {
  .lyu {
    align-items: flex-end;
    padding: 1rem var(--lyu-gutter) 2rem;
  }

  .lyu-fundo {
    inset: 0 0 auto 0;
    height: 58cqh;
  }

  .lyu-foto {
    object-position: 62% 18%;
  }

  .lyu-veu {
    background: linear-gradient(
      to bottom,
      rgba(8, 7, 6, 0.35) 0%,
      rgba(8, 7, 6, 0.08) 34%,
      rgba(8, 7, 6, 0.62) 76%,
      var(--lyu-preto) 99%
    );
  }

  .lyu-veu-base {
    display: none;
  }

  .lyu-lockup {
    width: min(60cqw, 250px);
  }

  .lyu-texto {
    max-width: 34ch;
    margin-top: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .lyu-acoes {
    display: grid;
    gap: 0.6rem;
    margin-top: 1.75rem;
  }

  .lyu-btn-1,
  .lyu-btn-2 {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 54px;
    padding: 0 1.5rem;
    letter-spacing: 0.18em;
  }
}

@keyframes lyu-subir {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lyu-aproximar {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ----------------------------------------------------------- Ellen Jeans -- */

.ej {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  height: 100cqh;
  --ej-casca: #edebe6;
  --ej-areia: #0a0a0a;
  --ej-suave: cubic-bezier(0.16, 1, 0.3, 1);
  --ej-display: var(--lh-fraunces), Georgia, "Times New Roman", serif;
  --ej-corpo: var(--lh-archivo), system-ui, sans-serif;
  --ej-dado: var(--lh-dm-mono), ui-monospace, Consolas, monospace;
  background: var(--ej-areia);
  color: var(--ej-areia);
  font-family: var(--ej-corpo);
  line-height: 1.6;
}

.ej-painel {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  background: var(--ej-casca);
  isolation: isolate;
}

.ej-painel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  z-index: -2;
  transition: transform 1.2s var(--ej-suave);
}

.ej-foto:hover img {
  transform: scale(1.045);
}

.ej-veu {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.42) 0%,
    rgba(10, 10, 10, 0.06) 34%,
    rgba(10, 10, 10, 0.06) 52%,
    rgba(10, 10, 10, 0.62) 100%
  );
}

.ej-veu-fundo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.05) 26%,
      rgba(10, 10, 10, 0.45) 62%,
      rgba(10, 10, 10, 0.78) 100%
    ),
    linear-gradient(72deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.22) 52%, rgba(10, 10, 10, 0) 84%);
}

.ej-legenda {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 clamp(1rem, 2cqw, 1.7rem) clamp(1rem, 2cqw, 1.6rem);
  padding-top: 0.85rem;
  border-top: 1px solid rgba(248, 245, 240, 0.45);
  color: #f8f5f0;
  font-size: 0.95rem;
  line-height: 1.3;
}

.ej-seta {
  font-family: var(--ej-dado);
  font-size: 0.95em;
  transition: transform 0.45s var(--ej-suave);
}

.ej-foto:hover .ej-seta {
  transform: translate(3px, -3px);
}

.ej-destaque {
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 4cqw, 3.4rem);
  color: #f8f5f0;
}

.ej-destaque img {
  object-position: 50% 30%;
}

.ej-texto {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.ej-rotulo {
  font-family: var(--ej-dado);
  font-size: clamp(0.66rem, 0.78cqw, 0.74rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.5;
}

.ej-hero-rotulo {
  margin: 0 0 clamp(1rem, 2cqw, 1.6rem);
  color: rgba(248, 245, 240, 0.78);
}

.ej-titulo {
  font-family: var(--ej-display);
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 144;
  font-weight: 400;
  font-size: clamp(2.05rem, 3.15cqw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.038em;
  margin: 0 0 clamp(1.2rem, 2cqw, 1.8rem);
}

.ej-linha {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.ej-linha > span {
  display: block;
}

.ej-resumo {
  margin: 0;
  color: rgba(248, 245, 240, 0.82);
  max-width: 38ch;
  font-size: 1rem;
}

.ej-acoes {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2cqw, 2rem);
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 2.6cqw, 2.4rem);
}

.ej-elo {
  font-family: var(--ej-dado);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8f5f0;
  padding: 0 0 0.35rem;
  border-bottom: 1.5px dashed rgba(248, 245, 240, 0.5);
  cursor: pointer;
  transition: color 0.4s var(--ej-suave), border-color 0.4s var(--ej-suave);
}

.ej-elo-forte {
  border-bottom-style: solid;
  border-bottom-color: #f8f5f0;
}

.ej-elo:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.ej-elo .ej-seta {
  display: inline-block;
  margin-left: 0.5rem;
}

.ej-elo:hover .ej-seta {
  transform: translateX(3px);
}

.ej-hero-rotulo,
.ej-resumo,
.ej-acoes {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ej-suave) calc(var(--i, 0) * 0.085s + 0.12s),
    transform 1s var(--ej-suave) calc(var(--i, 0) * 0.085s + 0.12s);
}

.ej-carregado .ej-hero-rotulo,
.ej-carregado .ej-resumo,
.ej-carregado .ej-acoes {
  opacity: 1;
  transform: none;
}

.ej-linha > span {
  transform: translateY(106%);
  transition: transform 1.1s var(--ej-suave) calc(var(--i, 0) * 0.085s + 0.12s);
}

.ej-carregado .ej-linha > span {
  transform: none;
}

@container hero (max-width: 1100px) {
  .ej {
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: 100cqh;
  }

  .ej-destaque {
    grid-column: 1 / -1;
    min-height: 78cqh;
    padding-block: 3rem clamp(2rem, 4cqw, 3.4rem);
  }

  .ej-foto {
    aspect-ratio: 4 / 5;
  }
}

/* ------------------------------------------------------- menos movimento -- */

@media (prefers-reduced-motion: reduce) {
  .cda-revela,
  .ej-hero-rotulo,
  .ej-resumo,
  .ej-acoes,
  .ej-linha > span {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .fp-halo,
  .fp-slide,
  .fp-marca-texto {
    transition: none;
  }

  .fp-arraste-circulo svg,
  .lyu-foto,
  .lyu-titulo,
  .lyu-texto,
  .lyu-acoes {
    animation: none;
  }
}

/* ------------------------------------------------------------ Illuminare -- */

@font-face {
  font-family: "Ivy Mode";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("../fontes/IvyMode-Light.woff2") format("woff2");
}

@font-face {
  font-family: "Ivy Mode";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fontes/IvyMode-Regular.woff2") format("woff2");
}

.ill {
  position: relative;
  isolation: isolate;
  height: 100cqh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 6cqh, 4rem) clamp(1.4rem, 4cqw, 4rem);
  overflow: hidden;
  background: #221812;
  color: #f6f0e8;
  font-family: var(--lh-open-sans), system-ui, sans-serif;
}

.ill-palco {
  position: absolute;
  inset: 0;
  z-index: -2;
}

/* O reel é 360p e tem legendas: o desfoque suaviza sem apagar a imagem */
.ill-fundo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.94);
  transform: scale(1.08);
}

.ill-veu {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(34, 24, 18, 0.56) 0%,
    rgba(34, 24, 18, 0.42) 45%,
    rgba(34, 24, 18, 0.64) 100%
  );
}

.ill-titulo {
  margin: 0;
  font-family: var(--lh-ivy), Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 9cqw, 8.5rem);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-indent: 0.12em;
  opacity: 0;
  transform: translateY(1.6cqh);
  transition: opacity 1100ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ill-frase {
  margin: clamp(1.2rem, 2.5cqh, 2rem) 0 0;
  font-family: var(--lh-ivy), Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.1cqw, 1.8rem);
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(1.6cqh);
  transition: opacity 1100ms ease 220ms, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 220ms;
}

/* Ivy Mode não tem itálico; o destaque fica só na cor para não sair oblíquo falso */
.ill-frase em {
  font-style: normal;
  color: #c8a377;
}

.ill-revelado .ill-titulo,
.ill-revelado .ill-frase {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------- Europlant -- */

.euro {
  --euro-forest: #06231a;
  --euro-cream: #f3f1e8;
  --euro-lime: #b4d341;
  --euro-goteira: clamp(20px, 4.5cqw, 72px);
  --euro-ease: cubic-bezier(0.16, 1, 0.3, 1);

  position: relative;
  isolation: isolate;
  height: 100cqh;
  overflow: hidden;
  background: var(--euro-forest);
  color: var(--euro-cream);
  font-family: var(--lh-inter-tight), system-ui, sans-serif;
  line-height: 1.5;
}

.euro-palco {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.euro-quadros {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.euro-veu {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
      to top,
      rgba(6, 35, 26, 0.88) 0%,
      rgba(6, 35, 26, 0.42) 34%,
      rgba(6, 35, 26, 0.08) 60%
    ),
    linear-gradient(to bottom, rgba(6, 35, 26, 0.55) 0%, rgba(6, 35, 26, 0) 22%);
}

.euro-escurecer {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(
    120% 90% at 50% 100%,
    rgba(4, 24, 17, 0.94) 30%,
    rgba(4, 24, 17, 0.55) 70%,
    rgba(4, 24, 17, 0.3) 100%
  );
}

.euro-texto {
  position: absolute;
  inset: 0;
  padding: 0 var(--euro-goteira);
  display: grid;
  align-content: end;
  will-change: opacity, transform;
}

.euro-texto-1 {
  padding-bottom: clamp(38px, 9cqh, 96px);
  gap: clamp(16px, 2.6cqh, 26px);
}

.euro-titulo {
  margin: 0;
  font-size: clamp(44px, 6.6cqw, 112px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-wrap: balance;
  max-width: 14ch;
}

.euro-titulo em {
  font-family: var(--lh-instrument), Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--euro-lime);
  letter-spacing: -0.02em;
}

.euro-linha {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.euro-linha > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1400ms var(--euro-ease);
}

.euro-linha:nth-child(2) > span {
  transition-delay: 120ms;
}

.euro-revelado .euro-linha > span {
  transform: none;
}

.euro-base {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 40px;
}

.euro-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.euro-botao {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--euro-cream);
  color: var(--euro-forest);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.euro-botao-contorno {
  background: transparent;
  color: currentColor;
  box-shadow: inset 0 0 0 1.5px currentColor;
}

.euro-seta {
  width: 18px;
  height: 18px;
}

.euro-texto-2,
.euro-texto-3 {
  place-content: center;
  text-align: center;
  opacity: 0;
}

.euro-grande {
  margin: 0 auto;
  max-width: 18ch;
  font-size: clamp(34px, 4.6cqw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(4, 24, 17, 0.5);
}

.euro-grande em {
  font-family: var(--lh-instrument), Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--euro-lime);
}

.euro-texto-3 {
  align-content: center;
  justify-items: center;
  gap: clamp(24px, 4.5cqh, 48px);
}

.euro-marca {
  width: min(680px, 74cqw);
  height: auto;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.45));
}

.euro-indicador {
  position: absolute;
  right: var(--euro-goteira);
  bottom: clamp(38px, 9cqh, 96px);
  width: 3px;
  height: 84px;
  border-radius: 3px;
  background: rgba(243, 241, 232, 0.18);
  overflow: hidden;
}

.euro-indicador i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--euro-lime);
  transform: scaleY(0);
  transform-origin: top;
}

@media (prefers-reduced-motion: reduce) {
  .ill-titulo,
  .ill-frase,
  .euro-linha > span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------------------------------------------- dormindo -- */

/*
  Cartão coberto pelo seguinte na pilha: a hero continua montada, com o vídeo
  e as imagens já carregados, mas nada dela é pintado enquanto está escondida.
  Volta a aparecer inteira, no mesmo ponto, assim que o cartão reaparece.
*/
.caso-capa.dormindo .palco {
  visibility: hidden;
}
