:root {
  --bg: #f6f9fd;
  --ink: #071b3f;
  --muted: #58677f;
  --line: #dce6f2;
  --green: #06428f;
  --green-dark: #064a9d;
  --green-deep: #03337f;
  --green-soft: #e9f7ff;
  --amber: #12aee8;
  --amber-light: #37c5f2;
  --blue-gradient: linear-gradient(135deg, #06428f 0%, #0767b8 58%, #12aee8 100%);
  --blue-gradient-deep: linear-gradient(135deg, #03337f 0%, #0755ab 58%, #0f9ed8 100%);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 66, 143, .15);
  --radius: 8px;
  --max: 1180px;
  --motion-ease: cubic-bezier(.2, .8, .2, 1);
  --motion-soft: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

body.drawer-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  main {
    overflow-x: clip;
  }
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(55, 197, 242, .38), transparent 34%),
    radial-gradient(circle at 78% 74%, rgba(255, 255, 255, .2), transparent 30%),
    var(--blue-gradient-deep);
  color: var(--white);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .46s ease, visibility .46s ease;
  animation: siteLoaderFallback .46s ease 4.8s forwards;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, .1) 48%, transparent 54% 100%);
  transform: translateX(-35%);
  animation: loaderLightSweep 2.8s linear infinite;
}

.site-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(620px, 100%);
  text-align: center;
}

.loader-logo {
  justify-self: center;
  width: min(438px, 74vw);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 20, 72, .22));
}

.loader-chase {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(233, 247, 255, .92)),
    var(--white);
  box-shadow: 0 24px 70px rgba(0, 20, 72, .24);
}

.loader-track {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(6, 66, 143, .24), transparent);
}

.loader-track::before,
.loader-track::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 44px;
  height: 12px;
  border-radius: 999px;
  background: rgba(6, 66, 143, .08);
  animation: loaderShadowRun 2.85s linear infinite;
}

.loader-track::after {
  animation-delay: -.62s;
}

.loader-runner,
.loader-rat {
  position: absolute;
  left: 0;
  display: block;
  overflow: visible;
}

.loader-runner {
  bottom: 22px;
  width: 90px;
  height: auto;
  mix-blend-mode: multiply;
  animation: loaderChaseRun 2.85s linear infinite;
  animation-delay: -.82s;
}

.loader-rat {
  bottom: 31px;
  width: 76px;
  color: var(--ink);
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: loaderRatRun 2.85s linear infinite;
  animation-delay: -.96s;
}

.loader-rat-two {
  bottom: 28px;
  width: 62px;
  opacity: .82;
  animation-delay: -1.32s;
}

.loader-rat path:nth-of-type(n + 2) {
  fill: none;
}

.loader-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(13, 168, 229, .5);
  outline-offset: 3px;
}

#inicio,
#servicios,
#productos,
#historia,
#contacto,
#assurance-title {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, min-height .25s ease, transform .35s var(--motion-ease);
  animation: headerIn .7s var(--motion-soft) both;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 66px;
  background: var(--blue-gradient);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.home-page .site-header:not(.is-scrolled):not(.is-open) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .64) 0%, rgba(0, 0, 0, .38) 68%, rgba(0, 0, 0, 0) 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}

.brand {
  transition: opacity .24s ease, transform .28s var(--motion-ease);
}

.home-page .site-header:not(.is-scrolled) .brand {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.brand img {
  width: 224px;
  height: auto;
  transition: transform .28s var(--motion-ease);
}

.brand:hover img {
  transform: translateY(-1px) scale(1.02);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:hover {
  color: #bfefff;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--motion-ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: #bfefff;
}

.header-tools {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-search {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  cursor: default;
  transition: background .22s ease, border-color .22s ease, transform .22s var(--motion-ease);
}

.home-page .site-header:not(.is-scrolled):not(.is-open) .header-search,
.home-page .site-header:not(.is-scrolled):not(.is-open) .header-action,
.home-page .site-header:not(.is-scrolled):not(.is-open) .nav-toggle {
  background: rgba(0, 0, 0, .2);
  border-color: rgba(255, 255, 255, .48);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.header-search svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.header-search:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .55);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .22s ease, transform .22s var(--motion-ease), border-color .22s ease;
}

.header-action:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .22s var(--motion-ease), opacity .22s ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
  grid-template-rows: 1fr auto;
  align-items: stretch;
  padding: 0;
  background: var(--blue-gradient-deep);
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 92vh;
  overflow: hidden;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroImageIn 1.25s var(--motion-soft) both;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 33.333%;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 51, 127, .48) 0%, rgba(6, 66, 143, .16) 24%, rgba(18, 174, 232, 0) 56%),
    linear-gradient(0deg, rgba(3, 51, 127, .42) 0%, rgba(3, 51, 127, 0) 42%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  max-width: none;
  padding: clamp(116px, 14vh, 150px) clamp(22px, 3vw, 42px) 26px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  animation: heroTextIn .85s var(--motion-soft) .18s both;
}

.hero-logo-title {
  position: static;
  z-index: 1;
}

.hero-logo-title img {
  width: clamp(220px, 21vw, 320px);
  height: auto;
}

.hero p {
  max-width: 360px;
  margin: 24px 0 0;
  font-size: clamp(17px, 1.45vw, 21px);
  color: rgba(255, 255, 255, .9);
  animation: heroTextIn .85s var(--motion-soft) .32s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions {
  animation: heroActionsIn .8s var(--motion-soft) .46s both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s var(--motion-ease), background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 32, 95, .18);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--amber);
  color: var(--white);
}

.button-primary:hover {
  background: var(--amber-light);
}

.button-secondary {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, .2);
}

.hero-proof {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: none;
  padding: 0 clamp(22px, 3vw, 42px) 34px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.hero-proof div {
  min-width: 0;
  padding: 16px 0 0;
  animation: proofIn .72s var(--motion-soft) both;
}

.hero-proof div:nth-child(1) {
  animation-delay: .52s;
}

.hero-proof div:nth-child(2) {
  animation-delay: .64s;
}

.hero-proof div:nth-child(3) {
  animation-delay: .76s;
}

.hero-proof strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 700;
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 94px clamp(20px, 4vw, 44px);
}

.services,
.assurance,
.products,
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.services::before,
.services::after,
.assurance::before,
.assurance::after,
.products::before,
.products::after,
.contact::before,
.contact::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  aspect-ratio: 1;
  will-change: transform;
}

