/* ==========================================================================
   PLANET — Base de configuração
   Referência de design: Figma 1920px / grid 12 colunas / margem 128 / gutter 24
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variáveis globais
   -------------------------------------------------------------------------- */
:root {
  /* Layout (conforme layout-colunas.md) */
  --layout-width: 1920px;
  --container-max-width: 1664px;
  --container-margin-desktop: 128px;
  --grid-columns: 12;
  --grid-gutter: 24px;

  /* Cores */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-off-white: #efeee9;
  --color-marrom: #221916;    /* TODO: confirmar valor exato do Figma */

  /* Tipografia */
  --font-family-base: "neue-haas-grotesk-display", "Helvetica Neue", Arial, sans-serif;

  /* Pesos disponíveis na licença Typekit */
  --fw-thin: 100;
  --fw-light: 300;
  --fw-roman: 400;
  --fw-medium: 500;
  --fw-bold: 700;
}

/* --------------------------------------------------------------------------
   2. Reset básico
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-family-base);
  font-weight: var(--fw-roman);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.4;
}

::selection {
  background-color: rgba(34, 25, 22, 0.5);
  color: var(--color-white);
}

::-moz-selection {
  background-color: rgba(34, 25, 22, 0.5);
  color: var(--color-white);
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   3. Container — preso à margem do Figma (128px @1920)
   -------------------------------------------------------------------------- */
.container {
  width: calc(100% - (var(--container-margin-desktop) * 2));
  max-width: var(--container-max-width);
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   4. Grid interno de 12 colunas (gutter 24px)
   -------------------------------------------------------------------------- */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  column-gap: var(--grid-gutter);
}

/* Helpers utilitários de span (1 a 12) */
.col-span-1  { grid-column: span 1; }
.col-span-2  { grid-column: span 2; }
.col-span-3  { grid-column: span 3; }
.col-span-4  { grid-column: span 4; }
.col-span-5  { grid-column: span 5; }
.col-span-6  { grid-column: span 6; }
.col-span-7  { grid-column: span 7; }
.col-span-8  { grid-column: span 8; }
.col-span-9  { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-11 { grid-column: span 11; }
.col-span-12 { grid-column: span 12; }

/* --------------------------------------------------------------------------
   5. Helpers de peso tipográfico
   -------------------------------------------------------------------------- */
.fw-thin   { font-weight: var(--fw-thin); }
.fw-light  { font-weight: var(--fw-light); }
.fw-roman  { font-weight: var(--fw-roman); }
.fw-medium { font-weight: var(--fw-medium); }
.fw-bold   { font-weight: var(--fw-bold); }

/* --------------------------------------------------------------------------
   6. Responsividade (referência principal: desktop 1920px)
   -------------------------------------------------------------------------- */
@media (max-width: 1439px) {
  .container {
    width: calc(100% - 96px);
  }
}

@media (max-width: 1023px) {
  .container {
    width: calc(100% - 48px);
  }

  .grid-12 {
    column-gap: 20px;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }

  .grid-12 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 16px;
  }
}

/* ==========================================================================
   SEÇÃO 1 — HERO
   ========================================================================== */

:root {
  /* Tamanhos tipográficos — escala equilibrada (UI/UX) */
  --fs-title: 58px;
  --fs-subtitle: 24px;
  --fs-cta: 18px;
}

/* --------------------------------------------------------------------------
   Blur fixo + gradiente do topo (fixo, acompanha toda a página)
   -------------------------------------------------------------------------- */
.top-fade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  z-index: 90;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* o blur é forte no topo e some suavemente para baixo */
  -webkit-mask-image: linear-gradient(to bottom, #000 35%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 35%, transparent 100%);
}

.top-fade::after {
  content: "";
  position: absolute;
  inset: 0;
  /* gradiente escuro para dar contraste à navbar */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 34px;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
}

.navbar__logo img {
  height: 18px;
  width: auto;
}

.navbar__logo-fallback {
  font-size: 22px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--color-white);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.navbar__cta:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.navbar__cta .chevron {
  flex: none;
}

