:root {
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --fs-display-2xl: 72px;
  --fs-display-xl: 56px;
  --fs-display-lg: 44px;
  --fs-h1: 36px;
  --fs-h2: 28px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 12px;
  --fs-overline: 11px;
  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --ls-tighter: -0.02em;
  --ls-tight: -0.01em;
  --ls-normal: 0;
  --ls-wide: 0.04em;
  --ls-overline: 0.16em;
  --info: var(--celeste);
  --color-primary: var(--celeste);
  --color-primary-hover: var(--celeste-300);
  --color-primary-active: var(--celeste-600);
  --color-secondary: var(--azul);
  --color-accent: var(--navy);
  --text-strong: var(--navy);
  --text-body: var(--grey-700);
  --text-muted: var(--grey-500);
  --text-on-dark: var(--white);
  --text-on-primary: var(--white);
  --text-link: var(--azul);
  --text-link-hover: var(--celeste);
  --surface-page: var(--white);
  --surface-subtle: var(--grey-50);
  --surface-card: var(--white);
  --surface-inverse: var(--navy);
  --surface-inverse-deep: var(--navy-900);
  --surface-tint: var(--celeste-100);
  --border-subtle: var(--grey-200);
  --border-default: var(--grey-300);
  --border-strong: var(--navy);
  --border-on-dark: var(--navy-300);
  --focus-ring: var(--celeste);
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --container-max: 1200px;
  --container-wide: 1360px;
  --gutter: 24px;
  --section-y: 96px;
  --section-y-sm: 56px;
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --border-w: 1px;
  --border-w-strong: 2px;
  --border-accent: 4px;
  --shadow-xs: 0 1px 2px rgba(20, 40, 74, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 40, 74, 0.08);
  --shadow-md: 0 8px 20px rgba(20, 40, 74, 0.10);
  --shadow-lg: 0 18px 40px rgba(20, 40, 74, 0.14);
  --shadow-primary: 0 8px 24px rgba(0, 174, 239, 0.28);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
  --z-base: 0;
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0px 0px 0.5em;
  font-weight: var(--fw-extrabold);
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin: 0px 0px 1em;
  text-wrap-mode: initial;
  text-wrap-style: pretty;
}

a {
  color: var(--text-link);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}

a:hover {
  color: var(--text-link-hover);
}

::selection {
  background: var(--celeste);
  color: var(--white);
}

:focus-visible {
  outline: var(--border-w-strong) solid var(--focus-ring);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 10px;
  padding: 12px 24px;
  height: 44px;
  font-family: var(--font-heading-6);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  line-height: 1;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  cursor: pointer;
  border-radius: var(--radius-md);
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--sm {
  padding: 8px 16px;
  font-size: var(--fs-body-sm);
  height: 36px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: var(--fs-body-lg);
  height: 54px;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--celeste-6);
  color: var(--white-6);
  border-color: var(--celeste-6);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background: var(--celeste-300);
  border-color: var(--celeste-300);
  color: var(--white);
}

.btn--primary:active {
  background: var(--celeste-600);
  border-color: var(--celeste-600);
}

.btn--secondary {
  background: var(--navy-6);
  color: var(--white-6);
  border-color: var(--navy-6);
}

.btn--secondary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
}

.btn--secondary:active {
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.btn--outline {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: var(--navy-6);
  border-color: var(--navy-6);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline:active {
  background: var(--navy-700);
  color: var(--white);
}

.btn--ghost {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: var(--azul-6);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.btn--ghost:hover {
  background: var(--celeste-100);
  color: var(--azul);
}

.btn--ghost:active {
  background: var(--surface-tint);
}

.project-card {
  display: block;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-radius: var(--radius-md);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  aspect-ratio: 4 / 3;
  background: var(--navy-6);
  box-shadow: none;
  transition: box-shadow var(--dur-base) var(--ease-standard);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
}

.project-card__media {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.55) contrast(1.04);
  transition: transform var(--dur-slow) var(--ease-out);
}

.project-card:hover .project-card__media {
  transform: scale(1.05);
}

.project-card__tint {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: var(--navy-6);
  opacity: 0.2;
  pointer-events: none;
}

.project-card__scrim {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(7, 18, 35, 0) 40%, rgba(7, 18, 35, 0.62) 72%, rgba(7, 18, 35, 0.92) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.project-card__scrim--hover {
  background-image: linear-gradient(rgba(20, 40, 74, 0.25) 0%, rgba(7, 18, 35, 0.75) 60%, rgba(7, 18, 35, 0.95) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-standard);
}

.project-card:hover .project-card__scrim--hover {
  opacity: 1;
}

.project-card__top {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: var(--space-4) var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 8px;
  column-gap: 8px;
}

.project-card__status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(7, 18, 35, 0.55);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.project-card__bottom {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: var(--space-5);
  color: var(--white-6);
}

.project-card__category {
  font-family: var(--font-heading-6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--celeste-6);
  margin-bottom: 8px;
}

.project-card__title {
  margin: 0px;
  color: var(--white-6);
  font-family: var(--font-heading-6);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-h3);
  line-height: 1.18;
  letter-spacing: var(--ls-tight);
}

.project-card__rule {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--celeste-6);
  margin-top: 12px;
  transition: width var(--dur-base) var(--ease-out);
}

.project-card:hover .project-card__rule {
  width: 48px;
}

.project-card__meta {
  max-height: 0px;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: max-height var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-standard);
}

.project-card:hover .project-card__meta {
  max-height: 40px;
  opacity: 1;
}

.project-card__meta p {
  margin: 10px 0px 0px;
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.78);
}

.badge {
  display: inline-flex;
  align-items: center;
  row-gap: 6px;
  column-gap: 6px;
  border-radius: var(--radius-pill);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  font-family: var(--font-heading-6);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  line-height: 1;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  padding: 5px 12px;
  font-size: var(--fs-caption);
}

.badge--sm {
  padding: 3px 9px;
  font-size: var(--fs-overline);
}

