/* Variables de marca y estilos base */
:root {
  --navy: #061a2d;
  --navy-2: #0a2540;
  --ink: #0c1d2f;
  --muted: #5f7083;
  --line: #dce4ed;
  --paper: #f5f8fc;
  --white: #fff;
  --font-head: "Plus Jakarta Sans",sans-serif;
  --font-body: "Inter",sans-serif;
  --shadow: 0 24px 70px rgba(8,30,55,.12);
  --radius: 20px;
  --container: min(1200px,calc(100% - 40px));
  --blue: #079FFD;
  --blue-light: #67c6ff;
  /* Escala tipografica fluida compartida */
  --type-hero: clamp(3.65rem, 7vw, 6rem);
  --type-hero-subtitle: clamp(1.25rem, 1.8vw, 1.75rem);
  --type-section: clamp(2.375rem, 3.9vw, 3.5rem);
  --type-section-cinematic: clamp(2.5rem, 4.15vw, 3.75rem);
  --type-card-title: clamp(1.25rem, 1.45vw, 1.5rem);
  --type-feature-card-title: clamp(1.5rem, 1.95vw, 1.75rem);
  --type-intro: clamp(.9375rem, .25vw + .9rem, 1rem);
  --type-card-body: .9375rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
body * {
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a[href],
button:not(:disabled),
label,
summary,
[role="button"]:not([aria-disabled="true"]),
[role="link"],
[tabindex]:not([tabindex="-1"]) {
  cursor: pointer;
}

input,
textarea,
[contenteditable="true"] {
  cursor: text;
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

select,
option,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
input[type="file"] {
  cursor: pointer;
}

button:disabled,
[aria-disabled="true"] {
  cursor: default;
}

img,
picture,
video,
svg,
canvas {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  margin: -1px!important;
  overflow: hidden!important;
  clip: rect(0,0,0,0)!important;
  white-space: nowrap!important;
  border: 0!important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: #fff;
  color: #071c30;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

/* Navegación compartida */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .35s,height .35s,box-shadow .35s;
}

.site-header.scrolled,
.site-header.menu-open {
  height: 68px;
  background: rgba(4,20,36,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0,0,0,.16);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  font: 700 17px var(--font-head);
  letter-spacing: -.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.main-nav>a:not(.button) {
  position: relative;
  padding-block: 6px;
}

.main-nav>a:not(.button):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  transition: right .3s;
  background: var(--blue);
}

.main-nav>a:hover:after,
.main-nav>a:focus-visible:after,
.main-nav>a:not(.button).active:after {
  right: 0;
}

.main-nav>a:hover {
  color: #fff;
}

.main-nav>a:not(.button).active {
  color: var(--blue);
}

.main-nav>a:not(.button).active:after {
  height: 2px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .25s,box-shadow .25s,background .25s;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-small {
  min-height: 39px;
  padding-inline: 18px;
  font-size: 10px;
  gap: 10px;
}

.button-ghost {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 82px rgba(0,0,0,.42);
}

.button-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,.12);
  box-shadow: 0 30px 82px rgba(0,0,0,.42);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 23px;
  margin: 5px auto;
  background: white;
  transition: .3s;
}

/* Hero y visualización de soluciones */
.hero {
  position: relative;
  min-height: 980px;
  height: 135svh;
  max-height: 1450px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

#particles,
.hero-photo,
.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-photo {
  left: -5%;
  right: -5%;
  background: url('../img/optimized/B-Estrategia-1920.webp') center/cover no-repeat;
  opacity: .68;
  filter: saturate(.9) contrast(1.03);
  transform: scale(var(--hero-scale,1.18));
  transform-origin: center;
  will-change: transform;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,rgba(4,18,31,.78),rgba(4,18,31,.58) 40%,rgba(4,18,31,.16) 76%,rgba(4,18,31,.32)),linear-gradient(180deg,rgba(3,14,25,.18),transparent 58%,rgba(3,14,25,.68));
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: #020b13;
  opacity: var(--hero-dim,.04);
  will-change: opacity;
}

#particles {
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  opacity: .64;
  mix-blend-mode: screen;
}

.hero-grid {
  z-index: 1;
  background-image: linear-gradient(rgba(68,123,196,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(68,123,196,.08) 1px,transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom,black,transparent 90%);
}

.hero-glow {
  z-index: 1;
  inset: auto;
  border-radius: 50%;
  filter: blur(20px);
}

.glow-one {
  width: 500px;
  height: 500px;
  left: -250px;
  top: 10%;
  background: rgba(7,159,253,.18);
}

.glow-two {
  width: 400px;
  height: 400px;
  right: 10%;
  bottom: -260px;
  background: rgba(7,159,253,.2);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 5%;
  align-items: center;
  padding-top: 58px;
  opacity: var(--hero-content-opacity,1);
  transform: translateY(var(--hero-content-shift,0));
  will-change: opacity,transform;
}

.hero-copy {
  color: white;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--blue);
}

.eyebrow {
  padding: 7px 11px;
  border: 1px solid rgba(109,153,255,.34);
  border-radius: 99px;
  border-color: rgba(7,159,253,.38);
  background: rgba(7,159,253,.1);
  color: #bde8ff;
}

.eyebrow span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.hero h1,
.hero-archive-title {
  max-width: 620px;
  margin: 24px 0 24px;
  font: 700 clamp(48px,5.2vw,76px)/1.06 var(--font-head);
  letter-spacing: -.055em;
}

.hero h1 em,
.hero-archive-title em {
  font-style: normal;
  color: #4dbcff;
  text-shadow: 0 0 28px rgba(7,159,253,.35);
}

.hero-copy>p {
  max-width: 580px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 15px;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: white;
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  font-weight: 700;
  color: #4dbcff;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  font-size: 11px;
}

.hero-proof small {
  font-size: 9px;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
}

.hero-console {
  position: relative;
  margin-right: -90px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(12,37,64,.7);
  backdrop-filter: blur(16px);
  transform: perspective(1600px) rotateY(-8deg) rotateX(2deg);
  box-shadow: -25px 35px 90px rgba(0,0,0,.35),0 0 70px rgba(7,159,253,.13);
}

.console-top {
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.42);
  font-size: 8px;
}

.console-top>span {
  display: flex;
  gap: 5px;
}

.console-top i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b6b;
}

.console-top i:nth-child(2) {
  background: #ffc663;
}

.console-top i:nth-child(3) {
  background: #52d58b;
}

.console-top b {
  font-size: 7px;
  color: #74e7aa;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.console-body {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 390px;
}

.console-body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 18px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.mini-logo {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 4px;
  background: rgba(7,159,253,.14);
}

.console-body aside i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 4px;
}

.console-main {
  padding: 24px;
}

.console-heading {
  display: flex;
  justify-content: space-between;
  color: white;
}

.console-heading small,
.console-heading strong {
  display: block;
}

.console-heading small {
  color: #698098;
  font-size: 8px;
}

.console-heading strong {
  font: 600 17px var(--font-head);
}

.console-heading button {
  align-self: start;
  border: 0;
  background: none;
  color: #6f8194;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 20px;
}

.metrics article {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
  background: rgba(255,255,255,.035);
}

.metrics small,
.metrics strong,
.metrics span {
  display: block;
}

.metrics small {
  color: #6e8195;
  font-size: 7px;
}

.metrics strong {
  color: white;
  font: 600 15px var(--font-head);
}

.metrics span {
  font-size: 7px;
  color: #49baff;
}

.chart-card {
  margin-top: 11px;
  padding: 14px 14px 5px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(4,20,36,.46);
}

.chart-title {
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 9px;
}

.chart-title small {
  color: #65798e;
  font-size: 7px;
}

.chart-card svg {
  display: block;
  width: 100%;
  height: 155px;
}

.chart-gridline {
  stroke: rgba(255,255,255,.06);
  stroke-width: 1;
}

.chart-area {
  fill: url(#area);
}

.chart-line {
  fill: none;
  stroke-width: 3;
  stroke: var(--blue);
  filter: drop-shadow(0 0 6px var(--blue));
}

.hero-enter {
  opacity: 0;
  animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--delay);
}

.hero-copy .hero-enter {
  transform: translateY(22px);
}

.hero-console.hero-enter {
  transform: perspective(1600px) rotateY(-8deg) rotateX(2deg) translateY(28px);
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  top: min(calc(100svh - 64px),900px);
  bottom: auto;
  left: 50%;
  width: 24px;
  height: 39px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
}

.scroll-cue span {
  display: block;
  width: 3px;
  height: 7px;
  margin: 8px auto;
  border-radius: 3px;
  background: #fff;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(13px);
  }
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-head {
  max-width: 690px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  margin: 15px 0 18px;
  font: 700 clamp(35px,4vw,52px)/1.13 var(--font-head);
  letter-spacing: -.045em;
}