/* --------------------------------------------------------------------------
   Hero base — fixa (sticky) enquanto o vídeo é percorrido pelo scroll
   -------------------------------------------------------------------------- */
.hero-scroll {
  position: relative;
  /* distância de scroll para percorrer todo o vídeo (≈ 1.6x viewport) */
  height: 260vh;
}

/* Mobile/touch: vídeo em autoplay (sem scrub) — sem altura extra de scroll */
.hero-autoplay .hero-scroll {
  height: 100vh;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* contraste para os textos da esquerda */
    linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 58%),
    /* black overlay 50% */
    rgba(0, 0, 0, 0.5);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding-bottom: 90px; /* leve elevação do bloco acima do card 38+ */
}

/* --------------------------------------------------------------------------
   Indicador de scroll (desktop) — estilo Apple, acompanha o progresso do scrub
   --p (0..1) é atualizado via JS de forma interpolada (movimento suave)
   -------------------------------------------------------------------------- */
.hero__scrollbar {
  --p: 0;
  position: absolute;
  right: clamp(20px, 3.2vw, 52px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--color-white);
  pointer-events: none;
  opacity: 0;
  animation: hero-scrollbar-in 0.9s ease 0.5s forwards;
}

@keyframes hero-scrollbar-in {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.hero__scrollbar-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  /* some à medida que o usuário avança no scrub */
  opacity: calc(0.75 - var(--p) * 1.6);
}

.hero__scrollbar-track {
  position: relative;
  width: 2px;
  height: 180px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.hero__scrollbar-progress {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--color-white);
  transform-origin: top center;
  transform: scaleY(var(--p));
  will-change: transform;
}

.hero__scrollbar-thumb {
  position: absolute;
  left: 50%;
  top: calc(var(--p) * 100%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-white);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.14),
    0 0 14px 2px rgba(255, 255, 255, 0.55);
  will-change: top;
}