.services::before,
.assurance::before,
.products::before,
.contact::before {
  width: clamp(170px, 18vw, 300px);
  top: 9%;
  left: -300px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .92) 0 7%, rgba(255, 255, 255, .44) 8% 13%, transparent 14%),
    radial-gradient(circle at 36% 32%, rgba(145, 231, 255, .58) 0 20%, rgba(18, 174, 232, .2) 48%, rgba(6, 66, 143, .07) 70%, transparent 72%);
  box-shadow:
    inset -28px -34px 58px rgba(6, 66, 143, .08),
    inset 18px 20px 42px rgba(255, 255, 255, .36),
    0 30px 70px rgba(18, 174, 232, .16);
  opacity: .78;
  animation: lightAmbientFlow 28s linear infinite;
  animation-delay: -7s;
}

.services::after,
.assurance::after,
.products::after,
.contact::after {
  width: clamp(120px, 13vw, 220px);
  top: 58%;
  right: -250px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .9) 0 8%, rgba(255, 255, 255, .42) 9% 15%, transparent 16%),
    radial-gradient(circle at 40% 38%, rgba(153, 235, 255, .48) 0 22%, rgba(18, 174, 232, .18) 50%, rgba(6, 66, 143, .06) 72%, transparent 74%);
  box-shadow:
    inset -20px -26px 44px rgba(6, 66, 143, .075),
    inset 14px 16px 34px rgba(255, 255, 255, .34),
    0 24px 54px rgba(18, 174, 232, .13);
  opacity: .62;
  animation: lightAmbientFlowReverse 22s linear infinite;
  animation-delay: -12s;
}

.assurance::before {
  top: 14%;
  opacity: .5;
  animation-duration: 31s;
  animation-delay: -10s;
}

.assurance::after {
  top: 61%;
  opacity: .38;
  animation-duration: 25s;
}

.products::before {
  top: 7%;
  opacity: .72;
  animation-duration: 30s;
  animation-delay: -8s;
}

.products::after {
  top: 70%;
  opacity: .46;
  animation-duration: 24s;
  animation-delay: -13s;
}

.contact::before {
  top: 12%;
  left: calc(50% - 50vw - 300px);
  animation-duration: 33s;
  animation-delay: -12s;
}

.contact::after {
  top: 64%;
  right: calc(50% - 50vw - 250px);
  animation-duration: 26s;
  animation-delay: -16s;
}

.services > *,
.assurance > *,
.products > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 790px;
}

.section h2,
.process h2,
.work-mode h2,
.newsletter h2,
.contact h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.section p,
.contact p {
  color: var(--muted);
  font-size: 17px;
}

.services .section-heading h2 {
  font-size: clamp(29px, 4.5vw, 56px);
}

.services {
  padding-top: 96px;
  overflow: visible;
}

.services::before {
  left: calc(50% - 50vw - 300px);
}

.services::after {
  right: calc(50% - 50vw - 250px);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  margin-top: 46px;
}

.service-media {
  position: sticky;
  top: 96px;
  margin: 0;
  min-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 43% 56%;
  transition: transform .65s var(--motion-soft), filter .4s ease;
}

.service-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-list details {
  border-bottom: 1px solid var(--line);
  transition: border-color .24s ease;
}

.service-list details[open],
.service-list details:hover {
  border-color: rgba(13, 168, 229, .5);
}

.service-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.service-list summary::-webkit-details-marker {
  display: none;
}

.service-title-group {
  min-width: 0;
}

.service-kicker {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.service-title,
.product-panel h3 {
  display: block;
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
}

.service-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s var(--motion-ease);
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity .2s ease, transform .22s var(--motion-ease);
}

.service-toggle::after {
  transform: rotate(90deg);
}

.service-list details[open] .service-toggle {
  border-color: rgba(13, 168, 229, .36);
  background: var(--green-soft);
}

.service-list details[open] .service-toggle::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(.35);
}

.service-panel {
  padding: 0 58px 26px 0;
}

.service-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-list button {
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.service-list button:hover {
  color: var(--amber);
}

.process {
  background: var(--blue-gradient-deep);
  color: var(--white);
}

.process-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px clamp(20px, 4vw, 44px);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, .16);
}

.process li {
  min-height: 184px;
  padding: 22px;
  background: rgba(3, 51, 127, .72);
  transition: background .24s ease, transform .24s var(--motion-ease);
}

.process li:hover {
  background: rgba(18, 174, 232, .18);
  transform: translateY(-3px);
}

.process-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  perspective: 620px;
}

.process-step-number {
  display: block;
  color: #a7ebff;
  font-weight: 800;
}

.process-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  filter: drop-shadow(0 16px 20px rgba(0, 20, 70, .22));
}

.process-icon svg {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  overflow: visible;
  transform-origin: center;
  transform-style: preserve-3d;
}

.process-icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 7px rgba(167, 235, 255, .2));
}

.process-icon-dot {
  fill: currentColor;
  opacity: 1;
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(167, 235, 255, .45));
}

.js-enabled .process-icon {
  opacity: 0;
  filter: blur(3px) drop-shadow(0 16px 20px rgba(0, 20, 70, .22));
}

.js-enabled .process-icon-line {
  stroke-dashoffset: 1;
}

.js-enabled .process-icon-dot {
  opacity: 0;
  transform: scale(.35);
}

.js-enabled .process li.is-visible .process-icon,
.process li:hover .process-icon {
  animation: iconFreeReveal 1.2s var(--motion-soft) both;
}

.js-enabled .process li.is-visible .process-icon svg,
.process li:hover .process-icon svg {
  animation: icon3dDrift 7.2s var(--motion-ease) infinite;
}

.js-enabled .process li.is-visible .process-icon-line,
.process li:hover .process-icon-line {
  animation: iconLineRebuildLoop 6.4s var(--motion-soft) infinite;
}

.js-enabled .process li.is-visible .process-icon-line.line-2,
.process li:hover .process-icon-line.line-2 {
  animation-delay: .55s;
}

.js-enabled .process li.is-visible .process-icon-line.line-3,
.process li:hover .process-icon-line.line-3 {
  animation-delay: 1.1s;
}

.js-enabled .process li.is-visible .process-icon-dot,
.process li:hover .process-icon-dot {
  animation: iconDotPulse 6.4s var(--motion-soft) infinite;
}

.process strong {
  display: block;
  font-size: 21px;
  line-height: 1.15;
}

.process p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .73);
  font-size: 15px;
  line-height: 1.45;
}

.work-mode {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(55, 197, 242, .22), transparent 31%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, .12), transparent 32%),
    var(--blue-gradient-deep);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.work-mode::before {
  content: "";
  position: absolute;
  inset: -18% -8%;
  background-image:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, .06) 49%, transparent 55% 100%),
    radial-gradient(circle, rgba(255, 255, 255, .12) 0 2px, transparent 3px);
  background-size: auto, 86px 86px;
  opacity: .5;
  pointer-events: none;
}

.work-mode-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(600px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px clamp(20px, 4vw, 44px) 98px;
}

.work-mode-copy {
  max-width: 540px;
}

.work-mode-copy p {
  margin: 20px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
}

