:root {
  color-scheme: light;
  --bg: #f7fafc;
  --bg-elevated: #ffffff;
  --bg-muted: #eff6f7;
  --bg-strong: #101828;
  --text: #101828;
  --text-muted: #475467;
  --text-soft: #667085;
  --line: #d0d5dd;
  --line-soft: #e4e7ec;
  --brand: #0b6b8f;
  --brand-strong: #084c65;
  --accent: #86b817;
  --accent-strong: #5d8610;
  --cyan: #21a6c8;
  --amber: #b86b17;
  --success: #0f8a5f;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .08);
  --shadow-md: 0 18px 48px rgba(16, 24, 40, .11);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1180px;
  --header-h: 72px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090d16;
  --bg-elevated: #101724;
  --bg-muted: #0d1420;
  --bg-strong: #f8fafc;
  --text: #eef2f6;
  --text-muted: #c5ceda;
  --text-soft: #98a2b3;
  --line: #2b3545;
  --line-soft: #1d2735;
  --brand: #54c6eb;
  --brand-strong: #8bdcf4;
  --accent: #b6d936;
  --accent-strong: #d3ef6c;
  --cyan: #6ed4ee;
  --amber: #f0b15d;
  --success: #55d6a7;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 18px 48px rgba(0, 0, 0, .3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(11, 107, 143, .06), transparent 460px),
    linear-gradient(90deg, rgba(134, 184, 23, .05), transparent 540px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 70%, white);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: var(--bg-strong);
  color: var(--bg);
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand__logo {
  width: 188px;
  height: auto;
  max-height: 54px;
}

.brand__logo--footer {
  width: 176px;
}

.nav__links {
  display: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.icon-button:hover {
  border-color: color-mix(in srgb, var(--brand) 50%, var(--line));
  transform: translateY(-1px);
}

.theme-icon--moon {
  display: none;
}

:root[data-theme="dark"] .theme-icon--sun {
  display: none;
}

:root[data-theme="dark"] .theme-icon--moon {
  display: block;
}

.menu-button {
  position: relative;
}

.menu-button__line,
.menu-button::before,
.menu-button::after {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button {
  gap: 5px;
}

body.nav-open .menu-button__line {
  opacity: 0;
}

body.nav-open .menu-button::before {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-button::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 90;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  box-shadow: var(--shadow-md);
  transform: translateY(-120%);
  transition: transform .24s ease;
}

body.nav-open .mobile-panel {
  transform: translateY(0);
}

.mobile-panel a {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--text) 18%, transparent);
}

.button--primary:hover {
  background: color-mix(in srgb, var(--text) 88%, var(--brand));
}

.button--secondary {
  border-color: var(--line);
  background: var(--bg-elevated);
  color: var(--text);
}

.button--secondary:hover {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
}

.button--ghost {
  border-color: color-mix(in srgb, var(--brand) 28%, var(--line));
  background: color-mix(in srgb, var(--brand) 7%, var(--bg-elevated));
  color: var(--brand-strong);
}

.hero {
  padding: 48px 0 56px;
}

.hero__grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--brand) 8%, var(--bg-elevated));
  color: var(--brand-strong);
  padding: 6px 10px;
  font-size: .82rem;
  font-weight: 800;
  text-align: left;
}

.eyebrow::before,
.section-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cta h2 {
  margin: 0;
  color: var(--text);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: 2.45rem;
}

.hero__lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 620px;
}

.proof-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg-elevated) 82%, transparent);
  padding: 14px;
}

.proof-item strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
}

.proof-item span {
  color: var(--text-soft);
  font-size: .88rem;
}

.status-pill {
  border: 1px solid color-mix(in srgb, var(--success) 35%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--success) 9%, transparent);
  color: var(--success);
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

section {
  padding: 58px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-heading h2,
.split-copy h2,
.cta h2 {
  font-size: 1.82rem;
}

.section-heading p,
.split-copy p,
.cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

p,
.proof-item span,
.check-list li span,
.principle span {
  text-align: justify;
  text-justify: inter-word;
}

#metodologia .section-heading p {
  text-align: center;
  text-justify: auto;
}

#metodologia .method-card p {
  text-align: left;
  text-justify: auto;
}

.band {
  background: color-mix(in srgb, var(--bg-muted) 72%, transparent);
  border-block: 1px solid color-mix(in srgb, var(--line-soft) 76%, transparent);
}

.grid {
  display: grid;
  gap: 14px;
}