.hero__scrollbar-arrow {
  /* dica inicial: balança suavemente e some quando o scrub começa */
  opacity: calc(0.7 - var(--p) * 2);
  animation: hero-scrollbar-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-scrollbar-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Sem scrub (mobile/touch/reduced-motion): não exibe o indicador */
.hero-autoplay .hero__scrollbar {
  display: none;
}

@media (max-width: 1023px), (prefers-reduced-motion: reduce) {
  .hero__scrollbar {
    display: none;
  }
}

.hero__text {
  max-width: 780px;
}

/* Título principal — 64px */
.hero__title {
  font-size: var(--fs-title);
  font-weight: var(--fw-light);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Subtítulo */
.hero__subtitle {
  margin-top: 26px;
  font-size: var(--fs-subtitle);
  font-weight: var(--fw-light);
  line-height: 1.5;
  max-width: 660px;
}

/* CTA */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 15px 26px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--color-white);
  font-size: var(--fs-cta);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hero__cta:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.hero__cta-icon {
  width: 18px;
  height: auto;
  flex: none;
  color: var(--color-white);
  transition: color 0.25s ease;
}

.hero__cta:hover .hero__cta-icon {
  color: var(--color-marrom);
}

/* ==========================================================================
   SUBSEÇÃO — FAIXA "38+ ANOS" (efeito 3D entre seções)
   ========================================================================== */
.stats {
  position: relative;
  z-index: 3;
  background-color: var(--color-off-white);
  padding-bottom: 70px;
}

/* perspectiva para o efeito 3D do card */
/* centraliza o card e dá a perspectiva para o efeito 3D */
.stats__grid {
  display: flex;
  justify-content: center;
  perspective: 1600px;
}

.stats__card {
  /* puxa o card para cima, fazendo-o "atravessar" o limite entre as seções */
  margin-top: -110px;

  display: flex;
  align-items: center;
  gap: 52px;
  padding: 44px 60px;
  min-height: 180px;
  /* abraça o conteúdo e fica centralizado (sem sobra à direita) */
  width: auto;
  max-width: 100%;

  color: var(--color-white);
  background-color: var(--color-marrom); /* fallback caso bg1.jpg não exista */
  background-image: url("assets/bg1.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.65);

  /* estado inicial do efeito 3D */
  transform-origin: center bottom;
  transform: rotateX(34deg) translateY(60px) scale(0.96);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s ease;
  will-change: transform, opacity;
}

.stats__card.is-visible {
  transform: rotateX(0deg) translateY(0) scale(1);
  opacity: 1;
}

.stats__number {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.stats__count {
  display: flex;
  align-items: flex-start;
  font-weight: var(--fw-bold);
  font-size: 76px;
  letter-spacing: -0.02em;
}

.stats__plus {
  font-size: 46px;
  font-weight: var(--fw-medium);
  margin-top: 5px;
}

.stats__label {
  font-size: 36px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 2px;
}

.stats__divider {
  width: 1px;
  align-self: stretch;
  background-color: rgba(255, 255, 255, 0.4);
}

.stats__text {
  font-size: 28px;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVIDADE — Hero / Faixa 38+
   ========================================================================== */
@media (max-width: 1439px) {
  :root {
    --fs-title: 64px;
    --fs-subtitle: 28px;
    --fs-cta: 14px;
  }
}

@media (max-width: 1023px) {
  :root {
    --fs-title: 40px;
    --fs-subtitle: 28px;
    --fs-cta: 14px;
  }

  .stats__card {
    gap: 30px;
    padding: 30px 36px;
  }

  .stats__count {
    font-size: 56px;
  }

  .stats__label {
    font-size: 26px;
  }

  .stats__text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-title: 32px;
    --fs-subtitle: 16px;
    --fs-cta: 13px;
  }

  .navbar {
    padding-block: 22px;
  }

  .navbar__cta {
    display: none;
  }

  .stats__card {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: -70px;
  }

  .stats__text {
    white-space: normal;
  }

  .stats__divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}

/* ==========================================================================
   SEÇÃO — PROBLEMAS ("Você já perdeu um projeto...")
   ========================================================================== */
.problems {
  background-color: var(--color-off-white);
  padding-block: 50px 130px;
}

.problems__grid {
  align-items: start;
}

/* Coluna esquerda — conteúdo */
.problems__content {
  grid-column: 1 / 6;
}

/* Coluna direita — imagem */
.problems__media {
  grid-column: 7 / -1;
}

.problems__media img {
  width: 100%;
  height: auto;
}

/* Título — mesmo tamanho do hero (--fs-title) */
.problems__title {
  font-size: var(--fs-title);
  font-weight: var(--fw-light);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #221916;
}

/* Intro — mesmo tamanho do subtítulo do hero */
.problems__intro {
  margin-top: 22px;
  font-size: var(--fs-subtitle);
  color: #221916;
  opacity: 75;
}

/* Lista de problemas */
.problems__list {
  margin-top: 26px;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--color-white);
  padding: 18px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.problem-item + .problem-item {
  margin-top: 12px;
}

.problem-item__icon {
  width: 15px;
  height: 15px;
  flex: none;
}

.problem-item__divider {
  width: 1px;
  align-self: stretch;
  background-color: #ece9e2;
  flex: none;
}

.problem-item__text {
  font-size: var(--fs-subtitle);
  font-weight: var(--fw-roman);
  line-height: 1.3;
  color: #6e6c64;
}

/* Frase de fechamento */
.problems__statement {
  margin-top: 34px;
  font-size: var(--fs-subtitle);
  line-height: 1.25;
  text-transform: uppercase;
  color: #221916;
}

/* ----- Responsividade — Seção Problemas ----- */
@media (max-width: 1023px) {
  .problems {
    padding-block: 40px 90px;
  }

  .problems__content {
    grid-column: 1 / 7;
  }

  .problems__media {
    grid-column: 8 / -1;
  }
}

@media (max-width: 767px) {
  .problems__grid {
    display: block;
  }

  .problems__media {
    margin-top: 40px;
  }
}

/* ==========================================================================
   SEÇÃO — SOLUÇÃO ("A Planet Stone existe para eliminar esses riscos")
   ========================================================================== */
.solution {
  background-color: var(--color-white);
  padding-block: 90px 100px;
}

/* Cabeçalho centralizado */
.solution__header {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.solution__title {
  font-size: var(--fs-title);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-marrom);
}

.solution__subtitle {
  margin-top: 22px;
  font-size: var(--fs-subtitle);
  line-height: 1.45;
  color: #221916;
  opacity: 75%;
}

/* Grade de cards */
.solution__grid {
  margin-top: 56px;
  row-gap: 24px;
  align-items: stretch;
}

.solution-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 46px 34px;
  min-height: 212px;
  background-color: var(--color-off-white);
}

.solution-card--wide {
  grid-column: span 6;
}

.solution-card__icon {
  width: auto;
  height: 54px;
  margin-bottom: 26px;
}

.solution-card__title {
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-marrom);
}

.solution-card__desc {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.2;
  color: #221916;
  opacity: 70%;
  max-width: 260px;
}

/* CTA */
.solution__cta-wrap {
  margin-top: 56px;
  text-align: center;
}

.solution__cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 18px 34px;
  background-color: var(--color-marrom);
  color: var(--color-white);
  font-size: var(--fs-cta);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}