.badge--primary {
  background: var(--celeste-6);
  color: var(--white-6);
}

.badge--warning {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(230, 164, 23, 0.15);
  color: rgb(154, 107, 0);
}

.stat {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  column-gap: 6px;
  align-items: flex-start;
  text-align: left;
}

.stat--center {
  align-items: center;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display-6);
  font-stretch: expanded;
  font-weight: var(--fw-black);
  font-size: var(--fs-display-lg);
  line-height: 1;
  letter-spacing: var(--ls-tighter);
  color: var(--navy-6);
}

.stat__suffix {
  color: var(--celeste-6);
}

.stat__label {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-heading {
  max-width: 720px;
  text-align: left;
}

.section-heading__title {
  margin: 0px;
  font-family: var(--font-heading-6);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-h1);
  line-height: 1.12;
  letter-spacing: var(--ls-tight);
  color: var(--text-strong);
}

.section-heading--dark .section-heading__title {
  color: var(--white);
}

.section-heading__lead {
  margin: 14px 0px 0px;
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--text-body);
}

.section-heading--dark .section-heading__lead {
  color: rgba(255, 255, 255, 0.78);
}

.contact-item {
  display: inline-flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.contact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  border-radius: var(--radius-md);
  background: var(--celeste-100-6);
  color: var(--celeste-6);
}

.contact-item--dark .contact-item__icon {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 174, 239, 0.16);
}

.contact-item__body {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  column-gap: 2px;
  min-width: 0px;
}

.contact-item__label {
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-item--dark .contact-item__label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-item__value {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
  overflow-x: hidden;
  overflow-y: hidden;
  text-overflow: ellipsis;
}

.contact-item--dark .contact-item__value {
  color: var(--white);
}

.field {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  column-gap: 6px;
  width: 100%;
}

.field__label {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
}

.field__required {
  color: var(--danger-6);
}

.field__control {
  display: flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--white-6);
  padding: 0px 14px;
  height: 46px;
  transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}

.field__control:focus-within {
  border-color: var(--celeste);
  box-shadow: 0 0 0 3px var(--celeste-100);
}

.field__icon {
  display: inline-flex;
  color: var(--text-muted);
}

.field__input {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  font-family: var(--font-body-6);
  font-size: var(--fs-body);
  color: var(--text-strong);
  height: 100%;
}

.field__input:disabled {
  color: var(--text-muted);
}

.field__select-wrap {
  position: relative;
}

.field__select {
  width: 100%;
  appearance: none;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--white-6);
  padding: 0px 40px 0px 14px;
  height: 46px;
  font-family: var(--font-body-6);
  font-size: var(--fs-body);
  color: var(--text-strong);
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}

.field__select:focus {
  border-color: var(--celeste);
  box-shadow: 0 0 0 3px var(--celeste-100);
}

.field__select:disabled {
  background: var(--grey-50);
  cursor: not-allowed;
}

.field__caret {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--azul-6);
  font-size: 12px;
}

.field__textarea {
  width: 100%;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--white-6);
  padding: 12px 14px;
  font-family: var(--font-body-6);
  font-size: var(--fs-body);
  color: var(--text-strong);
  resize: vertical;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}

.field__textarea:focus {
  border-color: var(--celeste);
  box-shadow: 0 0 0 3px var(--celeste-100);
}