.work-mode-visual {
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.work-mode-orbit {
  --work-radius: clamp(198px, 17vw, 222px);
  --orbit-offset: 0deg;
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  isolation: isolate;
  transform-style: preserve-3d;
}

.work-mode-orbit::before,
.work-mode-orbit::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.work-mode-orbit::before {
  inset: 9%;
  background:
    conic-gradient(from 224deg, rgba(18, 174, 232, .18), rgba(255, 255, 255, .54), rgba(18, 174, 232, .18), rgba(255, 255, 255, .48), rgba(18, 174, 232, .18)),
    radial-gradient(circle at 50% 50%, rgba(167, 235, 255, .28), rgba(3, 51, 127, .16) 56%, transparent 58%);
  border: 1px solid rgba(255, 255, 255, .32);
  box-shadow:
    inset 0 0 42px rgba(167, 235, 255, .16),
    0 34px 82px rgba(0, 20, 70, .3);
  transform: rotateX(62deg) rotateZ(-18deg);
  transform-origin: center;
  animation: work-mode-ring-float 14s ease-in-out infinite;
}

.work-mode-orbit::after {
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, .22);
  transform: rotateX(62deg) rotateZ(-18deg) translateZ(8px);
  animation: work-mode-ring-trace 24s linear infinite;
}

.work-mode-center {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 8px;
  width: min(260px, 44%);
  min-height: 166px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05)),
    rgba(3, 51, 127, .96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .24),
    0 24px 70px rgba(0, 20, 70, .32);
  transform: translate(-50%, -50%) translateZ(120px) rotateX(0deg);
  transition: transform .26s var(--motion-ease), box-shadow .26s ease;
  backdrop-filter: blur(12px);
}

.work-mode-center > * {
  position: relative;
  z-index: 1;
}

.work-mode-center span {
  color: #a7ebff;
  font-size: 14px;
  font-weight: 900;
}

.work-mode-center strong {
  overflow-wrap: anywhere;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.05;
}

.work-mode-center p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.45;
}

.work-mode-step {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  width: 166px;
  min-height: 54px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(3, 51, 127, .78);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 20px 42px rgba(0, 20, 70, .26);
  cursor: pointer;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--angle) + var(--orbit-offset)))
    translateY(calc(-1 * var(--work-radius)))
    rotate(calc(-1 * (var(--angle) + var(--orbit-offset))))
    translateZ(34px);
  transition: background .22s ease, border-color .22s ease, box-shadow .24s ease, opacity .22s ease;
  will-change: transform;
}

.work-mode-step:hover,
.work-mode-step:focus-visible,
.work-mode-step.is-active {
  z-index: 7;
  border-color: rgba(167, 235, 255, .82);
  background: rgba(18, 174, 232, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 26px 58px rgba(0, 20, 70, .34),
    0 0 0 6px rgba(18, 174, 232, .12);
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--angle) + var(--orbit-offset)))
    translateY(calc(-1 * var(--work-radius)))
    rotate(calc(-1 * (var(--angle) + var(--orbit-offset))))
    translateZ(64px)
    scale(1.02);
}

.work-mode-step span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(167, 235, 255, .16);
  color: #a7ebff;
  font-size: 11px;
  font-weight: 900;
}

.work-mode-step strong {
  min-width: 0;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.15;
}

.work-mode-step.is-active span {
  background: var(--white);
  color: var(--green);
}

@keyframes work-mode-ring-float {
  0%,
  100% {
    transform: rotateX(62deg) rotateZ(-18deg) translateZ(0);
    filter: brightness(1);
  }

  50% {
    transform: rotateX(62deg) rotateZ(2deg) translateZ(14px);
    filter: brightness(1.12);
  }
}

@keyframes work-mode-ring-trace {
  from {
    transform: rotateX(62deg) rotateZ(-18deg) translateZ(8px);
  }

  to {
    transform: rotateX(62deg) rotateZ(342deg) translateZ(8px);
  }
}

.assurance {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 450px) minmax(0, 660px) minmax(20px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(72px, 8vw, 104px) 0;
  background: var(--white);
}

.assurance-heading {
  grid-column: 2;
}

.assurance-heading > span {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.assurance h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.assurance-heading p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.assurance-list {
  grid-column: 3;
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.assurance-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: transform .24s var(--motion-ease), border-color .24s ease;
}

.assurance-list article:hover {
  transform: translateX(6px);
  border-color: rgba(13, 168, 229, .5);
}

.assurance-list svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 50%;
  background: var(--green-soft);
  fill: var(--green);
}

.assurance-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.assurance-list p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.products {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.products-heading {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.products-heading p {
  max-width: 690px;
}

.product-list-access {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(0, 32, 95, .22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s var(--motion-ease), border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.product-list-access:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 168, 229, .5);
  color: var(--amber);
  box-shadow: 0 12px 26px rgba(0, 32, 95, .08);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(260px, .32fr) minmax(0, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 46px auto 0;
  padding: 0 clamp(20px, 4vw, 44px);
}

.product-category-nav {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 10px;
  align-self: start;
}

.product-category-tab {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 14px;
  width: 100%;
  min-height: 98px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform .22s var(--motion-ease), border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.product-category-tab:hover,
.product-category-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(13, 168, 229, .42);
  box-shadow: 0 14px 34px rgba(6, 66, 143, .1);
}

.product-category-tab.is-active {
  background: var(--blue-gradient);
  color: var(--white);
}

.product-category-tab span {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.product-category-tab.is-active span {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
}

.product-category-tab strong {
  min-width: 0;
  font-size: 17px;
  line-height: 1.2;
}

.product-category-tab em {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.product-category-tab.is-active em {
  color: rgba(255, 255, 255, .78);
}

.product-panels {
  min-width: 0;
}

.product-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 66, 143, .08);
}

.product-panel.is-active {
  animation: productPanelReveal .38s var(--motion-soft) both;
}

.product-panel[hidden] {
  display: none;
}

.product-panel-hero {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 230px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(233, 247, 255, .96) 0%, rgba(255, 255, 255, .9) 64%, rgba(18, 174, 232, .12) 100%);
}

.product-panel.is-active .product-panel-hero {
  animation: productHeroReveal .44s var(--motion-soft) both;
}

.product-panel-hero img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.product-panel-copy {
  align-self: center;
  padding: clamp(24px, 4vw, 42px);
}

.product-panel h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.product-panel-copy p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px clamp(16px, 2.5vw, 24px) clamp(18px, 2.5vw, 24px);
}

.product-item {
  position: relative;
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 88px;
  padding: 14px 50px 14px 15px;
  border: 1px solid rgba(0, 32, 95, .12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(233, 247, 255, .95) 0%, rgba(255, 255, 255, .96) 58%, rgba(18, 174, 232, .1) 100%);
  text-decoration: none;
  overflow: hidden;
  transition: transform .28s var(--motion-ease), border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.product-item:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 168, 229, .45);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(6, 66, 143, .11);
}