.section-head h2 span,
.about-copy h2 span,
.contact-copy h2 span {
  color: var(--blue);
}

.section-head p {
  max-width: 590px;
  margin: 0 auto;
  color: var(--muted);
}

/* Valores */
.values-section {
  background: var(--paper);
  overflow: hidden;
}

.values-section:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: -150px;
  top: -130px;
  border-radius: 50%;
  background: rgba(0,82,255,.06);
  filter: blur(12px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.value-card {
  --value-hover-duration: .55s;
  --value-hover-easing: cubic-bezier(.22,.61,.36,1);
  position: relative;
  isolation: isolate;
  cursor: default;
  min-height: 330px;
  padding: 32px 28px;
  border: 0;
  border-radius: 14px;
  background-color: white;
  box-shadow: 0 15px 45px rgba(16,48,80,.06);
  overflow: hidden;
  transition: transform .35s,box-shadow .35s;
}

.value-card.reveal {
  transition: opacity .75s ease,transform .75s cubic-bezier(.2,.7,.2,1),box-shadow .35s;
}

/* Fade a separate gradient layer so entering and leaving hover stay continuous. */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,0) 55%,rgba(116,73,226,.6)),var(--blue);
  opacity: 0;
  transition: opacity var(--value-hover-duration) var(--value-hover-easing);
}

.value-card:hover::before,
.value-card:focus-within::before {
  opacity: 1;
}

.value-card:hover,
.value-card:focus-within {
  background: #1b2141;
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(16,48,80,.12);
}

.value-card h3,
.value-card p,
.value-card small {
  transition: color var(--value-hover-duration) var(--value-hover-easing);
}

.value-card:hover h3,
.value-card:hover p,
.value-card:hover small,
.value-card:focus-within h3,
.value-card:focus-within p,
.value-card:focus-within small {
  color: #fff;
}

.value-card:hover .value-line,
.value-card:focus-within .value-line {
  background-color: rgba(255,255,255,.3);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #edf3ff;
  color: var(--blue);
  font-size: 20px;
}

.value-card h3 {
  margin: 27px 0 11px;
  font: 700 19px var(--font-head);
}

.value-card p {
  margin: 0;
  color: #66788a;
  font-size: 13px;
  line-height: 1.7;
}

.value-line {
  height: 1px;
  margin: 25px 0 14px;
  background: #edf0f4;
  transition: background-color var(--value-hover-duration) var(--value-hover-easing);
}

.value-card small {
  color: #8090a0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .13em;
}

/* Empresa, misión y visión */
.about-section {
  overflow: hidden;
  background: white;
}

.about-orb {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -380px;
  top: 15%;
  border: 1px solid rgba(0,82,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(0,82,255,.018),0 0 0 160px rgba(0,82,255,.012);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8%;
}

.about-visual {
  position: relative;
}

.photo-frame {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 13px;
}

.photo-shade {
  position: absolute;
  inset: 14px;
  border-radius: 13px;
  background: linear-gradient(to top,rgba(5,22,38,.55),transparent 50%);
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 11px;
  background: rgba(7,29,50,.83);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(4,22,41,.23);
  color: white;
}

.floating-chip strong,
.floating-chip small {
  display: block;
}

.floating-chip strong {
  font-size: 10px;
}

.floating-chip small {
  color: #91a3b5;
  font-size: 8px;
}

.chip-top {
  right: -34px;
  top: 72px;
  padding: 12px 17px;
}

.chip-top>span {
  color: #4f86ff;
}

.chip-bottom {
  left: -34px;
  bottom: 47px;
  padding: 13px 19px;
}

.chip-bottom>b {
  font: 700 24px var(--font-head);
  color: #49baff;
}

.frame-code {
  position: absolute;
  left: 17px;
  top: -26px;
  color: #9ba8b5;
  font-size: 8px;
  letter-spacing: .18em;
}

.about-copy h2 {
  font-size: clamp(34px,3.7vw,49px);
}

.about-copy>p {
  color: #627487;
  font-size: 14px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.purpose-grid article {
  padding: 20px;
  border: 1px solid #dfe7f0;
  border-radius: 11px;
  background: #f9fbfd;
}

.purpose-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.purpose-title h3 {
  margin: 0;
  font: 700 14px var(--font-head);
}

.purpose-grid p {
  margin: 9px 0 0;
  color: #718194;
  font-size: 11px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Manifiesto audiovisual */
.brand-film-scene {
  position: relative;
  height: 240svh;
  background: #020a12;
}

.brand-film {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #041321;
  isolation: isolate;
}

.brand-film-video,
.brand-film-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-film-video {
  z-index: -2;
  object-fit: cover;
  opacity: var(--film-video-opacity,1);
  transform: scale(var(--film-scale,1.08));
  transform-origin: center;
  will-change: transform,opacity;
}

.brand-film-shade {
  z-index: -1;
  background: linear-gradient(180deg,rgba(2,9,16,.98),rgba(2,9,16,.84)),linear-gradient(90deg,rgba(3,15,27,.72),transparent 45%,rgba(3,15,27,.68));
  opacity: var(--film-darkness,.98);
  will-change: opacity;
}

.brand-film-message {
  width: min(1040px,calc(100% - 44px));
  margin: 0;
  text-align: center;
  color: #fff;
  font: 600 clamp(32px,5vw,68px)/1.08 var(--font-head);
  letter-spacing: -.045em;
  text-wrap: balance;
}

.brand-film-message>span,
.brand-film-message>strong {
  display: block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: opacity .8s ease,filter .9s ease,transform .9s cubic-bezier(.2,.7,.2,1);
}

.brand-film-message>span:first-child {
  margin-bottom: 14px;
  color: #9ddaff;
  font-size: .32em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.brand-film-message>span:nth-child(2) {
  transition-delay: .16s;
}

.brand-film-message>strong {
  color: #55beff;
  font-weight: 700;
  transition-delay: .32s;
}

.brand-film-message.is-visible>span,
.brand-film-message.is-visible>strong {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.brand-solution-prefix,
.brand-typed-word,
.brand-type-cursor {
  display: inline;
}

.brand-type-cursor {
  display: inline-block;
  width: .075em;
  height: .78em;
  margin-left: .08em;
  background: currentColor;
  opacity: 0;
  vertical-align: -.06em;
}

.brand-film-message.is-visible .brand-type-cursor {
  animation: brand-cursor-blink .82s steps(1,end) 1.25s infinite;
}

@keyframes brand-cursor-blink {
  0%,46% { opacity: 1; }
  47%,100% { opacity: 0; }
}

@media(max-width:760px) {
  .brand-film-scene {
    height: 155svh;
  }

  .brand-film {
    min-height: 100svh;
  }

  .brand-film-message {
    width: min(100% - 34px,620px);
  }
}

@media(prefers-reduced-motion:reduce) {
  .brand-film-scene {
    height: 100svh;
  }

  .brand-film {
    --film-darkness: .28;
    --film-scale: 1;
    --film-video-opacity: 1;
  }

  .brand-type-cursor {
    animation: none!important;
    opacity: 1;
  }
}

/* Productos destacados: variante editorial con tarjetas enlazadas */
.featured-products-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 150px);
  color: #f8fbff;
  background:
    radial-gradient(circle at 88% 8%, rgba(7,159,253,.15), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(97,52,170,.13), transparent 33%),
    #090b1c;
}

.featured-products-section .container {
  width: min(1240px, calc(100% - 48px));
}

.featured-products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.featured-products-heading .kicker {
  color: #61c1ff;
}

.featured-products-heading h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
}

.featured-products-heading h2 span {
  color: var(--primary, #079ffd);
}

.featured-products-heading p {
  max-width: 650px;
  margin: 0;
  color: #aab5cc;
  font-size: 15px;
  line-height: 1.75;
}

.featured-products-grid {
  display: flex;
  gap: clamp(18px, 2.1vw, 30px);
  overflow-x: auto;
  padding: 12px 0 52px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.featured-products-grid::-webkit-scrollbar {
  display: none;
}

.featured-products-grid:focus-visible {
  outline: 2px solid rgba(7,159,253,.5);
  outline-offset: 8px;
  border-radius: 12px;
}

.featured-products-grid.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
}

.featured-products-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: -22px;
}

.featured-products-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #171a34;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
  cursor: pointer;
  transition: color .3s ease,background-color .3s ease,transform .3s ease,opacity .3s ease;
}

.featured-products-controls button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-products-controls button:hover,
.featured-products-controls button:focus-visible {
  outline: none;
  background: var(--primary, #079ffd);
  transform: translateY(-3px);
}

.featured-products-controls button:focus-visible {
  box-shadow: 0 0 0 3px rgba(7,159,253,.28),0 12px 30px rgba(0,0,0,.24);
}

.featured-products-controls button:disabled {
  opacity: .3;
  cursor: default;
  transform: none;
}

.featured-product-card {
  --featured-product-panel: #171a34;
  display: flex;
  min-width: 0;
  flex: 0 0 calc((100% - clamp(36px, 4.2vw, 60px)) / 3);
  overflow: hidden;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border-radius: 22px;
  background: var(--featured-product-panel);
  box-shadow: 0 24px 65px rgba(0,0,0,.3);
  transform: translateY(0);
  scroll-snap-align: start;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s ease, background-color .55s ease;
}

.featured-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0;
  border: 2px solid var(--featured-product-panel);
  border-bottom: 0;
  background: #101326;
}

.featured-product-media:after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(23,26,52,.38));
}

