/* ═══════════════════════════════════════════════════════════
   INNOV — MODELO 5 · UAU edition (fotos + headers + impacto)
   ═══════════════════════════════════════════════════════════ */
:root {
  --bg:        #020617;
  --bg-2:      #060b1a;
  --bg-3:      #0b1426;
  --panel:     #0f1c2e;
  --border:    rgba(255,255,255,.08);
  --border-2:  rgba(255,255,255,.16);
  --text:      #eef2f7;
  --text-2:    #c4cfdc;
  --muted:     #93a0b3;
  --innov:     #0078a0;
  --innov-d:   #005f80;
  --innov-l:   #00a3d4;
  --cyan:      #22d3ee;
  --cyan-2:    #06b6d4;
  --gold:      #facc15;
  --green:     #25D366;
  --serif:     'Fraunces', Georgia, serif;
  --sans:      'Inter', sans-serif;
  --max:       1280px;
  --pad:       clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.04; letter-spacing: -.025em; color: var(--text); }
h1 { font-size: clamp(48px, 8vw, 104px); font-weight: 500; }
h2 { font-size: clamp(34px, 5.5vw, 64px); font-weight: 500; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; }
em { font-style: italic; color: var(--cyan); font-weight: 500; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.section__head { max-width: 800px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; padding: 0 var(--pad); }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 { margin-bottom: 14px; }
.section__head p { color: var(--text-2); font-size: 17px; font-family: var(--sans); }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 14.5px; transition: all .25s cubic-bezier(.4,0,.2,1); white-space: nowrap; border: 1.5px solid transparent; font-family: var(--sans); }
.btn--primary { background: linear-gradient(135deg, var(--cyan) 0%, var(--innov) 100%); color: #001520; box-shadow: 0 12px 30px rgba(34,211,238,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(34,211,238,.5); }
.btn--glass { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: #fff; backdrop-filter: blur(20px); }
.btn--glass:hover { background: rgba(255,255,255,.16); }
.btn--xl { padding: 17px 34px; font-size: 15.5px; }

.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px var(--pad); transition: all .35s; }
.nav.is-scrolled { background: rgba(2,6,23,.88); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 14px var(--pad); }
.nav__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; }
.nav__brand img { height: 40px; }
.nav__menu { display: flex; gap: 36px; font-size: 14px; justify-content: center; font-weight: 500; }
.nav__menu a { color: var(--text-2); }
.nav__menu a:hover { color: var(--cyan); }
.nav__cta { padding: 11px 22px; font-size: 13.5px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--text); }

/* ═══════════════════════════════════════════════════════════
   HERO 5 — Foto fullscreen + gradient veil + parallax
   ═══════════════════════════════════════════════════════════ */
.hero5 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--pad) 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero5__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero5__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: ken-burns 20s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  from { transform: scale(1.08) translate(0,0); }
  to   { transform: scale(1.16) translate(-2%, -2%); }
}
.hero5__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,23,.65) 0%, rgba(2,6,23,.45) 30%, rgba(2,6,23,.85) 90%, var(--bg) 100%),
    linear-gradient(90deg, rgba(2,6,23,.7) 0%, transparent 60%);
}
.hero5__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero5__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero5__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.28);
  font-size: 13px; color: var(--cyan); font-weight: 500;
  margin-bottom: 30px;
  backdrop-filter: blur(20px);
  animation: fadeUp 1s .2s cubic-bezier(.2,.6,.2,1) backwards;
}
.hero5__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero5__title {
  max-width: 920px;
  margin-bottom: 26px;
  background: linear-gradient(180deg, #fff 0%, #c4cfdc 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: fadeUp 1.2s .4s cubic-bezier(.2,.6,.2,1) backwards;
}
.hero5__title em {
  background: linear-gradient(180deg, var(--cyan) 0%, var(--innov-l) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-family: var(--serif); font-style: italic; font-weight: 400;
}

.hero5__sub {
  max-width: 620px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-2);
  margin-bottom: 36px;
  animation: fadeUp 1s .7s cubic-bezier(.2,.6,.2,1) backwards;
}
.hero5__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 1s .9s cubic-bezier(.2,.6,.2,1) backwards;
}

.hero5__proof {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 1s 1.1s cubic-bezier(.2,.6,.2,1) backwards;
}
.proof-card {
  padding: 18px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; gap: 6px;
  min-width: 160px;
}
.proof-card--accent { background: rgba(34,211,238,.14); border-color: rgba(34,211,238,.35); }
.proof__big { font-family: var(--serif); font-size: 36px; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.02em; }
.proof__big sup { font-size: 18px; color: var(--cyan); margin-left: 2px; }
.proof__label { font-size: 12.5px; color: var(--text-2); line-height: 1.4; }

.hero5__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
  animation: fadeUp 1s 1.4s cubic-bezier(.2,.6,.2,1) backwards;
}
.hero5__scroll span { width: 2px; height: 8px; background: #fff; border-radius: 2px; animation: scroll-bounce 1.8s ease-in-out infinite; }
@keyframes scroll-bounce { 0%,100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(8px); opacity: 1; } }