.solution__cta:hover {
  background-color: #000000;
}

.solution__cta-icon {
  flex: none;
  color: var(--color-white);
}

/* ----- Responsividade — Seção Solução ----- */
@media (max-width: 1023px) {
  .solution {
    padding-block: 70px 80px;
  }

  .solution-card,
  .solution-card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .solution__grid {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .solution-card--wide {
    grid-column: auto;
  }
}

/* ==========================================================================
   SEÇÃO — PROVA SOCIAL ("Quando a pedra vira obra-prima")
   ========================================================================== */
.testimonial {
  background-color: var(--color-marrom); /* fallback caso bg2.jpg não exista */
  background-image: url("assets/bg2.jpg");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding-block: 100px;
}

.testimonial__grid {
  align-items: center;
}

.testimonial__content {
  grid-column: 1 / 6;
}

/* Título */
.testimonial__title {
  font-size: var(--fs-title);
  font-weight: var(--fw-light);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Subtítulo */
.testimonial__subtitle {
  margin-top: 24px;
  font-size: var(--fs-subtitle);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* Lista de stats (cards com borda) */
.testimonial__list {
  margin-top: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 26px 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background-color 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease;
}

.stat-card + .stat-card {
  margin-top: 16px;
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(6px);
}

.stat-card__value {
  flex: none;
  font-size: 30px;
  line-height: 1.05;
  color: var(--color-white);
}

.stat-card__desc {
  font-size: 21px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
}

/* Bloco de citação */
.testimonial__quote {
  margin-top: 40px;
}

.testimonial__quote-icon {
  width: auto;
  height: 34px;
  opacity: 0.4;
  margin-bottom: 14px;
}

.testimonial__quote-text {
  font-size: var(--fs-subtitle);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.testimonial__quote-text .fw-medium {
  color: var(--color-white);
}

/* Coluna direita — placeholder de vídeo */
.testimonial__media {
  grid-column: 8 / -1;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 41 / 53;
  overflow: hidden;
  background-color: #000;
}

.video-player__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Área clicável (toggle) cobrindo todo o vídeo */
.video-player__toggle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Círculo do controle */
.video-player__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-white);
  padding-left: 4px; /* compensa o triângulo do play */
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.25s ease;
}

.video-player__btn:hover {
  background-color: rgba(255, 255, 255, 0.32);
}

.video-player__icon--pause {
  display: none;
  padding-left: 0;
}

/* Estado: tocando */
.video-player[data-state="playing"] .video-player__toggle {
  background-color: transparent;
}

.video-player[data-state="playing"] .video-player__btn {
  opacity: 0;
  transform: scale(0.9);
  padding-left: 0;
}

.video-player[data-state="playing"]:hover .video-player__toggle {
  background-color: rgba(0, 0, 0, 0.22);
}

.video-player[data-state="playing"]:hover .video-player__btn {
  opacity: 1;
  transform: scale(1);
}

.video-player[data-state="playing"] .video-player__icon--play {
  display: none;
}

.video-player[data-state="playing"] .video-player__icon--pause {
  display: block;
}

/* ----- Responsividade — Seção Prova Social ----- */
@media (max-width: 1023px) {
  .testimonial {
    padding-block: 70px;
  }

  .testimonial__content {
    grid-column: 1 / 7;
  }

  .testimonial__media {
    grid-column: 8 / -1;
  }
}

@media (max-width: 767px) {
  .testimonial__grid {
    display: block;
  }

  .testimonial__media {
    margin-top: 44px;
    max-width: 420px;
  }

  .stat-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ==========================================================================
   BOTÃO ESCURO REUTILIZÁVEL
   ========================================================================== */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 18px 34px;
  background-color: #221916;
  color: var(--color-white);
  font-size: var(--fs-cta);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}

.btn-dark:hover {
  background-color: #000000;
}

.btn-dark__icon {
  flex: none;
  color: var(--color-white);
}

/* ==========================================================================
   SEÇÃO — PORTFÓLIO ("Pedras selecionadas para quem não aceita o comum")
   ========================================================================== */
.portfolio {
  background-color: var(--color-off-white);
  padding-block: 90px;
}

/* Cabeçalho centralizado */
.portfolio__header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.portfolio__title {
  font-size: var(--fs-title);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-marrom);
}

.portfolio__subtitle {
  margin-top: 20px;
  font-size: var(--fs-subtitle);
  line-height: 1.4;
  color: #221916;
}

.portfolio__subtitle .fw-medium {
  color: var(--color-marrom);
}

/* Grade de cards */
.portfolio__grid {
  margin-top: 48px;
}

.portfolio-card {
  grid-column: span 3;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 9 / 20;
  overflow: hidden;
  background-color: #2a211b; /* fallback enquanto a imagem não existe */
  background-size: cover;
  background-position: center;
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.45) 32%,
    rgba(0, 0, 0, 0) 62%
  );
}