.field__textarea:disabled {
  background: var(--grey-50);
  cursor: not-allowed;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.logo {
  display: block;
  width: 10vh;
}

.site-header {
  position: sticky;
  top: 0px;
  height: 76px;
  background: var(--white-6);
  border-bottom: 1px solid var(--border-subtle);
  z-index: var(--z-toast);
}

@media (max-width: 860px) {
  .site-header {
  height: auto;
  }
}

.site-header__inner {
  max-width: var(--container-wide);
  margin: 0px auto;
  padding: 0px 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 24px;
  column-gap: 24px;
}

@media (max-width: 860px) {
  .site-header__inner {
  flex-wrap: wrap;
  padding: 14px 20px;
  row-gap: 10px;
  }
}

.site-header__logo {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  row-gap: 2px;
  column-gap: 2px;
}

.nav-link {
  padding: 8px 14px;
  font-family: var(--font-heading-6);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  color: var(--navy-6);
}

.nav-link:hover {
  color: var(--celeste);
}

.nav-link.is-active {
  color: var(--celeste-6);
}

.site-header__cta {
  margin-left: 14px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.site-footer {
  background: var(--navy-900-6);
  color: var(--white-6);
}

.site-footer__grid {
  max-width: var(--container-wide);
  margin: 0px auto;
  padding: 64px 32px 32px;
  display: grid;
  grid-template-columns: minmax(0px, 1.4fr) minmax(0px, 1fr) minmax(0px, 1.4fr);
  row-gap: 48px;
  column-gap: 48px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
}

.site-footer__lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin: 8px 0px 0px;
}

.site-footer__head {
  font-family: var(--font-heading-6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--celeste-6);
  margin: 0px 0px 4px;
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.site-footer__link:hover {
  color: var(--celeste);
}

.site-footer__bottom-bar {
  border-top: 1px solid var(--navy-300-6);
}

.site-footer__bottom {
  max-width: var(--container-wide);
  margin: 0px auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 12px;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

html, body {
  margin: 0px;
}

.g-min > * {
  min-width: 0px;
}

@media (max-width: 900px) {
  .g-hero {
  grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .g-split {
  grid-template-columns: 1fr !important;
  row-gap: 32px !important;
  column-gap: 32px !important;
  }
}

@media (max-width: 900px) {
  .g-3 {
  grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .g-4 {
  grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .g-contact {
  grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .g-hero > :last-child {
  min-height: 280px !important;
  margin-right: 0px !important;
  }
}

@media (max-width: 900px) {
  .g-stats {
  grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .g-stats > * {
  border-left-width: medium !important;
  border-left-style: none !important;
  border-left-color: currentcolor !important;
  margin-left: 0px !important;
  padding-left: 0px !important;
  }
}

@media (max-width: 900px) {
  .g-order-1 {
  order: 1 !important;
  }
}

@media (max-width: 900px) {
  .g-order-2 {
  order: 2 !important;
  }
}

@media (max-width: 620px) {
  .g-2 {
  grid-template-columns: 1fr !important;
  }
}

#construccion, #metalica, #remodelaciones, #gestion {
  scroll-margin-top: 92px;
}

.stats-band {
  background: var(--surface-page);
  padding: 72px 32px;
}

.stats-card {
  max-width: var(--container-wide);
  margin: 0px auto;
  background: var(--celeste-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 44px 24px;
}

.stats-card__cell {
  padding: 0px 32px;
}

.stats-card__cell + .stats-card__cell {
  border-left: 1px solid rgba(20, 40, 74, 0.28);
}

.stats-card .stat__value {
  color: var(--navy);
}

.stats-card .stat__suffix {
  color: var(--navy);
  opacity: 0.65;
}

.stats-card .stat__label {
  color: var(--navy);
  opacity: 0.85;
}

.lc-blur {
  animation: lc-blur-in 640ms var(--ease-out) both;
}

@media (prefers-reduced-motion: reduce) {
  .lc-blur {
  animation-duration: auto !important;
  animation-timing-function: ease !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  animation-direction: normal !important;
  animation-fill-mode: none !important;
  animation-play-state: running !important;
  animation-name: none !important;
  animation-timeline: auto !important;
  animation-range-start: normal !important;
  animation-range-end: normal !important;
  }
}

.lc-blur--1 {
  animation-delay: 60ms;
}

.lc-blur--2 {
  animation-delay: 170ms;
}

.lc-blur--3 {
  animation-delay: 280ms;
}

.lc-blur--4 {
  animation-delay: 390ms;
}

@supports (animation-timeline: view()) {
  .lc-parallax {
  animation-duration: auto;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: lc-hero-drift;
  animation-range-start: normal;
  animation-range-end: normal;
  animation-timeline: view();
  will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lc-parallax {
  animation-duration: auto !important;
  animation-timing-function: ease !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  animation-direction: normal !important;
  animation-fill-mode: none !important;
  animation-play-state: running !important;
  animation-name: none !important;
  animation-timeline: auto !important;
  animation-range-start: normal !important;
  animation-range-end: normal !important;
  }
}

:root {
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --fs-display-2xl: 72px;
  --fs-display-xl: 56px;
  --fs-display-lg: 44px;
  --fs-h1: 36px;
  --fs-h2: 28px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 12px;
  --fs-overline: 11px;
  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --ls-tighter: -0.02em;
  --ls-tight: -0.01em;
  --ls-normal: 0;
  --ls-wide: 0.04em;
  --ls-overline: 0.16em;
  --info: var(--celeste-2);
  --color-primary: var(--celeste-2);
  --color-primary-hover: var(--celeste-300-2);
  --color-primary-active: var(--celeste-600-2);
  --color-secondary: var(--azul-2);
  --color-accent: var(--navy-2);
  --text-strong: var(--navy-2);
  --text-body: var(--grey-700-2);
  --text-muted: var(--grey-500-2);
  --text-on-dark: var(--white-2);
  --text-on-primary: var(--white-2);
  --text-link: var(--azul-2);
  --text-link-hover: var(--celeste-2);
  --surface-page: var(--white-2);
  --surface-subtle: var(--grey-50-2);
  --surface-card: var(--white-2);
  --surface-inverse: var(--navy-2);
  --surface-inverse-deep: var(--navy-900-2);
  --surface-tint: var(--celeste-100-2);
  --border-subtle: var(--grey-200-2);
  --border-default: var(--grey-300-2);
  --border-strong: var(--navy-2);
  --border-on-dark: var(--navy-300-2);
  --focus-ring: var(--celeste-2);
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --container-max: 1200px;
  --container-wide: 1360px;
  --gutter: 24px;
  --section-y: 96px;
  --section-y-sm: 56px;
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --border-w: 1px;
  --border-w-strong: 2px;
  --border-accent: 4px;
  --shadow-xs: 0 1px 2px rgba(20, 40, 74, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 40, 74, 0.08);
  --shadow-md: 0 8px 20px rgba(20, 40, 74, 0.10);
  --shadow-lg: 0 18px 40px rgba(20, 40, 74, 0.14);
  --shadow-primary: 0 8px 24px rgba(0, 174, 239, 0.28);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
  --z-base: 0;
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: var(--font-body-2);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-2);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0px 0px 0.5em;
  font-weight: var(--fw-extrabold);
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin: 0px 0px 1em;
  text-wrap-mode: initial;
  text-wrap-style: pretty;
}

a {
  color: var(--text-link);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}

a:hover {
  color: var(--text-link-hover);
}

::selection {
  background: var(--celeste-2);
  color: var(--white-2);
}

:focus-visible {
  outline: var(--border-w-strong) solid var(--focus-ring);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary:hover {
  background: var(--celeste-300-2);
  border-color: var(--celeste-300-2);
  color: var(--white-2);
}

.btn--primary:active {
  background: var(--celeste-600-2);
  border-color: var(--celeste-600-2);
}

.btn--secondary:hover {
  background: var(--navy-700-2);
  border-color: var(--navy-700-2);
  color: var(--white-2);
}

.btn--secondary:active {
  background: var(--navy-900-2);
  border-color: var(--navy-900-2);
}

.btn--outline:hover {
  background: var(--navy-2);
  color: var(--white-2);
}

.btn--outline:active {
  background: var(--navy-700-2);
  color: var(--white-2);
}

.btn--ghost:hover {
  background: var(--celeste-100-2);
  color: var(--azul-2);
}

.btn--ghost:active {
  background: var(--surface-tint);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
}

.project-card:hover .project-card__media {
  transform: scale(1.05);
}

.project-card:hover .project-card__scrim--hover {
  opacity: 1;
}

.project-card:hover .project-card__rule {
  width: 48px;
}

.project-card:hover .project-card__meta {
  max-height: 40px;
  opacity: 1;
}

.project-card__meta p {
  margin: 10px 0px 0px;
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading--dark .section-heading__title {
  color: var(--white-2);
}

.section-heading--dark .section-heading__lead {
  color: rgba(255, 255, 255, 0.78);
}

.contact-item--dark .contact-item__icon {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 174, 239, 0.16);
}

.contact-item--dark .contact-item__label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-item--dark .contact-item__value {
  color: var(--white-2);
}

.field__control:focus-within {
  border-color: var(--celeste-2);
  box-shadow: 0 0 0 3px var(--celeste-100-2);
}

.field__input:disabled {
  color: var(--text-muted);
}

.field__select:focus {
  border-color: var(--celeste-2);
  box-shadow: 0 0 0 3px var(--celeste-100-2);
}

.field__select:disabled {
  background: var(--grey-50-2);
  cursor: not-allowed;
}

.field__textarea:focus {
  border-color: var(--celeste-2);
  box-shadow: 0 0 0 3px var(--celeste-100-2);
}

.field__textarea:disabled {
  background: var(--grey-50-2);
  cursor: not-allowed;
}

.site-header__actions {
  display: flex;
  align-items: center;
  row-gap: 18px;
  column-gap: 18px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.site-footer__link:hover {
  color: var(--celeste-2);
}

html, body {
  margin: 0px;
}

@media (max-width: 900px) {
  .g-hero > :last-child {
  min-height: 280px !important;
  margin-right: 0px !important;
  }
}

@media (max-width: 900px) {
  .g-stats > * {
  border-left-width: medium !important;
  border-left-style: none !important;
  border-left-color: currentcolor !important;
  margin-left: 0px !important;
  padding-left: 0px !important;
  }
}

#construccion, #metalica, #remodelaciones, #gestion {
  scroll-margin-top: 92px;
}

.stats-card__cell + .stats-card__cell {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(20, 40, 74, 0.28);
}

.stats-card .stat__value {
  color: var(--navy-2);
}

.stats-card .stat__suffix {
  color: var(--navy-2);
  opacity: 0.65;
}

.stats-card .stat__label {
  color: var(--navy-2);
  opacity: 0.85;
}

@keyframes lc-blur-in {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}

@keyframes lc-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lc-marquee-scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee__track {
  display: flex;
  width: max-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: lc-marquee-scroll;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
  animation-duration: auto !important;
  animation-timing-function: ease !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  animation-direction: normal !important;
  animation-fill-mode: none !important;
  animation-play-state: running !important;
  animation-name: none !important;
  animation-timeline: auto !important;
  animation-range-start: normal !important;
  animation-range-end: normal !important;
  }
}

.marquee {
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--navy-6);
  padding: 30px 0px;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__word {
  font-family: var(--font-display-6);
  font-stretch: expanded;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: var(--ls-tighter);
  color: var(--white-6);
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  padding: 0px 28px;
}

.marquee__dot {
  width: 10px;
  height: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  border-radius: var(--radius-pill);
  background: var(--celeste-6);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 10px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 14px 14px 18px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-default);
}

.svc-card__media {
  position: relative;
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 10;
  background: var(--navy-6);
}

.svc-card__media img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.03);
  transition: transform var(--dur-slow) var(--ease-out);
}

.svc-card:hover .svc-card__media img {
  transform: scale(1.04);
}

.svc-card__icon {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: -23px 0px 14px 10px;
  border-radius: var(--radius-md);
  background: var(--white-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.svc-card__flag {
  display: block;
  margin: 0px 10px 8px;
}

.svc-card__title {
  margin: 0px 10px 8px;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.svc-card__desc {
  margin: 0px 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.svc-card__foot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 18px 10px 0px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.svc-card__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: var(--celeste-6);
  transition: background var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}

.svc-card:hover .svc-card__go {
  background: var(--azul-2);
  transform: translateX(2px);
}

.nav-link:hover {
  color: var(--celeste-2);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 8px 4px;
  cursor: pointer;
  font-family: var(--font-heading-6);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--navy-6);
  transition: color var(--dur-fast) var(--ease-standard);
}

.menu-toggle:hover {
  color: var(--celeste-2);
}

:root {
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --fs-display-2xl: 72px;
  --fs-display-xl: 56px;
  --fs-display-lg: 44px;
  --fs-h1: 36px;
  --fs-h2: 28px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 12px;
  --fs-overline: 11px;
  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --ls-tighter: -0.02em;
  --ls-tight: -0.01em;
  --ls-normal: 0;
  --ls-wide: 0.04em;
  --ls-overline: 0.16em;
  --info: var(--celeste-3);
  --color-primary: var(--celeste-3);
  --color-primary-hover: var(--celeste-300-3);
  --color-primary-active: var(--celeste-600-3);
  --color-secondary: var(--azul-3);
  --color-accent: var(--navy-3);
  --text-strong: var(--navy-3);
  --text-body: var(--grey-700-3);
  --text-muted: var(--grey-500-3);
  --text-on-dark: var(--white-3);
  --text-on-primary: var(--white-3);
  --text-link: var(--azul-3);
  --text-link-hover: var(--celeste-3);
  --surface-page: var(--white-3);
  --surface-subtle: var(--grey-50-3);
  --surface-card: var(--white-3);
  --surface-inverse: var(--navy-3);
  --surface-inverse-deep: var(--navy-900-3);
  --surface-tint: var(--celeste-100-3);
  --border-subtle: var(--grey-200-3);
  --border-default: var(--grey-300-3);
  --border-strong: var(--navy-3);
  --border-on-dark: var(--navy-300-3);
  --focus-ring: var(--celeste-3);
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --container-max: 1200px;
  --container-wide: 1360px;
  --gutter: 24px;
  --section-y: 96px;
  --section-y-sm: 56px;
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --border-w: 1px;
  --border-w-strong: 2px;
  --border-accent: 4px;
  --shadow-xs: 0 1px 2px rgba(20, 40, 74, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 40, 74, 0.08);
  --shadow-md: 0 8px 20px rgba(20, 40, 74, 0.10);
  --shadow-lg: 0 18px 40px rgba(20, 40, 74, 0.14);
  --shadow-primary: 0 8px 24px rgba(0, 174, 239, 0.28);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
  --z-base: 0;
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: var(--font-body-3);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-3);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0px 0px 0.5em;
  font-weight: var(--fw-extrabold);
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin: 0px 0px 1em;
  text-wrap-mode: initial;
  text-wrap-style: pretty;
}

a {
  color: var(--text-link);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}

a:hover {
  color: var(--text-link-hover);
}

::selection {
  background: var(--celeste-3);
  color: var(--white-3);
}

:focus-visible {
  outline: var(--border-w-strong) solid var(--focus-ring);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary:hover {
  background: var(--celeste-300-3);
  border-color: var(--celeste-300-3);
  color: var(--white-3);
}

.btn--primary:active {
  background: var(--celeste-600-3);
  border-color: var(--celeste-600-3);
}

.btn--secondary:hover {
  background: var(--navy-700-3);
  border-color: var(--navy-700-3);
  color: var(--white-3);
}

.btn--secondary:active {
  background: var(--navy-900-3);
  border-color: var(--navy-900-3);
}

.btn--outline:hover {
  background: var(--navy-3);
  color: var(--white-3);
}

.btn--outline:active {
  background: var(--navy-700-3);
  color: var(--white-3);
}

.btn--ghost:hover {
  background: var(--celeste-100-3);
  color: var(--azul-3);
}

.btn--ghost:active {
  background: var(--surface-tint);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
}

.project-card:hover .project-card__media {
  transform: scale(1.05);
}

.project-card:hover .project-card__scrim--hover {
  opacity: 1;
}

.project-card:hover .project-card__rule {
  width: 48px;
}

.project-card:hover .project-card__meta {
  max-height: 40px;
  opacity: 1;
}

.project-card__meta p {
  margin: 10px 0px 0px;
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading--dark .section-heading__title {
  color: var(--white-3);
}

.section-heading--dark .section-heading__lead {
  color: rgba(255, 255, 255, 0.78);
}

.contact-item--dark .contact-item__icon {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 174, 239, 0.16);
}

.contact-item--dark .contact-item__label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-item--dark .contact-item__value {
  color: var(--white-3);
}

.field__control:focus-within {
  border-color: var(--celeste-3);
  box-shadow: 0 0 0 3px var(--celeste-100-3);
}

.field__input:disabled {
  color: var(--text-muted);
}

.field__select:focus {
  border-color: var(--celeste-3);
  box-shadow: 0 0 0 3px var(--celeste-100-3);
}

.field__select:disabled {
  background: var(--grey-50-3);
  cursor: not-allowed;
}

.field__textarea:focus {
  border-color: var(--celeste-3);
  box-shadow: 0 0 0 3px var(--celeste-100-3);
}

.field__textarea:disabled {
  background: var(--grey-50-3);
  cursor: not-allowed;
}

.site-footer__link:hover {
  color: var(--celeste-3);
}

html, body {
  margin: 0px;
}

@media (max-width: 900px) {
  .g-hero > :last-child {
  min-height: 280px !important;
  margin-right: 0px !important;
  }
}

@media (max-width: 900px) {
  .g-stats > * {
  border-left-width: medium !important;
  border-left-style: none !important;
  border-left-color: currentcolor !important;
  margin-left: 0px !important;
  padding-left: 0px !important;
  }
}

#construccion, #metalica, #remodelaciones, #gestion {
  scroll-margin-top: 92px;
}

.stats-card__cell + .stats-card__cell {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(20, 40, 74, 0.28);
}

.stats-card .stat__value {
  color: var(--navy-3);
}

.stats-card .stat__suffix {
  color: var(--navy-3);
  opacity: 0.65;
}

.stats-card .stat__label {
  color: var(--navy-3);
  opacity: 0.85;
}

@keyframes lc-blur-in {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}

@keyframes lc-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lc-marquee-scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-default);
}

.svc-card__media img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.03);
  transition: transform var(--dur-slow) var(--ease-out);
}

.svc-card:hover .svc-card__media img {
  transform: scale(1.04);
}

.svc-card:hover .svc-card__go {
  background: var(--azul-3);
  transform: translateX(2px);
}

.nav-link:hover {
  color: var(--celeste-3);
}

.menu-toggle:hover {
  color: var(--celeste-3);
}

:root {
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --fs-display-2xl: 72px;
  --fs-display-xl: 56px;
  --fs-display-lg: 44px;
  --fs-h1: 36px;
  --fs-h2: 28px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 12px;
  --fs-overline: 11px;
  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --ls-tighter: -0.02em;
  --ls-tight: -0.01em;
  --ls-normal: 0;
  --ls-wide: 0.04em;
  --ls-overline: 0.16em;
  --info: var(--celeste-4);
  --color-primary: var(--celeste-4);
  --color-primary-hover: var(--celeste-300-4);
  --color-primary-active: var(--celeste-600-4);
  --color-secondary: var(--azul-4);
  --color-accent: var(--navy-4);
  --text-strong: var(--navy-4);
  --text-body: var(--grey-700-4);
  --text-muted: var(--grey-500-4);
  --text-on-dark: var(--white-4);
  --text-on-primary: var(--white-4);
  --text-link: var(--azul-4);
  --text-link-hover: var(--celeste-4);
  --surface-page: var(--white-4);
  --surface-subtle: var(--grey-50-4);
  --surface-card: var(--white-4);
  --surface-inverse: var(--navy-4);
  --surface-inverse-deep: var(--navy-900-4);
  --surface-tint: var(--celeste-100-4);
  --border-subtle: var(--grey-200-4);
  --border-default: var(--grey-300-4);
  --border-strong: var(--navy-4);
  --border-on-dark: var(--navy-300-4);
  --focus-ring: var(--celeste-4);
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --container-max: 1200px;
  --container-wide: 1360px;
  --gutter: 24px;
  --section-y: 96px;
  --section-y-sm: 56px;
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --border-w: 1px;
  --border-w-strong: 2px;
  --border-accent: 4px;
  --shadow-xs: 0 1px 2px rgba(20, 40, 74, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 40, 74, 0.08);
  --shadow-md: 0 8px 20px rgba(20, 40, 74, 0.10);
  --shadow-lg: 0 18px 40px rgba(20, 40, 74, 0.14);
  --shadow-primary: 0 8px 24px rgba(0, 174, 239, 0.28);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
  --z-base: 0;
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: var(--font-body-4);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-4);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0px 0px 0.5em;
  font-weight: var(--fw-extrabold);
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin: 0px 0px 1em;
  text-wrap-mode: initial;
  text-wrap-style: pretty;
}

a {
  color: var(--text-link);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}

a:hover {
  color: var(--text-link-hover);
}

::selection {
  background: var(--celeste-4);
  color: var(--white-4);
}

:focus-visible {
  outline: var(--border-w-strong) solid var(--focus-ring);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary:hover {
  background: var(--celeste-300-4);
  border-color: var(--celeste-300-4);
  color: var(--white-4);
}

.btn--primary:active {
  background: var(--celeste-600-4);
  border-color: var(--celeste-600-4);
}

.btn--secondary:hover {
  background: var(--navy-700-4);
  border-color: var(--navy-700-4);
  color: var(--white-4);
}

.btn--secondary:active {
  background: var(--navy-900-4);
  border-color: var(--navy-900-4);
}

.btn--outline:hover {
  background: var(--navy-4);
  color: var(--white-4);
}

.btn--outline:active {
  background: var(--navy-700-4);
  color: var(--white-4);
}

.btn--ghost:hover {
  background: var(--celeste-100-4);
  color: var(--azul-4);
}

.btn--ghost:active {
  background: var(--surface-tint);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
}

.project-card:hover .project-card__media {
  transform: scale(1.05);
}

.project-card:hover .project-card__scrim--hover {
  opacity: 1;
}

.project-card:hover .project-card__rule {
  width: 48px;
}

.project-card:hover .project-card__meta {
  max-height: 40px;
  opacity: 1;
}

.project-card__meta p {
  margin: 10px 0px 0px;
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading--dark .section-heading__title {
  color: var(--white-4);
}

.section-heading--dark .section-heading__lead {
  color: rgba(255, 255, 255, 0.78);
}

.contact-item--dark .contact-item__icon {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 174, 239, 0.16);
}

.contact-item--dark .contact-item__label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-item--dark .contact-item__value {
  color: var(--white-4);
}

.field__control:focus-within {
  border-color: var(--celeste-4);
  box-shadow: 0 0 0 3px var(--celeste-100-4);
}

.field__input:disabled {
  color: var(--text-muted);
}

.field__select:focus {
  border-color: var(--celeste-4);
  box-shadow: 0 0 0 3px var(--celeste-100-4);
}

.field__select:disabled {
  background: var(--grey-50-4);
  cursor: not-allowed;
}

.field__textarea:focus {
  border-color: var(--celeste-4);
  box-shadow: 0 0 0 3px var(--celeste-100-4);
}

.field__textarea:disabled {
  background: var(--grey-50-4);
  cursor: not-allowed;
}

.site-footer__link:hover {
  color: var(--celeste-4);
}

html, body {
  margin: 0px;
}

@media (max-width: 900px) {
  .g-hero > :last-child {
  min-height: 280px !important;
  margin-right: 0px !important;
  }
}

@media (max-width: 900px) {
  .g-stats > * {
  border-left-width: medium !important;
  border-left-style: none !important;
  border-left-color: currentcolor !important;
  margin-left: 0px !important;
  padding-left: 0px !important;
  }
}

#construccion, #metalica, #remodelaciones, #gestion {
  scroll-margin-top: 92px;
}

.stats-card__cell + .stats-card__cell {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(20, 40, 74, 0.28);
}

.stats-card .stat__value {
  color: var(--navy-4);
}

.stats-card .stat__suffix {
  color: var(--navy-4);
  opacity: 0.65;
}

.stats-card .stat__label {
  color: var(--navy-4);
  opacity: 0.85;
}

@keyframes lc-blur-in {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}

@keyframes lc-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lc-marquee-scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-default);
}