.product-panel.is-active .product-item {
  animation: productCardReveal .46s var(--motion-soft) both;
}

.product-panel.is-active .product-item:nth-child(2) {
  animation-delay: 45ms;
}

.product-panel.is-active .product-item:nth-child(3) {
  animation-delay: 90ms;
}

.product-panel.is-active .product-item:nth-child(4) {
  animation-delay: 135ms;
}

.product-panel.is-active .product-item:nth-child(5) {
  animation-delay: 180ms;
}

.product-panel.is-active .product-item:nth-child(6) {
  animation-delay: 225ms;
}

.product-panel.is-active .product-item:nth-child(7) {
  animation-delay: 270ms;
}

.product-item::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(13, 168, 229, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 18px rgba(6, 66, 143, .08);
  transition: transform .28s var(--motion-ease), border-color .28s ease, box-shadow .28s ease;
}

.product-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 19px;
  right: 19px;
  width: 16px;
  height: 16px;
  background-color: var(--green);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M7.05 17.65 5.65 16.25 14.2 7.7H8V5.7h9.6v9.6h-2V9.1l-8.55 8.55Z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M7.05 17.65 5.65 16.25 14.2 7.7H8V5.7h9.6v9.6h-2V9.1l-8.55 8.55Z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  transition: transform .28s var(--motion-ease), background-color .28s ease;
}

.product-item:hover::after {
  transform: translate(2px, -2px) scale(1.05);
  border-color: rgba(13, 168, 229, .65);
  box-shadow: 0 12px 24px rgba(6, 66, 143, .14);
}

.product-item:hover::before {
  transform: translate(2px, -2px);
  background-color: var(--amber);
}

.product-item span {
  justify-self: start;
  max-width: 100%;
  padding: 3px 8px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.product-item strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
}

.product-item-wide {
  grid-column: 1 / -1;
  min-height: 118px;
}

.catalog-page {
  background: var(--bg);
}

.catalog-main {
  overflow: hidden;
}

.catalog-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  padding: 96px clamp(20px, 5vw, 72px) 38px;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(3, 51, 127, .96) 0%, rgba(6, 66, 143, .82) 42%, rgba(18, 174, 232, .52) 100%),
    url("assets/producto-trampa-luz.jpg") center / cover;
  isolation: isolate;
}

.catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, rgba(167, 235, 255, .22), transparent 28%),
    linear-gradient(0deg, rgba(3, 20, 58, .42), transparent 48%);
}

.catalog-hero-inner {
  max-width: 980px;
}

.catalog-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(167, 235, 255, .92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.catalog-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: .95;
}

.catalog-hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.8vw, 22px);
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.catalog-index {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(20px, 4vw, 44px) 0;
}

.catalog-index-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.catalog-index-list a {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(0, 32, 95, .14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(6, 66, 143, .06);
  transition: transform .22s var(--motion-ease), border-color .22s ease, box-shadow .22s ease;
}

.catalog-index-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 168, 229, .42);
  box-shadow: 0 18px 36px rgba(6, 66, 143, .1);
}

.catalog-index-list span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.catalog-index-list strong {
  font-size: 18px;
  line-height: 1.15;
}

.catalog-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px clamp(20px, 4vw, 44px) 0;
  scroll-margin-top: 96px;
}

.catalog-section-header {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, .75fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: 28px;
}

.catalog-section-header h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: .98;
}

.catalog-section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.catalog-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(0, 32, 95, .14);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.catalog-card {
  position: relative;
  width: 100%;
  display: grid;
  min-height: 204px;
  padding: 22px 58px 22px 20px;
  border: 1px solid rgba(0, 32, 95, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(233, 247, 255, .96) 0%, rgba(255, 255, 255, .98) 64%, rgba(18, 174, 232, .11) 100%);
  color: var(--ink);
  font: inherit;
  text-align: left;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform .24s var(--motion-ease), border-color .24s ease, box-shadow .24s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 168, 229, .42);
  box-shadow: 0 18px 38px rgba(6, 66, 143, .12);
}

.catalog-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(13, 168, 229, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
}

.catalog-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 25px;
  width: 16px;
  height: 16px;
  background-color: var(--green);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M7.05 17.65 5.65 16.25 14.2 7.7H8V5.7h9.6v9.6h-2V9.1l-8.55 8.55Z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M7.05 17.65 5.65 16.25 14.2 7.7H8V5.7h9.6v9.6h-2V9.1l-8.55 8.55Z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
}

.catalog-card small {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.catalog-card strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.05;
}

.catalog-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.catalog-card-wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.product-browser {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 44px) 0;
  scroll-margin-top: 96px;
}

.product-browser-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 44px);
  align-items: end;
  margin-bottom: 22px;
}

.product-browser-head h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: .98;
}

.product-browser-head p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-list-meta {
  display: grid;
  min-width: 158px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 168, 229, .24);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green);
  box-shadow: 0 12px 30px rgba(6, 66, 143, .08);
}

.product-list-meta strong {
  font-size: 34px;
  line-height: 1;
}

.product-list-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(180px, .72fr) minmax(190px, .78fr) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(0, 32, 95, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(233, 247, 255, .92));
  box-shadow: 0 14px 34px rgba(6, 66, 143, .08);
}

.product-filter-panel label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.product-filter-panel label span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.product-filter-panel input,
.product-filter-panel select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(0, 32, 95, .16);
  border-radius: var(--radius);
  background-color: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.product-filter-panel select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 13px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.product-filter-panel input:focus,
.product-filter-panel select:focus {
  border-color: rgba(13, 168, 229, .72);
  box-shadow: 0 0 0 4px rgba(13, 168, 229, .14);
}

.product-search-field {
  grid-column: span 1;
}

.product-filter-panel .button {
  min-height: 48px;
  white-space: nowrap;
}

.product-filter-panel .button-secondary {
  border-color: rgba(6, 66, 143, .18);
  background: rgba(6, 66, 143, .08);
  color: var(--green);
}

.product-filter-panel .button-secondary:hover {
  background: rgba(13, 168, 229, .14);
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-list-card {
  display: grid;
  grid-template-rows: 148px minmax(0, 1fr);
  min-height: 346px;
  padding: 0;
}

.product-list-card[hidden] {
  display: none;
}

.product-card-media,
.product-card-body {
  display: block;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(13, 168, 229, .16), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(233, 247, 255, .92));
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .34s var(--motion-ease), filter .34s ease;
}

.product-list-card:hover .product-card-media img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.product-card-body {
  padding: 18px 58px 20px 18px;
}

.product-card-body small,
.product-card-body strong,
.product-card-body p {
  display: block;
}