.featured-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2,.8,.2,1), filter .55s ease;
}

.featured-product-copy {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 2.3vw, 34px);
}

.featured-product-copy>span {
  color: #61c1ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.featured-product-copy h3 {
  margin: 12px 0 13px;
  color: #fff;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.featured-product-copy p {
  margin: 0;
  color: #aeb8cf;
  font-size: 14px;
  line-height: 1.65;
}

.featured-product-copy small {
  margin-top: auto;
  padding-top: 28px;
  color: #e9f6ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured-product-card:hover,
.featured-product-card:focus-visible {
  --featured-product-panel: #1b2141;
  outline: none;
  background: var(--featured-product-panel);
  box-shadow: 0 30px 82px rgba(0,0,0,.42);
  transform: translateY(-10px);
}

.featured-product-card:focus-visible {
  box-shadow: 0 0 0 3px #61c1ff,0 30px 82px rgba(0,0,0,.42);
}


.featured-product-card:hover .featured-product-media img,
.featured-product-card:focus-visible .featured-product-media img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.055);
}

@media (max-width: 940px) {
  .featured-products-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-products-grid {
    gap: 20px;
  }

  .featured-product-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 640px) {
  .featured-products-section .container {
    width: min(100% - 28px, 520px);
  }

  .featured-products-heading {
    text-align: center;
  }

  .featured-products-heading p {
    margin-inline: auto;
  }

  .featured-products-grid {
    gap: 14px;
    padding: 12px 5% 36px;
    scroll-padding-inline: 5%;
  }

  .featured-product-card {
    flex-basis: 82%;
  }

  .featured-product-copy {
    min-height: 225px;
  }

  .featured-products-controls {
    justify-content: center;
    margin-top: -12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-product-card,
  .featured-product-media img {
    transition-duration: .01ms;
  }
}

/* Equipo */
.team-section {
  overflow: hidden;
  background: #f4f7fb;
  color: var(--ink);
}

.team-section .container {
  width: min(calc(100% - 40px),1680px);
}

.team-heading {
  max-width: 760px;
  margin-bottom: clamp(36px,4vw,54px);
}

.team-heading h2 {
  margin: 14px 0 18px;
  font: 700 var(--type-section)/1.08 var(--font-head);
  letter-spacing: -.05em;
}

.team-heading h2 span {
  color: var(--blue);
}

.team-heading>p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-intro);
  line-height: 1.75;
}

.team-grid {
  display: flex;
  gap: clamp(20px,2vw,30px);
  overflow-x: auto;
  margin-inline: -18px;
  padding: 24px 18px 82px;
  scroll-behavior: smooth;
  scroll-padding-inline: 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.team-grid::-webkit-scrollbar {
  display: none;
}

.team-grid:focus-visible {
  outline: 2px solid rgba(7,159,253,.5);
  outline-offset: 8px;
  border-radius: 12px;
}

.team-card {
  display: flex;
  min-height: 500px;
  flex: 0 0 clamp(340px,calc((100% - 90px)/4),410px);
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #171a34;
  color: #fff;
  box-shadow: 0 14px 30px rgba(8,18,38,.16);
  transform: translateY(0);
  scroll-snap-align: start;
  transition: transform .55s cubic-bezier(.2,.8,.2,1),box-shadow .55s ease,background-color .55s ease;
}

.team-card:hover {
  background: #1b2141;
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(8,18,38,.16);
}

.team-photo {
  position: relative;
  width: clamp(150px,13vw,174px);
  height: clamp(150px,13vw,174px);
  margin: 36px auto 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(145deg,#fff,#e9f2f9) padding-box,linear-gradient(135deg,#079ffd,#61c1ff) border-box;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}

.team-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.02);
  transition: transform .75s cubic-bezier(.2,.8,.2,1),filter .55s ease;
}

.team-card:hover .team-photo img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.09);
}

.team-photo--zoomed-out::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 5%;
  content: "";
  background: var(--shirt-fill);
}

.team-photo--leroy {
  --shirt-fill: #c4d0b5;
}

.team-photo--emmanuel {
  --shirt-fill: #592a34;
}

.team-photo--andrea {
  --shirt-fill: #d49aa5;
}


.team-photo--zoomed-out img {
  transform: scale(.9);
}

.team-card:hover .team-photo--zoomed-out img {
  transform: scale(.98);
}

.team-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 32px;
  text-align: center;
}

.team-card-copy h3 {
  margin: 0;
  color: #fff;
  font: 700 clamp(17px,1.35vw,20px)/1.25 var(--font-head);
  letter-spacing: -.025em;
}

.team-role {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 9px 0 0;
  color: var(--blue-light);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.team-role-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #61c1ff;
}

.team-role-icon svg {
  width: 17px;
  height: 17px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-role-icon circle {
  fill: currentColor;
  stroke: none;
}

.team-description {
  position: relative;
  margin: 32px 0 0;
  color: #b7c2d8;
  font-size: 13.5px;
  line-height: 1.7;
}

.team-description::before {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 52px;
  height: 1px;
  content: "";
  background: rgba(97,193,255,.34);
  transform: translate(-50%,-50%);
}

.team-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: -22px;
}

.team-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #171a34;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
  cursor: pointer;
  transition: color .3s ease,background-color .3s ease,transform .3s ease,opacity .3s ease;
}

.team-controls button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-controls button:hover,
.team-controls button:focus-visible {
  outline: none;
  background: var(--primary,#079ffd);
  transform: translateY(-3px);
}

.team-controls button:focus-visible {
  box-shadow: 0 0 0 3px rgba(7,159,253,.28),0 12px 30px rgba(0,0,0,.24);
}

.team-controls button:disabled {
  opacity: .3;
  cursor: default;
  transform: none;
}


@media(max-width:760px) {
  .team-heading {
    margin-bottom: 36px;
    text-align: center;
  }

  .team-heading h2 br {
    display: none;
  }

  .team-heading>p {
    margin-inline: auto;
  }

  .team-section .container {
    width: min(calc(100% - 20px),520px);
  }

  .team-grid {
    gap: 14px;
    margin-inline: -10px;
    padding: 18px 5% 64px;
    scroll-padding-inline: 5%;
  }

  .team-card {
    min-height: 520px;
    flex-basis: 88%;
  }

  .team-card:hover {
    transform: none;
  }

  .team-controls {
    justify-content: center;
    margin-top: -12px;
  }

  .team-photo {
    width: 168px;
    height: 168px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .team-grid {
    scroll-behavior: auto;
  }

  .team-card,
  .team-photo img {
    transition-duration: .01ms;
  }
}
/* Servicios */
.services-section {
  overflow: hidden;
  background: #051828;
  color: white;
}

.service-photo {
  position: absolute;
  inset: -9% 0;
  opacity: .94;
  overflow: hidden;
  background: url('../img/optimized/img1-1920.webp') left center/cover no-repeat;
}

.service-photo:after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(5,14,23,.56),rgba(5,17,29,.72));
  pointer-events: none;
}

.service-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

@media(max-width:760px), (prefers-reduced-motion:reduce) {
  .service-video {
    display: none;
  }
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.section-head.light p {
  color: #8fa1b4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  align-items: start;
}

.service-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 32px;
  border: 0;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(2,15,28,.16);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1),background-color .4s ease,box-shadow .4s ease;
}

.service-card:after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 52%,rgba(255,255,255,.82) 72%,rgba(255,255,255,.2) 100%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-7px);
  background: #fff;
  box-shadow: 0 26px 58px rgba(2,15,28,.24);
}