.svc-card__media img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.03);
  transition: transform var(--dur-slow) var(--ease-out);
}

.svc-card:hover .svc-card__media img {
  transform: scale(1.04);
}

.svc-card:hover .svc-card__go {
  background: var(--azul-4);
  transform: translateX(2px);
}

.nav-link:hover {
  color: var(--celeste-4);
}

.menu-toggle:hover {
  color: var(--celeste-4);
}

:root {
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --fs-display-2xl: 72px;
  --fs-display-xl: 56px;
  --fs-display-lg: 44px;
  --fs-h1: 36px;
  --fs-h2: 28px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 12px;
  --fs-overline: 11px;
  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --ls-tighter: -0.02em;
  --ls-tight: -0.01em;
  --ls-normal: 0;
  --ls-wide: 0.04em;
  --ls-overline: 0.16em;
  --info: var(--celeste-5);
  --color-primary: var(--celeste-5);
  --color-primary-hover: var(--celeste-300-5);
  --color-primary-active: var(--celeste-600-5);
  --color-secondary: var(--azul-5);
  --color-accent: var(--navy-5);
  --text-strong: var(--navy-5);
  --text-body: var(--grey-700-5);
  --text-muted: var(--grey-500-5);
  --text-on-dark: var(--white-5);
  --text-on-primary: var(--white-5);
  --text-link: var(--azul-5);
  --text-link-hover: var(--celeste-5);
  --surface-page: var(--white-5);
  --surface-subtle: var(--grey-50-5);
  --surface-card: var(--white-5);
  --surface-inverse: var(--navy-5);
  --surface-inverse-deep: var(--navy-900-5);
  --surface-tint: var(--celeste-100-5);
  --border-subtle: var(--grey-200-5);
  --border-default: var(--grey-300-5);
  --border-strong: var(--navy-5);
  --border-on-dark: var(--navy-300-5);
  --focus-ring: var(--celeste-5);
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --container-max: 1200px;
  --container-wide: 1360px;
  --gutter: 24px;
  --section-y: 96px;
  --section-y-sm: 56px;
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --border-w: 1px;
  --border-w-strong: 2px;
  --border-accent: 4px;
  --shadow-xs: 0 1px 2px rgba(20, 40, 74, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 40, 74, 0.08);
  --shadow-md: 0 8px 20px rgba(20, 40, 74, 0.10);
  --shadow-lg: 0 18px 40px rgba(20, 40, 74, 0.14);
  --shadow-primary: 0 8px 24px rgba(0, 174, 239, 0.28);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
  --z-base: 0;
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: var(--font-body-5);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-5);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0px 0px 0.5em;
  font-weight: var(--fw-extrabold);
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin: 0px 0px 1em;
  text-wrap-mode: initial;
  text-wrap-style: pretty;
}

