:root {
  --lime-100: #f6fde2;
  --lime-200: #e8fab9;
  --lime-300: #ddf5a2;
  --lime-panel: #f1fcd5;
  --green-500: #1fa12f;
  --green-600: #178a28;
  --green-700: #147a24;
  --white: #ffffff;
  --neutral-50: #fcfff5;
  --neutral-200: #d5d7d5;
  --neutral-500: #a4a7a5;
  --neutral-800: #2b352d;
  --neutral-900: #242b25;
  --page-padding: 48px;
  --container: 1440px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--neutral-800);
  background: var(--neutral-900);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
main { display: flow-root; background: var(--white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-shell { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--page-padding); }
.section { padding-block: 96px; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 8px 16px; color: white; background: var(--neutral-900); border-radius: var(--pill); transform: translateY(-200%); }
.skip-link:focus { transform: none; }

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font: 500 14px/1 "Poppins", sans-serif;
  letter-spacing: .02em;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease;
}
.button img { width: 20px; height: 20px; object-fit: contain; }
.button[data-whatsapp] img { filter: brightness(0) invert(1); }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 11px 22px; font-size: 12px; }
.button--dark { color: white; background: var(--neutral-900); }
.button--dark:hover { background: #151b16; }
.button--brand { color: white; background: var(--green-700); }
.button--brand:hover { background: var(--green-600); }
.button--wide { min-width: 236px; }

.eyebrow {
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 16px;
  border-radius: var(--pill);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.eyebrow span { padding-inline: 6px; }
.eyebrow--white { color: #69726c; background: rgba(255,255,255,.78); }
.eyebrow--lime { color: var(--neutral-800); background: var(--lime-200); }
.eyebrow--dark { color: var(--neutral-800); background: var(--white); }
.hero__eyebrow { padding: 9px 18px; font-size: 17px; }
.section-title { max-width: 720px; margin: 0; font-size: 44px; font-weight: 600; line-height: 1.12; letter-spacing: -.035em; }
.section-title span { color: var(--green-500); }
.section-action { display: flex; justify-content: center; margin-top: 64px; }
.section-action--right { justify-content: flex-end; }

/* HERO */
.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: url("../assets/hero-desktop.png") center center / cover no-repeat;
}
.site-header { position: relative; z-index: 20; padding-top: 16px; }
.navbar { display: flex; min-height: 72px; align-items: center; justify-content: space-between; }
.navbar__brand { display: block; width: 190px; }
.navbar__brand img { width: 100%; height: 45px; object-fit: contain; object-position: left center; }
.navbar__menu, .navbar__links { display: flex; align-items: center; }
.navbar__menu { gap: 116px; }
.navbar__links { gap: 56px; margin: 0; padding: 0; list-style: none; }
.navbar__links a { font-size: 13px; font-weight: 500; }
.navbar__links a:hover { color: var(--green-700); }
.navbar__toggle { display: none; }
.hero__layout { position: relative; z-index: 2; display: flex; min-height: 812px; flex-direction: column; padding-top: 178px; padding-bottom: 24px; }
.hero__copy { width: min(810px, 64%); }
.hero h1 { margin: 0; color: #33483b; font-size: 59.3px; font-weight: 600; line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }
.hero__actions { display: flex; gap: 12px; margin-top: 28px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: auto; }
.trust-card { display: flex; min-height: 106px; align-items: flex-start; gap: 20px; padding: 24px; background: rgba(255,255,255,.94); border: 1px solid rgba(43,53,45,.06); border-radius: var(--radius-sm); box-shadow: 0 8px 24px rgba(36,43,37,.04); }
.trust-card__icon { width: 24px; height: 24px; flex: none; }
.trust-card h2 { margin: 0 0 8px; font-size: 16px; font-weight: 600; line-height: 1.25; }
.trust-card__coverage-note {
  display: inline;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
}
.trust-card p { margin: 0; color: rgba(43,53,45,.74); font-size: 13px; line-height: 1.4; }

/* QUIÉNES SOMOS */
.about { display: grid; grid-template-columns: 42.5% 57.5%; gap: 32px; padding-top: 48px; padding-bottom: 48px; }
.about__image { min-height: 594px; overflow: hidden; border-radius: var(--radius-md); }
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__content { display: flex; min-height: 594px; flex-direction: column; padding: 40px 48px; background: var(--lime-panel); border-radius: var(--radius-md); }
.about__content h2 { max-width: 650px; margin: 0 0 48px; font-size: 42px; font-weight: 600; line-height: 1.15; letter-spacing: -.035em; }
.about__content > p { max-width: 710px; margin: 0 0 24px; color: rgba(43,53,45,.82); font-size: 15px; line-height: 1.5; }
.about__content > p:last-of-type { margin-bottom: 0; }
.about__signature { display: flex; align-items: center; gap: 16px; margin-top: 48px; }
.about__avatar { display: block; width: 56px; height: 56px; flex: none; object-fit: cover; object-position: center; background: var(--neutral-800); border: 2px solid rgba(255,255,255,.8); border-radius: 50%; }
.about__signature strong, .about__signature div > span { display: block; }
.about__signature strong { font-size: 16px; }
.about__signature div > span { margin-top: 4px; color: var(--green-600); font-size: 13px; }

/* SERVICIOS */
.services { padding-top: 112px; padding-bottom: 112px; }
.services > .section-title { margin-bottom: 72px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 48px; row-gap: 56px; }
.service-card { position: relative; min-height: 205px; padding: 8px 24px 8px 32px; border-left: 1px solid var(--neutral-200); }
.service-card::before { content: ""; position: absolute; top: 0; left: -1px; width: 2px; height: 48px; background: var(--green-500); }
.service-card > img { width: 24px; height: 24px; margin-bottom: 32px; object-fit: contain; }
.service-card h3 { margin: 0 0 20px; font-size: 20px; font-weight: 500; line-height: 1.25; }
.service-card p { margin: 0; color: rgba(43,53,45,.8); font-size: 12px; line-height: 1.5; }

/* TRABAJOS */
.work { overflow: hidden; padding-top: 92px; padding-bottom: 108px; }
.work__heading { margin-bottom: 48px; }
.gallery { position: relative; display: grid; gap: 24px; }
.gallery__fade { position: absolute; z-index: 3; top: 0; bottom: 0; width: 7vw; pointer-events: none; }
.gallery__fade--left { left: 0; background: linear-gradient(90deg, white, transparent); }
.gallery__fade--right { right: 0; background: linear-gradient(-90deg, white, transparent); }
.gallery-row { display: flex; width: max-content; gap: 24px; will-change: transform; }
.gallery-row img { width: 352px; height: 244px; flex: none; object-fit: cover; border-radius: var(--radius-md); }
.gallery-row--left { animation: gallery-left 42s linear infinite; }
.gallery-row--right { animation: gallery-right 46s linear infinite; }
.gallery:hover .gallery-row { animation-play-state: paused; }
@keyframes gallery-left { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 12px)); } }
@keyframes gallery-right { from { transform: translateX(calc(-50% - 12px)); } to { transform: translateX(0); } }

