/* ============================================================
   EMMANUEL STUDIO — Hoja de estilos
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-alt: #101014;
  --surface: #16161c;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --text-dim: rgba(245, 245, 247, 0.62);
  --accent: #c8f542;
  --accent-dark: #9ec71f;
  --whatsapp: #25d366;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 18px;
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* ============ Botones ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--primary {
  background: var(--accent);
  color: #101204;
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 245, 66, 0.25);
}

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* ============ Navbar ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: padding 0.3s ease;
}

/* El fondo con blur va en un pseudo-elemento: si el backdrop-filter
   estuviera en .nav, convertiría al header en contenedor de sus hijos
   position:fixed y el panel del menú móvil quedaría recortado. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled { padding: 0.7rem 0; }
.nav.is-scrolled::before {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}
.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  color: #101204 !important;
  background: var(--accent);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
}
.nav__cta:hover { background: var(--accent-dark); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }

/* Iframe de Vimeo cubriendo todo el hero (video 16:9, efecto "cover") */
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* Capa oscura sobre el video para que el texto de la portada se lea bien */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.72) 0%,
    rgba(10, 10, 12, 0.62) 50%,
    rgba(10, 10, 12, 0.88) 100%
  );
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  animation: float 14s ease-in-out infinite alternate;
}
.hero__blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200, 245, 66, 0.35), transparent 70%);
  top: -120px; right: -80px;
}
.hero__blob--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(66, 133, 245, 0.28), transparent 70%);
  bottom: -140px; left: -100px;
  animation-delay: -7s;
}

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 50px) scale(1.15); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
}

.hero__tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 245, 66, 0.3);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.6rem;
  background: rgba(200, 245, 66, 0.06);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  line-height: 1.12;
  max-width: 17ch;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  margin-top: 1.4rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-dim);
  font-weight: 500;
}

.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 4px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
}

/* ============ Marquee ============ */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee__track i {
  color: var(--accent);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ Secciones ============ */
.section { padding: 7rem 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--border); }

.section__kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 3.2rem;
}

/* ============ Servicios ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 245, 66, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.service::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(200, 245, 66, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service:hover::after { opacity: 1; }

.service__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200, 245, 66, 0.55);
  display: block;
  margin-bottom: 1.1rem;
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.service p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.service ul { list-style: none; }
.service li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 0.55rem;
}
.service li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 0.2em;
}

.service__link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: #7a9a12;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.service__link:hover { border-bottom-color: #7a9a12; }

/* ============ Proceso ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.step {
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}
.step:hover { border-color: rgba(200, 245, 66, 0.35); }

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #101204;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ============ Sección clara ============ */
.section--light {
  background: #f6f6f2;
  color: #131316;
  border-block: 1px solid rgba(0, 0, 0, 0.06);
}

.section--light .section__kicker { color: #7a9a12; }

.section--light .section__title { color: #131316; }

/* Tarjetas de servicio sobre fondo claro */
.section--light .service {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
.section--light .service:hover {
  border-color: rgba(122, 154, 18, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}
.section--light .service__num {
  -webkit-text-stroke-color: rgba(122, 154, 18, 0.7);
}
.section--light .service h3 { color: #131316; }
.section--light .service p,
.section--light .service li { color: rgba(19, 19, 22, 0.65); }
.section--light .service li::before { color: #7a9a12; }

/* ============ Clientes ============ */
.clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  min-height: 150px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.client:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.client img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.client:hover img {
  filter: none;
  opacity: 1;
}

.client figcaption {
  font-size: 0.8rem;
  color: rgba(19, 19, 22, 0.6);
  text-align: center;
}

/* Si el logo no carga, ocultamos la imagen y queda el nombre */
.client img.is-broken { display: none; }
.client:has(img.is-broken) figcaption {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #131316;
}

/* ============ CTA ============ */
.cta {
  padding: 7.5rem 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(200, 245, 66, 0.14), transparent 65%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.cta h2 em {
  font-style: normal;
  color: var(--accent);
}

.cta p {
  margin: 1.2rem auto 2.4rem;
  max-width: 46ch;
  color: var(--text-dim);
  font-size: 1.08rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============ Footer ============ */
.footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer__social {
  display: flex;
  gap: 1.4rem;
}
.footer__social a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer__social a:hover { color: var(--accent); }

/* ============ WhatsApp flotante ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ============ Página Fotografía ============ */
.nav__links a.is-active { color: var(--accent); }

.page-hero {
  padding: 11rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% -20%, rgba(200, 245, 66, 0.12), transparent 65%),
    var(--bg);
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1.2rem;
}
.page-hero__title em { font-style: normal; color: var(--accent); }

.page-hero__sub {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.gallery-section { padding-top: 2rem; }

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}

.gallery-filter button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.gallery-filter button:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }
.gallery-filter button.is-active {
  color: #101204;
  background: var(--accent);
  border-color: var(--accent);
}

.gallery {
  columns: 3;
  column-gap: 1rem;
}

.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface);
}

.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.045); }

.gallery__label {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.gallery__item:hover .gallery__label { opacity: 1; transform: none; }

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 12, 0.55));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }

/* ============ Portfolio de webs ============ */
.webs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.web-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.web-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 245, 66, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.web-card__shot {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.web-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.web-card:hover .web-card__shot img { transform: scale(1.04); }

.web-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.web-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.web-card__body p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.web-card__go {
  margin-top: auto;
  padding-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
}

@media (max-width: 900px) {
  .webs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .webs { grid-template-columns: 1fr; }
}

/* Nosotros (página fotografía) */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about__body {
  color: rgba(19, 19, 22, 0.65);
  margin-top: 1.2rem;
  line-height: 1.8;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 8, 0.94);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1;
  transition: color 0.25s ease;
  z-index: 210;
}
.lightbox__close:hover,
.lightbox__nav:hover { color: #fff; }

.lightbox__close {
  top: 1.4rem;
  right: 1.8rem;
  font-size: 2.4rem;
  font-weight: 300;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem;
}
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

@media (max-width: 900px) {
  .gallery { columns: 2; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 550px) {
  .gallery { columns: 1; }
  .page-hero { padding-top: 8.5rem; }
}

/* ============ Animaciones de aparición ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__blob, .marquee__track, .hero__scroll span { animation: none; }
  .hero__video { display: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .clients { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    font-size: 1.2rem;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { font-size: 1.15rem; }

  .nav__burger { display: flex; position: relative; z-index: 110; }

  .steps { grid-template-columns: 1fr; }
  .clients { grid-template-columns: repeat(2, 1fr); }

  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta__actions .btn { width: 100%; justify-content: center; }
}