a {
  color: var(--text-link);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}

a:hover {
  color: var(--text-link-hover);
}

::selection {
  background: var(--celeste-5);
  color: var(--white-5);
}

:focus-visible {
  outline: var(--border-w-strong) solid var(--focus-ring);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary:hover {
  background: var(--celeste-300-5);
  border-color: var(--celeste-300-5);
  color: var(--white-5);
}

.btn--primary:active {
  background: var(--celeste-600-5);
  border-color: var(--celeste-600-5);
}

.btn--secondary:hover {
  background: var(--navy-700-5);
  border-color: var(--navy-700-5);
  color: var(--white-5);
}

.btn--secondary:active {
  background: var(--navy-900-5);
  border-color: var(--navy-900-5);
}

.btn--outline:hover {
  background: var(--navy-5);
  color: var(--white-5);
}

.btn--outline:active {
  background: var(--navy-700-5);
  color: var(--white-5);
}

.btn--ghost:hover {
  background: var(--celeste-100-5);
  color: var(--azul-5);
}

.btn--ghost:active {
  background: var(--surface-tint);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
}

.project-card:hover .project-card__media {
  transform: scale(1.05);
}

.project-card:hover .project-card__scrim--hover {
  opacity: 1;
}

.project-card:hover .project-card__rule {
  width: 48px;
}

.project-card:hover .project-card__meta {
  max-height: 40px;
  opacity: 1;
}

.project-card__meta p {
  margin: 10px 0px 0px;
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading--dark .section-heading__title {
  color: var(--white-5);
}

.section-heading--dark .section-heading__lead {
  color: rgba(255, 255, 255, 0.78);
}

.contact-item--dark .contact-item__icon {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 174, 239, 0.16);
}

.contact-item--dark .contact-item__label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-item--dark .contact-item__value {
  color: var(--white-5);
}

.field__control:focus-within {
  border-color: var(--celeste-5);
  box-shadow: 0 0 0 3px var(--celeste-100-5);
}

.field__input:disabled {
  color: var(--text-muted);
}

.field__select:focus {
  border-color: var(--celeste-5);
  box-shadow: 0 0 0 3px var(--celeste-100-5);
}

.field__select:disabled {
  background: var(--grey-50-5);
  cursor: not-allowed;
}

.field__textarea:focus {
  border-color: var(--celeste-5);
  box-shadow: 0 0 0 3px var(--celeste-100-5);
}

.field__textarea:disabled {
  background: var(--grey-50-5);
  cursor: not-allowed;
}

.site-footer__link:hover {
  color: var(--celeste-5);
}

html, body {
  margin: 0px;
}

@media (max-width: 900px) {
  .g-hero > :last-child {
  min-height: 280px !important;
  margin-right: 0px !important;
  }
}

@media (max-width: 900px) {
  .g-stats > * {
  border-left-width: medium !important;
  border-left-style: none !important;
  border-left-color: currentcolor !important;
  margin-left: 0px !important;
  padding-left: 0px !important;
  }
}

#construccion, #metalica, #remodelaciones, #gestion {
  scroll-margin-top: 92px;
}

