/* ============================================================
   Zoeh Studio — style.css
   ============================================================ */

/* ---------- Fonts (self-hosted Urbanist) ---------- */
@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../images/urbanist-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../images/urbanist-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  --cream:      #F7F4F0;
  --cream-2:    #E8E6E1;
  --cream-3:    #e6e2da;
  --dark:       #35393D;
  --dark-2:     #26292C;
  --dark-3:     #40454a;
  --terra:      #B2613B;
  --terra-light:#F0B78E;
  --terra-dark: #9a5230;
  --ink:        #454a50;
  --muted:      #5c6066;
  --muted-2:    #7d8288;
  --line:       #e3e0d9;

  --maxw: 1440px;
  --pad-x: 80px;
  --radius: 8px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  font-family: 'Urbanist', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.3px; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
  font-family: inherit;
}
.btn:hover { transform: scale(1.03); }
.btn--outline {
  padding: 10px 20px;
  border: 1px solid var(--cream);
  color: var(--cream);
  font: 600 13.5px 'Urbanist';
}
.wa-nav:hover { background-color: rgba(247,244,240,.14); }
.btn--terra {
  padding: 16px 32px;
  background: var(--terra);
  color: var(--cream);
  font: 700 16px 'Urbanist';
}
.wa-hero:hover { background-color: var(--terra-dark); }
.btn--dark {
  padding: 18px 36px;
  background: var(--dark);
  color: var(--cream);
  font: 700 17px 'Urbanist';
}
.wa-cta:hover { background-color: var(--dark-2); }

.rule { display: block; width: 56px; height: 4px; background: var(--terra); border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 40px 120px;
  min-height: 680px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(38,41,44,.55) 0%, rgba(38,41,44,.7) 30%, rgba(38,41,44,.88) 100%);
}
.journey-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

/* NAV */
.nav {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1360px; margin: 0 auto; width: 100%;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(247,244,240,.2);
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 40px; width: auto; display: block; }
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__links {
  display: flex; align-items: center; gap: 32px;
  font: 500 14.5px 'Urbanist'; color: #e3e0d9;
}
.nav__links a { text-decoration: none; transition: color .2s ease; }
.nav__links a:hover { color: var(--cream); }
.nav__toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 4;
}
.nav__toggle span {
  display: block; height: 2px; width: 24px;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HEADLINE */
.hero__content {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto; width: 100%;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  gap: 28px; padding-top: 64px;
}
.hero__title {
  font: 600 60px/1.14 'Urbanist';
  color: var(--cream); letter-spacing: -0.5px; max-width: 780px;
}
.hero__sub {
  font: 400 19px/1.55 'Urbanist';
  color: #e3e0d9; max-width: 560px;
}
.hero__content .btn--terra { align-self: flex-start; margin-top: 8px; }

/* Journey path animation */
.jr-path {
  stroke: var(--terra-light); stroke-width: 1.75; fill: none;
  stroke-linecap: round; stroke-dasharray: 1 13; opacity: .42;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.2));
}
.jr-reveal-1 { stroke-dasharray: 1; stroke-dashoffset: 0; }

/* ============================================================
   STATS / NÚMEROS
   ============================================================ */