.service-top {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.service-icon {
  position: absolute;
  right: -9%;
  bottom: -20%;
  width: clamp(180px,17vw,235px);
  height: clamp(180px,17vw,235px);
  opacity: .1;
  transform: scale(1);
  transform-origin: center;
  transition: opacity .45s ease,transform .55s cubic-bezier(.22,.61,.36,1);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 76%;
  margin: 0 0 16px;
  font: 650 22px/1.28 var(--font-head);
  letter-spacing: -.025em;
  color: #071b2f;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 78%;
  color: #50677d;
  font-size: 13.5px;
  line-height: 1.65;
}

/* Contacto */
.contact-section {
  overflow: hidden;
  padding-block: 130px;
  background: #f6f8fb;
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7,38,67,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(7,38,67,.045) 1px,transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(circle at 65% 50%,black,transparent 70%);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9%;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(38px,4.2vw,55px);
}

.contact-copy>p {
  color: #637589;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-points>a,
.contact-points>div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-points>a>span,
.contact-points>div>span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dce4ec;
  border-radius: 9px;
  background: white;
  color: var(--blue);
}

.contact-points small,
.contact-points strong {
  display: block;
}

.contact-points small {
  color: #8a98a5;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-points strong {
  font-size: 11px;
}

.social-row {
  display: flex;
  margin-top: 28px;
  gap: 10px;
  flex-wrap: wrap;
}

.social-row a {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  font-size: 10px;
  font-weight: 700;
  transition: .25s;
}

.social-row a:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}

.contact-form {
  padding: 37px;
  border: 1px solid #dfe7ef;
  border-radius: 17px;
  background: white;
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 27px;
}

.form-heading span {
  font: 700 20px var(--font-head);
}

.form-heading small {
  color: #8190a0;
  font-size: 9px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
  color: #40546a;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #dbe3eb;
  border-radius: 8px;
  outline: 0;
  background: #f8fafc;
  color: #172b40;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  transition: border .25s,box-shadow .25s,background .25s;
}

.contact-form input,
.contact-form select {
  height: 47px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 115px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: white;
}

.contact-form .invalid {
  border-color: #d84c4c;
}

.submit-button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  text-align: center;
  font-size: 11px;
  margin-top: 8px;
  color: inherit;
}

/* Pie de página compartido */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px,7vw,104px) 0 30px;
  background:
    linear-gradient(105deg,rgba(3,20,34,.9),rgba(3,20,34,.8) 55%,rgba(5,32,52,.74)),
    url('../img/optimized/img1-1920.webp') center 48%/cover no-repeat;
  color: #b7c5d2;
}

.site-footer:before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg,transparent,var(--blue),#7450e8,transparent);
  opacity: .9;
}

.site-footer:after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  content: "";
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(7,159,253,.22),transparent 68%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px,.9fr) minmax(0,1.25fr);
  gap: 62px clamp(36px,6vw,88px);
  align-items: start;
}

.footer-intro .brand {
  gap: 14px;
  font-size: 23px;
}

.site-footer .brand-logo {
  width: 54px;
  height: 54px;
}

.footer-intro>p {
  max-width: 510px;
  margin: 24px 0 0;
  color: #e4edf5;
  font-size: 17px;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(3,20,34,.5);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: transform .25s ease,border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: #67c6ff;
  background: var(--blue);
  transform: translateY(-3px) scale(1.06);
}

.footer-socials .footer-social-tiktok:hover,
.footer-socials .footer-social-tiktok:focus-visible {
  border-color: #25f4ee;
  background: #050505;
  box-shadow: -3px 2px 0 rgba(37,244,238,.65),3px -2px 0 rgba(254,44,85,.6);
}

.footer-socials .footer-social-instagram:hover,
.footer-socials .footer-social-instagram:focus-visible {
  border-color: #ff7a59;
  background: linear-gradient(135deg,#f9ce34 0%,#ee2a7b 52%,#6228d7 100%);
  box-shadow: 0 10px 24px rgba(238,42,123,.34);
}

.footer-socials .footer-social-facebook:hover,
.footer-socials .footer-social-facebook:focus-visible {
  border-color: #62a3ff;
  background: #1877f2;
  box-shadow: 0 10px 24px rgba(24,119,242,.32);
}

.footer-socials .footer-social-youtube:hover,
.footer-socials .footer-social-youtube:focus-visible {
  border-color: #ff5a67;
  background: #ff0033;
  box-shadow: 0 10px 24px rgba(255,0,51,.3);
}

.footer-socials .footer-social-telegram:hover,
.footer-socials .footer-social-telegram:focus-visible {
  border-color: #64c9ef;
  background: #229ed9;
  box-shadow: 0 10px 24px rgba(34,158,217,.32);
}

.footer-socials .footer-social-linkedin:hover,
.footer-socials .footer-social-linkedin:focus-visible {
  border-color: #63aee8;
  background: #0a66c2;
  box-shadow: 0 10px 24px rgba(10,102,194,.32);
}

.footer-socials a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

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

.footer-socials rect,
.footer-socials circle:not(.footer-social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-cta {
  margin-top: 26px;
  min-height: 46px;
  padding-inline: 22px;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(26px,3.5vw,52px);
  padding-top: 8px;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: #fff;
  font: 700 15px/1.25 var(--font-head);
  letter-spacing: -.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: rgba(226,237,246,.76);
  font-size: 14px;
}

.footer-links a {
  transition: color .25s ease,transform .25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #67c6ff;
  transform: translateX(3px);
}

.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #aebdca;
  font-size: 13px;
}

.footer-bottom small,
.footer-made {
  margin: 0;
  font-size: inherit;
}

.footer-made span {
  display: inline-block;
  margin-inline: 4px;
  color: #55beff;
  filter: drop-shadow(0 0 7px rgba(85,190,255,.55));
  animation: footer-heart 1.8s ease-in-out infinite;
}

@keyframes footer-heart {
  0%,100% { transform: scale(1); }
  45% { transform: scale(1.15); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease,transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.stagger-group .reveal:nth-child(2) {
  transition-delay: .09s;
}

.stagger-group .reveal:nth-child(3) {
  transition-delay: .18s;
}

.stagger-group .reveal:nth-child(4) {
  transition-delay: .27s;
}

.stagger-group .reveal:nth-child(5) {
  transition-delay: .36s;
}

.stagger-group .reveal:nth-child(6) {
  transition-delay: .45s;
}

@media(max-width:980px) {
  .hero {
    height: 125svh;
    min-height: 980px;
    padding: 120px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-console {
    width: min(700px,92%);
    margin: 40px auto 0;
  }

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

  .about-grid {
    gap: 5%;
  }

  .photo-frame img {
    height: 490px;
  }

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

  .contact-layout {
    gap: 5%;
  }
}

@media(max-width:760px) {
  .site-header,
  .site-header.scrolled,
  .site-header.menu-open {
    height: 64px;
  }

  .nav-wrap {
    height: 64px;
    padding-block: 0;
    align-items: center;
  }

  .brand,
  .nav-toggle {
    align-self: center;
    transform: translateY(-1px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 17px 24px;
    background: rgba(4,20,36,.98);
    border-bottom: 1px solid rgba(255,255,255,.12);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
  }

  .menu-open .main-nav {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .main-nav>a:not(.button) {
    padding: 15px 7px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    height: 115svh;
    min-height: 840px;
    display: block;
    padding-top: 130px;
  }

  .hero-photo {
    left: -10%;
    right: -10%;
    opacity: .62;
  }

  .hero h1 {
    font-size: clamp(41px,12vw,58px);
  }

  .hero-copy>p {
    font-size: 14px;
  }

  .hero-console {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    margin-top: 25px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 85px 0;
  }

  .section-head {
    text-align: left;
  }

  .section-head h2 br {
    display: none;
  }

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

  .value-card {
    min-height: 290px;
  }

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

  .about-visual {
    order: 2;
    margin-top: 38px;
  }

  .photo-frame img {
    height: 420px;
  }

  .chip-top {
    right: 7px;
  }

  .chip-bottom {
    left: 2px;
  }

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

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

  .contact-section {
    padding-block: 90px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 45px;
    padding: 25px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-heading {
    display: block;
  }

  .form-heading small {
    display: block;
    margin-top: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .site-footer {
    padding: 64px 0 96px;
    background-position: 44% center;
  }

  .footer-intro .brand {
    gap: 12px;
    font-size: 21px;
  }

  .site-footer .brand-logo {
    width: 48px;
    height: 48px;
  }

  .footer-links {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    padding-top: 0;
    font-size: 15px;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    padding-top: 0;
  }

  .footer-column h2 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 30px;
  }

  .footer-intro>p {
    max-width: 34ch;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .footer-socials {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
  }

  .footer-made {
    width: 100%;
    text-align: center;
  }

  .footer-cta {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .footer-bottom {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 20px;
    font-size: 13px;
    line-height: 1.6;
  }
}

@media(max-width:430px) {
  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section-head h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 33px;
  }

  .photo-frame img {
    height: 350px;
  }

  .floating-chip {
    transform: scale(.9);
  }

  .chip-top {
    right: -6px;
  }

  .contact-form {
    padding: 20px;
  }

}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .01ms!important;
  }

  .reveal,
  .hero-enter {
    opacity: 1;
    transform: none!important;
  }

  .parallax {
    transform: none!important;
  }
}

html,
body {
  overflow-x: clip;
}

@media(max-width:760px) {
  :root {
    --container: min(calc(100% - 34px),1200px);
  }
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(7,159,253,.24));
}

.brand>span:last-child>span {
  color: var(--blue);
}

.button {
  box-shadow: 0 10px 28px rgba(7,159,253,.28);
}

.button:hover,
.button:focus-visible {
  background: #22adff;
  box-shadow: 0 16px 35px rgba(7,159,253,.4);
}

.mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.console-body aside i.active {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 14px rgba(7,159,253,.6);
}

.section-head.light h2 span {
  color: #55beff;
}

.floating-chip.chip-top>span {
  color: var(--blue);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7,159,253,.12);
}

.parallax {
  will-change: translate;
}

.hero-photo {
  top: -8%;
  bottom: -8%;
}

.photo-media {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 13px;
}

.photo-media img {
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  border-radius: 0;
}

.photo-media .photo-shade {
  inset: 0;
  border-radius: inherit;
}

@media(max-width:980px) {
  .photo-media {
    height: 490px;
  }
}

@media(max-width:760px) {
  .photo-media {
    height: 420px;
  }

  .hero-photo {
    top: -8%;
    bottom: -8%;
  }
}

@media(max-width:430px) {
  .photo-media {
    height: 350px;
  }
}

.console-stage {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}

.solution-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(16px);
  transform: translate3d(22px,8px,0) scale(.975);
  pointer-events: none;
  transition: opacity .8s ease,filter .8s ease,transform .8s cubic-bezier(.2,.7,.2,1);
}

.solution-slide.active {
  z-index: 2;
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0) scale(1);
  pointer-events: auto;
}

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

.solution-tabs button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: width .35s,background .35s,box-shadow .35s;
}

.solution-tabs button.active {
  width: 22px;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(7,159,253,.75);
}

.console-top>[data-solution-label] {
  min-width: 76px;
  text-align: right;
  color: #75d0ff;
}

.live-chip {
  align-self: center;
  padding: 5px 8px;
  border: 1px solid rgba(7,159,253,.28);
  border-radius: 99px;
  background: rgba(7,159,253,.1);
  color: #74ceff;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.app-preview {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 14px;
}

.phone-mock {
  position: relative;
  width: 180px;
  height: 300px;
  margin: auto;
  padding: 24px 13px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 25px;
  background: linear-gradient(155deg,#12375a,#071d32);
  box-shadow: 0 22px 45px rgba(0,0,0,.3),0 0 30px rgba(7,159,253,.08);
}

.phone-speaker {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 38px;
  height: 4px;
  border-radius: 5px;
  background: #021321;
  transform: translateX(-50%);
}

.app-greeting small,
.app-greeting strong,
.app-balance small,
.app-balance strong,
.app-balance span {
  display: block;
}

.app-greeting small {
  color: #7990a6;
  font-size: 7px;
}

.app-greeting strong {
  color: white;
  font: 600 11px var(--font-head);
}

.app-balance {
  margin-top: 15px;
  padding: 12px;
  border: 1px solid rgba(7,159,253,.2);
  border-radius: 11px;
  background: linear-gradient(135deg,rgba(7,159,253,.2),rgba(7,159,253,.05));
}

.app-balance small {
  color: #8ca0b3;
  font-size: 6px;
}

.app-balance strong {
  color: white;
  font: 700 17px var(--font-head);
}

.app-balance span {
  color: #52d6a0;
  font-size: 6px;
}

.app-actions {
  display: flex;
  justify-content: space-between;
  margin: 14px 3px;
}

.app-actions i {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: #73caff;
  font-size: 10px;
  font-style: normal;
}

.app-row {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  gap: 7px;
  align-items: center;
  padding: 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}

.app-row>span {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(7,159,253,.2);
}

.app-row b,
.app-row small {
  display: block;
}

.app-row b {
  color: white;
  font-size: 7px;
}

.app-row small {
  color: #6f8497;
  font-size: 5px;
}

.app-row>strong {
  color: #50d59c;
  font-size: 7px;
}

.app-features {
  display: grid;
  gap: 10px;
}

.app-features article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
  background: rgba(255,255,255,.035);
}

.app-features article>span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
}