.portfolio-card__body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}

.portfolio-card__title {
  font-size: 24px;
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--color-white);
}

.portfolio-card__desc {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

/* Frase de fechamento */
.portfolio__statement {
  max-width: 640px;
  margin: 50px auto 0;
  text-align: center;
  font-size: var(--fs-subtitle);
  line-height: 1.45;
  color: #221916;
}

.portfolio__statement .fw-medium {
  color: var(--color-marrom);
}

/* CTA */
.portfolio__cta-wrap {
  margin-top: 40px;
  text-align: center;
}

/* ----- Responsividade — Seção Portfólio ----- */
@media (max-width: 1023px) {
  .portfolio {
    padding-block: 70px;
  }

  .portfolio-card {
    grid-column: span 6;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 767px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }
}

/* ==========================================================================
   SEÇÃO — PÚBLICO-ALVO ("Feito para quem projeta no mais alto nível")
   ========================================================================== */
.audience {
  background-color: var(--color-white);
  padding-block: 90px;
}

/* Cabeçalho — título à esquerda, subtítulo à direita */
.audience__header {
  align-items: center;
}

.audience__title {
  grid-column: 1 / 7;
  font-size: var(--fs-title);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-marrom);
}

.audience__subtitle {
  grid-column: 8 / -1;
  font-size: var(--fs-subtitle);
  line-height: 1.45;
  color: #221916;
}

.audience__subtitle .fw-medium {
  color: var(--color-marrom);
}

/* Grade de cards (layout alternado) */
.audience__grid {
  margin-top: 50px;
  row-gap: 24px;
}

.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
  background-color: #2a211b; /* fallback enquanto a imagem não existe */
  background-size: cover;
  background-position: center;
}

.audience-card--wide {
  grid-column: span 7;
}

.audience-card--narrow {
  grid-column: span 5;
}

.audience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.audience-card__body {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding: 32px 40px;
}

.audience-card__title {
  font-size: 24px;
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--color-white);
}