.stats-card__cell + .stats-card__cell {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(20, 40, 74, 0.28);
}

.stats-card .stat__value {
  color: var(--navy-5);
}

.stats-card .stat__suffix {
  color: var(--navy-5);
  opacity: 0.65;
}

.stats-card .stat__label {
  color: var(--navy-5);
  opacity: 0.85;
}

@keyframes lc-blur-in {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}

@keyframes lc-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lc-marquee-scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-default);
}

.svc-card__media img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.03);
  transition: transform var(--dur-slow) var(--ease-out);
}

.svc-card:hover .svc-card__media img {
  transform: scale(1.04);
}

.svc-card:hover .svc-card__go {
  background: var(--azul-5);
  transform: translateX(2px);
}

.nav-link:hover {
  color: var(--celeste-5);
}

.menu-toggle:hover {
  color: var(--celeste-5);
}

:root {
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --fs-display-2xl: 72px;
  --fs-display-xl: 56px;
  --fs-display-lg: 44px;
  --fs-h1: 36px;
  --fs-h2: 28px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 12px;
  --fs-overline: 11px;
  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --ls-tighter: -0.02em;
  --ls-tight: -0.01em;
  --ls-normal: 0;
  --ls-wide: 0.04em;
  --ls-overline: 0.16em;
  --info: var(--celeste-6);
  --color-primary: var(--celeste-6);
  --color-primary-hover: var(--celeste-300-6);
  --color-primary-active: var(--celeste-600-6);
  --color-secondary: var(--azul-6);
  --color-accent: var(--navy-6);
  --text-strong: var(--navy-6);
  --text-body: var(--grey-700-6);
  --text-muted: var(--grey-500-6);
  --text-on-dark: var(--white-6);
  --text-on-primary: var(--white-6);
  --text-link: var(--azul-6);
  --text-link-hover: var(--celeste-6);
  --surface-page: var(--white-6);
  --surface-subtle: var(--grey-50-6);
  --surface-card: var(--white-6);
  --surface-inverse: var(--navy-6);
  --surface-inverse-deep: var(--navy-900-6);
  --surface-tint: var(--celeste-100-6);
  --border-subtle: var(--grey-200-6);
  --border-default: var(--grey-300-6);
  --border-strong: var(--navy-6);
  --border-on-dark: var(--navy-300-6);
  --focus-ring: var(--celeste-6);
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --container-max: 1200px;
  --container-wide: 1360px;
  --gutter: 24px;
  --section-y: 96px;
  --section-y-sm: 56px;
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --border-w: 1px;
  --border-w-strong: 2px;
  --border-accent: 4px;
  --shadow-xs: 0 1px 2px rgba(20, 40, 74, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 40, 74, 0.08);
  --shadow-md: 0 8px 20px rgba(20, 40, 74, 0.10);
  --shadow-lg: 0 18px 40px rgba(20, 40, 74, 0.14);
  --shadow-primary: 0 8px 24px rgba(0, 174, 239, 0.28);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
  --z-base: 0;
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: var(--font-body-6);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-6);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0px 0px 0.5em;
  font-weight: var(--fw-extrabold);
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin: 0px 0px 1em;
  text-wrap-mode: initial;
  text-wrap-style: pretty;
}