.app-features strong,
.app-features small {
  display: block;
}

.app-features strong {
  color: white;
  font-size: 9px;
}

.app-features small {
  max-width: 190px;
  color: #70859a;
  font-size: 6px;
}

.store-preview {
  margin-top: 18px;
}

.store-hero {
  position: relative;
  height: 220px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 13px;
  background: radial-gradient(circle at 78% 45%,rgba(7,159,253,.24),transparent 28%),linear-gradient(125deg,#102e4b,#071b2e);
  overflow: hidden;
}

.store-copy {
  position: relative;
  z-index: 2;
}

.store-copy small,
.store-copy strong {
  display: block;
}

.store-copy small {
  color: #59c2ff;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.store-copy strong {
  margin-top: 7px;
  color: white;
  font: 600 21px/1.25 var(--font-head);
}

.store-copy button {
  margin-top: 16px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-orb {
  position: absolute;
  right: 38px;
  top: 23px;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84,196,255,.24);
  border-radius: 50%;
  background: radial-gradient(circle,rgba(7,159,253,.22),rgba(7,159,253,.03) 60%,transparent 61%);
  box-shadow: 0 0 0 18px rgba(7,159,253,.025),0 0 0 36px rgba(7,159,253,.018);
}

.product-orb span {
  font: 800 37px var(--font-head);
  font-style: italic;
  color: #79d0ff;
  text-shadow: 0 0 25px rgba(7,159,253,.55);
  transform: rotate(-9deg);
}

.store-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
  margin-top: 10px;
}

.store-stats article {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.store-stats small,
.store-stats strong,
.store-stats i {
  display: block;
}

.store-stats small {
  color: #6e8295;
  font-size: 6px;
}

.store-stats strong {
  color: white;
  font: 600 13px var(--font-head);
}

.store-stats i {
  color: #59c7ff;
  font-size: 6px;
  font-style: normal;
}

@media(max-width:980px) {
  .app-preview {
    grid-template-columns: 180px 1fr;
  }
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.9) drop-shadow(0 14px 28px rgba(7,159,253,.2));
  transition: filter .45s ease;
}

.service-card:hover .service-icon {
  opacity: .15;
  transform: scale(1.14);
}

.service-card:hover .service-icon img {
  filter: saturate(1.08) drop-shadow(0 18px 34px rgba(7,159,253,.3));
}

/* Acceso flotante a WhatsApp */
.whatsapp-float {
  position: fixed;
  right: max(24px,env(safe-area-inset-right));
  bottom: max(24px,env(safe-area-inset-bottom));
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  isolation: isolate;
}

.whatsapp-tooltip {
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  border: 1px solid rgba(7,159,253,.12);
  border-radius: 14px;
  background: #fff;
  color: #102a43;
  box-shadow: 0 8px 24px rgba(3,20,34,.16);
  line-height: 1.25;
  transform-origin: right center;
  transition: transform .2s ease,box-shadow .2s ease;
}

.whatsapp-tooltip strong {
  font: 700 14px var(--font-head);
}

.whatsapp-tooltip span {
  margin-top: 4px;
  color: #66788a;
  font-size: 12px;
}

.whatsapp-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  transition: transform .2s ease,background-color .2s ease,box-shadow .2s ease;
}

.whatsapp-icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 1px solid rgba(37,211,102,.45);
  border-radius: inherit;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float:hover .whatsapp-icon,
.whatsapp-float:focus-visible .whatsapp-icon {
  transform: translateY(-3px) scale(1.04);
  background: #1fbd5a;
  box-shadow: 0 12px 30px rgba(37,211,102,.58);
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  transform: translateX(-3px);
  box-shadow: 0 12px 30px rgba(3,20,34,.2);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(7,159,253,.38);
  outline-offset: 5px;
  border-radius: 18px;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: .8;
    transform: scale(.86);
  }

  70%,100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@media(max-width:620px) {
  .whatsapp-float {
    right: max(16px,env(safe-area-inset-right));
    bottom: max(16px,env(safe-area-inset-bottom));
  }

  .whatsapp-tooltip {
    display: none;
  }

  .whatsapp-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .whatsapp-icon:before {
    animation: none;
  }

  .whatsapp-icon,
  .whatsapp-tooltip {
    transition: none;
  }
}

.value-card .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: transparent;
}

.value-card .icon-box img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(1) invert(0) drop-shadow(0 8px 16px rgba(7,159,253,.16));
  transition: transform .35s ease,filter var(--value-hover-duration) var(--value-hover-easing);
}

.value-card:hover .icon-box img,
.value-card:focus-within .icon-box img {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 12px 20px rgba(7,159,253,.28));
}

.service-card {
  min-height: 190px;
  height: auto;
  padding-bottom: 32px;
}