/* CLIENTES */
.clients { display: flex; min-height: 920px; overflow: hidden; flex-direction: column; padding-top: 104px; padding-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: start; }
.split-heading > p { width: 100%; max-width: 470px; justify-self: end; margin: 44px 0 0; color: rgba(43,53,45,.74); font-size: 13px; line-height: 1.55; }
.client-marquee { position: relative; margin-top: 190px; overflow: hidden; }
.client-marquee::before, .client-marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 64px; pointer-events: none; }
.client-marquee::before { left: 0; background: linear-gradient(90deg, white, transparent); }
.client-marquee::after { right: 0; background: linear-gradient(-90deg, white, transparent); }
.client-track { display: flex; width: max-content; gap: 24px; animation: client-left 48s linear infinite; will-change: transform; }
.client-track article { width: 244px; flex: none; text-align: center; }
.client-track img { width: 100%; height: 92px; padding: 8px 22px; object-fit: contain; }
.client-track img.client-logo { width: 188px; max-width: calc(100% - 32px); height: 76px; margin: 8px auto; padding: 0; }
.client-track img.client-logo--abb { width: 152px; }
.client-track img.client-logo--hospital-britanico { width: 176px; }
.client-track img.client-logo--central-puerto { width: 184px; }
.client-track img.client-logo--espn { width: 180px; }
.client-track img.client-logo--agfa { width: 174px; }
.client-track article > span { display: block; width: 64px; height: 3px; margin: 18px auto; background: var(--green-500); }
.client-track strong, .client-track small { display: block; }
.client-track strong { font-size: 12px; }
.client-track small { color: var(--neutral-500); font-size: 11px; }
.client-marquee:hover .client-track { animation-play-state: paused; }
@keyframes client-left { to { transform: translateX(calc(-50% - 12px)); } }
.clients > .section-action { margin-top: auto; }