a {
  color: var(--text-link);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}

a:hover {
  color: var(--text-link-hover);
}

::selection {
  background: var(--celeste-6);
  color: var(--white-6);
}

:focus-visible {
  outline: var(--border-w-strong) solid var(--focus-ring);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary:hover {
  background: var(--celeste-300-6);
  border-color: var(--celeste-300-6);
  color: var(--white-6);
}

.btn--primary:active {
  background: var(--celeste-600-6);
  border-color: var(--celeste-600-6);
}

.btn--secondary:hover {
  background: var(--navy-700-6);
  border-color: var(--navy-700-6);
  color: var(--white-6);
}

.btn--secondary:active {
  background: var(--navy-900-6);
  border-color: var(--navy-900-6);
}

.btn--outline:hover {
  background: var(--navy-6);
  color: var(--white-6);
}

.btn--outline:active {
  background: var(--navy-700-6);
  color: var(--white-6);
}

.btn--ghost:hover {
  background: var(--celeste-100-6);
  color: var(--azul-6);
}

.btn--ghost:active {
  background: var(--surface-tint);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
}

.project-card:hover .project-card__media {
  transform: scale(1.05);
}

.project-card:hover .project-card__scrim--hover {
  opacity: 1;
}

.project-card:hover .project-card__rule {
  width: 48px;
}

.project-card:hover .project-card__meta {
  max-height: 40px;
  opacity: 1;
}

.project-card__meta p {
  margin: 10px 0px 0px;
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading--dark .section-heading__title {
  color: var(--white-6);
}

.section-heading--dark .section-heading__lead {
  color: rgba(255, 255, 255, 0.78);
}

.contact-item--dark .contact-item__icon {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 174, 239, 0.16);
}

.contact-item--dark .contact-item__label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-item--dark .contact-item__value {
  color: var(--white-6);
}

.field__control:focus-within {
  border-color: var(--celeste-6);
  box-shadow: 0 0 0 3px var(--celeste-100-6);
}

.field__input:disabled {
  color: var(--text-muted);
}

.field__select:focus {
  border-color: var(--celeste-6);
  box-shadow: 0 0 0 3px var(--celeste-100-6);
}

.field__select:disabled {
  background: var(--grey-50-6);
  cursor: not-allowed;
}

.field__textarea:focus {
  border-color: var(--celeste-6);
  box-shadow: 0 0 0 3px var(--celeste-100-6);
}

.field__textarea:disabled {
  background: var(--grey-50-6);
  cursor: not-allowed;
}

.site-footer__link:hover {
  color: var(--celeste-6);
}

html, body {
  margin: 0px;
}

@media (max-width: 900px) {
  .g-hero > :last-child {
  min-height: 280px !important;
  margin-right: 0px !important;
  }
}

@media (max-width: 900px) {
  .g-stats > * {
  border-left-width: medium !important;
  border-left-style: none !important;
  border-left-color: currentcolor !important;
  margin-left: 0px !important;
  padding-left: 0px !important;
  }
}

#construccion, #metalica, #remodelaciones, #gestion {
  scroll-margin-top: 92px;
}

.stats-card__cell + .stats-card__cell {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(20, 40, 74, 0.28);
}

.stats-card .stat__value {
  color: var(--navy-6);
}

.stats-card .stat__suffix {
  color: var(--navy-6);
  opacity: 0.65;
}

.stats-card .stat__label {
  color: var(--navy-6);
  opacity: 0.85;
}

@keyframes lc-blur-in {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}

@keyframes lc-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lc-marquee-scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-default);
}

.svc-card__media img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.03);
  transition: transform var(--dur-slow) var(--ease-out);
}

.svc-card:hover .svc-card__media img {
  transform: scale(1.04);
}

.svc-card:hover .svc-card__go {
  background: var(--azul-6);
  transform: translateX(2px);
}

.nav-link:hover {
  color: var(--celeste-6);
}

.menu-toggle:hover {
  color: var(--celeste-6);
}

.eg {
  display: flex;
}

.eg__item {
  position: relative;
}

.eg__media {
  position: absolute;
}

.eg__scrim {
  position: absolute;
}

.eg__body {
  position: absolute;
}

.eg__tag {
  display: inline-flex;
}

.eg__title {
  display: block;
}

.eg__cta {
  display: inline-flex;
}

.eg__label {
  position: absolute;
}