.contact-location {
  align-items: flex-start!important;
}

.contact-location>span {
  margin-top: 2px;
  flex: 0 0 38px;
}

.contact-location address {
  display: grid;
  gap: 4px;
  max-width: 460px;
  margin-top: 5px;
  color: #66788a;
  font-size: 10px;
  font-style: normal;
  line-height: 1.5;
}

.contact-location address strong {
  margin-top: 5px;
  color: #20364b;
  font-size: 10px;
}

.contact-location address span {
  display: block;
}

.social-row a {
  width: 46px;
  height: 46px;
  border: 0;
  color: #fff;
  box-shadow: 0 8px 18px rgba(15,35,55,.14);
}

.social-row a svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.social-row .social-tiktok,
.social-row .social-x {
  background: #050505;
}

.social-row .social-instagram {
  background: linear-gradient(135deg,#ff405f,#dd2a7b 58%,#8134af);
}

.social-row .social-facebook {
  background: #4267a9;
}

.social-row .social-youtube {
  background: #d9252a;
}

.social-row .social-telegram {
  background: #16a9df;
}

.social-row a:hover {
  border: 0;
  background: var(--social-bg,inherit);
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 12px 24px rgba(15,35,55,.22);
}

.social-row .social-tiktok:hover,
.social-row .social-x:hover {
  background: #050505;
}

.social-row .social-instagram:hover {
  background: linear-gradient(135deg,#ff405f,#dd2a7b 58%,#8134af);
}

.social-row .social-facebook:hover {
  background: #4267a9;
}

.social-row .social-youtube:hover {
  background: #d9252a;
}

.social-row .social-telegram:hover {
  background: #16a9df;
}

/* Aliados estratégicos */
.clients-section {
  overflow: hidden;
  background: #fff;
}

.clients-heading {
  max-width: 780px;
  margin-bottom: 50px;
  text-align: center;
}

.clients-heading h2 {
  margin: 13px 0 18px;
  font: 700 clamp(36px,4.2vw,54px)/1.1 var(--font-head);
  letter-spacing: -.05em;
}

.clients-heading h2 span {
  color: var(--blue);
}

.clients-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #66788a;
  font-size: 14px;
}

.clients-rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 20px;
  mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: transform;
  animation: clients-marquee 26s linear infinite;
}

.clients-group {
  display: flex;
  gap: 18px;
}

.client-logo {
  display: grid;
  place-items: center;
  flex: 0 0 220px;
  width: 220px;
  height: 104px;
  margin: 0;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.client-logo img {
  width: 100%;
  height: 100%;
  max-width: 168px;
  max-height: 76px;
  object-fit: contain;
}

.clients-rail:hover .clients-track,
.clients-rail:focus-within .clients-track {
  animation-play-state: paused;
}

@keyframes clients-marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media(max-width:980px) {
  .main-nav {
    gap: 22px;
  }

  .client-logo {
    flex-basis: 190px;
    width: 190px;
    height: 96px;
    padding: 12px 18px;
  }

  .client-logo img {
    max-width: 148px;
    max-height: 68px;
  }
}

@media(max-width:760px) {
  .clients-heading {
    margin-bottom: 34px;
  }

  .clients-rail {
    mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
  }

  .clients-track,
  .clients-group {
    gap: 12px;
  }

  .client-logo {
    flex-basis: 164px;
    width: 164px;
    height: 86px;
    padding: 10px 15px;
  }

  @keyframes clients-marquee {
    to {
      transform: translateX(calc(-50% - 6px));
    }
  }
}

@media(prefers-reduced-motion:reduce) {
  .clients-rail {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: none;
  }

  .clients-track {
    animation: none;
  }

  .clients-group[aria-hidden="true"] {
    display: none;
  }
}

/* Estados del formulario */
.form-honeypot {
  position: absolute!important;
  left: -9999px!important;
  width: 1px!important;
  height: 1px!important;
  opacity: 0!important;
  pointer-events: none!important;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
  box-shadow: none;
}

.form-privacy {
  margin: 11px 0 0;
  text-align: center;
  color: #8190a0;
  font-size: 9px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status.success {
  color: #147348;
}

.form-status.error {
  color: #bd3434;
}

/* Fondos adaptados a pantallas pequeñas; se conserva el recorte original. */
@media (max-width: 760px) {
  .hero-photo {
    background-image: url('../img/optimized/B-Estrategia-960.webp');
  }

}

/* Narrativa Hero > Valores > Empresa */
.hero-archive-copy,
.hero-focused .hero-console {
  display: none;
}

.hero-focused .hero-content {
  grid-template-columns: minmax(0,1fr);
  justify-items: center;
  align-items: center;
  height: 100svh;
  padding-top: 0;
}

.hero.hero-focused {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100svh;
  height: 100svh;
  max-height: none;
  align-items: flex-start;
}

.hero-focused .hero-primary-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%,1040px);
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.hero-focused .hero-primary-copy h1 {
  max-width: none;
  margin: 0 0 34px;
  font-size: clamp(64px,8vw,124px);
  line-height: .9;
  letter-spacing: -.075em;
}

.hero-focused .hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font: 600 clamp(21px,2.35vw,34px)/1.25 var(--font-head);
  letter-spacing: -.025em;
  text-wrap: balance;
}

.hero-focused .hero-primary-copy>p {
  max-width: 660px;
  margin: 24px auto 0;
}

.hero-focused .hero-actions,
.hero-focused .hero-proof {
  justify-content: center;
}

.hero-values-scene {
  position: relative;
  background: #030c16;
}

.dark-story {
  position: relative;
  z-index: 4;
  overflow: visible;
  background: #030c16;
  isolation: isolate;
}

.values-overlay-story {
  padding-top: 48svh;
  background: transparent;
}

.dark-story:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1100px;
  height: 1100px;
  left: 50%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(45,23,102,.25),rgba(7,159,253,.07) 38%,transparent 70%);
  filter: blur(30px);
  transform: translateX(-50%);
  pointer-events: none;
}

.values-stage {
  z-index: 3;
  overflow: visible;
  margin-top: -9svh;
  padding: clamp(26px,4vh,48px) 0 0;
  background: transparent;
}

.values-stage:before {
  display: none;
}

.values-panel {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 1600px;
  padding: clamp(46px,5vw,76px) clamp(24px,4.6vw,66px) clamp(54px,6vw,82px);
  border-radius: clamp(26px,3vw,42px);
  background: linear-gradient(145deg,#fff 0%,#f6f9fd 72%,#edf5fc 100%);
  box-shadow: 0 55px 130px rgba(0,0,0,.42),0 0 0 1px rgba(255,255,255,.14);
  opacity: var(--values-opacity,.08);
  transform: translateY(var(--values-shift,132px)) scale(var(--values-scale,.92));
  transform-origin: center top;
  will-change: transform,opacity;
}

.values-panel .section-head {
  margin-bottom: 48px;
}

.company-emergence {
  min-height: 980px;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.company-emergence:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 95% 70% at 50% 52%,#fff 0%,#f5faff 54%,#dceeff 100%);
  opacity: var(--company-light,0);
  will-change: opacity;
}

.company-emergence .about-grid {
  opacity: var(--company-content-opacity,0);
  transform: translateY(var(--company-shift,82px));
  will-change: transform,opacity;
}

.company-emergence .about-copy h2 {
  font-size: clamp(32px,5vw,68px);
  line-height: 1.08;
}

.company-emergence .about-orb {
  opacity: var(--company-light,0);
}

/* Segunda propuesta de Empresa: misión y visión guiadas por scroll. */
.company-horizontal {
  position: relative;
  height: 250svh;
  background: #04111e;
  color: #fff;
}

.company-horizontal-sticky {
  position: sticky;
  top: 72px;
  display: grid;
  align-items: center;
  height: calc(100svh - 72px);
  overflow: hidden;
  background: radial-gradient(circle at 50% 48%,rgba(7,159,253,.12),transparent 38%),linear-gradient(145deg,#061827,#030c16 72%);
  isolation: isolate;
}

.company-horizontal-sticky:before,
.company-horizontal-sticky:after {
  content: "";
  position: absolute;
  z-index: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.company-horizontal-sticky:before {
  width: clamp(760px,72vw,1180px);
  right: clamp(-570px,-30vw,-310px);
  top: 4%;
  background: radial-gradient(circle,transparent 0 43%,rgba(85,190,255,.14) 43.1% 43.45%,rgba(7,159,253,.035) 43.6% 55%,rgba(116,73,226,.13) 55.15% 55.5%,rgba(7,159,253,.026) 55.7% 68%,rgba(85,190,255,.105) 68.15% 68.5%,transparent 68.7%);
  transform: rotate(-11deg) scaleY(1.12);
}

.company-horizontal-sticky:after {
  width: clamp(560px,52vw,820px);
  left: clamp(-420px,-24vw,-230px);
  top: clamp(-440px,-36vw,-270px);
  background: radial-gradient(circle,transparent 0 46%,rgba(116,73,226,.125) 46.15% 46.55%,rgba(7,159,253,.03) 46.75% 61%,rgba(85,190,255,.115) 61.15% 61.5%,transparent 61.7%);
  transform: rotate(18deg) scaleX(1.14);
}

.company-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.company-horizontal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
}

.company-horizontal-heading {
  max-width: 760px;
  margin: 0 auto clamp(30px,5vh,56px);
  text-align: center;
}

.company-horizontal-heading h2 {
  margin: 14px 0 16px;
  font: 700 clamp(34px,4.6vw,64px)/1.08 var(--font-head);
  letter-spacing: -.05em;
}

.company-horizontal-heading h2 span {
  color: #55beff;
}

.company-horizontal-heading p {
  margin: 0;
  color: #9fb0c0;
  font-size: 14px;
}

.company-horizontal-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.company-horizontal-track {
  display: flex;
  align-items: center;
  gap: clamp(70px,10vw,150px);
  width: max-content;
  transform: translate3d(var(--company-track-x,0px),0,0);
  will-change: transform;
}

.company-horizontal-card {
  --company-card-focus: 0;
  position: relative;
  isolation: isolate;
  flex: 0 0 min(720px,68vw);
  min-height: 390px;
  padding: clamp(38px,4vw,58px);
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  color: #0b2033;
  box-shadow: 0 calc(18px + var(--company-card-focus) * 20px) calc(52px + var(--company-card-focus) * 42px) rgba(0,0,0,.32);
  opacity: 1;
  filter: brightness(calc(.72 + var(--company-card-focus) * .28)) saturate(calc(.82 + var(--company-card-focus) * .18));
  transform: translateZ(0) scale(calc(.84 + var(--company-card-focus) * .23));
  transition: color .55s cubic-bezier(.22,.61,.36,1),box-shadow .4s ease,filter .16s linear;
  will-change: transform,filter;
}

.company-horizontal-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg,rgba(255,255,255,.15),transparent 55%,rgba(116,73,226,.62)),var(--blue);
  opacity: 0;
  transition: opacity .55s cubic-bezier(.22,.61,.36,1);
}