.audience-card__desc {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

/* ----- Responsividade — Seção Público-alvo ----- */
@media (max-width: 1023px) {
  .audience {
    padding-block: 70px;
  }

  .audience__title {
    grid-column: 1 / -1;
  }

  .audience__subtitle {
    grid-column: 1 / -1;
    margin-top: 18px;
  }

  .audience-card--wide,
  .audience-card--narrow {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .audience__grid {
    grid-template-columns: 1fr;
  }

  .audience-card--wide,
  .audience-card--narrow {
    grid-column: auto;
    min-height: 260px;
  }

  .audience-card__body {
    max-width: none;
  }
}

/* ==========================================================================
   SEÇÃO — PROCESSO / DIFERENCIAIS ("38 anos. Uma obsessão...")
   ========================================================================== */
.process {
  background-color: var(--color-marrom); /* fallback caso bg3.jpg não exista */
  background-image: url("assets/bg3.jpg");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding-block: 100px;
}

.process__grid {
  align-items: center;
}

.process__content {
  grid-column: 1 / 7;
}

/* Título */
.process__title {
  font-size: var(--fs-title);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Subtítulo */
.process__subtitle {
  margin-top: 22px;
  font-size: var(--fs-subtitle);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

/* Lista de cards (brancos) */
.process__list {
  margin-top: 28px;
  max-width: 660px;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 22px;
  background-color: var(--color-white);
  padding: 20px 26px;
}

.process-item + .process-item {
  margin-top: 14px;
}

.process-item__icon {
  width: 46px;
  height: auto;
  flex: none;
}

.process-item__divider {
  width: 1px;
  align-self: stretch;
  background-color: #ece9e2;
  flex: none;
}

.process-item__title {
  font-size: 20px;
  line-height: 1.2;
  color: #1c1c1c;
}

.process-item__desc {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.45;
  color: #6e6c64;
}

/* Coluna direita — imagem */
.process__media {
  grid-column: 7 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process__media img {
  width: 100%;
  height: auto;
}

/* ----- Responsividade — Seção Processo ----- */
@media (max-width: 1023px) {
  .process {
    padding-block: 70px;
  }

  .process__content {
    grid-column: 1 / 8;
  }

  .process__media {
    grid-column: 8 / -1;
  }
}

@media (max-width: 767px) {
  .process__grid {
    display: block;
  }

  .process__media {
    margin-top: 44px;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* ==========================================================================
   UTILITÁRIO — acessibilidade
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   SEÇÃO — FORMULÁRIO ("Fale com um especialista e receba sua cotação")
   ========================================================================== */
.contact {
  position: relative;
  overflow: hidden;
  background-color: var(--color-off-white);
  padding-block: 100px;
  --mx: 50%;
  --my: 50%;
}

/* Grid em SVG (marrom, sutil) — revelado pelo mouse (trail) */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M48 0H0V48' fill='none' stroke='%234a3526' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  /* elipse radial com feather, posicionada na coordenada do mouse */
  -webkit-mask-image: radial-gradient(
    var(--trail-w, 340px) var(--trail-h, 240px) at var(--mx) var(--my),
    #000 0%,
    #000 32%,
    transparent 72%
  );
  mask-image: radial-gradient(
    var(--trail-w, 340px) var(--trail-h, 240px) at var(--mx) var(--my),
    #000 0%,
    #000 32%,
    transparent 72%
  );
  transition: opacity 0.45s ease;
}

.contact.is-trailing::before {
  opacity: 0.32;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

/* Cabeçalho centralizado */
.contact__header {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.contact__title {
  font-size: var(--fs-title);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-marrom);
}

.contact__subtitle {
  margin-top: 22px;
  font-size: var(--fs-subtitle);
  line-height: 1.5;
  color: #221916;
  opacity: 75%;
}

/* Card do formulário */
.contact__form {
  position: relative;
  max-width: 640px;
  margin: 48px auto 0;
  padding: 48px;
  background-color: var(--color-white);
  border: 1.5px solid rgba(74, 53, 38, 0.35);
  box-shadow: 0 30px 70px -40px rgba(74, 53, 38, 0.45),
              0 0 0 6px rgba(74, 53, 38, 0.05);
}

/* Detalhe superior em marrom para dar destaque */
.contact__form::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  right: -1.5px;
  height: 4px;
  background-color: var(--color-marrom);
}

/* Grade dos campos */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field input {
  width: 100%;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: var(--fw-roman);
  color: #1c1c1c;
  background-color: var(--color-white);
  border: 1px solid #dcd8cf;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.form-field input::placeholder {
  color: #221916;
  opacity: 70%;
}

.form-field input:focus {
  outline: none;
  border-color: var(--color-marrom);
}

/* --------------------------------------------------------------------------
   Dropdown customizado (substitui o <select> nativo)
   -------------------------------------------------------------------------- */
.select {
  position: relative;
}

.select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: var(--fw-roman);
  color: #1c1c1c;
  text-align: left;
  background-color: var(--color-white);
  border: 1px solid #dcd8cf;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.select__trigger:hover {
  border-color: rgba(74, 53, 38, 0.5);
}

.select.is-open .select__trigger,
.select__trigger:focus-visible {
  outline: none;
  border-color: var(--color-marrom);
}

.select__value.is-placeholder {
  color: #221916;
  opacity: 0.7;
}

.select__arrow {
  flex: none;
  color: #6e6c64;
  transition: transform 0.25s ease;
}

.select.is-open .select__arrow {
  transform: rotate(180deg);
}

/* Popup */
.select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  background-color: var(--color-white);
  border: 1px solid #dcd8cf;
  box-shadow: 0 22px 46px -20px rgba(74, 53, 38, 0.5);
  max-height: 260px;
  overflow-y: auto;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.select.is-open .select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  font-size: 16px;
  color: #1c1c1c;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.select__option.is-active {
  background-color: var(--color-off-white);
}

.select__option.is-selected {
  color: var(--color-marrom);
  font-weight: var(--fw-medium);
}

.select__option.is-selected::after {
  content: "✓";
  font-size: 14px;
  color: var(--color-marrom);
}

/* Botão (full width) */
.btn-dark--block {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
}

/* Linha de confiança */
.contact__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 22px;
  font-size: 14px;
  color: #8a887f;
  text-align: center;
}

.contact__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact__trust-icon {
  width: 16px;
  height: 16px;
  flex: none;
}

/* Mensagens e erros do formulário (form.js) */
.form-field-error {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: #c0392b;
}

.form-message {
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  line-height: 1.45;
  border: 1px solid transparent;
}

.form-message--error {
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.28);
  color: #9b2c20;
}

.form-message--success {
  background: rgba(34, 25, 22, 0.06);
  border-color: rgba(34, 25, 22, 0.2);
  color: var(--color-marrom);
}

.btn-dark.is-loading {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

.form-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-loading svg {
  animation: form-spin 1s linear infinite;
}

@keyframes form-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ----- Responsividade — Seção Formulário ----- */
@media (max-width: 1023px) {
  .contact {
    padding-block: 70px;
  }
}

@media (max-width: 767px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding-block: 64px 40px;
}

/* Linha superior */
.footer__top {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  align-items: center;
}

/* Marca */
.footer__brand {
  grid-column: 1 / 5;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
}

.footer__logo img {
  height: 24px;
  width: auto;
}

.footer__logo-fallback {
  font-size: 24px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer__tagline {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
}

/* Colunas de info */
.footer__col {
  grid-column: span 3;
}

.footer__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.footer__heading-icon {
  width: 13px;
  height: auto;
  flex: none;
}

.footer__text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

/* Redes sociais */
.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease;
}

.footer__social:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.footer__social img {
  width: 18px;
  height: 18px;
}

/* Botão voltar ao topo */
.footer__totop {
  grid-column: 12 / -1;
  display: flex;
  justify-content: flex-end;
}

.footer__totop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: #726560;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.footer__totop-btn:hover {
  background-color: #a79e90;
  transform: translateY(-3px);
}

.footer__totop-btn img {
  width: 24px;
  height: 24px;
}

/* Linha inferior */
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 64px;
}

.footer__note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__credit {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__credit img {
  height: 26px;
  width: auto;
}

.footer__credit-link {
  display: inline-flex;
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer__credit-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ----- Responsividade — Footer ----- */
@media (max-width: 1023px) {
  .footer__brand {
    grid-column: 1 / 7;
  }

  .footer__col {
    grid-column: span 4;
  }

  .footer__totop {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .footer__credit {
    grid-column: auto;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   LENIS — smooth scroll (CSS recomendado)
   ========================================================================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ==========================================================================
   REVEAL — animação word-by-word (translateY + opacity)
   ========================================================================== */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.is-revealed .word {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .word {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   REVEAL — mídia (imagens e vídeos): opacity + translateX + blur
   ========================================================================== */
:root {
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* As seções recortam o overflow para que o translateX de entrada
   não gere barra de rolagem horizontal. */
.problems,
.solution,
.testimonial,
.portfolio,
.audience,
.process {
  overflow: hidden;
}

.media-reveal {
  opacity: 0;
  transform: translateX(46px);
  filter: blur(16px);
  transition: opacity 1s var(--ease-smooth),
              transform 1s var(--ease-smooth),
              filter 1s var(--ease-smooth);
  will-change: opacity, transform, filter;
}

.media-reveal.is-revealed {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .media-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ==========================================================================
   HOVER — itens das seções (suave e moderno)
   ========================================================================== */

/* Problemas — itens da lista */
.problem-item {
  transition: transform 0.45s var(--ease-smooth),
              box-shadow 0.45s var(--ease-smooth),
              background-color 0.45s var(--ease-smooth);
}

.problem-item:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 36px -18px rgba(34, 25, 22, 0.35);
}

.problem-item__icon {
  transition: transform 0.45s var(--ease-smooth);
}

.problem-item:hover .problem-item__icon {
  transform: scale(1.18) rotate(-6deg);
}

/* Solução — cards */
.solution-card {
  transition: transform 0.45s var(--ease-smooth),
              box-shadow 0.45s var(--ease-smooth),
              background-color 0.45s var(--ease-smooth);
}

.solution-card:hover {
  transform: translateY(-8px);
  background-color: var(--color-white);
  box-shadow: 0 30px 60px -32px rgba(34, 25, 22, 0.4);
}

.solution-card__icon {
  transition: transform 0.45s var(--ease-smooth);
}

.solution-card:hover .solution-card__icon {
  transform: scale(1.1) translateY(-2px);
}

/* Prova social — stat cards (complementa o hover já existente) */
.stat-card__desc {
  transition: color 0.3s var(--ease-smooth);
}

.stat-card:hover .stat-card__desc {
  color: rgba(255, 255, 255, 0.85);
}

/* Processo — itens da lista */
.process-item {
  transition: transform 0.45s var(--ease-smooth),
              box-shadow 0.45s var(--ease-smooth);
}

.process-item:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 44px -22px rgba(0, 0, 0, 0.5);
}

.process-item__icon {
  transition: transform 0.45s var(--ease-smooth);
}

.process-item:hover .process-item__icon {
  transform: scale(1.08);
}

/* Cards com imagem — portfólio e público-alvo
   (regras de hover ficam após o reveal para vencer o conflito de transform) */
.portfolio-card,
.audience-card {
  transition: transform 0.55s var(--ease-smooth),
              box-shadow 0.55s var(--ease-smooth),
              opacity 1s var(--ease-smooth),
              filter 1s var(--ease-smooth);
}

.portfolio-card__overlay,
.audience-card__overlay {
  transition: opacity 0.55s var(--ease-smooth);
}

.portfolio-card__body,
.audience-card__body {
  transition: transform 0.55s var(--ease-smooth);
}

.portfolio-card:hover,
.audience-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 38px 72px -34px rgba(0, 0, 0, 0.65);
}

.portfolio-card:hover .portfolio-card__body,
.audience-card:hover .audience-card__body {
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  .problem-item,
  .solution-card,
  .process-item,
  .portfolio-card,
  .audience-card,
  .problem-item__icon,
  .solution-card__icon,
  .process-item__icon,
  .portfolio-card__body,
  .audience-card__body {
    transition: none;
  }
}