.product-empty {
  margin: 18px 0 0;
  padding: 22px;
  border: 1px dashed rgba(0, 32, 95, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.catalog-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px clamp(20px, 4vw, 44px);
}

.catalog-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--blue-gradient-deep);
  color: var(--white);
  overflow: hidden;
}

.catalog-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.catalog-cta p {
  max-width: 660px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .76);
}

.newsletter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(167, 235, 255, .28), transparent 31%),
    radial-gradient(circle at 82% 82%, rgba(255, 255, 255, .12), transparent 34%),
    var(--blue-gradient-deep);
  color: var(--white);
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: -18% -8%;
  background-image:
    linear-gradient(118deg, transparent 0 45%, rgba(255, 255, 255, .07) 49%, transparent 55% 100%),
    radial-gradient(circle, rgba(255, 255, 255, .14) 0 2px, transparent 3px);
  background-size: auto, 92px 92px;
  opacity: .45;
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, .86fr) minmax(0, .9fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px clamp(20px, 4vw, 44px);
}

.newsletter-copy {
  justify-self: end;
  max-width: 520px;
  text-align: right;
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 22px 54px rgba(0, 20, 70, .22);
  backdrop-filter: blur(14px);
}

.newsletter-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: rgba(167, 235, 255, .9);
  box-shadow: 0 0 0 4px rgba(167, 235, 255, .18);
}

.newsletter-form button {
  grid-column: 1 / -1;
  min-height: 46px;
  white-space: nowrap;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, .9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  overflow: visible;
}

.contact-copy .button {
  margin-top: 20px;
}

.contact-whatsapp {
  background: #25d366;
  color: var(--white);
}

.contact-whatsapp:hover {
  background: #38e07a;
}

.contact-lines {
  display: grid;
  gap: 18px;
  margin: 0;
  font-style: normal;
}

.contact-lines p {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-lines strong {
  display: block;
  color: var(--ink);
}

.contact-lines a {
  color: var(--green);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  z-index: 120;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 32, 95, .22);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  user-select: none;
  animation: whatsappIn .55s var(--motion-soft) .18s both;
  transition: transform .22s var(--motion-ease), background .22s ease, box-shadow .22s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(37, 211, 102, .22);
  transform: scale(.88);
  opacity: 0;
  animation: whatsappSignal 3.2s ease-out 1.2s infinite;
}

.whatsapp-float svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: #38e07a;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 32, 95, .28);
}

.whatsapp-float:active {
  transform: translateY(0) scale(.98);
}

.whatsapp-drawer {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.whatsapp-drawer[hidden] {
  display: none;
}

.whatsapp-drawer.is-open {
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 51, 127, .58);
  opacity: 0;
  transition: opacity .24s ease;
}

.drawer-panel {
  position: relative;
  width: min(440px, calc(100vw - 28px));
  height: 100%;
  padding: 34px;
  background: var(--white);
  box-shadow: -18px 0 60px rgba(0, 0, 0, .22);
  transform: translateX(100%);
  transition: transform .28s var(--motion-soft);
  overflow-y: auto;
}

.whatsapp-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.whatsapp-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: transform .22s var(--motion-ease), border-color .22s ease;
}

.drawer-close:hover {
  transform: rotate(90deg);
  border-color: var(--amber);
}

.drawer-close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.drawer-close span:first-child {
  transform: rotate(45deg);
}

.drawer-close span:last-child {
  transform: rotate(-45deg);
}

.drawer-panel h2 {
  margin: 28px 0 0;
  font-size: 34px;
  line-height: 1;
}

.drawer-intro {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.drawer-intro strong {
  color: var(--green);
}

.whatsapp-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.whatsapp-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fbfdff;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(13, 168, 229, .12);
}

.whatsapp-form textarea {
  resize: vertical;
}

.whatsapp-form .button {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(280px, 1.18fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  padding: 38px clamp(20px, 5vw, 72px) 92px;
  background: var(--blue-gradient-deep);
  color: rgba(255, 255, 255, .74);
}

.footer-brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  margin: 14px 0 0;
}

.footer-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-credentials > span,
.footer-igeo,
.footer-action,
.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-iso {
  flex: 0 0 88px;
  width: 88px;
  margin: 0;
}

.footer-iso img {
  width: 100%;
  height: auto;
}

.footer-ucaba {
  flex: 0 0 136px;
  max-width: 136px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-ucaba img {
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-igeo {
  gap: 9px;
}

.footer-igeo img {
  width: 74px;
  height: auto;
  max-height: 34px;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--white);
  object-fit: contain;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a,
.footer-igeo,
.footer-action {
  gap: 8px;
  transition: transform .22s var(--motion-ease), background .22s ease, border-color .22s ease;
}

.footer-social a:hover,
.footer-igeo:hover,
.footer-action:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 168, 229, .5);
  background: rgba(255, 255, 255, .14);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.responsibility-page {
  background: var(--white);
}

.history-page {
  background: var(--white);
  scroll-snap-type: y proximity;
}

.responsibility-page .site-header,
.history-page .site-header {
  background: var(--blue-gradient);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.responsibility-main,
.history-main {
  padding-top: 78px;
}

.responsibility-hero {
  background: var(--blue-gradient-deep);
  color: var(--white);
}

.responsibility-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 10vw, 132px) clamp(20px, 4vw, 44px) clamp(60px, 8vw, 96px);
}

.responsibility-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 7vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

.responsibility-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 23px);
}

.responsibility-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 104px) clamp(20px, 4vw, 44px);
}

.responsibility-section > h2 {
  max-width: 760px;
  margin: 0;
  color: var(--green);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.responsibility-area {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  transition: transform .24s var(--motion-ease), box-shadow .24s ease, border-color .24s ease;
}

.responsibility-area:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 168, 229, .42);
  box-shadow: var(--shadow);
}

.responsibility-area span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.responsibility-area h3 {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.responsibility-area p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.history-hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-gradient-deep);
  color: var(--white);
  scroll-snap-align: start;
}

.history-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 51, 127, .86) 0%, rgba(3, 51, 127, .45) 45%, rgba(18, 174, 232, .1) 100%),
    radial-gradient(circle at 72% 26%, rgba(55, 197, 242, .32), transparent 34%);
  pointer-events: none;
}

.history-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: var(--max);
  min-height: clamp(520px, 72vh, 720px);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 4vw, 44px) clamp(60px, 8vw, 96px);
}

.history-hero h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 112px);
  line-height: .9;
  letter-spacing: 0;
}

.history-hero p {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2vw, 24px);
}

.history-hero-media {
  position: relative;
  min-height: 430px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 20, 70, .34);
}

.history-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(.95);
}

.history-timeline-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 27, 76, .96) 0%, rgba(3, 51, 127, .92) 44%, rgba(6, 98, 178, .88) 100%),
    var(--blue-gradient-deep);
  color: var(--white);
  padding: 0;
}