/* ─── NUMBERS ─────────────────────────────────────────────── */
.numbers { padding: clamp(80px, 10vw, 120px) var(--pad); max-width: var(--max); margin: 0 auto; }
.numbers__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.num-card {
  padding: 32px 26px;
  background: linear-gradient(165deg, rgba(11,20,38,.85), rgba(2,6,23,.95));
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all .35s cubic-bezier(.2,.6,.2,1);
}
.num-card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,.3); }
.num-card__icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(34,211,238,.12); color: var(--cyan); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.num-card__icon svg { width: 26px; height: 26px; }
.num-card__val { font-family: var(--serif); font-size: clamp(44px, 5vw, 60px); font-weight: 500; color: #fff; line-height: 1; letter-spacing: -.03em; margin-bottom: 8px; }
.num-card__val em { font-style: normal; color: var(--cyan); font-size: .65em; margin-left: 2px; }
.num-card__label { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.num-card__hint { font-size: 12.5px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   SERVIÇOS COM FOTOS (bento)
   ═══════════════════════════════════════════════════════════ */
.services5 { padding: clamp(80px, 12vw, 140px) var(--pad); max-width: var(--max); margin: 0 auto; }
.serv5-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.serv5-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: all .4s cubic-bezier(.2,.6,.2,1);
}
.serv5-card--big { grid-column: span 2; grid-row: span 2; min-height: 660px; }
.serv5-card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,.35); }
.serv5-card:hover .serv5-card__media img { transform: scale(1.05); }

.serv5-card__media {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 200px;
}
.serv5-card--big .serv5-card__media { min-height: 380px; }
.serv5-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.serv5-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2,6,23,.5) 70%, var(--panel) 100%);
}

.serv5-card__body {
  position: relative;
  padding: 24px 28px 28px;
  z-index: 1;
}
.serv5-card--big .serv5-card__body { padding: 32px 36px 36px; }
.serv5__num { font-family: var(--serif); font-size: 16px; color: var(--cyan); font-weight: 600; letter-spacing: .1em; margin-bottom: 8px; display: block; }
.serv5-card h3 { margin-bottom: 10px; }
.serv5-card--big h3 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 14px; }
.serv5-card p { color: var(--text-2); font-size: 14.5px; margin-bottom: 14px; }
.serv5-card--big p { font-size: 16px; }
.serv5-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.serv5-card ul li { font-size: 14px; color: var(--muted); padding-left: 18px; position: relative; }
.serv5-card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 1.5px; background: var(--cyan); }
.serv5__cta { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan); font-weight: 600; font-size: 14px; }
.serv5__cta:hover { color: var(--cyan-2); }

/* ═══════════════════════════════════════════════════════════
   GALERIA ANTES/DEPOIS
   ═══════════════════════════════════════════════════════════ */
.gallery { padding: clamp(80px, 12vw, 140px) var(--pad); background: var(--bg-2); }
.gallery .section__head { padding: 0; }
.gallery__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-card { position: relative; border-radius: 22px; overflow: hidden; background: var(--panel); aspect-ratio: 4 / 5; }
.gal-img { position: absolute; inset: 0; }
.gal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.gal-card:hover .gal-img img { transform: scale(1.05); }
.gal-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2,6,23,.95) 100%);
}
.gal-card figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; }
.gal__tag { display: inline-block; padding: 4px 12px; background: rgba(34,211,238,.18); color: var(--cyan); border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; backdrop-filter: blur(10px); border: 1px solid rgba(34,211,238,.3); }
.gal-card figcaption strong { display: block; font-family: var(--serif); font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 4px; letter-spacing: -.01em; }
.gal-card figcaption strong + span { font-size: 13px; color: var(--text-2); }

/* ═══════════════════════════════════════════════════════════
   TEAM SPLIT
   ═══════════════════════════════════════════════════════════ */