.stats { background: var(--dark); }
.stats__grid {
  padding: 52px 80px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  max-width: var(--maxw); margin: 0 auto;
}
.stat {
  padding: 28px 22px;
  background: rgba(247,244,240,.06);
  border-radius: 12px; border-top: 3px solid var(--terra);
  display: flex; flex-direction: column; gap: 10px;
}
.stat__num { font: 700 30px/1.15 'Urbanist'; color: var(--terra-light); }
.stat__label { font: 400 14px/1.4 'Urbanist'; color: #c7cacd; }

/* ============================================================
   AUTORIDADE / LOGOS
   ============================================================ */
.authority {
  padding: 44px 80px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  background: var(--cream-2);
}
.authority__eyebrow {
  font: 600 13px 'Urbanist'; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted-2);
}
.authority__note {
  font: 400 15px/1.5 'Urbanist'; color: var(--muted);
}
.marquee-mask {
  overflow: hidden; width: 100%; max-width: 1200px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.logo-marquee { display: flex; width: max-content; }
.logo-marquee__track {
  display: flex; align-items: center; gap: 64px; padding-right: 64px;
}
.logo-marquee__track img { display: block; width: auto; }
.logo-marquee__track img[alt="ExxonMobil"], .logo-marquee__track img:nth-child(1) { height: 30px; }
.logo-marquee__track img:nth-child(2) { height: 34px; }
.logo-marquee__track img:nth-child(3) { height: 40px; }
.logo-marquee__track img:nth-child(4) { height: 38px; }
.logo-marquee__track img:nth-child(5) { height: 34px; }
.logo-marquee__track img:nth-child(6) { height: 36px; }

/* ============================================================
   PROBLEMA
   ============================================================ */
.problem {
  padding: 64px 80px; background: var(--cream);
  display: flex; gap: 72px;
  max-width: var(--maxw); margin: 0 auto;
}
.problem__aside {
  flex: 0.85; display: flex; flex-direction: column; gap: 28px;
  position: sticky; top: 40px; align-self: flex-start;
}
.problem__aside h2 { font: 600 40px/1.2 'Urbanist'; color: var(--dark); }
.problem__lead { font: 500 19px/1.55 'Urbanist'; color: var(--dark); }
.problem__list { flex: 1.15; display: flex; flex-direction: column; gap: 16px; }
.problem__item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 26px; background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(53,57,61,.05);
}
.problem__mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: #f3e2d8; color: var(--terra); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font: 700 14px 'Urbanist';
}
.problem__item p { font: 400 18px/1.5 'Urbanist'; color: var(--ink); }

/* ============================================================
   DIFERENCIAL
   ============================================================ */