.grid--services {
  grid-template-columns: 1fr;
}

.service-card,
.method-card,
.contact-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.service-card {
  padding: 20px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--brand) 8%, var(--bg-elevated));
  color: var(--brand-strong);
}

.service-card h3,
.method-card h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.service-card p,
.method-card p,
.contact-item p {
  margin: 0;
  color: var(--text-muted);
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--text-muted);
}

.check-list svg {
  margin-top: 2px;
  color: var(--success);
}

.noma-panel {
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 9%, var(--bg-elevated)), color-mix(in srgb, var(--accent) 7%, var(--bg-elevated))),
    var(--bg-elevated);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-noma-panel {
  align-self: center;
}

.hero-noma-panel .noma-panel__body {
  gap: 12px;
}

.hero-noma-panel__cta {
  margin-top: 4px;
}

.noma-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line-soft);
  padding: 18px;
}

.noma-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 850;
}

.noma-wordmark::before {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--brand) 0 3px, transparent 4px),
    conic-gradient(from 30deg, var(--brand), var(--accent), var(--cyan), var(--brand));
  content: "";
}

.noma-panel__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.automation-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg-elevated) 84%, transparent);
  padding: 10px;
}

.automation-step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--bg);
  font-weight: 850;
}

.automation-step strong {
  display: block;
  line-height: 1.2;
}

.automation-step small {
  color: var(--text-soft);
  font-size: .8rem;
}

.method-grid {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.method-card {
  position: relative;
  padding: 20px;
}

.method-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 18%, var(--bg-elevated));
  color: var(--accent-strong);
  font-size: .84rem;
  font-weight: 900;
}

.about-grid {
  display: grid;
  gap: 14px;
}

.about-copy {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 22px;
}

.about-copy p {
  margin: 0;
  color: var(--text-muted);
}

.about-copy p + p {
  margin-top: 14px;
}

.about-copy .section-heading h2 {
  font-size: 1.62rem;
}

.principles {
  display: grid;
  gap: 10px;
}

.principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg-elevated) 84%, var(--bg-muted));
  padding: 16px;
}

.principle__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--brand) 8%, var(--bg-elevated));
  color: var(--brand-strong);
}

.principle__body {
  display: grid;
  gap: 4px;
}

.principle strong {
  display: block;
}

.principle span {
  color: var(--text-muted);
}

.principles .principle:first-child .principle__body span {
  text-align: left;
  text-justify: auto;
}

.cta {
  padding: 0 0 58px;
}

.cta__box {
  display: grid;
  gap: 22px;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}

.cta h2,
.cta p {
  color: inherit;
}

.cta p {
  opacity: .82;
}

.cta .button--primary {
  background: var(--bg);
  color: var(--text);
  box-shadow: none;
}

.cta .button--secondary {
  border-color: color-mix(in srgb, var(--bg) 35%, transparent);
  background: transparent;
  color: var(--bg);
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--brand-strong);
  font-weight: 800;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--bg-muted) 68%, transparent);
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-strong);
}

.footer-note {
  margin: 0;
  color: var(--text-soft);
  font-size: .9rem;
}

@media (min-width: 680px) {
  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta__box {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 34px;
  }
}

@media (min-width: 980px) {
  :root {
    --header-h: 80px;
  }

  .container {
    width: min(100% - 56px, var(--container));
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav__links a {
    border-radius: var(--radius-sm);
    padding: 9px 11px;
    color: var(--text-muted);
    font-size: .92rem;
    font-weight: 750;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
  }

  .nav__links a:hover {
    background: color-mix(in srgb, var(--brand) 8%, transparent);
    color: var(--text);
  }

  .menu-button,
  .mobile-panel {
    display: none;
  }

  .hero {
    padding: 84px 0 78px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: 3.9rem;
  }

  .hero__lead {
    font-size: 1.14rem;
  }

  section {
    padding: 82px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .cta h2 {
    font-size: 2.38rem;
  }

  .about-copy .section-heading h2 {
    font-size: 2.08rem;
  }

  .grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: minmax(0, .94fr) minmax(360px, 1.06fr);
    gap: 56px;
  }

  .split--reverse {
    grid-template-columns: minmax(360px, 1.02fr) minmax(0, .98fr);
  }

  .split--reverse .split-copy {
    order: 2;
  }

  .method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand__logo {
    width: 164px;
  }

  .hero h1 {
    font-size: 2.16rem;
  }

  .hero__proof {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }
}

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