.team { padding: clamp(80px, 12vw, 140px) var(--pad); }
.team__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.team__media { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; }
.team__media img { width: 100%; height: 100%; object-fit: cover; }
.team__badge { position: absolute; bottom: 24px; left: 24px; right: 24px; padding: 18px 22px; background: rgba(2,6,23,.85); border: 1px solid var(--border-2); border-radius: 16px; backdrop-filter: blur(20px); }
.team__badge strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--cyan); margin-bottom: 4px; }
.team__badge span { font-size: 13px; color: var(--text-2); }
.team__copy .eyebrow { margin-bottom: 18px; }
.team__copy h2 { margin-bottom: 22px; }
.team__copy p { color: var(--text-2); font-size: 17px; margin-bottom: 28px; }
.team__values { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.team__values li { padding-left: 30px; position: relative; color: var(--text-2); font-size: 15.5px; }
.team__values li::before { content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 1.5px; background: var(--cyan); }
.team__values strong { color: #fff; font-weight: 600; }

/* ─── CLIENTES ────────────────────────────────────────────── */
.clientes5 { padding: clamp(80px, 12vw, 140px) var(--pad); max-width: var(--max); margin: 0 auto; }
.logos5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.logo5 { padding: 18px 16px; background: rgba(11,20,38,.7); border: 1px solid var(--border); border-radius: 14px; text-align: center; font-size: 13.5px; color: var(--text-2); transition: all .25s; font-family: var(--serif); font-weight: 500; }
.logo5:hover { background: rgba(34,211,238,.08); border-color: rgba(34,211,238,.3); color: var(--cyan); }
.clientes5__more { text-align: center; margin-top: 32px; color: var(--text-2); font-size: 15px; }
.clientes5__more strong { color: var(--cyan); font-family: var(--sans); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   BIG TESTIMONIAL
   ═══════════════════════════════════════════════════════════ */
.bigtesti { padding: clamp(80px, 12vw, 140px) var(--pad); background: var(--bg-2); }
.bigtesti__inner { max-width: 900px; margin: 0 auto; text-align: center; padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 56px); background: linear-gradient(135deg, rgba(0,120,160,.18), var(--panel)); border: 1px solid rgba(34,211,238,.22); border-radius: 32px; position: relative; }
.bigtesti__quote { position: absolute; top: 32px; left: 32px; color: var(--cyan); opacity: .25; }
.bigtesti__inner p { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.4; color: #fff; margin-bottom: 36px; font-weight: 500; letter-spacing: -.01em; }
.bigtesti__by { display: inline-flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.bigtesti__by .avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--innov)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #001520; font-size: 16px; }
.bigtesti__by strong { display: block; font-family: var(--sans); font-size: 15px; font-weight: 600; }
.bigtesti__by span { font-size: 13px; color: var(--muted); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { padding: clamp(80px, 12vw, 140px) var(--pad); max-width: 900px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: rgba(11,20,38,.6); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: border-color .25s; }
.faq__item[open] { border-color: rgba(34,211,238,.32); }
.faq__item summary { padding: 24px 28px; font-size: 16px; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; list-style: none; font-family: var(--serif); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cyan); }
.faq__icon { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border-2); position: relative; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; background: var(--cyan); transform: translate(-50%, -50%); transition: transform .3s; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { border-color: var(--cyan); background: rgba(34,211,238,.12); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.faq__body { padding: 0 28px 24px; color: var(--text-2); font-size: 15px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   CTA 5 — Foto + CTA forte
   ═══════════════════════════════════════════════════════════ */
.cta5 { position: relative; padding: clamp(80px, 12vw, 140px) var(--pad); overflow: hidden; isolation: isolate; }
.cta5__media { position: absolute; inset: 0; z-index: -1; }
.cta5__media img { width: 100%; height: 100%; object-fit: cover; }
.cta5__veil { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,120,160,.95) 0%, rgba(2,6,23,.85) 60%, rgba(2,6,23,.95) 100%); }
.cta5__inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta5__inner .eyebrow { margin-bottom: 18px; }
.cta5__inner h2 { color: #fff; margin-bottom: 18px; }
.cta5__inner > p { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 36px; }
.cta5__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--border); background: var(--bg-2); padding: 60px var(--pad) 28px; }
.foot__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.foot__brand img { height: 40px; margin-bottom: 16px; }
.foot__brand p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.foot__cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; }
.foot__cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot__cols h4 { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.foot__cols a { font-size: 14px; color: var(--text-2); }
.foot__cols a:hover { color: var(--cyan); }
.foot__bottom { max-width: var(--max); margin: 40px auto 0; padding-top: 22px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px 14px 16px; background: var(--green); color: #fff; border-radius: 999px; box-shadow: 0 14px 36px rgba(37,211,102,.36); font-size: 14px; font-weight: 600; transition: all .25s; }
.wa:hover { transform: translateY(-3px) scale(1.04); }
.wa__pulse { position: absolute; inset: 0; border-radius: 999px; border: 2px solid var(--green); animation: pulse 2s ease-out infinite; pointer-events: none; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .serv5-grid { grid-template-columns: repeat(2, 1fr); }
  .serv5-card--big { grid-column: span 2; grid-row: span 1; min-height: 420px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .team__inner { grid-template-columns: 1fr; gap: 40px; }
  .numbers__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .foot__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .serv5-grid { grid-template-columns: 1fr; }
  .serv5-card--big { grid-column: span 1; }
  .gallery__grid { grid-template-columns: 1fr; }
  .numbers__inner { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; }
  .foot__bottom { flex-direction: column; gap: 6px; text-align: center; }
  .wa { padding: 12px 16px 12px 14px; bottom: 16px; right: 16px; }
  .wa span:last-child { display: none; }
  .hero5__proof { flex-direction: column; }
  .proof-card { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero5__media img { animation: none; transform: scale(1.05); }
}