.history-timeline-section::before,
.history-timeline-section::after {
  content: "";
  position: absolute;
  inset: -16%;
  z-index: -1;
  pointer-events: none;
}

.history-timeline-section::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, .75) 0 16%, rgba(255, 255, 255, .32) 17% 30%, transparent 58%),
    radial-gradient(circle, rgba(55, 197, 242, .14) 0 22%, rgba(18, 174, 232, .08) 36%, rgba(6, 66, 143, .05) 48%, transparent 58%);
  background-repeat: no-repeat;
  background-size: 62px 62px, 330px 330px;
  background-position: 12% 12%, 8% 10%;
  animation: lightAmbientOrbit 46s linear infinite;
}

.history-timeline-section::after {
  background: radial-gradient(circle, rgba(18, 174, 232, .13) 0 22%, rgba(6, 66, 143, .055) 40%, transparent 58%);
  background-repeat: no-repeat;
  background-size: 320px 320px;
  background-position: 88% 68%;
  animation: lightAmbientOrbitReverse 38s linear infinite;
}

.history-timeline-intro {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 46vh;
  padding: clamp(76px, 10vw, 126px) clamp(20px, 4vw, 44px) clamp(52px, 7vw, 84px);
  display: grid;
  align-content: end;
  scroll-snap-align: start;
}

.history-timeline-intro h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.history-timeline-intro p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.history-timeline {
  --history-rail-x: clamp(34px, 6vw, 92px);
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
}

.history-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--history-rail-x);
  width: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  transform: translateX(-50%);
  overflow: hidden;
}

.history-rail-progress {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, #12aee8 0%, #a7ebff 52%, #ffffff 100%);
  transform: scaleY(.02);
  transform-origin: top;
  transition: transform .12s linear;
  box-shadow: 0 0 22px rgba(18, 174, 232, .72);
}

.history-milestone {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 7vw, 98px) clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  scroll-snap-align: center;
  perspective: 1500px;
  transform-style: preserve-3d;
  overflow: hidden;
}

.history-milestone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 50%, rgba(18, 174, 232, .24), transparent 30%),
    linear-gradient(90deg, rgba(3, 51, 127, .18), transparent 52%);
  opacity: var(--history-focus, 0);
  pointer-events: none;
}

.history-marker {
  position: absolute;
  top: 50%;
  left: var(--history-rail-x);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(3, 51, 127, .72);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 20, 70, .28);
  transform: translate(-50%, -50%);
  transition: transform .28s var(--motion-ease), color .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
  backdrop-filter: blur(12px);
}

.history-marker::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(18, 174, 232, .2);
  transition: background .28s ease, transform .28s var(--motion-ease);
}

.history-marker span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 900;
}

.history-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(420px, .98fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1160px;
  min-height: min(72vh, 680px);
  margin-left: calc(var(--history-rail-x) + clamp(46px, 5vw, 88px));
  transform: translate3d(0, var(--history-card-y, 76px), 0) scale(var(--history-card-scale, .955));
  transform-style: preserve-3d;
  opacity: var(--history-card-opacity, .24);
  transition: opacity .25s ease, transform .25s var(--motion-ease);
}

.history-card-content {
  align-self: center;
  padding: 0;
}

.history-year {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  gap: .02em;
  align-items: center;
  min-height: 0;
  padding: 0 0 10px;
  border-radius: 0;
  background: transparent;
  color: #a7ebff;
  font-size: clamp(54px, 7.4vw, 108px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(18, 174, 232, .36);
}

.history-year::before {
  content: "";
  position: absolute;
  inset: -22% -10%;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .95) 0 1px, transparent 1.7px);
  background-size: 7px 7px;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  mix-blend-mode: screen;
}

.history-year::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #12aee8, rgba(255, 255, 255, .82), transparent);
  transform: scaleX(.2);
  transform-origin: left;
  opacity: .28;
  transition: transform .55s var(--motion-soft), opacity .28s ease;
}

.history-year-char {
  display: inline-block;
  opacity: .16;
  filter: blur(7px);
  transform: translate3d(var(--char-x, 0), var(--char-y, 16px), 0) rotate(var(--char-rot, 0)) scale(.86);
}

.history-card h3 {
  max-width: 580px;
  margin: clamp(18px, 2.8vw, 32px) 0 0;
  color: var(--white);
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.history-card p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.5vw, 20px);
}

.history-card-media {
  position: relative;
  margin: 0;
  min-height: clamp(360px, 56vh, 590px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 34px 76px rgba(0, 20, 70, .32);
  transform: translate3d(var(--history-photo-x, 70px), 0, var(--history-photo-z, -110px)) rotateX(var(--history-photo-rotate-x, 10deg)) rotateY(var(--history-photo-rotate-y, -24deg));
  transform-origin: center left;
  transform-style: preserve-3d;
  filter: blur(var(--history-photo-blur, 3px)) saturate(.86);
  opacity: var(--history-photo-opacity, .28);
  transition: opacity .25s ease, transform .25s var(--motion-ease), filter .25s ease;
}

.history-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 51, 127, .24), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 13px);
  opacity: var(--history-overlay-opacity, .52);
  pointer-events: none;
}

.history-card-media::after {
  content: "Imagen falsa";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(3, 51, 127, .66);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(9px);
}

.history-card-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 56vh, 590px);
  object-fit: cover;
  transform: scale(var(--history-image-scale, 1.08));
  transition: transform .25s var(--motion-ease);
}

.history-milestone.is-active .history-marker {
  border-color: rgba(18, 174, 232, .7);
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(18, 174, 232, .12), 0 24px 54px rgba(0, 20, 70, .36);
  transform: translate(-50%, -50%) scale(1.12);
}

.history-milestone.is-active .history-marker::before {
  background: rgba(255, 255, 255, .16);
  transform: scale(1.08);
}

.history-milestone.is-active .history-year::before {
  animation: historyYearGranules .9s var(--motion-soft) both;
}

.history-milestone.is-active .history-year::after {
  opacity: 1;
  transform: scaleX(1);
}

.history-milestone.is-active .history-year-char {
  animation: historyYearBuild .78s var(--motion-soft) both;
  animation-delay: var(--char-delay, 0ms);
}