.company-horizontal-card:hover,
.company-horizontal-card:focus-within {
  color: #fff;
  box-shadow: 0 38px 95px rgba(7,159,253,.2);
}

.company-horizontal-card:hover:before,
.company-horizontal-card:focus-within:before {
  opacity: 1;
}

.company-card-kicker {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: color .55s ease;
}

.company-horizontal-card h3 {
  margin: 24px 0 18px;
  font: 700 clamp(34px,4vw,54px)/1 var(--font-head);
  letter-spacing: -.045em;
}

.company-horizontal-card p {
  max-width: 590px;
  margin: 0;
  color: #607487;
  font-size: 15px;
  line-height: 1.75;
  transition: color .55s ease;
}

.company-card-line {
  height: 1px;
  margin: 30px 0 18px;
  background: #e7edf3;
  transition: background-color .55s ease;
}

.company-horizontal-card small {
  color: #8090a0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: color .55s ease;
}

.company-horizontal-card:hover .company-card-kicker,
.company-horizontal-card:hover p,
.company-horizontal-card:hover small,
.company-horizontal-card:focus-within .company-card-kicker,
.company-horizontal-card:focus-within p,
.company-horizontal-card:focus-within small {
  color: #fff;
}

.company-horizontal-card:hover .company-card-line,
.company-horizontal-card:focus-within .company-card-line {
  background: rgba(255,255,255,.3);
}

.company-horizontal-progress {
  width: min(240px,42vw);
  height: 3px;
  margin: clamp(24px,4vh,42px) auto 0;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.12);
}

.company-horizontal-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,var(--blue),#7450e8);
  transform: scaleX(var(--company-horizontal-progress,0));
  transform-origin: left;
}

/* Empresa unificada: la introducción clara revela la narrativa oscura. */
.company-combined {
  position: relative;
  height: 300svh;
  background: #04111e;
}

.company-combined-sticky {
  position: sticky;
  top: 72px;
  height: calc(100svh - 72px);
  overflow: hidden;
  background: #04111e;
}

.company-combined .company-horizontal {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  opacity: var(--company-horizontal-opacity,0);
  will-change: opacity;
}

.company-combined .company-horizontal-sticky {
  position: absolute;
  inset: 0;
  top: 0;
  height: 100%;
}

.company-intro-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  height: 100%;
  padding: clamp(34px,5vh,62px) 0;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.company-intro-layer:before {
  opacity: var(--company-intro-bg-opacity,1);
  will-change: opacity;
}

.company-combined .company-intro-layer .about-grid {
  position: relative;
  z-index: 1;
  height: 100%;
  opacity: 1;
  transform: none;
}

.company-intro-layer .about-orb {
  opacity: var(--company-intro-bg-opacity,1);
}

.company-intro-layer .about-visual {
  opacity: var(--company-intro-visual-opacity,1);
  filter: blur(var(--company-intro-visual-blur,0));
  transform: translateY(var(--company-intro-visual-y,0));
  will-change: transform,opacity,filter;
}

.company-intro-layer .about-copy {
  opacity: var(--company-intro-copy-opacity,1);
  filter: blur(var(--company-intro-copy-blur,0));
  transform: translateY(var(--company-intro-copy-y,0));
  will-change: transform,opacity,filter;
}

.company-intro-layer .photo-media {
  height: min(64svh,560px);
}

.company-intro-layer .photo-frame img {
  height: 120%;
}

@media(max-width:760px) {
  .company-combined {
    height: 220svh;
  }

  .company-combined-sticky {
    top: 64px;
    height: calc(100svh - 64px);
  }

  .company-intro-layer {
    padding: clamp(28px,4.5svh,42px) 18px clamp(34px,5.5svh,50px);
  }

  .company-combined .company-intro-layer .about-grid {
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(10px,1.8svh,16px);
  }

  .company-intro-layer .about-visual {
    margin-top: 0;
    will-change: transform,opacity;
  }

  .company-intro-layer .about-copy {
    will-change: transform,opacity;
  }

  .company-intro-layer .photo-media {
    height: clamp(160px,24svh,210px);
  }

  .company-intro-layer .about-copy h2 {
    margin-block: 6px 10px;
    font-size: clamp(30px,9.5vw,40px);
  }

  .company-intro-layer .about-copy p {
    margin-block: 6px;
    font-size: 12px;
    line-height: 1.48;
  }

  .company-intro-layer .text-link {
    margin-top: 8px;
  }

  .company-horizontal {
    height: 220svh;
  }

  .company-horizontal-heading {
    margin-bottom: clamp(12px,2svh,20px);
  }

  .company-horizontal-heading h2 {
    margin: 7px 0 8px;
    font-size: clamp(27px,8.2vw,36px);
  }

  .company-horizontal-heading p {
    font-size: 12px;
  }

  .company-horizontal-track {
    gap: 20px;
  }

  .company-horizontal-card {
    flex-basis: calc(100vw - 64px);
    height: clamp(350px,52svh,405px);
    min-height: 0;
    padding: clamp(24px,3.5svh,32px) 24px;
    transform: translateZ(0) scale(calc(.86 + var(--company-card-focus) * .14));
    filter: none;
    opacity: calc(.78 + var(--company-card-focus) * .22);
    transition: opacity .14s linear,box-shadow .25s ease;
    will-change: transform,opacity;
  }

  .company-horizontal-card h3 {
    margin: 16px 0 13px;
  }

  .company-horizontal-card p {
    line-height: 1.58;
  }

  .company-card-line {
    margin: 20px 0 14px;
  }

  .company-horizontal-progress {
    margin-top: clamp(12px,2svh,20px);
  }

  .company-horizontal-content {
    display: grid;
    grid-template-rows: auto minmax(0,1fr) auto;
    height: 100%;
    padding-block: clamp(14px,2.5svh,24px) 12px;
  }

  .company-horizontal-viewport {
    display: flex;
    min-height: 0;
    align-items: center;
  }
}