.edge {
  padding: 60px 80px; background: var(--dark);
  display: flex; gap: 56px; align-items: center;
  max-width: var(--maxw); margin: 0 auto;
}
.edge__text { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.edge__text h2 { font: 600 36px/1.25 'Urbanist'; color: var(--cream); }
.edge__text p { font: 400 17px/1.65 'Urbanist'; color: #c7cacd; }
.edge__img {
  flex: 0 0 440px; width: 440px; height: 440px;
  border-radius: var(--radius);
  background-image: url("../images/diferencial.jpg");
  background-size: cover; background-position: center 20%; background-repeat: no-repeat;
}
.edge__img img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services {
  padding: 60px 80px; background: var(--cream);
  display: flex; flex-direction: column; gap: 44px;
  max-width: var(--maxw); margin: 0 auto; scroll-margin-top: 80px;
}
.services > h2 { font: 600 38px 'Urbanist'; color: var(--dark); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.svc-card {
  padding: 32px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(53,57,61,.13);
  background-color: #fffdfb;
}
.svc-card__emoji { font-size: 26px; line-height: 1; }
.svc-card__title { font: 700 20px 'Urbanist'; color: var(--dark); }
.svc-card__text { font: 400 15.5px/1.6 'Urbanist'; color: var(--muted); }

/* ============================================================
   PARA QUEM
   ============================================================ */
.forwho { padding: 60px 80px; background: var(--cream-2); }
.forwho__inner {
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: row; gap: 56px; align-items: flex-start;
}
.forwho__img {
  flex: 0 0 360px; width: 360px; height: 400px; border-radius: var(--radius);
  object-fit: cover; display: block;
}
.forwho__content { flex: 1; }
.forwho__inner h2 { font: 600 38px 'Urbanist'; color: var(--dark); margin-bottom: 18px; }
.rule { display: block; width: 56px; height: 4px; background: var(--terra); border-radius: 2px; margin-bottom: 32px; }
.forwho__list { display: flex; flex-direction: column; gap: 22px; }
.forwho__item {
  display: flex; gap: 20px; align-items: flex-start;
}
.forwho__arrow { font: 600 20px 'Urbanist'; color: var(--terra); line-height: 1.55; flex-shrink: 0; }
.forwho__item p { font: 400 19px/1.55 'Urbanist'; color: var(--ink); }
.forwho__exclude {
  display: flex; gap: 16px; align-items: center;
  padding: 24px 26px; background: #EADAD0; border-radius: 10px; margin-top: 24px;
  border: 1px solid #DCC0B0;
}
.forwho__x {
  width: 30px; height: 30px; border-radius: 50%;
  background: #C67D53; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font: 700 15px 'Urbanist'; flex-shrink: 0;
}
.forwho__exclude p { font: 600 17px/1.55 'Urbanist'; color: #8a4a2c; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.steps {
  padding: 60px 80px; background: var(--cream);
  display: flex; flex-direction: column; gap: 44px;
  max-width: var(--maxw); margin: 0 auto; scroll-margin-top: 80px;
}
.steps > h2 { font: 600 38px 'Urbanist'; color: var(--dark); }
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step__n { font: 700 32px 'Urbanist'; color: var(--terra); }
.step__title { font: 700 17px 'Urbanist'; color: var(--dark); }
.step__text { font: 400 14.5px/1.6 'Urbanist'; color: var(--muted); }

/* ============================================================
   TRABALHOS
   ============================================================ */
.works {
  padding: 60px 80px; background: var(--cream-2);
  scroll-margin-top: 80px;
}
.works__inner {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 44px;
}
.works__inner > h2 { font: 600 38px 'Urbanist'; color: var(--dark); }
.works__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 4px 24px rgba(53,57,61,.06);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(53,57,61,.16); }
.case-img {
  height: 200px; width: 100%; object-fit: cover; object-position: center 30%;
  display: block; transition: transform .3s ease;
}
.case-card__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-card__title { font: 700 18px/1.3 'Urbanist'; color: var(--dark); min-height: 47px; }
.case-card__text {
  font: 400 14.5px/1.65 'Urbanist'; color: var(--muted); flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { padding: 60px 80px; background: var(--dark); }
.testimonials__inner {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 44px;
}
.testimonials__inner > h2 { font: 600 38px 'Urbanist'; color: var(--cream); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tst-card {
  background: var(--dark-3); border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.tst-card__quote { font: 400 15px/1.65 'Urbanist'; color: #e4e6e8; flex: 1; }
.tst-card__person { display: flex; align-items: center; gap: 12px; }
.tst-card__photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.tst-card__name { font: 700 14px 'Urbanist'; color: var(--cream); }
.tst-card__role { font: 400 12.5px 'Urbanist'; color: #a8adb2; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  padding: 68px 80px; background: var(--terra);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px;
}
.cta h2 { font: 600 40px/1.2 'Urbanist'; color: var(--cream); max-width: 640px; }
.cta p { font: 400 18px 'Urbanist'; color: #f0dcd0; }
.cta .btn { margin-top: 8px; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  padding: 48px 80px; background: var(--dark-2);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
}
.footer__col { display: flex; flex-direction: column; gap: 6px; font: 400 13.5px 'Urbanist'; color: #9aa0a5; }
.footer__col a { text-decoration: none; }
.footer__col a:hover { color: var(--cream); }
.footer__brand { font: 700 17px 'Urbanist'; color: var(--cream); }
.footer__brand--hidden { visibility: hidden; }
.footer__copy { font: 400 12.5px 'Urbanist'; color: #6d7176; }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 50;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float img { width: 64px; height: 64px; display: block; filter: drop-shadow(0 6px 14px rgba(0,0,0,.3)); }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
/* Scroll reveal */
.reveal, [data-anim] { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  /* journey */
  .jr-reveal-1 { stroke-dashoffset: 1; animation: jrReveal 2.8s cubic-bezier(.5,0,.2,1) .6s forwards; }
  .jr-path { animation: jrDrift 3.2s linear 3.4s infinite; }

  /* marquee */
  .logo-marquee { animation: marquee 32s linear infinite; }
  .logo-marquee:hover { animation-play-state: paused; }

  /* hero load-in */
  .anim-nav { animation: navIn .3s ease-out both; }
  .anim-headline { animation: heroTextIn .6s ease-out .2s both; }
  .anim-hero-img { animation: heroImgIn .8s ease-out both; }

  /* scroll reveal */
  [data-anim] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease-out, transform .6s ease-out; }
  [data-anim].in-view { opacity: 1; transform: none; }
  [data-stagger] > [data-anim]:nth-child(2).in-view { transition-delay: .08s; }
  [data-stagger] > [data-anim]:nth-child(3).in-view { transition-delay: .16s; }
  [data-stagger] > [data-anim]:nth-child(4).in-view { transition-delay: .24s; }
  [data-stagger] > [data-anim]:nth-child(5).in-view { transition-delay: .32s; }
  [data-stagger] > [data-anim]:nth-child(6).in-view { transition-delay: .40s; }
  [data-stagger] > [data-anim]:nth-child(7).in-view { transition-delay: .48s; }
  [data-stagger] > [data-anim]:nth-child(8).in-view { transition-delay: .56s; }
}

@keyframes jrReveal { to { stroke-dashoffset: 0; } }
@keyframes jrDrift  { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -14; } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes navIn      { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroTextIn { from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes heroImgIn  { from { opacity: 0; transform: scale(1.05); }        to { opacity: 1; transform: scale(1); } }

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* --- Tablet / small desktop --- */
@media (max-width: 1080px) {
  :root { --pad-x: 48px; }
  .hero { padding: 28px 32px 96px; }
  .hero__title { font-size: 48px; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); padding: 44px 48px; }
  .problem { padding: 56px 48px; gap: 40px; }
  .problem__aside h2 { font-size: 34px; }
  .edge { padding: 52px 48px; gap: 40px; }
  .edge__img { flex-basis: 360px; width: 360px; height: 380px; }
  .services, .steps { padding: 52px 48px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .forwho, .works, .testimonials, .cta { padding: 52px 48px; }
  .works__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 40px 48px; }
}

/* --- Mobile --- */
@media (max-width: 767px) {
  :root { --pad-x: 22px; }

  /* NAV -> hamburger */
  .nav { padding: 14px 4px; }
  .nav__brand img { height: 34px; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(38,41,44,.97);
    backdrop-filter: blur(6px);
    padding: 8px 22px 22px;
    border-bottom: 1px solid rgba(247,244,240,.15);
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }
  .nav__menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__links li { border-bottom: 1px solid rgba(247,244,240,.1); }
  .nav__links a { display: block; padding: 16px 4px; font-size: 16px; }
  .nav__menu .btn--outline { margin-top: 18px; text-align: center; padding: 14px 20px; font-size: 14px; }

  .hero { padding: 24px 22px 72px; min-height: 600px; }
  .hero__content { padding-top: 40px; gap: 22px; }
  .hero__title { font-size: 32px; line-height: 1.18; }
  .hero__sub { font-size: 16px; }
  .btn--terra { padding: 14px 24px; font-size: 15px; white-space: normal; }

  /* stats */
  .stats__grid { grid-template-columns: repeat(2, 1fr); padding: 36px 22px; gap: 14px; }
  .stat { padding: 22px 18px; }
  .stat__num { font-size: 26px; }

  /* authority */
  .authority { padding: 36px 22px; gap: 22px; }
  .authority__note { font-size: 14px; white-space: normal; }
  .logo-marquee__track { gap: 40px; padding-right: 40px; }

  /* problem */
  .problem { flex-direction: column; padding: 44px 22px; gap: 32px; }
  .problem__aside { position: static; }
  .problem__aside h2 { font-size: 28px; }
  .problem__lead { font-size: 17px; }
  .problem__item { padding: 20px; }
  .problem__item p { font-size: 16px; }

  /* edge */
  .edge { flex-direction: column-reverse; padding: 44px 22px; gap: 28px; }
  .edge__text h2 { font-size: 27px; }
  .edge__text p { font-size: 16px; }
  .edge__img { flex: none; width: 100%; height: 300px; }

  /* services */
  .services { padding: 44px 22px; gap: 32px; }
  .services > h2, .steps > h2, .forwho__inner h2,
  .works__inner > h2, .testimonials__inner > h2 { font-size: 28px; }
  .services__grid { grid-template-columns: 1fr; gap: 18px; }
  .svc-card { padding: 26px; }

  /* forwho */
  .forwho { padding: 44px 22px; }
  .forwho__inner { flex-direction: column; gap: 28px; align-items: stretch; }
  .forwho__img { flex: none; width: 100%; height: 300px; }
  .forwho__item p { font-size: 17px; }

  /* steps */
  .steps { padding: 44px 22px; gap: 32px; }
  .steps__grid { grid-template-columns: 1fr; gap: 26px; }

  /* works */
  .works { padding: 44px 22px; }
  .works__inner { gap: 32px; }
  .works__grid { grid-template-columns: 1fr; gap: 20px; }
  .case-card__title { min-height: 0; }
  .case-card__text { -webkit-line-clamp: unset; }

  /* testimonials */
  .testimonials { padding: 44px 22px; }
  .testimonials__inner { gap: 32px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 18px; }

  /* cta */
  .cta { padding: 52px 22px; }
  .cta h2 { font-size: 28px; }
  .cta p { font-size: 16px; }
  .cta .btn { white-space: normal; }

  /* footer */
  .footer { padding: 36px 22px; gap: 20px; }
  .footer__brand--hidden { display: none; }

  /* whatsapp float */
  .wa-float { bottom: 16px; right: 16px; width: 56px; height: 56px; }
  .wa-float img { width: 56px; height: 56px; }
}

/* --- Slower marquee on mobile --- */
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .logo-marquee { animation-duration: 42s; }
}