.history-milestone.is-active .history-card-media {
  animation: historyPhotoSettle 1.35s var(--motion-soft) both;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.985);
  transition: opacity .75s var(--motion-soft), transform .75s var(--motion-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal.reveal-left {
  transform: translate3d(-34px, 0, 0) scale(.985);
}

.js-enabled .reveal.reveal-left.is-visible {
  transform: translateX(0);
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    transform: scale(1.06);
    filter: saturate(.86);
  }
  to {
    transform: scale(1);
    filter: saturate(1);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroActionsIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes proofIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whatsappIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappSignal {
  0% {
    opacity: 0;
    transform: scale(.86);
  }
  18% {
    opacity: 1;
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@keyframes productPanelReveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes productHeroReveal {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes productCardReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes siteLoaderFallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes loaderLightSweep {
  from {
    transform: translateX(-42%);
  }
  to {
    transform: translateX(42%);
  }
}

@keyframes loaderChaseRun {
  from {
    left: -170px;
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-3px) rotate(1deg);
  }
  to {
    left: calc(100% + 38px);
    transform: translateY(0) rotate(-2deg);
  }
}

@keyframes loaderRatRun {
  from {
    left: -42px;
    transform: translateY(0) scaleX(1);
  }
  50% {
    transform: translateY(3px) scaleX(1);
  }
  to {
    left: calc(100% + 120px);
    transform: translateY(0) scaleX(1);
  }
}

@keyframes loaderShadowRun {
  from {
    left: -54px;
    opacity: 0;
  }
  14%,
  84% {
    opacity: 1;
  }
  to {
    left: calc(100% + 54px);
    opacity: 0;
  }
}

@keyframes loaderLimbForward {
  from {
    transform: rotate(-8deg);
  }
  to {
    transform: rotate(9deg);
  }
}

@keyframes loaderLimbBack {
  from {
    transform: rotate(9deg);
  }
  to {
    transform: rotate(-8deg);
  }
}

@keyframes lightAmbientFlow {
  from {
    transform: translate3d(0, -12px, 0) scale(1);
  }
  to {
    transform: translate3d(calc(100vw + 650px), 24px, 0) scale(1.04);
  }
}

@keyframes lightAmbientFlowReverse {
  from {
    transform: translate3d(0, 18px, 0) scale(1);
  }
  to {
    transform: translate3d(calc(-100vw - 600px), -18px, 0) scale(1.04);
  }
}

@keyframes lightAmbientOrbit {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    transform: translate3d(4%, -2%, 0) scale(1.015);
  }
  50% {
    transform: translate3d(2%, 4%, 0) scale(1.03);
  }
  75% {
    transform: translate3d(-4%, 2%, 0) scale(1.015);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes lightAmbientOrbitReverse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    transform: translate3d(-3%, 3%, 0) scale(1.02);
  }
  50% {
    transform: translate3d(4%, 1%, 0) scale(1.04);
  }
  75% {
    transform: translate3d(1%, -3%, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes iconFreeReveal {
  0% {
    opacity: 0;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 16px 20px rgba(0, 20, 70, .22));
  }
}

@keyframes icon3dDrift {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
  }
  28% {
    transform: translate3d(0, -5px, 16px) rotateX(8deg) rotateY(-12deg) rotateZ(-2deg) scale(1.04);
  }
  58% {
    transform: translate3d(0, 2px, 8px) rotateX(-7deg) rotateY(11deg) rotateZ(2deg) scale(.98);
  }
  78% {
    transform: translate3d(0, -3px, 12px) rotateX(5deg) rotateY(-6deg) rotateZ(1deg) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
  }
}

@keyframes iconLineRebuildLoop {
  0% {
    stroke-dashoffset: 1;
    opacity: .3;
  }
  24%,
  70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  88% {
    stroke-dashoffset: -1;
    opacity: .45;
  }
  100% {
    stroke-dashoffset: -1;
    opacity: .3;
  }
}

@keyframes iconDotPulse {
  0% {
    opacity: 0;
    transform: scale(.3) translateZ(0);
  }
  28% {
    opacity: 1;
    transform: scale(1.08) translateZ(12px);
  }
  62% {
    opacity: .75;
    transform: scale(.84) translateZ(4px);
  }
  78% {
    opacity: 1;
    transform: scale(1.2) translateZ(16px);
  }
  100% {
    opacity: 0;
    transform: scale(.3) translateZ(0);
  }
}

@keyframes historyYearGranules {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(.88);
    filter: blur(2px);
  }
  38% {
    opacity: .86;
  }
  100% {
    opacity: 0;
    transform: translateY(-6px) scale(1.1);
    filter: blur(0);
  }
}

@keyframes historyYearBuild {
  0% {
    opacity: 0;
    filter: blur(9px);
    transform: translate3d(var(--char-x, 0), var(--char-y, 16px), 0) rotate(var(--char-rot, 0)) scale(.82);
  }
  64% {
    opacity: .92;
    filter: blur(1.5px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes historyPhotoSettle {
  0% {
    clip-path: inset(8% 0 8% 16% round 8px);
  }
  52% {
    clip-path: inset(0 0 0 0 round 8px);
  }
  100% {
    clip-path: inset(0 0 0 0 round 8px);
  }
}

@media (max-width: 1150px) and (min-width: 981px) {
  .work-mode-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .work-mode-copy {
    max-width: 760px;
  }

  .work-mode-visual {
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    justify-self: stretch;
    display: none;
    width: auto;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--blue-gradient);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-action {
    justify-self: end;
  }

  .service-layout,
  .work-mode-inner,
  .newsletter-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .work-mode-copy {
    max-width: 760px;
  }

  .work-mode-visual {
    min-height: 520px;
  }

  .service-media {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .service-media img {
    min-height: 380px;
  }

  .process ol {
    grid-template-columns: 1fr;
  }

  .assurance {
    grid-template-columns: 1fr;
    padding: 70px clamp(20px, 4vw, 44px);
  }

  .assurance-heading,
  .assurance-list {
    grid-column: auto;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-category-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-index-list,
  .catalog-grid,
  .product-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-section-header,
  .catalog-cta-inner,
  .product-browser-head {
    grid-template-columns: 1fr;
  }

  .product-list-meta {
    justify-self: start;
  }

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

  .products-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .process li {
    min-height: auto;
  }

  .process-step-head {
    margin-bottom: 18px;
  }

  .process-icon {
    width: 54px;
    height: 54px;
  }

  .process-icon svg {
    width: 42px;
    height: 42px;
  }

  .newsletter-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .newsletter-copy {
    order: -1;
    justify-self: start;
    max-width: 760px;
    text-align: left;
  }

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

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .history-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .history-hero-media,
  .history-hero-media img {
    min-height: 360px;
  }

  .history-timeline {
    --history-rail-x: 42px;
  }

  .history-milestone {
    min-height: auto;
    padding: 68px 20px 78px;
  }

  .history-marker {
    width: 46px;
    height: 46px;
  }

  .history-marker span {
    font-size: 12px;
  }

  .history-card {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    margin-left: 72px;
  }

  .history-card-media,
  .history-card-media img {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .site-loader {
    padding: 18px;
  }

  .loader-panel {
    gap: 14px;
  }

  .loader-logo {
    width: min(230px, 70vw);
  }

  .loader-chase {
    min-height: 142px;
  }

  .loader-runner {
    bottom: 20px;
    width: 74px;
  }

  .loader-rat {
    bottom: 27px;
    width: 62px;
  }

  .loader-rat-two {
    bottom: 25px;
    width: 52px;
  }

  .site-header {
    min-height: 72px;
    gap: 10px;
  }

  .work-mode-inner {
    padding: 70px 18px 78px;
  }

  .work-mode-copy p {
    font-size: 16px;
  }

  .work-mode-visual {
    min-height: 430px;
    width: calc(100vw - 20px);
    justify-self: center;
    overflow: visible;
  }

  .work-mode-orbit {
    --work-radius: 126px;
    width: min(366px, 100%);
  }

  .work-mode-center {
    width: 136px;
    min-height: 132px;
    padding: 12px;
  }

  .work-mode-center strong {
    font-size: 17px;
  }

  .work-mode-center p {
    font-size: 10.5px;
    line-height: 1.32;
  }

  .work-mode-step {
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 6px;
    width: 126px;
    min-height: 46px;
    padding: 8px;
  }

  .work-mode-step:hover,
  .work-mode-step:focus-visible,
  .work-mode-step.is-active {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--angle) + var(--orbit-offset)))
      translateY(calc(-1 * var(--work-radius)))
      rotate(calc(-1 * (var(--angle) + var(--orbit-offset))))
      translateZ(54px)
      scale(1.02);
  }

  .work-mode-step span {
    width: 21px;
    height: 21px;
    font-size: 10px;
  }

  .work-mode-step strong {
    font-size: 8.8px;
  }

  .work-mode-step:nth-of-type(1) {
    --angle: 0deg !important;
  }

  .work-mode-step:nth-of-type(2) {
    --angle: 72deg !important;
  }

  .work-mode-step:nth-of-type(3) {
    --angle: 144deg !important;
  }

  .work-mode-step:nth-of-type(4) {
    --angle: 216deg !important;
  }

  .work-mode-step:nth-of-type(5) {
    --angle: 288deg !important;
  }

  .brand img {
    width: 174px;
  }

  .header-action {
    display: none;
  }

  .header-tools {
    gap: 0;
  }

  .header-search {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding: 0;
    display: grid;
  }

  .hero::before {
    left: 0;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 1;
    min-height: clamp(420px, 68vh, 620px);
  }

  .hero-media img {
    object-position: 72% center;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    padding: 28px 20px 0;
  }

  .hero-logo-title {
    position: static;
    max-width: calc(100vw - 40px);
  }

  .hero-logo-title img {
    width: clamp(238px, 72vw, 330px);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 190px;
  }

  .hero-proof {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 22px;
    padding: 0 20px 30px;
  }

  .hero-proof div {
    padding-top: 12px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .service-media img {
    min-height: 310px;
  }

  .service-list summary {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 12px;
  }

  .service-panel {
    padding-right: 0;
  }

  .assurance-list article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .assurance-list svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .product-category-tab {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 74px;
    padding: 12px;
    gap: 4px 10px;
    scroll-snap-align: none;
  }

  .product-category-tab span {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .product-category-tab strong {
    font-size: 14px;
    line-height: 1.16;
  }

  .product-category-tab em {
    display: none;
  }

  .product-panel {
    box-shadow: 0 12px 30px rgba(6, 66, 143, .08);
  }

  .product-panel-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-panel-hero img {
    height: 150px;
    min-height: 150px;
  }

  .product-panel-copy {
    padding: 20px 16px;
  }

  .product-panel h3 {
    font-size: 29px;
    line-height: 1.08;
  }

  .product-panel-copy p {
    margin-top: 10px;
    font-size: 15px;
  }

  .product-items {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 14px;
  }

  .product-item {
    min-height: 0;
    padding: 12px 46px 12px 13px;
  }

  .product-item::after {
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
  }

  .product-item::before {
    top: 17px;
    right: 17px;
  }

  .catalog-hero {
    min-height: 310px;
    padding: 92px 20px 32px;
  }

  .catalog-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .catalog-actions .button {
    flex: 1 1 180px;
  }

  .catalog-index {
    padding: 22px 16px 0;
  }

  .catalog-index-list,
  .catalog-grid,
  .product-list-grid,
  .product-filter-panel {
    grid-template-columns: 1fr;
  }

  .catalog-index-list a {
    min-height: 78px;
  }

  .catalog-section {
    padding: 66px 16px 0;
  }

  .product-browser {
    padding: 56px 16px 0;
  }

  .product-browser-head {
    margin-bottom: 16px;
  }

  .product-browser-head h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .product-browser-head p {
    font-size: 15px;
  }

  .product-list-meta {
    min-width: 0;
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: end;
  }

  .product-list-meta strong {
    font-size: 28px;
  }

  .product-filter-panel {
    padding: 12px;
  }

  .product-filter-panel .button {
    width: 100%;
  }

  .catalog-section-header {
    margin-bottom: 22px;
  }

  .catalog-tags {
    gap: 6px;
  }

  .catalog-card {
    min-height: 0;
    padding: 18px 54px 18px 16px;
  }

  .product-list-card {
    grid-template-rows: 132px minmax(0, 1fr);
    padding: 0;
  }

  .product-card-media img {
    padding: 12px;
  }

  .product-card-body {
    padding: 16px 52px 18px 16px;
  }

  .catalog-card-wide {
    min-height: 0;
  }

  .catalog-cta {
    padding: 66px 16px;
  }

  .catalog-cta .button {
    width: 100%;
  }

  .newsletter-inner {
    padding: 34px 18px;
  }

  .newsletter-copy {
    order: -1;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .newsletter-form button {
    width: 100%;
  }

  .contact {
    gap: 34px;
  }

  .whatsapp-float {
    left: auto;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
    min-height: 54px;
  }

  .drawer-panel {
    width: min(100vw, 420px);
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .history-hero-inner {
    padding-top: 66px;
    padding-bottom: 56px;
  }

  .history-hero h1 {
    font-size: clamp(46px, 17vw, 74px);
  }

  .history-hero-media,
  .history-hero-media img {
    min-height: 280px;
  }

  .history-timeline-intro {
    min-height: 40vh;
    padding-top: 62px;
    padding-bottom: 46px;
  }

  .history-timeline {
    --history-rail-x: 28px;
  }

  .history-milestone {
    padding: 54px 16px 64px;
  }

  .history-card {
    margin-left: 50px;
    gap: 22px;
  }

  .history-year {
    font-size: clamp(44px, 18vw, 64px);
  }

  .history-card h3 {
    font-size: 32px;
  }

  .history-card p {
    font-size: 15px;
  }

  .history-card-media,
  .history-card-media img {
    min-height: 230px;
  }
}

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

  .js-enabled .reveal,
  .js-enabled .reveal.reveal-left {
    opacity: 1;
    transform: none;
  }
}
