:root {
  --navy-950: #04131f;
  --navy-900: #071e35;
  --navy-850: #0a2946;
  --navy-800: #0d3558;
  --cyan-500: #19b8d7;
  --cyan-400: #44c9df;
  --cyan-100: #dff7fb;
  --wine-700: #742441;
  --wine-600: #8f3150;
  --ink: #102335;
  --muted: #5f6f7d;
  --line: #dce7ec;
  --soft: #f5f9fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 30, 50, .12);
  --shadow-soft: 0 12px 40px rgba(6, 30, 50, .09);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

::selection { background: var(--cyan-100); color: var(--navy-950); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: translateY(0); }

.progress {
  position: fixed;
  z-index: 1600;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}
.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-400), var(--wine-600));
}

.site-header {
  position: sticky;
  z-index: 1500;
  top: 0;
  height: var(--header-h);
  background: rgba(4, 19, 31, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 15px;
  letter-spacing: .04em;
  background: linear-gradient(145deg, var(--cyan-400), #0b779a);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 8px 24px rgba(25,184,215,.26);
}
.brand-copy { display: grid; line-height: 1.12; }
.brand-copy strong { font-size: 15px; white-space: nowrap; }
.brand-copy small { margin-top: 5px; color: #b8cbd8; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.site-nav a {
  color: #d6e3ea;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 11px;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--white);
  background: linear-gradient(135deg, #15a4c1, var(--cyan-500));
  box-shadow: 0 9px 24px rgba(25,184,215,.24);
}
.site-nav .nav-cta:hover { background: linear-gradient(135deg, #1bb6d5, #22c3df); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease, opacity .25s 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); }

.section-shell { position: relative; overflow: hidden; }
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(25,184,215,.17), transparent 27%),
    radial-gradient(circle at 82% 70%, rgba(116,36,65,.24), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 50%, #0b2f4d);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 88%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .55;
  pointer-events: none;
}
.hero-orb-one { width: 250px; height: 250px; right: 4%; top: 7%; border: 1px solid rgba(68,201,223,.24); }
.hero-orb-two { width: 380px; height: 380px; left: -170px; bottom: -160px; border: 1px solid rgba(143,49,80,.3); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  gap: 70px;
  align-items: center;
  padding-block: 92px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #1487a2;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.eyebrow-light { color: #6fe0f2; }
.hero h1,
.section-heading h2,
.fiscal-copy h2,
.profile-card h2,
.remote-copy h2,
.final-cta h2 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  letter-spacing: -.045em;
  line-height: 1.03;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(45px, 6vw, 82px);
}
.hero h1 span { color: var(--cyan-400); }
.hero-lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: #f1f7fa;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}
.hero-text {
  max-width: 690px;
  margin: 14px 0 0;
  color: #b9cbd6;
  font-size: 15px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 21px; height: 21px; fill: currentColor; }
.btn-primary { color: var(--white); background: linear-gradient(135deg, #13a8c7, var(--cyan-500)); box-shadow: 0 15px 38px rgba(25,184,215,.25); }
.btn-primary:hover { box-shadow: 0 18px 44px rgba(25,184,215,.32); }
.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.05); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-light { color: var(--navy-950); background: var(--white); }
.btn-outline-light { color: var(--white); border: 1px solid rgba(255,255,255,.35); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #c8d9e3;
  background: rgba(255,255,255,.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .035em;
}

.hero-panel { position: relative; }
.panel-glow {
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(circle, rgba(25,184,215,.25), transparent 68%);
  filter: blur(32px);
  pointer-events: none;
}
.hero-card-main {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  box-shadow: 0 35px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero-card-main::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  right: -70px;
  bottom: -70px;
  background: linear-gradient(135deg, rgba(68,201,223,.3), rgba(116,36,65,.16));
}
.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-card-head div { display: grid; }
.hero-card-head small { color: #91aaba; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.hero-card-head strong { margin-top: 5px; font-size: 18px; }
.status-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--cyan-400); box-shadow: 0 0 0 7px rgba(68,201,223,.12), 0 0 24px rgba(68,201,223,.5); }
.hero-card-body { padding: 28px; position: relative; z-index: 1; }
.role { margin: 0 0 24px; color: #c8dae4; font-weight: 700; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-grid div {
  min-height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(1,15,25,.3);
}
.mini-grid span { color: #8ea9ba; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.mini-grid b { font-size: 18px; }
.logo-ribbon { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 22px 0; }
.logo-chip {
  min-height: 90px;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.logo-chip img { max-width: 82px; max-height: 48px; object-fit: contain; }
.logo-chip:first-child img { max-width: 40px; max-height: 52px; }
.logo-chip figcaption { color: #d2e1e8; font-size: 11px; font-weight: 700; line-height: 1.25; }

.trust-strip { position: relative; z-index: 2; margin-top: -22px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-item { display: flex; align-items: center; gap: 16px; min-height: 118px; padding: 24px 28px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #0e83a1;
  background: var(--cyan-100);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 13px;
}
.trust-item div { display: grid; }
.trust-item strong { font-size: 15px; }
.trust-item small { margin-top: 4px; color: var(--muted); font-size: 12px; }

.section { padding: 105px 0; }
.section-light { background: var(--soft); }
.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading.compact { margin-bottom: 30px; }
.section-heading h2,
.fiscal-copy h2,
.profile-card h2,
.remote-copy h2,
.final-cta h2 { margin: 0; font-size: clamp(34px, 4.3vw, 58px); }
.section-heading p:not(.eyebrow),
.fiscal-copy > p:not(.eyebrow),
.remote-copy > p:not(.eyebrow) { max-width: 720px; margin: 17px 0 0; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 262px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 9px 25px rgba(6,30,50,.035);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: var(--cyan-100);
  opacity: .6;
  transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); border-color: #b9dce5; }
.service-card:hover::after { transform: scale(1.35); }
.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 12px;
  box-shadow: 0 9px 24px rgba(7,30,53,.17);
}
.service-card h3 { margin: 22px 0 10px; font-size: 19px; line-height: 1.2; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.fiscal-section {
  color: var(--white);
  background: linear-gradient(125deg, var(--navy-950), var(--navy-900) 58%, #0a3352);
}
.fiscal-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.fiscal-copy > p:not(.eyebrow) { color: #b5c9d5; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 24px; color: var(--cyan-400); font-weight: 800; font-size: 14px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.fiscal-list { border-top: 1px solid rgba(255,255,255,.12); }
.fiscal-list div { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.fiscal-list span { color: #63d8eb; font-family: "Arial Black", Arial, sans-serif; font-size: 12px; }
.fiscal-list p { margin: 0; color: #e6eff3; font-weight: 700; }

.section-profile { background: var(--white); }
.profile-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: start; }
.profile-card {
  position: sticky;
  top: calc(var(--header-h) + 30px);
  padding: 35px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), #0c3c62);
  box-shadow: var(--shadow);
}
.profile-logo-wrap {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 19px;
  background: rgba(255,255,255,.96);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}
.profile-logo-wrap img { max-width: 46px; max-height: 56px; object-fit: contain; }
.profile-card .eyebrow { color: #70dff1; }
.profile-card h2 { font-size: clamp(36px, 4vw, 54px); }
.profile-role { margin: 18px 0 14px; color: #89dfed; font-weight: 800; }
.profile-card p:last-child { color: #c6d8e1; }

.timeline { position: relative; padding-left: 42px; }
.timeline-line { position: absolute; top: 14px; left: 12px; width: 1px; height: calc(100% - 25px); background: linear-gradient(var(--cyan-500), var(--line)); }
.timeline article { position: relative; padding: 8px 0 38px; }
.timeline article::before { content: ""; position: absolute; top: 14px; left: -36px; width: 12px; height: 12px; border-radius: 50%; background: var(--white); border: 3px solid var(--cyan-500); box-shadow: 0 0 0 5px var(--cyan-100); }
.timeline-year { color: #0d88a5; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.timeline h3 { margin: 7px 0 7px; font-size: 24px; }
.timeline p { margin: 0; color: var(--muted); }

.skills-section { padding-top: 45px; background: var(--white); }
.skills-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.skills-cloud span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: #345064;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.skills-cloud span:hover { transform: translateY(-2px); background: var(--cyan-100); border-color: #b6e4ec; }

.remote-section { background: linear-gradient(180deg, #f6fafc 0, #fff 100%); }
.remote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.remote-copy { position: sticky; top: calc(var(--header-h) + 34px); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 9px 26px rgba(6,30,50,.04);
  overflow-wrap: anywhere;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
a.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: #b8dce6; }
.contact-label { color: #0f89a6; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.contact-card strong { margin: 16px 0 5px; font-size: 19px; line-height: 1.22; }
.contact-card small { color: var(--muted); }

.source-image-card {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 9px;
  border: 1px solid #c6d8df;
  border-radius: 26px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 24px 60px rgba(7,30,53,.17);
  overflow: hidden;
}
.source-image-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: inset 0 0 35px rgba(255,255,255,.33);
  pointer-events: none;
}
.source-image-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.pdf-section { background: var(--white); }
.pdf-shell {
  border: 1px solid var(--line);
  border-radius: 25px;
  overflow: hidden;
  background: #eef4f7;
  box-shadow: var(--shadow);
}
.pdf-toolbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.pdf-toolbar > div { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pdf-toolbar strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 13px; }
.pdf-toolbar a { flex: 0 0 auto; padding: 8px 12px; border-radius: 9px; background: var(--navy-900); color: var(--white); font-size: 12px; font-weight: 800; }
.pdf-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--wine-600); box-shadow: 0 0 0 5px rgba(143,49,80,.1); }
.pdf-object { display: block; width: 100%; height: 780px; border: 0; }
.pdf-fallback { min-height: 450px; display: grid; place-items: center; align-content: center; gap: 14px; text-align: center; padding: 40px; }

.final-cta { color: var(--white); background: linear-gradient(125deg, var(--wine-700), var(--navy-900)); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { max-width: 760px; }
.final-cta p:not(.eyebrow) { margin: 12px 0 0; color: #d6e0e5; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.site-footer { padding: 35px 0; color: #c0d0d9; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer strong { color: var(--white); }
.site-footer p { margin: 4px 0 0; font-size: 12px; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.footer-contact a { font-size: 12px; }
.footer-contact a:hover { color: var(--white); }

.whatsapp-float {
  position: fixed;
  z-index: 1400;
  right: 20px;
  bottom: 20px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: #188d64;
  box-shadow: 0 14px 35px rgba(12,91,64,.32);
  font-weight: 800;
  font-size: 13px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(12,91,64,.4); }
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }

.back-top {
  position: fixed;
  z-index: 1350;
  right: 20px;
  bottom: 84px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--navy-900);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 1; transform: none; transition: transform .35s ease, box-shadow .35s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  :root { --header-h: 72px; }
  .site-nav a { padding-inline: 8px; font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 45px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fiscal-grid, .profile-grid, .remote-grid { gap: 45px; }
}

@media (max-width: 900px) {
  .brand-copy strong { font-size: 14px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 0 0 18px 18px;
    background: rgba(4,19,31,.98);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 11px 12px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; margin-top: 3px; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 70px 82px; }
  .hero-copy { max-width: 760px; }
  .hero-panel { max-width: 620px; width: 100%; }
  .trust-strip { margin-top: -12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item { min-height: 92px; }

  .section { padding: 82px 0; }
  .fiscal-grid, .profile-grid, .remote-grid { grid-template-columns: 1fr; }
  .profile-card, .remote-copy { position: relative; top: auto; }
  .profile-card { max-width: 700px; }
  .contact-cards { max-width: 760px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .final-actions { justify-content: flex-start; }
  .pdf-object { height: 680px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 9px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 11px; }
  .site-nav { left: 14px; right: 14px; }

  .hero-grid { padding-block: 58px 70px; }
  .hero h1 { font-size: clamp(41px, 13.2vw, 60px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-card-head, .hero-card-body { padding: 22px; }
  .mini-grid { grid-template-columns: 1fr; }
  .mini-grid div { min-height: 80px; }
  .logo-ribbon { grid-template-columns: 1fr; margin-inline: 0; }

  .trust-item { padding: 20px; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2,
  .fiscal-copy h2,
  .profile-card h2,
  .remote-copy h2,
  .final-cta h2 { font-size: clamp(32px, 10vw, 46px); }

  .services-grid, .contact-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 225px; }
  .fiscal-list div { grid-template-columns: 42px 1fr; }
  .profile-card { padding: 26px; }
  .timeline { padding-left: 35px; }
  .timeline article::before { left: -29px; }
  .timeline-line { left: 11px; }
  .contact-card { min-height: 145px; }
  .pdf-toolbar { align-items: flex-start; }
  .pdf-toolbar > div { min-width: 0; }
  .pdf-toolbar strong { max-width: 190px; }
  .pdf-object { height: 560px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-contact { justify-content: flex-start; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 54px; min-height: 54px; padding: 0; justify-content: center; }
  .back-top { right: 14px; bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