@media(prefers-reduced-motion:reduce) {
  .company-horizontal {
    height: auto;
    padding: 90px 0;
  }

  .company-horizontal-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .company-horizontal-track {
    display: grid;
    width: 100%;
    transform: none;
  }

  .company-horizontal-card {
    width: 100%;
    min-height: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .company-combined {
    height: auto;
  }

  .company-combined-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .company-combined .company-intro-layer,
  .company-combined .company-horizontal {
    position: relative;
    inset: auto;
    height: auto;
    opacity: 1;
  }

  .company-combined .company-horizontal-sticky {
    position: relative;
    inset: auto;
    height: auto;
  }

  .company-intro-layer {
    min-height: 100svh;
  }

  .company-intro-layer .about-visual,
  .company-intro-layer .about-copy {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Los heroes anteriores se conservan en el proyecto independiente puntoonline-heroes. */
html[data-hero-preview] main>.dark-story,
html[data-hero-preview] main>section:not(.hero),
html[data-hero-preview] .site-footer,
html[data-hero-preview] .whatsapp-float {
  display: none!important;
}

html[data-hero-preview] body {
  background: #061523;
}

html[data-hero-preview] .hero {
  min-height: 760px;
  height: 100svh;
  max-height: 980px;
}

html[data-hero-preview] .hero-focused .hero-content {
  grid-template-columns: .88fr 1.12fr;
  justify-items: stretch;
}

html[data-hero-preview] .hero-primary-copy {
  display: none;
}

html[data-hero-preview] .hero-archive-copy {
  display: block;
}

html[data-hero-preview] .hero-content {
  opacity: 1!important;
  transform: none!important;
}

html[data-hero-preview] .hero:before {
  display: none;
}

html[data-hero-preview="previous"] .hero-photo {
  left: 52%;
  right: 0;
  background-image: url('../img/optimized/img1-1920.webp');
  opacity: .26;
  filter: saturate(.65) contrast(1.05);
  transform: scale(1.08)!important;
}

html[data-hero-preview="previous"] .hero:after {
  background: linear-gradient(90deg,#061523 0%,rgba(6,21,35,.96) 37%,rgba(6,21,35,.65) 66%,rgba(6,21,35,.18)),linear-gradient(180deg,rgba(3,14,25,.15),transparent 60%,rgba(3,14,25,.88));
}

html[data-hero-preview="current"] .hero-photo {
  transform: scale(1.18)!important;
}

@media (min-width:761px) {
  html[data-hero-preview] .hero-focused .hero-console {
    display: block;
  }
}

@media (max-width:760px) {
  .hero-focused .hero-primary-copy h1 {
    font-size: clamp(52px,15vw,78px);
  }

  .hero-focused .hero-actions {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }

  .hero-focused .hero-actions .button {
    width: 100%;
  }

  .values-stage {
    margin-top: -4svh;
    padding: 24px 14px 0;
  }

  .values-overlay-story {
    padding-top: 12svh;
  }

  .values-panel {
    width: calc(100% - 8px);
    padding: 40px 18px 24px;
    border-radius: 25px;
  }

  .value-card {
    box-shadow: 0 18px 44px rgba(16,48,80,.16),0 4px 14px rgba(16,48,80,.08);
  }

  .company-emergence {
    min-height: auto;
  }
}

@media(prefers-reduced-motion:reduce) {
  .values-panel,
  .company-emergence .about-grid {
    opacity: 1!important;
    transform: none!important;
  }

  .company-emergence:before,
  .company-emergence .about-orb {
    opacity: 1!important;
  }
}

/* Segunda propuesta de contacto: mayor contraste y anclajes visuales */
.contact-proposal {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(110px,10vw,155px);
  background: #e8eef4;
}

.contact-proposal:before {
  position: absolute;
  left: -18%;
  bottom: -45%;
  width: 760px;
  height: 760px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle,rgba(7,159,253,.2),rgba(7,159,253,.06) 40%,transparent 70%);
  filter: blur(8px);
}

.contact-proposal:after {
  position: absolute;
  left: 5%;
  bottom: -80px;
  z-index: -1;
  width: clamp(240px,30vw,430px);
  height: clamp(240px,30vw,430px);
  content: "";
  background: url('../img/optimized/brand-logo.webp') center/contain no-repeat;
  opacity: .045;
  transform: rotate(-10deg);
}

.contact-proposal-orbit {
  position: absolute;
  right: -220px;
  top: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(7,159,253,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(7,159,253,.035),0 0 0 150px rgba(7,159,253,.02);
}

.contact-proposal-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr);
  gap: clamp(60px,8vw,120px);
  align-items: center;
}

.contact-proposal-copy h2 {
  max-width: 620px;
  margin: 14px 0 22px;
  color: #071b2f;
  font-size: clamp(38px,4.2vw,55px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.contact-proposal-copy h2 span {
  color: var(--blue);
}

.contact-proposal-copy>p {
  max-width: 570px;
  margin: 0;
  color: #566c81;
  font-size: 15px;
  line-height: 1.75;
}

.contact-proposal-points {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.contact-proposal-points>a,
.contact-proposal-location {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #142b40;
  text-decoration: none;
}

.contact-proposal-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(7,159,253,.12);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(7,159,253,.18);
}

.contact-proposal-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-proposal-points small,
.contact-proposal-points>*>div>strong {
  display: block;
}

.contact-proposal-points small {
  margin: 2px 0 5px;
  color: #7d8fa0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-proposal-points>*>div>strong {
  color: #10273c;
  font-size: 13px;
}

.contact-proposal-location address {
  display: grid;
  gap: 5px;
  max-width: 540px;
  margin-top: 8px;
  color: #536b81;
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.7;
}

.contact-proposal-location address strong {
  margin-top: 8px;
  color: #10273c;
  font-size: 13px;
}

.contact-proposal-location address b {
  color: #263e54;
}

.contact-proposal-form {
  position: relative;
  padding: clamp(34px,4vw,52px);
  border: 0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(22,50,75,.2),0 8px 26px rgba(22,50,75,.08);
}

.contact-proposal-form:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 190px;
  height: 130px;
  content: "";
  border-radius: 0 26px 0 100%;
  background: radial-gradient(circle at 100% 0,rgba(7,159,253,.18),transparent 68%);
  pointer-events: none;
}

.contact-proposal-form input,
.contact-proposal-form select,
.contact-proposal-form textarea {
  border-color: #d7e1ea;
  border-radius: 13px;
  background: #f4f7fa;
}

.contact-proposal-form input:focus,
.contact-proposal-form select:focus,
.contact-proposal-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7,159,253,.12);
}

.contact-proposal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 13px;
}

.contact-proposal-submit svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
}

.contact-proposal-submit:hover svg {
  transform: translate(3px,-2px);
}

@media (max-width: 980px) {
  .contact-proposal-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-proposal-copy {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .contact-proposal {
    padding-block: 90px;
  }

  .contact-proposal-layout {
    gap: 44px;
  }

  .contact-proposal-copy h2 {
    font-size: clamp(36px,11vw,48px);
  }

  .contact-proposal-form {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .contact-proposal-form .field-row {
    grid-template-columns: 1fr;
  }

  .contact-proposal-form label {
    font-size: 10px;
  }

  .contact-proposal-form input,
  .contact-proposal-form select,
  .contact-proposal-form textarea {
    font-size: 14px;
  }

  .contact-proposal-form .form-heading span {
    font-size: 18px;
  }

  .contact-proposal-form .form-heading small {
    font-size: 9px;
  }

  .contact-proposal-form .form-status {
    font-size: 10px;
  }
}

/* Sistema tipografico consolidado
   Mantiene tres niveles claros: hero, narrativa y secciones. */
.hero-focused .hero-primary-copy h1 {
  font-size: var(--type-hero);
  line-height: .94;
}

.hero-focused .hero-subtitle {
  font-size: var(--type-hero-subtitle);
  line-height: 1.28;
}

.section-head h2,
.company-emergence .about-copy h2,
.featured-products-heading h2,
.clients-heading h2,
.contact-proposal-copy h2 {
  font-size: var(--type-section);
  line-height: 1.06;
}

.brand-film-message,
.company-horizontal-heading h2 {
  font-size: var(--type-section-cinematic);
  line-height: 1.08;
}

.section-head p,
.company-emergence .about-copy > p,
.featured-products-heading p,
.clients-heading p,
.contact-proposal-copy > p {
  font-size: var(--type-intro);
  line-height: 1.7;
}

.value-card h3,
.service-card h3 {
  font-size: var(--type-card-title);
}

.value-card p,
.service-card p {
  font-size: var(--type-card-body);
  line-height: 1.65;
}

.featured-product-copy h3 {
  font-size: var(--type-feature-card-title);
  line-height: 1.16;
}

.featured-product-copy p,
.company-horizontal-card p {
  font-size: var(--type-card-body);
  line-height: 1.7;
}

.company-horizontal-card h3 {
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  line-height: 1.04;
}

@media (max-width: 620px) {
  :root {
    --type-section: clamp(2.125rem, 9.75vw, 2.375rem);
    --type-section-cinematic: clamp(2.25rem, 10.25vw, 2.5rem);
    --type-card-body: .875rem;
  }

  .company-emergence .about-copy > p,
  .section-head p,
  .featured-products-heading p,
  .clients-heading p,
  .contact-proposal-copy > p {
    font-size: .9375rem;
  }
}