/* OPINIONES */
.testimonials { padding-top: 108px; padding-bottom: 126px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.testimonial-card { display: flex; flex-direction: column; padding: 28px 32px; background: #f5f2f1; border-radius: 8px; }
.stars { color: #ffa900; font-size: 21px; letter-spacing: 2px; }
.testimonial-card > p { min-height: 120px; margin: 18px 0; color: rgba(43,53,45,.82); font-size: 13px; line-height: 1.55; }
.person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(43,53,45,.15); }
.person > span { display: grid; width: 40px; height: 40px; place-items: center; color: white; background: #6661a7; border-radius: 50%; font-size: 11px; }
.person .person__avatar--purple { background: #32109a; }
.person .person__avatar--orange { background: #f46a00; }
.person .person__avatar--blue { background: #0785a6; }
.person > strong { font-size: 13px; font-weight: 500; }
.google-review-logo { width: 80px; height: 26px; margin-left: auto; object-fit: contain; }
.person strong, .person small { display: block; }
.person strong { font-size: 12px; }
.person small { color: var(--neutral-500); font-size: 10px; }

/* CONTACTO */
.contact { display: grid; grid-template-columns: 55% 45%; grid-template-areas: "copy map" "cta map" "benefits map"; grid-template-rows: auto auto 1fr; align-content: start; margin-bottom: 32px; padding-inline: var(--page-padding); }
.contact::before { content: ""; grid-column: 1; grid-row: 1 / 4; background: var(--lime-panel); border-radius: var(--radius-md) 0 0 var(--radius-md); }
.contact__copy { z-index: 1; grid-area: copy; padding: 40px 48px 0; }
.contact__copy h2 { margin: 0 0 20px; font-size: 42px; font-weight: 600; line-height: 1.1; letter-spacing: -.035em; }
.contact__copy > p:not(.eyebrow) { max-width: 560px; margin: 0; color: rgba(43,53,45,.75); font-size: 16px; }
.contact__map { position: relative; grid-area: map; min-height: 420px; overflow: hidden; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.contact__map > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact__cta { z-index: 1; align-self: start; grid-area: cta; width: fit-content; min-height: 52px; max-height: 52px; margin: 28px 48px 32px; padding: 14px 28px; }
.contact__benefits { z-index: 1; display: grid; grid-area: benefits; grid-template-columns: repeat(3, 1fr); gap: 12px; align-self: end; margin: 0 32px 32px; }
.contact__benefits > div { display: flex; min-height: 84px; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 12px; background: rgba(43,53,45,.055); border-radius: 10px; text-align: center; }
.contact__benefits img { width: 24px; height: 24px; }
.contact__benefits span { font-size: 12px; line-height: 1.3; }

/* FOOTER */
.footer { margin-bottom: 0; padding: 0 var(--page-padding) 24px; color: white; background: var(--white); }
.footer__top, .footer__bottom { background: var(--neutral-900); }
.footer__top { display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: 48px; padding: 32px 40px 24px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.footer__brand { display: block; width: 180px; }
.footer__brand img { width: 100%; height: 45px; object-fit: contain; object-position: left center; }
.footer nav { display: flex; justify-content: center; gap: 48px; color: var(--lime-200); font-size: 12px; }
.footer__social { display: flex; align-items: center; gap: 16px; }
.footer__social img { width: 22px; height: 22px; object-fit: contain; }
.footer__bottom { display: flex; align-items: flex-end; justify-content: space-between; padding: 20px 40px 28px; border-top: 0; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.footer__bottom small { color: rgba(255,255,255,.6); font-size: 10px; }
.footer__legal-actions { display: flex; align-items: flex-end; gap: 28px; }
.footer__email { color: var(--lime-200); font-size: 11px; font-weight: 400; line-height: 1.5; transition: color 180ms ease; }
.footer__email:hover { color: var(--white); }
.footer__email:focus-visible { outline: 2px solid var(--lime-300); outline-offset: 4px; border-radius: 2px; }
.fiscal { width: 48px; height: 64px; flex: none; }
.fiscal img { width: 100%; height: 100%; object-fit: contain; }

/* Aparición suave al entrar y salir del viewport */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.whatsapp-float {
  position: fixed;
  z-index: 100;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  background: #25d366;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(36,43,37,.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(36,43,37,.3); }
.whatsapp-float:focus-visible { outline: 3px solid var(--lime-300); outline-offset: 3px; }
.whatsapp-float img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }

@media (max-width: 1100px) {
  :root { --page-padding: 32px; }
  .navbar__menu { gap: 36px; }
  .navbar__links { gap: 24px; }
  .hero h1 { font-size: 52px; }
  .services-grid { column-gap: 24px; }
  .contact__copy h2 { font-size: 36px; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  :root { --page-padding: 32px; }
  main { display: flex; flex-direction: column; }
  .hero { order: 1; min-height: 900px; background: url("../assets/hero-tablet.png") center top / cover no-repeat; }
  .about { order: 2; }
  .services { order: 3; }
  .work { order: 4; }
  .clients { order: 5; }
  .testimonials { order: 6; }
  .contact { order: 7; }

  .site-header { padding-top: 10px; }
  .navbar { min-height: 54px; }
  .navbar__brand { width: 130px; }
  .navbar__brand img { height: 34px; }
  .navbar__toggle { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; flex-direction: column; padding: 9px; border: 0; color: white; background: var(--neutral-900); border-radius: 50%; }
  .navbar__toggle span { display: block; width: 18px; height: 2px; margin: 2px 0; background: currentColor; border-radius: 2px; }
  .navbar__menu { position: absolute; top: 58px; right: 32px; left: 32px; display: none; align-items: stretch; flex-direction: column; gap: 16px; padding: 22px; background: var(--lime-200); border-radius: var(--radius-md); box-shadow: 0 18px 40px rgba(36,43,37,.18); }
  .navbar__menu.is-open { display: flex; }
  .navbar__links { align-items: stretch; flex-direction: column; gap: 0; }
  .navbar__links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(43,53,45,.12); }
  .navbar__menu .button { width: 100%; }
  .hero__layout { min-height: 836px; padding-top: 260px; padding-bottom: 18px; }
  .hero__copy { width: 100%; margin-inline: auto; text-align: center; }
  .hero__copy .eyebrow { margin-inline: auto; }
  .hero__eyebrow { padding: 7px 14px; font-size: 13px; }
  .hero h1 { max-width: 780px; margin-inline: auto; font-size: 56px; line-height: 1.08; letter-spacing: -.05em; }
  .hero__actions { justify-content: center; }
  .trust-grid { gap: 10px; margin-bottom: 0; }
  .trust-card { min-height: 86px; gap: 12px; padding: 16px; }
  .trust-card h2 { font-size: 13px; }
  .trust-card__coverage-note { display: block; margin-top: 2px; font-size: 8px; }
  .trust-card p { font-size: 10px; }

  .section { padding-block: 72px; }
  .section-title { font-size: 36px; }
  .services { padding-top: 48px; }
  .services > .section-title { margin-bottom: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { min-height: 190px; padding: 22px; background: #f5f2f1; border: 0; border-radius: 10px; }
  .service-card::before { display: none; }
  .service-card > img { margin-bottom: 18px; }
  .service-card h3 { margin-bottom: 14px; font-size: 18px; }

  .about { display: flex; flex-direction: column; gap: 32px; padding-top: 24px; }
  .about__image { min-height: 520px; border-radius: var(--radius-md); }
  .about__content { min-height: 440px; padding: 32px; border-radius: var(--radius-md); }
  .about__content h2 { margin-bottom: 32px; font-size: 34px; }
  .about__signature { margin-top: 32px; }

  .work { padding-block: 68px; }
  .gallery-row { gap: 14px; }
  .gallery-row img { width: 250px; height: 178px; }
  @keyframes gallery-left { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
  @keyframes gallery-right { from { transform: translateX(calc(-50% - 7px)); } to { transform: translateX(0); } }

  .split-heading { grid-template-columns: 1fr; gap: 16px; }
  .split-heading > p { max-width: 620px; justify-self: start; margin: 0; }
  .client-marquee { margin-top: 54px; }
  .client-track article { width: 220px; }
  .client-track img { height: 82px; }
  .client-track img.client-logo { height: 68px; margin-block: 7px; }
  .clients { min-height: 860px; padding-top: 112px; padding-bottom: 80px; }
  .clients .client-marquee { margin-top: 128px; }
  .clients .section-action { margin-top: 56px; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .testimonial-card { min-height: 0; }
  .testimonial-card > p { min-height: 0; }

  .contact { grid-template-columns: 1fr; grid-template-areas: "copy" "cta" "benefits" "map"; grid-template-rows: auto; padding-inline: 32px; }
  .contact::before { grid-column: 1; grid-row: 1 / 4; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .contact__copy { padding: 36px 32px 0; }
  .contact__cta { margin: 24px 32px 28px; }
  .contact__benefits { margin: 0 28px 28px; }
  .contact__benefits > div { min-height: 88px; }
  .contact__map { z-index: 1; min-height: 320px; max-height: 320px; border-radius: 0 0 var(--radius-md) var(--radius-md); }

  .footer__top { grid-template-columns: 1fr auto; }
  .footer nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 767px) {
  :root { --page-padding: 16px; }
  body { font-size: 14px; }
  .section { padding-block: 48px; }
  .button { min-height: 40px; padding: 11px 20px; font-size: 11px; }
  .button--small { min-height: 40px; }
  .button--wide { width: 100%; min-width: 0; }
  .eyebrow { margin-bottom: 16px; padding: 6px 12px; font-size: 11px; font-weight: 500; line-height: 1.5; letter-spacing: 0; }
  .section-title { font-size: 26px; line-height: 1.12; }
  .section-action { margin-top: 24px; padding-inline: 16px; }
  .section-action .button { width: 100%; }

  .hero { min-height: 844px; background: url("../assets/hero-mobile.png") center center / cover no-repeat; }
  .site-header { padding-top: 8px; }
  .navbar { min-height: 48px; }
  .navbar__brand { width: 136.68px; }
  .navbar__brand img { height: 32px; }
  .navbar__toggle { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; flex-direction: column; padding: 9px; border: 0; color: white; background: var(--neutral-900); border-radius: 50%; }
  .navbar__toggle span { display: block; width: 18px; height: 2px; margin: 2px 0; background: currentColor; border-radius: 2px; }
  .navbar__menu { position: absolute; top: 52px; right: 16px; left: 16px; display: none; align-items: stretch; flex-direction: column; gap: 16px; padding: 20px; background: var(--lime-200); border-radius: var(--radius-md); box-shadow: 0 18px 40px rgba(36,43,37,.18); }
  .navbar__menu.is-open { display: flex; }
  .navbar__links { align-items: stretch; flex-direction: column; gap: 0; }
  .navbar__links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(43,53,45,.12); font-size: 13px; }
  .navbar__menu .button { width: 100%; }
  .hero__layout { min-height: 784px; padding-top: 0; padding-bottom: 16px; }
  .hero__copy { position: absolute; top: 50%; right: var(--page-padding); left: var(--page-padding); width: auto; text-align: center; transform: translateY(-50%); }
  .hero__copy .eyebrow { margin-inline: auto; }
  .hero__eyebrow { padding: 6px 12px; font-size: 12px; }
  .hero h1 { max-width: 360px; margin-inline: auto; font-size: 28px; line-height: 1.08; letter-spacing: -.035em; }
  .hero__actions { justify-content: center; gap: 8px; margin-top: 18px; }
  .hero__actions .button { width: auto; padding-inline: 18px; }
  .trust-grid { grid-template-columns: 1fr; gap: 8px; }
  .trust-card { min-height: 62px; gap: 12px; padding: 12px 14px; border-radius: 8px; }
  .trust-card__icon { width: 18px; height: 18px; }
  .trust-card h2 { margin-bottom: 3px; font-size: 12px; }
  .trust-card__coverage-note { display: block; margin-top: 2px; font-size: 8px; }
  .trust-card p { font-size: 9px; }

  .about { display: flex; flex-direction: column; gap: 24px; padding-top: 16px; padding-bottom: 32px; }
  .about__image { height: 280px; min-height: 0; border-radius: var(--radius-sm); }
  .about__content { min-height: 490px; padding: 18px 16px; border-radius: var(--radius-sm); }
  .about__content h2 { margin-bottom: 24px; font-size: 24px; line-height: 1.13; }
  .about__content > p { margin-bottom: 16px; font-size: 12px; line-height: 1.52; }
  .about__signature { gap: 12px; margin-top: 24px; }
  .about__avatar { width: 44px; height: 44px; font-size: 10px; }
  .about__signature strong { font-size: 12px; }
  .about__signature div > span { font-size: 10px; }

  .services { padding-top: 64px; padding-bottom: 64px; }
  .services > .section-title { margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { min-height: 135px; padding: 16px; background: var(--neutral-50); border: 0; border-radius: 8px; }
  .service-card::before { display: none; }
  .service-card > img { width: 20px; height: 20px; margin-bottom: 14px; }
  .service-card h3 { margin-bottom: 10px; font-size: 15px; }
  .service-card p { font-size: 10px; line-height: 1.45; }

  .work { padding-top: 68px; padding-bottom: 76px; }
  .work__heading { margin-bottom: 40px; }
  .gallery { gap: 0; }
  .gallery__fade { width: 28px; }
  .gallery-row { gap: 8px; }
  .gallery-row img { width: 196px; height: 176px; border-radius: 8px; }
  .gallery-row--left { animation-duration: 34s; }
  .gallery-row--right { display: none; }
  .work > .section-action { margin-top: 40px; }
  @keyframes gallery-left { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 4px)); } }
  @keyframes gallery-right { from { transform: translateX(calc(-50% - 4px)); } to { transform: translateX(0); } }

  .clients { min-height: 700px; padding-top: 88px; padding-bottom: 72px; }
  .split-heading { grid-template-columns: 1fr; gap: 16px; }
  .split-heading > p { margin: 0; font-size: 11px; line-height: 1.5; }
  .client-marquee { margin-top: 104px; }
  .client-marquee::before, .client-marquee::after { width: 24px; }
  .client-track { gap: 16px; animation-duration: 40s; }
  .client-track article { width: 120px; }
  .client-track img { height: 54px; padding: 4px 10px; }
  .client-track img.client-logo { width: 104px; height: 46px; max-width: calc(100% - 16px); margin: 4px auto; padding: 0; }
  .client-track article > span { width: 44px; height: 2px; margin: 10px auto; }
  .client-track strong { font-size: 8px; }
  .client-track small { font-size: 7px; }
  @keyframes client-left { to { transform: translateX(calc(-50% - 8px)); } }
  .clients .section-action--right { justify-content: stretch; }

  .testimonials { padding-top: 60px; padding-bottom: 64px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
  .testimonial-card { min-height: 0; padding: 18px 20px; }
  .stars { font-size: 16px; }
  .testimonial-card > p { min-height: 0; margin: 12px 0; font-size: 11px; line-height: 1.5; }
  .person { padding-top: 10px; }
  .person > span { width: 34px; height: 34px; }
  .person > strong { font-size: 11px; }
  .google-review-logo { width: 66px; height: 22px; }

  .contact { grid-template-columns: 1fr; grid-template-areas: "copy" "cta" "benefits" "map"; grid-template-rows: auto; margin-bottom: 24px; padding-inline: 16px; background: transparent; }
  .contact::before { grid-column: 1; grid-row: 1 / 4; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .contact__copy { padding: 24px 16px 20px; }
  .contact__copy h2 { margin-bottom: 14px; font-size: 29px; }
  .contact__copy > p:not(.eyebrow) { font-size: 12px; }
  .contact__map { z-index: 1; min-height: 0; max-height: none; aspect-ratio: 700 / 676; margin: 0; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
  .contact__cta { width: fit-content; min-height: 40px; margin: 18px 16px 32px; padding: 11px 20px; }
  .contact__benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 0 12px 20px; }
  .contact__benefits > div { min-height: 72px; gap: 6px; padding: 8px 4px; border-radius: 8px; }
  .contact__benefits img { width: 18px; height: 18px; }
  .contact__benefits span { font-size: 8px; line-height: 1.3; }

  .footer { margin-bottom: 0; padding: 0; }
  .footer__top { grid-template-columns: 1fr auto; gap: 18px; padding: 22px 16px 14px; border-radius: 0; }
  .footer__brand { width: 120px; }
  .footer__brand img { height: 34px; }
  .footer__social img { width: 18px; height: 18px; }
  .footer nav { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; gap: 10px 22px; font-size: 9px; }
  .footer__bottom { gap: 20px; padding: 14px 16px 18px; border-radius: 0; }
  .footer__bottom small { font-size: 7px; }
  .footer__legal-actions { gap: 12px; }
  .footer__email { font-size: 8px; }
  .fiscal { width: 36px; height: 48px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float img { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
