
:root {
  --blue-980: #03102d;
  --blue-950: #06173e;
  --blue-930: #08245e;
  --blue-900: #0a2f7e;
  --blue-850: #123a92;
  --blue-700: #1f5ed6;
  --blue-500: #4e86ff;
  --red-500: #d6222a;
  --red-400: #ef4444;
  --white: #ffffff;
  --text: #1b2a49;
  --muted: #64748b;
  --line: rgba(10, 47, 126, 0.12);
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --shadow-soft: 0 18px 45px rgba(6, 23, 62, 0.08);
  --shadow-md: 0 22px 60px rgba(6, 23, 62, 0.14);
  --shadow-lg: 0 30px 90px rgba(4, 17, 45, 0.18);
  --radius-2xl: 34px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1220px;
  --header-height: 88px;
  --mx: 50%;
  --my: 50%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(31, 94, 214, 0.12), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(214, 34, 42, 0.10), transparent 22%),
    linear-gradient(180deg, #f5f8ff 0%, #ffffff 34%, #f5f8ff 100%);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.22;
  z-index: -1;
  animation: ambientMove 16s ease-in-out infinite alternate;
}

.site-shell::before {
  top: -8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(31, 94, 214, 0.85), transparent 60%);
}

.site-shell::after {
  right: -12rem;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(214, 34, 42, 0.65), transparent 60%);
  animation-duration: 20s;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* ===== HEADER ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border-bottom: 1px solid rgba(10, 47, 126, 0.08);
  box-shadow: 0 10px 30px rgba(6, 23, 62, 0.05);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 10% 0%, rgba(31, 94, 214, 0.08), transparent 25%);
  pointer-events: none;
}

.topbar__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, var(--blue-930), var(--blue-700));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 32px rgba(10, 47, 126, 0.24);
  position: relative;
  overflow: hidden;
}

.brand__mark::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 70%;
  height: 160%;
  transform: rotate(25deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
}

.brand__mark::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand__text strong {
  font-size: 0.98rem;
  line-height: 1.1;
  color: var(--blue-950);
  text-align: left;
}

.brand__text span {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: left;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(10, 47, 126, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--blue-950);
  padding: 12px 16px;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: auto 18px 8px 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-500), var(--blue-700));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(10, 47, 126, 0.08);
  color: var(--blue-900);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(10, 47, 126, 0.10);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(10, 47, 126, 0.08);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 999px;
}

/* ===== BUTTONS ===== */

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.22), transparent 50%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, var(--red-500), var(--blue-700));
  box-shadow: 0 18px 36px rgba(19, 48, 128, 0.24);
}

.btn--secondary {
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(10, 47, 126, 0.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(10, 47, 126, 0.08);
}

.btn--ghost {
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(10, 47, 126, 0.12);
  backdrop-filter: blur(12px);
}

.btn--full {
  width: 100%;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 54px 0 42px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 420px at var(--mx) var(--my), rgba(255, 255, 255, 0.32), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%);
  pointer-events: none;
  z-index: 0;
}

.hero__bg,
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg--1 {
  background:
    radial-gradient(circle at 15% 20%, rgba(214, 34, 42, 0.18), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(31, 94, 214, 0.20), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(10, 47, 126, 0.18), transparent 24%),
    radial-gradient(circle at 28% 84%, rgba(78, 134, 255, 0.15), transparent 16%);
  animation: floatBg 14s ease-in-out infinite alternate;
}

.hero__bg--2 {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(240, 245, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(8, 42, 111, 0.04));
}

.hero__grid {
  background-image:
    linear-gradient(rgba(10, 47, 126, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 47, 126, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 20;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(10, 47, 126, 0.10);
  box-shadow: 0 12px 28px rgba(10, 47, 126, 0.05);
  backdrop-filter: blur(10px);
  width: fit-content;
  text-align: left;
}

.section-tag--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 5.3vw, 5.3rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
  color: var(--blue-950);
  max-width: 780px;
  text-align: left !important;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--red-500);
  position: relative;
  text-align: left !important;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.22em;
  background: linear-gradient(90deg, rgba(214, 34, 42, 0.24), rgba(31, 94, 214, 0.18));
  z-index: -1;
  border-radius: 999px;
}

.hero p {
  margin: 0;
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ===== HERO METRICS ===== */

.hero__stats.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.hero-metric {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 20px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 249, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.70),
    0 20px 42px rgba(7, 26, 73, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  isolation: isolate;
}

.hero-metric::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%);
  pointer-events: none;
  z-index: 0;
}

.hero-metric::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.78;
  animation: metricOrbFloat 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-metric--quality::after {
  background: radial-gradient(circle, rgba(31, 94, 214, 0.16), transparent 72%);
}

.hero-metric--experience::after {
  background: radial-gradient(circle, rgba(214, 34, 42, 0.10), transparent 72%);
}

.hero-metric--tracking::after {
  background: radial-gradient(circle, rgba(31, 94, 214, 0.12), transparent 72%);
}

.hero-metric:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 28px 58px rgba(7, 26, 73, 0.12);
}

.hero-metric__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hero-metric__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 47, 126, 0.08);
  text-align: center;
}

.hero-metric__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0a2f7e;
  box-shadow: 0 0 0 8px rgba(10, 47, 126, 0.08);
  animation: metricDotPulse 2.4s ease-in-out infinite;
}

.hero-metric--experience .hero-metric__dot {
  background: #d6222a;
  box-shadow: 0 0 0 8px rgba(214, 34, 42, 0.08);
}

.hero-metric__dial {
  position: relative;
  z-index: 2;
  width: 148px;
  height: 148px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

.hero-metric__svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
  overflow: visible;
}

.hero-metric__track,
.hero-metric__progress {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.hero-metric__track {
  stroke: rgba(10, 47, 126, 0.10);
}

.hero-metric__progress {
  stroke: #0a2f7e;
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  filter: drop-shadow(0 6px 12px rgba(10, 47, 126, 0.14));
  transition: stroke-dashoffset 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-metric--experience .hero-metric__progress {
  stroke: #d6222a;
  filter: drop-shadow(0 6px 12px rgba(214, 34, 42, 0.14));
}

.hero-metric__value-wrap {
  position: relative;
  z-index: 3;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 16px 28px rgba(7, 26, 73, 0.08);
}

.hero-metric__value-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(10, 47, 126, 0.12);
  animation: metricOuterSpin 16s linear infinite;
}

.hero-metric--experience .hero-metric__value-wrap::before {
  border-color: rgba(214, 34, 42, 0.14);
}

.hero-metric strong {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
  font-size: clamp(2.3rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--blue-950);
  text-align: center;
}

.hero-metric p {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 92%;
  text-align: center !important;
  font-size: 0.97rem;
  line-height: 1.62;
  color: var(--muted);
}

.hero-metric__halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-metric__halo--1 {
  inset: 10px;
  border: 1px solid rgba(10, 47, 126, 0.10);
  animation: metricHaloPulse 2.8s ease-in-out infinite;
}

.hero-metric__halo--2 {
  inset: 22px;
  border: 1px solid rgba(10, 47, 126, 0.06);
  animation: metricHaloPulse 3.4s ease-in-out infinite reverse;
}

.hero-metric--experience .hero-metric__halo--1,
.hero-metric--experience .hero-metric__halo--2 {
  border-color: rgba(214, 34, 42, 0.10);
}

.hero-metric.is-live .hero-metric__progress {
  stroke-dashoffset: var(--metric-offset, 289);
}

/* ===== HERO COVERFLOW CORREGIDO ===== */

.main-showcase__slider.coverflow-slider {
  position: relative;
  z-index: 10;
  margin: -36px 0 0 !important; /* más equilibrado */
  min-height: 720px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.coverflow-slider__stage {
  position: relative;
  min-height: 720px !important;
  padding: 0 24px 28px !important; /* menos aire abajo */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  perspective: 1800px !important;
}

.coverflow-slider__track {
  position: relative !important;
  width: 100% !important;
  height: 610px !important;
  transform: translateY(-18px) !important; /* sube menos */
  transform-style: preserve-3d !important;
}

.coverflow-slider__track::before,
.coverflow-slider__track::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 26, 73, 0.10), transparent 72%);
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

.coverflow-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(360px, 66%, 570px);
  aspect-ratio: 0.74 / 1;
  height: auto;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 36px rgba(7, 26, 73, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s ease,
    filter 0.65s ease;
  z-index: 1;
}

.coverflow-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(7, 26, 73, 0.08);
  user-select: none;
  -webkit-user-drag: none;
}

.coverflow-slide.is-active {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
  z-index: 5;
  filter: blur(0);
}

.coverflow-slide.is-prev {
  transform: translate(calc(-50% - 225px), -50%) scale(0.88);
  opacity: 0.22;
  z-index: 4;
  filter: blur(0.2px);
}

.coverflow-slide.is-next {
  transform: translate(calc(-50% + 225px), -50%) scale(0.88);
  opacity: 0.22;
  z-index: 4;
  filter: blur(0.2px);
}

.coverflow-slide.is-far-prev {
  transform: translate(calc(-50% - 350px), -50%) scale(0.73);
  opacity: 0.03;
  z-index: 2;
  filter: blur(1px);
}

.coverflow-slide.is-far-next {
  transform: translate(calc(-50% + 350px), -50%) scale(0.73);
  opacity: 0.03;
  z-index: 2;
  filter: blur(1px);
}

.coverflow-slide.is-hidden {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 1;
}

/* flechas */
.coverflow-slider__nav {
  position: absolute;
  top: 46%; /* antes 50%, ahora más arriba */
  transform: translateY(-50%);
  z-index: 8;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #264694;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(7, 26, 73, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.coverflow-slider__nav:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(255, 255, 255, 0.92);
}

.coverflow-slider__nav--prev {
  left: 6px;
}

.coverflow-slider__nav--next {
  right: 12px; /* un poco más a la izquierda */
}

/* dots */
.coverflow-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 20px; /* más cerca del carrusel */
  transform: translateX(-50%); /* solo una transformación */
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 18px rgba(7, 26, 73, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.coverflow-slider__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(38, 70, 148, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.coverflow-slider__dot.is-active {
  background: #264694;
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(38, 70, 148, 0.08);
}

/* desktop mediano */
@media (max-width: 1366px) {
  .main-showcase__slider.coverflow-slider {
    min-height: 670px !important;
    margin: -26px 0 0 !important;
  }

  .coverflow-slider__stage {
    min-height: 670px !important;
    padding: 0 20px 24px !important;
  }

  .coverflow-slider__track {
    height: 565px !important;
    transform: translateY(-10px) !important;
  }

  .coverflow-slide {
    width: clamp(320px, 62%, 500px) !important;
  }

  .coverflow-slide.is-active {
    transform: translate(-50%, -50%) scale(1.12) !important;
  }

  .coverflow-slide.is-prev {
    transform: translate(calc(-50% - 175px), -50%) scale(0.86) !important;
    opacity: 0.16 !important;
  }

  .coverflow-slide.is-next {
    transform: translate(calc(-50% + 175px), -50%) scale(0.86) !important;
    opacity: 0.16 !important;
  }

  .coverflow-slide.is-far-prev {
    transform: translate(calc(-50% - 255px), -50%) scale(0.72) !important;
  }

  .coverflow-slide.is-far-next {
    transform: translate(calc(-50% + 255px), -50%) scale(0.72) !important;
  }

  .coverflow-slider__nav {
    top: 46% !important;
  }

  .coverflow-slider__dots {
    bottom: 16px !important;
  }
}

/* laptops y pantallas medianas */
@media (max-width: 1180px) {
  .hero__content {
    grid-template-columns: 1fr 0.95fr !important;
    gap: 24px !important;
  }

  .hero__visual {
    padding-left: 4px;
  }

  .main-showcase__slider.coverflow-slider {
    min-height: 560px !important;
    margin: -12px 0 0 !important;
  }

  .coverflow-slider__stage {
    min-height: 560px !important;
    padding: 0 16px 22px !important;
  }

  .coverflow-slider__track {
    height: 470px !important;
    transform: translateY(-6px) !important;
  }

  .coverflow-slide {
    width: clamp(270px, 60%, 410px) !important;
  }

  .coverflow-slide.is-active {
    transform: translate(-50%, -50%) scale(1.10) !important;
  }

  .coverflow-slide.is-prev {
    transform: translate(calc(-50% - 110px), -50%) scale(0.84) !important;
    opacity: 0.16 !important;
  }

  .coverflow-slide.is-next {
    transform: translate(calc(-50% + 110px), -50%) scale(0.84) !important;
    opacity: 0.16 !important;
  }

  .coverflow-slide.is-far-prev,
  .coverflow-slide.is-far-next {
    opacity: 0 !important;
  }

  .coverflow-slider__nav {
    width: 34px !important;
    height: 34px !important;
    font-size: 1.05rem !important;
    top: 45.5% !important;
  }

  .coverflow-slider__nav--next {
    right: 10px !important;
  }

  .coverflow-slider__dots {
    bottom: 10px !important;
    padding: 9px 14px !important;
  }
}

/* tablets */
@media (max-width: 991px) {
  .hero__content {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .hero__copy {
    order: 1 !important;
  }

  .hero__visual {
    order: 2 !important;
    padding-left: 0 !important;
    margin-top: 8px !important;
  }

  .main-showcase__top {
    justify-content: center;
  }

  .main-showcase__slider.coverflow-slider {
    min-height: 510px !important;
    margin: 0 !important;
  }

  .coverflow-slider__stage {
    min-height: 510px !important;
    padding: 0 8px 38px !important;
  }

  .coverflow-slider__track {
    height: 420px !important;
    transform: none !important;
  }

  .coverflow-slide {
    width: clamp(250px, 68%, 380px) !important;
  }

  .coverflow-slide.is-active {
    transform: translate(-50%, -50%) scale(1.06) !important;
  }

  .coverflow-slide.is-prev {
    transform: translate(calc(-50% - 90px), -50%) scale(0.81) !important;
    opacity: 0.12 !important;
  }

  .coverflow-slide.is-next {
    transform: translate(calc(-50% + 90px), -50%) scale(0.81) !important;
    opacity: 0.12 !important;
  }

  .coverflow-slide.is-far-prev,
  .coverflow-slide.is-far-next {
    display: none !important;
  }

  .coverflow-slider__nav {
    top: 46% !important;
  }

  .coverflow-slider__nav--next {
    right: 6px !important;
  }

  .coverflow-slider__dots {
    bottom: 6px !important;
    padding: 9px 14px !important;
  }
}

/* ===== GENERAL SECTIONS ===== */

.section {
  padding: 104px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--light {
  background:
    linear-gradient(180deg, rgba(245, 248, 255, 0.65), rgba(255, 255, 255, 0.92));
}

.section--light::before {
  background:
    radial-gradient(circle at 10% 20%, rgba(31, 94, 214, 0.10), transparent 18%),
    radial-gradient(circle at 90% 80%, rgba(214, 34, 42, 0.08), transparent 18%);
}

.section--accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 23, 62, 0.98), rgba(10, 47, 126, 0.95) 60%, rgba(18, 58, 146, 0.92));
  overflow: clip;
}

.section--accent::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(214, 34, 42, 0.25), transparent 18%),
    radial-gradient(circle at 78% 78%, rgba(78, 134, 255, 0.22), transparent 18%);
  animation: accentFlow 14s linear infinite alternate;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: start;
}

.content-block h2,
.section-heading h2,
.contact-copy h2,
.cta-box h2,
.about-panel__content h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--blue-950);
  text-align: left;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--white);
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.80);
}

.content-block p,
.section-heading p,
.contact-copy p,
.cta-box p,
.about-panel p,
.service-card p,
.timeline-card p,
.highlight-card p,
.contact-form small,
.footer p,
.footer li,
.footer span,
.contact-cards span {
  color: var(--muted);
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
}

/* ===== ABOUT ===== */

.about-brand .split-layout {
  position: relative;
  z-index: 2;
  align-items: start;
  gap: 34px;
}

.about-panels {
  display: grid;
  gap: 22px;
  position: relative;
}

.about-panel {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 24px 166px 22px 24px;
  overflow: visible;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 249, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 18px 42px rgba(7, 26, 73, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 45%);
  pointer-events: none;
}

.about-panel:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 26px 56px rgba(7, 26, 73, 0.12);
}

.about-panel--mission {
  border-radius: 32px 70px 32px 32px;
}

.about-panel--vision {
  border-radius: 70px 32px 32px 32px;
}

.about-panel--values {
  border-radius: 32px 32px 70px 32px;
}

.about-panel__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.about-panel__content h2 {
  font-size: 2rem;
  margin: 0 0 12px;
}

.about-panel__image {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 196px;
  max-width: none;
  height: auto;
  z-index: 3;
  pointer-events: none;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(7, 26, 73, 0.14));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.about-panel:hover .about-panel__image {
  transform: translateY(calc(-50% - 4px)) scale(1.03);
  filter: drop-shadow(0 16px 22px rgba(7, 26, 73, 0.18));
}

.about-panel--mission .about-panel__image {
  width: 198px;
  right: -22px;
}

.about-panel--vision .about-panel__image {
  width: 190px;
  right: -24px;
}

.about-panel--values .about-panel__image {
  width: 190px;
  right: -22px;
}

/* ===== SERVICES / HIGHLIGHTS / TIMELINE ===== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.timeline-card,
.highlight-card,
.contact-cards article,
.contact-form,
.cta-box {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.service-card,
.timeline-card,
.highlight-card {
  border-radius: 26px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease, background 0.34s ease;
  will-change: transform;
}

.service-card::before,
.timeline-card::before,
.highlight-card::before,
.contact-form::before,
.contact-cards article::before,
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 45%);
  pointer-events: none;
}

.service-card:hover,
.timeline-card:hover,
.highlight-card:hover,
.contact-cards article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(10, 47, 126, 0.14);
}

.service-card {
  min-height: 255px;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 94, 214, 0.20), transparent 68%);
}

.service-card__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(214, 34, 42, 0.18), rgba(31, 94, 214, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.34);
  margin-bottom: 20px;
  box-shadow: 0 14px 30px rgba(10, 47, 126, 0.10);
  position: relative;
  z-index: 2;
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--blue-900);
  stroke-width: 1.8;
}

.service-card h3,
.timeline-card h3,
.highlight-card h3,
.contact-form h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--blue-950);
  position: relative;
  z-index: 2;
  text-align: left;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.20));
  z-index: 0;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.timeline-card h3,
.timeline-card p {
  color: var(--white);
}

.timeline-card p {
  color: rgba(255, 255, 255, 0.78);
}

.timeline-card span {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, var(--blue-900), var(--red-500));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(10, 47, 126, 0.20);
  position: relative;
  z-index: 2;
}


/* ===== CTA ===== */

.cta-section {
  padding-top: 24px;
}

.cta-box {
  color: var(--white);
  border-radius: 32px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, var(--blue-930), var(--blue-700));
  box-shadow: 0 32px 70px rgba(10, 47, 126, 0.22);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 34, 42, 0.28), transparent 60%);
  filter: blur(6px);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.cta-box .btn {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(12px);
}

/* ===== CONTACT ===== */

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-cards article {
  padding: 20px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.contact-cards strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-900);
  position: relative;
  z-index: 2;
  text-align: left;
}

.contact-form {
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 16px;
}

.label-full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--blue-950);
  text-align: left;
}

input,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(10, 47, 126, 0.10);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(10px);
  padding: 15px 16px;
  color: var(--blue-950);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

input::placeholder,
textarea::placeholder {
  color: #8190a7;
}

input:focus,
textarea:focus {
  border-color: rgba(31, 94, 214, 0.42);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(31, 94, 214, 0.10), 0 14px 28px rgba(10, 47, 126, 0.08);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */

.footer {
  background: linear-gradient(180deg, #05142f 0%, #06173e 100%);
  color: var(--white);
  padding: 84px 0 24px;
  position: relative;
  overflow: clip;
}

.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 34, 42, 0.20), transparent 60%);
  filter: blur(12px);
}

.brand--footer .brand__text strong,
.brand--footer .brand__text span,
.footer h4,
.footer a,
.footer li,
.footer span,
.footer p {
  color: rgba(255, 255, 255, 0.90);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.8fr;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-align: left;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer a {
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer__bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ===== WHATSAPP ===== */

.whatsapp-float.whatsapp-float--stacked {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  animation: whatsappLift 3.6s ease-in-out infinite;
}

.whatsapp-float__img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.16));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.whatsapp-float__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  color: #ffffff;
  background: rgba(10, 47, 126, 0.92);
  box-shadow: 0 12px 24px rgba(7, 26, 73, 0.18);
  white-space: nowrap;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-align: center;
}

.whatsapp-float.whatsapp-float--stacked:hover .whatsapp-float__img {
  transform: scale(1.08) rotate(-6deg);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.20));
}

.whatsapp-float.whatsapp-float--stacked:hover .whatsapp-float__label {
  transform: translateY(2px);
  box-shadow: 0 16px 28px rgba(7, 26, 73, 0.22);
}

/* ===== UTILITIES ===== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

/* ===== PARAGRAPH JUSTIFY ONLY ===== */

p,
li,
small,
.contact-cards span,
.footer p,
.footer li,
.footer span,
.about-panel p,
.hero-metric p,
.content-block p,
.section-heading p,
.service-card p,
.timeline-card p,
.highlight-card p,
.contact-copy p,
.contact-form small {
  text-align: justify;
  text-justify: inter-word;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.hero h2,
.eyebrow,
.section-tag,
.btn,
.nav a,
.brand__text strong,
.brand__text span,
.hero-metric__eyebrow,
.whatsapp-float__label {
  text-align: left;
  text-justify: auto;
}

/* ===== ANIMATIONS ===== */

@keyframes floatBg {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -18px, 0) scale(1.03);
  }
}

@keyframes ambientMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(30px, -25px, 0) scale(1.08);
  }
}

@keyframes accentFlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-22px, 18px, 0) scale(1.06);
  }
}

@keyframes metricOuterSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes metricOrbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(8px) scale(1.06);
  }
}

@keyframes metricHaloPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.10;
    transform: scale(1.05);
  }
}

@keyframes metricDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes whatsappLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1366px) {
  .main-showcase__slider.coverflow-slider {
    min-height: 700px;
    margin-top: -58px;
  }

  .coverflow-slider__stage {
    min-height: 700px;
  }

  .coverflow-slider__track {
    height: 600px;
  }

  .coverflow-slide {
    width: clamp(320px, 62%, 500px);
  }

  .coverflow-slide.is-active {
    transform: translate(-50%, -50%) scale(1.12);
  }

  .coverflow-slide.is-prev {
    transform: translate(calc(-50% - 175px), -50%) scale(0.86);
    opacity: 0.16;
  }

  .coverflow-slide.is-next {
    transform: translate(calc(-50% + 175px), -50%) scale(0.86);
    opacity: 0.16;
  }

  .coverflow-slide.is-far-prev {
    transform: translate(calc(-50% - 255px), -50%) scale(0.72);
  }

  .coverflow-slide.is-far-next {
    transform: translate(calc(-50% + 255px), -50%) scale(0.72);
  }
}

@media (max-width: 1180px) {
  .hero__content {
    grid-template-columns: 1fr 0.95fr;
    gap: 24px;
  }

  .main-showcase__slider.coverflow-slider {
    min-height: 580px;
    margin-top: -34px;
  }

  .coverflow-slider__stage {
    min-height: 580px;
    padding: 0 16px 46px;
  }

  .coverflow-slider__track {
    height: 490px;
  }

  .coverflow-slide {
    width: clamp(270px, 60%, 410px);
  }

  .coverflow-slide.is-active {
    transform: translate(-50%, -50%) scale(1.10);
  }

  .coverflow-slide.is-prev {
    transform: translate(calc(-50% - 110px), -50%) scale(0.84);
    opacity: 0.16;
  }

  .coverflow-slide.is-next {
    transform: translate(calc(-50% + 110px), -50%) scale(0.84);
    opacity: 0.16;
  }

  .coverflow-slide.is-far-prev,
  .coverflow-slide.is-far-next {
    opacity: 0;
  }

  .coverflow-slider__nav {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }

  .coverflow-slider__nav--next {
    right: 10px;
  }

  .services-grid,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-panel {
    min-height: 200px;
    padding: 22px 138px 20px 20px;
    border-radius: 26px !important;
  }

  .about-panel__image,
  .about-panel--mission .about-panel__image,
  .about-panel--vision .about-panel__image,
  .about-panel--values .about-panel__image {
    width: 152px;
    right: -16px;
  }
}

@media (max-width: 991px) {
  .hero__content,
  .split-layout,
  .contact-layout,
  .footer__grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero__stats.hero-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-metric {
    padding: 18px 16px 18px;
    border-radius: 24px;
  }

  .hero-metric__dial {
    width: 132px;
    height: 132px;
  }

  .hero-metric__value-wrap {
    width: 96px;
    height: 96px;
  }

  .hero-metric p {
    max-width: 100%;
  }

  .about-panel {
    min-height: 190px;
    padding: 22px 138px 20px 20px;
    border-radius: 26px !important;
  }

  .about-panel__content h2 {
    font-size: 1.5rem;
  }

  .about-panel p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .services-grid,
  .highlight-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(6, 23, 62, 0.10);
  }

  .nav a {
    width: 100%;
  }

  .nav.is-open {
    display: flex;
  }

  .header-actions .btn--ghost {
    display: none;
  }

  .hero,
  .section {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 4rem);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .whatsapp-float.whatsapp-float--stacked {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 768px) {
  .hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
    margin-top: 20px;
  }

  .hero__cta .btn {
    width: 100%;
    min-width: 0;
    padding: 12px 10px;
    font-size: 0.92rem;
    text-align: center;
    border-radius: 18px;
    white-space: nowrap;
  }

  .hero__stats.hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
    align-items: stretch;
  }

  .hero-metric {
    padding: 12px 8px 12px;
    border-radius: 18px;
    min-height: 190px;
  }

  .hero-metric__top {
    margin-bottom: 8px;
    justify-content: center;
  }

  .hero-metric__eyebrow {
    font-size: 0.62rem;
    padding: 5px 8px;
    text-align: center;
  }

  .hero-metric__dot {
    display: none;
  }

  .hero-metric__dial {
    width: 86px;
    height: 86px;
    margin: 0 auto 8px;
  }

  .hero-metric__track,
  .hero-metric__progress {
    stroke-width: 7;
  }

  .hero-metric__value-wrap {
    width: 62px;
    height: 62px;
  }

  .hero-metric__value-wrap::before {
    inset: -5px;
  }

  .hero-metric strong {
    font-size: 1.55rem;
  }

  .hero-metric p {
    font-size: 0.74rem;
    line-height: 1.35;
    text-align: center !important;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-metric__halo--1 {
    inset: 8px;
  }

  .hero-metric__halo--2 {
    inset: 16px;
  }

  .hero__visual,
  .main-showcase__slider.coverflow-slider {
    display: none !important;
  }

  .about-panel {
    display: flex;
    flex-direction: column;
    padding: 18px 16px !important;
    min-height: auto;
    border-radius: 22px !important;
  }

  .about-panel__image,
  .about-panel--mission .about-panel__image,
  .about-panel--vision .about-panel__image,
  .about-panel--values .about-panel__image {
    position: relative !important;
    order: -1;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: block;
    margin: 0 auto 9px auto;
    width: 120px !important;
    height: auto;
  }

  .about-panel:hover .about-panel__image {
    transform: translateY(-2px) scale(1.02) !important;
  }

  .whatsapp-float.whatsapp-float--stacked {
    right: 12px;
    bottom: 12px;
    gap: 4px;
  }

  .whatsapp-float__img {
    width: 64px;
    height: 64px;
  }

  .whatsapp-float__label {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

@media (max-width: 560px) {
  .brand__text span {
    display: none;
  }

  .topbar__inner {
    gap: 12px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero {
    padding-top: 62px;
  }

  .hero__cta {
    gap: 8px;
  }

  .hero__cta .btn {
    padding: 11px 8px;
    font-size: 0.84rem;
    border-radius: 16px;
  }

  .hero__stats.hero-metrics {
    gap: 6px;
    margin-top: 18px;
  }

  .hero-metric {
    padding: 10px 6px 10px;
    border-radius: 16px;
    min-height: 172px;
  }

  .hero-metric__eyebrow {
    font-size: 0.58rem;
    padding: 4px 7px;
  }

  .hero-metric__dial {
    width: 74px;
    height: 74px;
    margin-bottom: 7px;
  }

  .hero-metric__track,
  .hero-metric__progress {
    stroke-width: 6.5;
  }

  .hero-metric__value-wrap {
    width: 54px;
    height: 54px;
  }

  .hero-metric strong {
    font-size: 1.28rem;
  }

  .hero-metric p {
    font-size: 0.66rem;
    line-height: 1.28;
  }

  .about-panel {
    padding: 16px 14px !important;
  }

  .about-panel__content h2 {
    font-size: 1.3rem;
  }

  .about-panel p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-panel__image,
  .about-panel--mission .about-panel__image,
  .about-panel--vision .about-panel__image,
  .about-panel--values .about-panel__image {
    width: 120px !important;
  }
}

@media (max-width: 420px) {
  .hero__cta .btn {
    font-size: 0.78rem;
    padding: 10px 6px;
    letter-spacing: -0.01em;
  }

  .hero__stats.hero-metrics {
    gap: 5px;
  }

  .hero-metric {
    padding: 9px 5px 9px;
    min-height: 160px;
  }

  .hero-metric__eyebrow {
    font-size: 0.54rem;
    padding: 4px 6px;
  }

  .hero-metric__dial {
    width: 66px;
    height: 66px;
  }

  .hero-metric__value-wrap {
    width: 48px;
    height: 48px;
  }

  .hero-metric strong {
    font-size: 1.12rem;
  }

  .hero-metric p {
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .about-panel__image,
  .about-panel--mission .about-panel__image,
  .about-panel--vision .about-panel__image,
  .about-panel--values .about-panel__image {
    width: 150px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   VIDEO OFFSET FULL WIDTH / WEBM
   ========================================================= */

.section--video-offset {
  padding: 0 !important;
  position: relative;
}

.video-offset {
  position: relative;
  width: 100%;
  min-height: 560px; /* más bajo */
  border-radius: 0;
  overflow: hidden;
  background: #071833;
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.video-offset::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 34, 42, 0.14), transparent 20%),
    radial-gradient(circle at 14% 82%, rgba(31, 94, 214, 0.14), transparent 20%);
  pointer-events: none;
  z-index: 2;
}

.video-offset__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.video-offset__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 45, 0.00) 0%,
      rgba(4, 17, 45, 0.10) 32%,
      rgba(4, 17, 45, 0.84) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 17, 45, 0.00) 0%,
      rgba(4, 17, 45, 0.14) 46%,
      rgba(4, 17, 45, 0.34) 100%
    );
}

.video-offset__content {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  padding: 44px 52px;
  margin-left: auto;
  max-width: 760px;
}

.video-offset__tag,
.video-offset__content h2,
.video-offset__content p {
  opacity: 0;
  transform: translateY(24px);
  animation: videoTextRise 1s ease forwards;
}

.video-offset__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation-delay: 0.15s;
}

.video-offset__content h2 {
  position: relative;
  margin: 0 0 14px;
  max-width: 650px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0,0,0,0.28);
  text-align: right !important;
  animation-delay: 0.35s;
}

.video-offset__content h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 180px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.72));
  opacity: 0;
  animation: videoLineIn 1s ease forwards;
  animation-delay: 0.85s;
}

.video-offset__content p {
  margin: 0;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.84);
  text-shadow: 0 10px 24px rgba(0,0,0,0.22);
  text-align: right !important;
  animation-delay: 0.58s;
}

@keyframes videoTextRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes videoLineIn {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 180px;
  }
}

/* tablet */
@media (max-width: 991px) {
  .video-offset {
    min-height: 470px;
  }

  .video-offset__content {
    min-height: 470px;
    padding: 34px 28px;
    max-width: 100%;
  }

  .video-offset__content h2 {
    max-width: 540px;
    font-size: clamp(1.7rem, 4.8vw, 2.6rem);
  }

  .video-offset__content p {
    max-width: 460px;
    font-size: 0.96rem;
    line-height: 1.68;
  }
}

/* móvil */
@media (max-width: 768px) {
  .video-offset {
    min-height: 360px;
  }

  .video-offset__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(4, 17, 45, 0.06) 0%,
        rgba(4, 17, 45, 0.20) 34%,
        rgba(4, 17, 45, 0.84) 100%
      );
  }

  .video-offset__content {
    min-height: 360px;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 22px 18px;
  }

  .video-offset__tag {
    margin-bottom: 10px;
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .video-offset__content h2 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 7vw, 1.95rem);
    line-height: 1.08;
    text-align: left !important;
  }

  .video-offset__content h2::after {
    left: 0;
    right: auto;
    width: 120px;
  }

  .video-offset__content p {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.58;
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  .video-offset {
    min-height: 320px;
  }

  .video-offset__content {
    min-height: 320px;
    padding: 18px 16px;
  }

  .video-offset__content h2 {
    font-size: clamp(1.18rem, 7.4vw, 1.65rem);
  }

  .video-offset__content p {
    font-size: 0.84rem;
  }
}

/* =========================================================
   SERVICIOS - SHOWCASE INTERACTIVO
   ========================================================= */

.section--services-pro {
  position: relative;
}

.section--services-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 94, 214, 0.08), transparent 18%),
    radial-gradient(circle at 88% 82%, rgba(214, 34, 42, 0.08), transparent 18%);
}

.service-showcase__heading {
  position: relative;
  z-index: 2;
}

.service-showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-showcase-card {
  position: relative;
  height: 470px;
  border-radius: 28px;
  overflow: hidden;
  background: #141e33;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 22px 50px rgba(7, 26, 73, 0.14);
  isolation: isolate;
  transition: transform 0.42s ease, box-shadow 0.42s ease;
  outline: none;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 30px 64px rgba(7, 26, 73, 0.20);
}

.service-showcase-card:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 3px rgba(255,255,255,0.08),
    0 30px 64px rgba(7, 26, 73, 0.22);
}

.service-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--service-accent, #1f5ed6);
  clip-path: circle(150px at 82% 18%);
  transition: clip-path 0.55s ease;
  z-index: 0;
}

.service-showcase-card:hover::before,
.service-showcase-card:focus-visible::before {
  clip-path: circle(320px at 82% -4%);
}

.service-showcase-card::after {
  content: attr(data-mark);
  position: absolute;
  left: -6%;
  top: 34%;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 0;
}

.service-showcase-card:nth-child(1) { --service-accent: #0f3fa3; }
.service-showcase-card:nth-child(2) { --service-accent: #d6222a; }
.service-showcase-card:nth-child(3) { --service-accent: #1648ae; }
.service-showcase-card:nth-child(4) { --service-accent: #123a92; }
.service-showcase-card:nth-child(5) { --service-accent: #c93535; }
.service-showcase-card:nth-child(6) { --service-accent: #1f5ed6; }

.service-showcase-card__visual {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 100%;
  height: 280px;
  transform: translate(-50%, -50%);
  transition: top 0.55s ease, transform 0.55s ease;
  z-index: 2;
  pointer-events: none;
}

.service-showcase-card:hover .service-showcase-card__visual,
.service-showcase-card:focus-visible .service-showcase-card__visual {
  top: 11%;
  transform: translate(-50%, 0);
}

.service-showcase-card__image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 285px;
  height: 285px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: filter 0.35s ease, transform 0.35s ease;
  filter: drop-shadow(0 24px 34px rgba(4, 17, 45, 0.24));
}

.service-showcase-card__shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  background:
    linear-gradient(180deg, rgba(6, 23, 62, 0.12) 0%, rgba(6, 23, 62, 0.28) 42%, rgba(6, 23, 62, 0.60) 100%);
}

.service-showcase-card:hover .service-showcase-card__shade,
.service-showcase-card:focus-visible .service-showcase-card__shade {
  opacity: 1;
}

.service-showcase-card:hover .service-showcase-card__image,
.service-showcase-card:focus-visible .service-showcase-card__image {
  filter: brightness(0.78) saturate(0.92) drop-shadow(0 22px 34px rgba(4, 17, 45, 0.30));
}

.service-showcase-card__body {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 112px;
  padding: 0 22px 20px;
  text-align: left;
  transition: height 0.75s ease;
  z-index: 5;
}

.service-showcase-card:hover .service-showcase-card__body,
.service-showcase-card:focus-visible .service-showcase-card__body {
  height: 252px;
}

.service-showcase-card__body h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.service-showcase-card__body p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    visibility 0.42s ease;
}

.service-showcase-card:hover .service-showcase-card__body p,
.service-showcase-card:focus-visible .service-showcase-card__body p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.14s;
}

.service-showcase-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    visibility 0.42s ease;
}

.service-showcase-card:hover .service-showcase-card__meta,
.service-showcase-card:focus-visible .service-showcase-card__meta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.service-showcase-card__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* TABLET */
@media (max-width: 991px) {
  .service-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .service-showcase-card {
    height: 430px;
  }

  .service-showcase-card__visual {
    height: 180px;
  }

  .service-showcase-card__image {
    width: 190px;
    height: 190px;
  }

  .service-showcase-card__body h3 {
    font-size: 1.08rem;
  }

  .service-showcase-card__body p {
    font-size: 0.9rem;
  }
}

/* MÓVIL / PANTALLAS PEQUEÑAS */
@media (max-width: 768px) {
  .service-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .service-showcase-card {
    height: 320px;
    border-radius: 22px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: height 0.45s ease, transform 0.35s ease, box-shadow 0.35s ease;
  }

  .service-showcase-card:hover {
    transform: none;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.05),
      0 22px 50px rgba(7, 26, 73, 0.14);
  }

  .service-showcase-card:hover::before {
    clip-path: circle(92px at 82% 18%);
  }

  .service-showcase-card:hover .service-showcase-card__visual {
    top: 31%;
    transform: translate(-50%, -50%);
  }

  .service-showcase-card:hover .service-showcase-card__shade {
    opacity: 0;
  }

  .service-showcase-card:hover .service-showcase-card__image {
    filter: drop-shadow(0 24px 34px rgba(4, 17, 45, 0.24));
  }

  .service-showcase-card:hover .service-showcase-card__body {
    height: 92px;
  }

  .service-showcase-card:hover .service-showcase-card__body p,
  .service-showcase-card:hover .service-showcase-card__meta {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
  }

  .service-showcase-card::before {
    clip-path: circle(92px at 82% 18%);
    transition: clip-path 0.45s ease;
  }

  .service-showcase-card::after {
    top: 28%;
    left: -10%;
    font-size: 2.5rem;
  }

  .service-showcase-card__visual {
    top: 31%;
    height: 132px;
    transform: translate(-50%, -50%);
    transition: top 0.45s ease, transform 0.45s ease;
  }

  .service-showcase-card__image {
    width: 132px;
    height: 132px;
  }

  .service-showcase-card__body {
    height: 92px;
    padding: 0 14px 14px;
    transition: height 0.45s ease;
  }

  .service-showcase-card__body h3 {
    font-size: 0.94rem;
    margin-bottom: 6px;
  }

  .service-showcase-card__body p {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    font-size: 0.78rem;
    line-height: 1.42;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  .service-showcase-card__meta {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    margin-top: 10px;
    gap: 6px;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  .service-showcase-card__meta span {
    font-size: 0.62rem;
    padding: 6px 8px;
  }

  .service-showcase-card.is-open {
    height: 395px;
    transform: translateY(-4px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.06),
      0 28px 58px rgba(7, 26, 73, 0.18);
  }

  .service-showcase-card.is-open::before {
    clip-path: circle(220px at 82% 10%);
  }

  .service-showcase-card.is-open .service-showcase-card__visual {
    top: 11%;
    transform: translate(-50%, 0);
  }

  .service-showcase-card.is-open .service-showcase-card__shade {
    opacity: 1;
  }

  .service-showcase-card.is-open .service-showcase-card__image {
    filter: brightness(0.78) saturate(0.90) drop-shadow(0 22px 34px rgba(4, 17, 45, 0.30));
  }

  .service-showcase-card.is-open .service-showcase-card__body {
    height: 210px;
  }

  .service-showcase-card.is-open .service-showcase-card__body p,
  .service-showcase-card.is-open .service-showcase-card__meta {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (max-width: 420px) {
  .service-showcase-card {
    height: 305px;
  }

  .service-showcase-card__image {
    width: 118px;
    height: 118px;
  }

  .service-showcase-card__body {
    height: 88px;
    padding: 0 12px 12px;
  }

  .service-showcase-card__body h3 {
    font-size: 0.86rem;
  }

  .service-showcase-card.is-open {
    height: 382px;
  }

  .service-showcase-card.is-open .service-showcase-card__body {
    height: 214px;
  }

  .service-showcase-card.is-open .service-showcase-card__body p {
    font-size: 0.74rem;
    line-height: 1.36;
  }
}

/* =========================================================
   WORKFLOW PRO
   ========================================================= */

.section--workflow-pro {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6,23,62,0.99), rgba(10,47,126,0.96) 58%, rgba(18,58,146,0.94));
  overflow: clip;
}

.section--workflow-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.07), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(214,34,42,0.22), transparent 18%),
    radial-gradient(circle at 80% 82%, rgba(78,134,255,0.18), transparent 18%);
}

.workflow-pro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.workflow-pro__intro {
  position: sticky;
  top: 108px;
}

.workflow-pro__intro h2 {
  margin: 18px 0 16px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.workflow-pro__intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.82);
}

.workflow-pro__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.workflow-pro__highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.workflow-monitor {
  position: relative;
  margin-top: 28px;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 24px 48px rgba(4,17,45,0.18);
  overflow: hidden;
}

.workflow-monitor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.10), transparent 50%);
  pointer-events: none;
}

.workflow-monitor__header,
.workflow-monitor__screen {
  position: relative;
  z-index: 2;
}

.workflow-monitor__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.workflow-monitor__header small {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.68);
}

.workflow-monitor__live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  animation: workflowLivePulse 2.4s ease-in-out infinite;
}

.workflow-monitor__screen {
  position: relative;
  min-height: 260px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(3,16,45,0.70), rgba(3,16,45,0.42));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.workflow-monitor__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 22%, rgba(78,134,255,0.22), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(214,34,42,0.16), transparent 24%);
  pointer-events: none;
  animation: workflowGlowShift 8s ease-in-out infinite alternate;
}

.workflow-monitor__progress {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.workflow-monitor__progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0.33);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.35));
  transition: transform 0.55s ease;
}

.workflow-monitor__status {
  position: relative;
  z-index: 2;
  max-width: 88%;
}

.workflow-monitor__status strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.15;
  color: #ffffff;
}

.workflow-monitor__status p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.82);
}

.workflow-monitor__pulse-grid {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 112px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  z-index: 2;
}

.workflow-monitor__pulse-grid span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  animation: workflowDotPulse 2.4s ease-in-out infinite;
}

.workflow-monitor__pulse-grid span:nth-child(2),
.workflow-monitor__pulse-grid span:nth-child(7),
.workflow-monitor__pulse-grid span:nth-child(12) { animation-delay: .15s; }

.workflow-monitor__pulse-grid span:nth-child(3),
.workflow-monitor__pulse-grid span:nth-child(8),
.workflow-monitor__pulse-grid span:nth-child(13) { animation-delay: .3s; }

.workflow-monitor__pulse-grid span:nth-child(4),
.workflow-monitor__pulse-grid span:nth-child(9),
.workflow-monitor__pulse-grid span:nth-child(14) { animation-delay: .45s; }

.workflow-monitor__pulse-grid span:nth-child(5),
.workflow-monitor__pulse-grid span:nth-child(10),
.workflow-monitor__pulse-grid span:nth-child(15) { animation-delay: .6s; }

.workflow-pro__stages {
  display: grid;
  gap: 18px;
}

.workflow-stage {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 18px 42px rgba(4,17,45,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0.72;
}

.workflow-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}

.workflow-stage__line {
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.workflow-stage__line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.96), rgba(255,255,255,0.18));
  transform: translateY(100%);
}

.workflow-stage__top,
.workflow-stage h3,
.workflow-stage p {
  position: relative;
  z-index: 2;
}

.workflow-stage__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.workflow-stage__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.workflow-stage__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  color: rgba(255,255,255,0.96);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  white-space: nowrap;
}

.workflow-stage h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.workflow-stage p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.82);
}

.workflow-stage.is-live {
  animation: workflowStageIn .7s ease forwards;
}

.workflow-stage.is-current {
  opacity: 1;
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255,255,255,0.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 28px 58px rgba(4,17,45,0.24);
}

.workflow-stage.is-current .workflow-stage__line::before {
  animation: workflowLineRun .9s ease forwards;
}

.workflow-stage.is-current .workflow-stage__number {
  animation: workflowNumberPulse 1.8s ease-in-out infinite;
}

@keyframes workflowStageIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 0.88;
    transform: translateY(0);
  }
}

@keyframes workflowLineRun {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes workflowNumberPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 0 0 10px rgba(255,255,255,0.04);
  }
}

@keyframes workflowLivePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.10);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(255,255,255,0.04);
  }
}

@keyframes workflowDotPulse {
  0%, 100% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.45);
  }
}

@keyframes workflowGlowShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(14px, -10px, 0);
  }
}

@media (max-width: 1100px) {
  .workflow-pro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-pro__intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .workflow-pro__intro h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .workflow-monitor {
    border-radius: 24px;
    padding: 18px;
  }

  .workflow-monitor__screen {
    min-height: 220px;
    padding: 18px;
    border-radius: 20px;
  }

  .workflow-monitor__status {
    max-width: 100%;
  }

  .workflow-monitor__pulse-grid {
    width: 92px;
    gap: 6px;
  }

  .workflow-pro__stages {
    gap: 14px;
  }

  .workflow-stage {
    padding: 20px 18px 18px;
    border-radius: 22px;
  }

  .workflow-stage__top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .workflow-stage__number {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .workflow-stage h3 {
    font-size: 1.08rem;
  }

  .workflow-stage p {
    font-size: 0.9rem;
    line-height: 1.62;
  }
}

/* =========================================================
   CONTACTO PRO
   ========================================================= */

.section--contact-pro {
  position: relative;
  padding-top: 100px;
  padding-bottom: 110px;
}

.section--contact-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(31, 94, 214, 0.08), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(214, 34, 42, 0.08), transparent 18%),
    radial-gradient(circle at 82% 82%, rgba(31, 94, 214, 0.08), transparent 18%);
}

.contact-pro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.contact-pro__intro h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--blue-950);
}

.contact-pro__intro > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.82;
  color: var(--muted);
}

.contact-pro__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-pro__quick span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue-900);
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(10, 47, 126, 0.08);
  box-shadow: 0 10px 22px rgba(10, 47, 126, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-pro__cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-pro__card {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,248,255,0.62));
  border: 1px solid rgba(255,255,255,0.56);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.56),
    0 18px 38px rgba(7, 26, 73, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(18px);
}

.contact-pro__card.is-live {
  opacity: 1;
  transform: translateY(0);
}

.contact-pro__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), transparent 48%);
  pointer-events: none;
}

.contact-pro__card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 94, 214, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-pro__card:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.60),
    0 26px 50px rgba(7, 26, 73, 0.12);
}

.contact-pro__card-icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03)),
    linear-gradient(135deg, var(--blue-900), var(--red-500));
  box-shadow: 0 16px 30px rgba(10, 47, 126, 0.18);
}

.contact-pro__card-copy {
  position: relative;
  z-index: 2;
}

.contact-pro__card-copy small {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue-900);
}

.contact-pro__card-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.3;
  color: var(--blue-950);
}

.contact-pro__card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.contact-pro__form-wrap {
  position: relative;
  border-radius: 30px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(246,249,255,0.68));
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.62),
    0 26px 60px rgba(7, 26, 73, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  will-change: transform;
}

.contact-pro__form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), transparent 48%);
  pointer-events: none;
}

.contact-pro__form-wrap::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,94,214,0.12), transparent 68%);
  pointer-events: none;
}

.contact-pro__form-topbar,
.contact-pro__form {
  position: relative;
  z-index: 2;
}

.contact-pro__form-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-pro__signal {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 0 rgba(214, 34, 42, 0.35);
  animation: contactSignalPulse 2.2s ease-in-out infinite;
}

.contact-pro__form-topbar small {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-pro__state {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--blue-900);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(10, 47, 126, 0.08);
}

.contact-pro__form-head h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.12;
  color: var(--blue-950);
}

.contact-pro__form-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.contact-pro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 18px;
}

.contact-pro__grid .label-full {
  grid-column: 1 / -1;
}

.contact-pro__form label {
  display: grid;
  gap: 8px;
}

.contact-pro__form label span {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--blue-950);
}

.contact-pro__form input,
.contact-pro__form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(10, 47, 126, 0.10);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(10px);
  padding: 15px 16px;
  color: var(--blue-950);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.contact-pro__form input::placeholder,
.contact-pro__form textarea::placeholder {
  color: #8190a7;
}

.contact-pro__form input:focus,
.contact-pro__form textarea:focus {
  border-color: rgba(31, 94, 214, 0.42);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 0 0 4px rgba(31, 94, 214, 0.10), 0 14px 28px rgba(10, 47, 126, 0.08);
  transform: translateY(-1px);
}

.contact-pro__actions {
  margin-top: 4px;
}

.contact-pro__note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@keyframes contactSignalPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(214, 34, 42, 0.35);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(214, 34, 42, 0.06);
  }
}

@media (max-width: 1100px) {
  .contact-pro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .section--contact-pro {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .contact-pro__intro h2 {
    font-size: clamp(1.8rem, 7vw, 2.45rem);
  }

  .contact-pro__card {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .contact-pro__card-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 1.35rem;
  }

  .contact-pro__form-wrap {
    border-radius: 24px;
    padding: 18px;
  }

  .contact-pro__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-pro__state {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-pro__quick {
    gap: 8px;
  }

  .contact-pro__quick span {
    font-size: 0.72rem;
    padding: 8px 11px;
  }

  .contact-pro__card {
    grid-template-columns: 1fr;
  }

  .contact-pro__card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
}

/* =========================================================
   WORKFLOW + CONTACTO
   OPTIMIZACIÓN PARA PANTALLAS PEQUEÑAS Y MÓVIL
   ========================================================= */

/* -------------------------
   TABLET GRANDE
   ------------------------- */
@media (max-width: 1100px) {
  .workflow-pro {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .workflow-pro__intro {
    position: relative !important;
    top: auto !important;
  }

  .workflow-pro__stages {
    gap: 14px !important;
  }

  .workflow-monitor {
    margin-top: 22px !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  .workflow-monitor__screen {
    min-height: 220px !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .workflow-monitor__status {
    max-width: 100% !important;
  }

  .workflow-monitor__status strong {
    font-size: 1.05rem !important;
  }

  .workflow-monitor__status p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .workflow-stage {
    padding: 20px 18px 18px !important;
    border-radius: 22px !important;
  }

  .workflow-stage__top {
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  .workflow-stage__number {
    width: 50px !important;
    height: 50px !important;
    border-radius: 16px !important;
  }

  .workflow-stage__badge {
    font-size: 0.72rem !important;
    padding: 7px 10px !important;
  }

  .workflow-stage h3 {
    font-size: 1.06rem !important;
  }

  .workflow-stage p {
    font-size: 0.9rem !important;
    line-height: 1.58 !important;
  }

  .contact-pro {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .contact-pro__cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-pro__form-wrap {
    padding: 18px !important;
    border-radius: 24px !important;
  }

  .contact-pro__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }
}

/* -------------------------
   MÓVIL GENERAL
   ------------------------- */
@media (max-width: 768px) {
  .section--workflow-pro,
  .section--contact-pro {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  .workflow-pro__intro h2,
  .contact-pro__intro h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    margin: 14px 0 12px !important;
  }

  .workflow-pro__intro > p,
  .contact-pro__intro > p {
    font-size: 0.94rem !important;
    line-height: 1.68 !important;
  }

  .workflow-pro__highlights,
  .contact-pro__quick {
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .workflow-pro__highlights span,
  .contact-pro__quick span {
    font-size: 0.7rem !important;
    padding: 8px 10px !important;
  }

  .workflow-monitor {
    padding: 16px !important;
    border-radius: 22px !important;
  }

  .workflow-monitor__header {
    margin-bottom: 12px !important;
    flex-wrap: wrap !important;
  }

  .workflow-monitor__header small {
    font-size: 0.72rem !important;
  }

  .workflow-monitor__live {
    font-size: 0.68rem !important;
    padding: 7px 10px !important;
  }

  .workflow-monitor__screen {
    min-height: 190px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .workflow-monitor__progress {
    height: 8px !important;
    margin-bottom: 14px !important;
  }

  .workflow-monitor__status strong {
    font-size: 0.98rem !important;
    margin-bottom: 8px !important;
  }

  .workflow-monitor__status p {
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
  }

  .workflow-monitor__pulse-grid {
    width: 74px !important;
    gap: 5px !important;
    right: 12px !important;
    bottom: 12px !important;
  }

  .workflow-monitor__pulse-grid span {
    width: 8px !important;
    height: 8px !important;
  }

  .workflow-pro__stages {
    gap: 12px !important;
  }

  .workflow-stage {
    padding: 18px 14px 16px !important;
    border-radius: 20px !important;
    min-height: auto !important;
  }

  .workflow-stage__line {
    top: 14px !important;
    bottom: 14px !important;
  }

  .workflow-stage__top {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 10px !important;
  }

  .workflow-stage__number {
    width: 44px !important;
    height: 44px !important;
    font-size: 0.9rem !important;
    border-radius: 14px !important;
  }

  .workflow-stage__badge {
    white-space: normal !important;
    text-align: left !important;
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
    padding: 7px 10px !important;
  }

  .workflow-stage h3 {
    font-size: 0.98rem !important;
    margin-bottom: 8px !important;
  }

  .workflow-stage p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  .contact-pro__cards {
    gap: 12px !important;
    margin-top: 20px !important;
  }

  .contact-pro__card {
    grid-template-columns: 56px 1fr !important;
    gap: 12px !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .contact-pro__card-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;
    font-size: 1.15rem !important;
  }

  .contact-pro__card-copy small {
    font-size: 0.7rem !important;
    margin-bottom: 6px !important;
  }

  .contact-pro__card-copy strong {
    font-size: 0.92rem !important;
    margin-bottom: 6px !important;
  }

  .contact-pro__card-copy p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  .contact-pro__form-wrap {
    padding: 16px !important;
    border-radius: 22px !important;
  }

  .contact-pro__form-topbar {
    margin-bottom: 14px !important;
  }

  .contact-pro__state {
    display: none !important;
  }

  .contact-pro__form-head h3 {
    font-size: 1.12rem !important;
    margin-bottom: 8px !important;
  }

  .contact-pro__form-head p {
    font-size: 0.86rem !important;
    line-height: 1.56 !important;
  }

  .contact-pro__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 18px 0 14px !important;
  }

  .contact-pro__form label span {
    font-size: 0.84rem !important;
  }

  .contact-pro__form input,
  .contact-pro__form textarea {
    border-radius: 16px !important;
    padding: 13px 14px !important;
    font-size: 0.9rem !important;
  }

  .contact-pro__note {
    font-size: 0.78rem !important;
    line-height: 1.55 !important;
  }
}

/* -------------------------
   MÓVIL PEQUEÑO
   ------------------------- */
@media (max-width: 480px) {
  .section--workflow-pro,
  .section--contact-pro {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .workflow-pro__intro h2,
  .contact-pro__intro h2 {
    font-size: clamp(1.45rem, 7.8vw, 1.95rem) !important;
  }

  .workflow-pro__intro > p,
  .contact-pro__intro > p {
    font-size: 0.88rem !important;
  }

  .workflow-monitor {
    padding: 14px !important;
    border-radius: 20px !important;
  }

  .workflow-monitor__screen {
    min-height: 170px !important;
    padding: 12px !important;
  }

  .workflow-monitor__status strong {
    font-size: 0.92rem !important;
  }

  .workflow-monitor__status p {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }

  .workflow-stage {
    padding: 16px 12px 14px !important;
  }

  .workflow-stage__badge {
    font-size: 0.64rem !important;
    padding: 6px 9px !important;
  }

  .workflow-stage h3 {
    font-size: 0.9rem !important;
  }

  .workflow-stage p {
    font-size: 0.76rem !important;
    line-height: 1.42 !important;
  }

  .contact-pro__card {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 14px !important;
  }

  .contact-pro__card-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 16px !important;
  }

  .contact-pro__card-copy strong {
    font-size: 0.88rem !important;
  }

  .contact-pro__card-copy p {
    font-size: 0.78rem !important;
  }

  .contact-pro__form-wrap {
    padding: 14px !important;
  }

  .contact-pro__form-head h3 {
    font-size: 1rem !important;
  }

  .contact-pro__form-head p {
    font-size: 0.8rem !important;
  }

  .contact-pro__form input,
  .contact-pro__form textarea {
    padding: 12px 13px !important;
    font-size: 0.86rem !important;
  }

  .contact-pro__note {
    font-size: 0.74rem !important;
  }
}

/* =========================================================
   CONTACTO - CARDS MÁS COMPACTAS EN MÓVIL
   ========================================================= */

@media (max-width: 768px) {
  .contact-pro__cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .contact-pro__card {
    grid-template-columns: 42px 1fr !important;
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 18px !important;
    min-height: 0 !important;
    align-items: start !important;
  }

  .contact-pro__card:last-child {
    grid-column: 1 / -1 !important;
  }

  .contact-pro__card-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    font-size: 0.95rem !important;
  }

  .contact-pro__card-copy small {
    display: block !important;
    margin-bottom: 4px !important;
    font-size: 0.62rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.03em !important;
  }

  .contact-pro__card-copy strong {
    display: block !important;
    margin-bottom: 4px !important;
    font-size: 0.86rem !important;
    line-height: 1.28 !important;
    word-break: break-word !important;
  }

  .contact-pro__card-copy p {
    margin: 0 !important;
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
    color: var(--muted) !important;
  }
}

@media (max-width: 480px) {
  .contact-pro__cards {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .contact-pro__card:last-child {
    grid-column: auto !important;
  }

  .contact-pro__card {
    grid-template-columns: 40px 1fr !important;
    gap: 10px !important;
    padding: 11px !important;
    border-radius: 16px !important;
  }

  .contact-pro__card-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 13px !important;
    font-size: 0.9rem !important;
  }

  .contact-pro__card-copy small {
    font-size: 0.6rem !important;
  }

  .contact-pro__card-copy strong {
    font-size: 0.82rem !important;
  }

  .contact-pro__card-copy p {
    font-size: 0.72rem !important;
    line-height: 1.32 !important;
  }
}

/* =========================================================
   FOOTER PRO - VERSION COMPACTA Y ORDENADA
   ========================================================= */

.footer.footer-pro {
  position: relative;
  background:
    linear-gradient(180deg, #041126 0%, #06173e 48%, #08245e 100%);
  color: #ffffff;
  padding: 58px 0 18px;
  overflow: clip;
}

.footer.footer-pro::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 94, 214, 0.18), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.footer.footer-pro::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 34, 42, 0.18), transparent 62%);
  filter: blur(12px);
  pointer-events: none;
}

.footer-pro .container {
  position: relative;
  z-index: 2;
}

.footer-pro__top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-pro__brand,
.footer-pro__nav,
.footer-pro__contact,
.footer-pro__map-wrap {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 16px 32px rgba(3, 10, 27, 0.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  overflow: hidden;
}

.footer-pro__brand,
.footer-pro__nav,
.footer-pro__contact {
  padding: 18px 16px;
}

.footer-pro__brand::before,
.footer-pro__nav::before,
.footer-pro__contact::before,
.footer-pro__map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.10), transparent 48%);
  pointer-events: none;
}

.footer-pro__text {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.80);
  line-height: 1.62;
  font-size: 0.96rem;
}

.footer-pro__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-pro__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,0.94);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-pro h4 {
  margin: 0 0 12px;
  font-size: 0.98rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-pro ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-pro ul li,
.footer-pro ul li a {
  color: rgba(255,255,255,0.82);
  line-height: 1.48;
  font-size: 0.95rem;
}

.footer-pro ul li a {
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer-pro ul li a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-pro__contact strong {
  color: #ffffff;
}

.footer-pro__map-wrap {
  margin-top: 16px;
  padding: 14px;
}

.footer-pro__map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-pro__map-head h4 {
  margin: 0;
}

.footer-pro__map-head p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.5;
  font-size: 0.88rem;
}

.footer-pro__map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 12px 24px rgba(3, 10, 27, 0.16);
}

.footer-pro__map iframe {
  display: block;
  width: 100%;
  height: 210px;
  border: 0;
  filter: grayscale(0.04) contrast(1.02) saturate(0.95);
}

.footer-pro__bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-pro__bottom span {
  color: rgba(255,255,255,0.76);
  font-size: 0.88rem;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1100px) {
  .footer-pro__top {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .footer-pro__brand {
    grid-column: 1 / -1;
  }

  .footer-pro__map iframe {
    height: 190px;
  }
}

/* =========================
   MÓVIL
   ========================= */

@media (max-width: 768px) {
  .footer.footer-pro {
    padding: 42px 0 14px;
  }

  .footer-pro__top {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-pro__brand,
  .footer-pro__nav,
  .footer-pro__contact {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .footer-pro__text {
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .footer-pro__badges {
    margin-top: 10px;
    gap: 6px;
  }

  .footer-pro__badges span {
    font-size: 0.64rem;
    padding: 6px 8px;
  }

  .footer-pro h4 {
    margin-bottom: 8px;
    font-size: 0.88rem;
  }

  .footer-pro ul {
    gap: 6px;
  }

  .footer-pro ul li,
  .footer-pro ul li a {
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .footer-pro__map-wrap {
    margin-top: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .footer-pro__map-head {
    margin-bottom: 8px;
    gap: 6px;
  }

  .footer-pro__map-head p {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .footer-pro__map {
    border-radius: 14px;
  }

  .footer-pro__map iframe {
    height: 150px;
  }

  .footer-pro__bottom {
    margin-top: 12px;
    padding-top: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-pro__bottom span {
    font-size: 0.74rem;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .footer.footer-pro {
    padding: 36px 0 12px;
  }

  .footer-pro__brand,
  .footer-pro__nav,
  .footer-pro__contact,
  .footer-pro__map-wrap {
    padding: 12px 10px;
    border-radius: 16px;
  }

  .footer-pro__text {
    font-size: 0.76rem;
  }

  .footer-pro ul li,
  .footer-pro ul li a {
    font-size: 0.74rem;
  }

  .footer-pro__map-head p {
    font-size: 0.72rem;
  }

  .footer-pro__map iframe {
    height: 130px;
  }

  .footer-pro__bottom span {
    font-size: 0.7rem;
  }
}

/* =========================================================
   FOOTER MÓVIL - NAVEGACIÓN Y CONTACTO LADO A LADO
   ========================================================= */

@media (max-width: 768px) {
  .footer-pro__top {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .footer-pro__brand {
    grid-column: 1 / -1 !important;
  }

  .footer-pro__nav,
  .footer-pro__contact {
    grid-column: auto !important;
    min-height: 100% !important;
  }

  .footer-pro__brand,
  .footer-pro__nav,
  .footer-pro__contact {
    padding: 14px 12px !important;
    border-radius: 18px !important;
  }

  .footer-pro__text {
    margin-top: 10px !important;
    font-size: 0.8rem !important;
    line-height: 1.46 !important;
  }

  .footer-pro h4 {
    margin-bottom: 8px !important;
    font-size: 0.86rem !important;
  }

  .footer-pro ul {
    gap: 5px !important;
  }

  .footer-pro ul li,
  .footer-pro ul li a {
    font-size: 0.76rem !important;
    line-height: 1.32 !important;
  }

  .footer-pro__contact ul li {
    word-break: break-word !important;
  }

  .footer-pro__badges {
    margin-top: 10px !important;
    gap: 6px !important;
  }

  .footer-pro__badges span {
    font-size: 0.64rem !important;
    padding: 6px 8px !important;
  }

  .footer-pro__map-wrap {
    margin-top: 10px !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .footer-pro__map iframe {
    height: 150px !important;
  }
}

@media (max-width: 480px) {
  .footer-pro__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .footer-pro__brand,
  .footer-pro__nav,
  .footer-pro__contact,
  .footer-pro__map-wrap {
    padding: 12px 10px !important;
    border-radius: 16px !important;
  }

  .footer-pro h4 {
    font-size: 0.82rem !important;
  }

  .footer-pro ul li,
  .footer-pro ul li a {
    font-size: 0.72rem !important;
    line-height: 1.28 !important;
  }

  .footer-pro__text {
    font-size: 0.74rem !important;
  }

  .footer-pro__map iframe {
    height: 130px !important;
  }
}

.btn--login-link {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 28px rgba(10, 47, 126, 0.16);
}

.nav__login-inline {
  display: none;
}

@media (max-width: 991px) {
  .header-actions .btn--login-link {
    display: none !important;
  }

  .nav__login-inline {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
      linear-gradient(135deg, var(--blue-950), var(--blue-700));
    color: #ffffff !important;
    box-shadow: 0 14px 24px rgba(10, 47, 126, 0.14);
  }

  .nav__login-inline::after {
    display: none !important;
  }
}

/* =========================================================
   MÉTRICAS EN SECCIÓN INDEPENDIENTE
   MÁS COMPACTA Y MEJOR APROVECHADA
   ========================================================= */

.section--metrics-strip {
  position: relative;
  padding: 12px 0 26px !important; /* mucho menos espacio arriba y abajo */
}

.metrics-strip__inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.section--metrics-strip .hero__stats.hero-metrics {
  width: 100%;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.section--metrics-strip .hero-metric {
  min-height: 100%;
  padding: 14px 14px 16px !important;
  border-radius: 24px !important;
}

.section--metrics-strip .hero-metric__top {
  margin-bottom: 8px !important;
}

.section--metrics-strip .hero-metric__eyebrow {
  font-size: 0.72rem !important;
  padding: 6px 10px !important;
}

.section--metrics-strip .hero-metric__dial {
  width: 118px !important;
  height: 118px !important;
  margin: 0 auto 8px !important;
}

.section--metrics-strip .hero-metric__value-wrap {
  width: 84px !important;
  height: 84px !important;
}

.section--metrics-strip .hero-metric strong {
  font-size: clamp(1.9rem, 2.4vw, 2.45rem) !important;
}

.section--metrics-strip .hero-metric p {
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
}

/* desktop mediano */
@media (max-width: 1200px) {
  .section--metrics-strip {
    padding: 10px 0 22px !important;
  }

  .metrics-strip__inner {
    width: min(100%, 980px);
  }

  .section--metrics-strip .hero__stats.hero-metrics {
    gap: 12px !important;
  }

  .section--metrics-strip .hero-metric__dial {
    width: 110px !important;
    height: 110px !important;
  }

  .section--metrics-strip .hero-metric__value-wrap {
    width: 78px !important;
    height: 78px !important;
  }
}

/* tablet */
@media (max-width: 991px) {
  .section--metrics-strip {
    padding: 8px 0 18px !important;
  }

  .metrics-strip__inner {
    width: 100%;
  }

  .section--metrics-strip .hero__stats.hero-metrics {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .section--metrics-strip .hero-metric {
    padding: 14px 14px 15px !important;
    border-radius: 22px !important;
  }

  .section--metrics-strip .hero-metric__dial {
    width: 104px !important;
    height: 104px !important;
  }

  .section--metrics-strip .hero-metric__value-wrap {
    width: 74px !important;
    height: 74px !important;
  }

  .section--metrics-strip .hero-metric p {
    font-size: 0.9rem !important;
  }
}

/* móvil */
@media (max-width: 768px) {
  .section--metrics-strip {
    padding: 6px 0 14px !important;
  }

  .section--metrics-strip .hero__stats.hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .section--metrics-strip .hero-metric {
    padding: 10px 6px 10px !important;
    border-radius: 18px !important;
    min-height: 150px !important;
  }

  .section--metrics-strip .hero-metric__top {
    margin-bottom: 6px !important;
    justify-content: center !important;
  }

  .section--metrics-strip .hero-metric__eyebrow {
    font-size: 0.58rem !important;
    padding: 4px 7px !important;
    text-align: center !important;
  }

  .section--metrics-strip .hero-metric__dot {
    display: none !important;
  }

  .section--metrics-strip .hero-metric__dial {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto 6px !important;
  }

  .section--metrics-strip .hero-metric__track,
  .section--metrics-strip .hero-metric__progress {
    stroke-width: 6.5 !important;
  }

  .section--metrics-strip .hero-metric__value-wrap {
    width: 50px !important;
    height: 50px !important;
  }

  .section--metrics-strip .hero-metric__value-wrap::before {
    inset: -4px !important;
  }

  .section--metrics-strip .hero-metric strong {
    font-size: 1.14rem !important;
    line-height: 0.95 !important;
  }

  .section--metrics-strip .hero-metric p {
    font-size: 0.66rem !important;
    line-height: 1.22 !important;
  }

  .section--metrics-strip .hero-metric__halo--1 {
    inset: 7px !important;
  }

  .section--metrics-strip .hero-metric__halo--2 {
    inset: 14px !important;
  }
}

@media (max-width: 420px) {
  .section--metrics-strip {
    padding: 4px 0 12px !important;
  }

  .section--metrics-strip .hero__stats.hero-metrics {
    gap: 6px !important;
  }

  .section--metrics-strip .hero-metric {
    min-height: 142px !important;
    padding: 9px 5px 9px !important;
  }

  .section--metrics-strip .hero-metric__dial {
    width: 64px !important;
    height: 64px !important;
  }

  .section--metrics-strip .hero-metric__value-wrap {
    width: 46px !important;
    height: 46px !important;
  }

  .section--metrics-strip .hero-metric strong {
    font-size: 1.04rem !important;
  }

  .section--metrics-strip .hero-metric p {
    font-size: 0.6rem !important;
    line-height: 1.18 !important;
  }
}

.contact-message {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.contact-message--ok {
  background: rgba(21, 197, 93, 0.12);
  color: #0d7a3f;
  border: 1px solid rgba(21, 197, 93, 0.22);
}

.contact-message--error {
  background: rgba(214, 34, 42, 0.10);
  color: #b61f27;
  border: 1px solid rgba(214, 34, 42, 0.18);
}


/* =========================================================
   OFFSET HERO SLIDER FINAL - DOS PNG POR SLIDE
   ========================================================= */

.offset-hero-slider {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.offset-hero-slide {
  position: relative;
  min-height: clamp(620px, 80vh, 740px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.offset-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 18, 48, 0.62) 0%,
      rgba(5, 18, 48, 0.42) 26%,
      rgba(5, 18, 48, 0.12) 48%,
      rgba(5, 18, 48, 0.02) 70%
    );
}

.offset-hero-slide__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(380px, 560px) 1fr;
  align-items: center;
  gap: 34px;
  padding-top: 178px;
  padding-bottom: 116px;
  padding-left: clamp(42px, 5vw, 88px);
  padding-right: clamp(28px, 4vw, 68px);
}

.offset-hero-slide__content {
  position: relative;
  z-index: 6;
  max-width: 620px;
  color: #fff;
}

.offset-hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.offset-hero-slide__content h1 {
  margin: 18px 0 10px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.065em;
  color: #ffffff;
  text-align: left;
}

.offset-hero-slide__content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 1.9vw, 1.8rem);
  line-height: 1.18;
  font-weight: 700;
  color: #e30613;
  max-width: 540px;
  text-align: left;
}

.offset-hero-slide__content p {
  margin: 0;
  max-width: 510px;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.80);
  text-align: left;
}

.offset-hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.offset-hero-slide__actions .btn {
  min-width: 190px;
  justify-content: center;
}

.offset-hero-slide__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.offset-hero-slide__rear-layer,
.offset-hero-slide__front-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.offset-hero-slide__rear-layer {
  z-index: 1;
}

.offset-hero-slide__front-layer {
  z-index: 3;
  padding-right: clamp(14px, 4vw, 70px);
  padding-left: 30%;
}

.offset-hero-slide__rear-image {
  width: 100vw;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  opacity: 0.96;
  transform: scale(1.03);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.06));
}

.offset-hero-slide__front-image {
  width: auto;
  height: clamp(420px, 82%, 650px);
  max-width: 64vw;
  max-height: none;
  object-fit: contain;
  object-position: center right;
  margin: 0;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,0.18));
  transform: translateX(2%);
}

.offset-hero-slider__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 8;
  width: min(1320px, calc(100% - 42px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 18px;
}

.offset-hero-slider__nav {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.offset-hero-slider__nav:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

.offset-hero-slider__nav svg {
  width: 28px;
  height: 28px;
}

.offset-hero-slider__progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.offset-hero-slider__counter {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.offset-hero-slider__progressbar {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.20);
  overflow: hidden;
}

.offset-hero-slider__progressfill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  height: 100%;
  border-radius: 999px;
  background: #ffffff;
  transition: width 0.5s ease;
}

@media (max-width: 1200px) {
  .offset-hero-slide__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 106px;
    padding-bottom: 104px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .offset-hero-slide__content {
    max-width: 100%;
  }

  .offset-hero-slide__front-layer {
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
  }

  .offset-hero-slide__rear-image {
    object-fit: cover;
    object-position: center center;
  }

  .offset-hero-slide__front-image {
    height: 430px;
    max-width: 88vw;
    transform: none;
  }

  .offset-hero-slide::before {
    background:
      linear-gradient(
        180deg,
        rgba(5, 18, 48, 0.58) 0%,
        rgba(5, 18, 48, 0.38) 28%,
        rgba(5, 18, 48, 0.12) 52%,
        rgba(5, 18, 48, 0.02) 80%
      );
  }
}

@media (max-width: 768px) {
  .offset-hero-slide {
    min-height: 620px;
  }

  .offset-hero-slide__inner {
    padding-top: 98px;
    padding-bottom: 104px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .offset-hero-slide__content h1 {
    font-size: clamp(2.9rem, 14vw, 5rem);
  }

  .offset-hero-slide__content h2 {
    font-size: 1.08rem;
  }

  .offset-hero-slide__content p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .offset-hero-slide__actions .btn {
    min-width: 100%;
  }

  .offset-hero-slide__rear-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .offset-hero-slide__front-image {
    height: 290px;
    max-width: 96vw;
  }

  .offset-hero-slider__bottom {
    width: calc(100% - 22px);
    grid-template-columns: 56px 1fr 56px;
    gap: 12px;
    bottom: 14px;
  }

  .offset-hero-slider__nav {
    width: 56px;
    height: 56px;
  }

  .offset-hero-slider__counter {
    font-size: 0.95rem;
  }
}
/* =========================================================
   HERO MOTION OVERRIDE
   pegar al final de styles.css
   ========================================================= */

/* estado inicial */
.offset-hero-slide .offset-hero-slide__eyebrow,
.offset-hero-slide .offset-hero-slide__content h1,
.offset-hero-slide .offset-hero-slide__content h2,
.offset-hero-slide .offset-hero-slide__content p,
.offset-hero-slide .offset-hero-slide__actions {
  opacity: 0;
  transform: translate3d(-72px, 0, 0);
  will-change: transform, opacity;
}

.offset-hero-slide .offset-hero-slide__front-image {
  opacity: 0;
  transform: translate3d(110px, 0, 0) scale(0.96);
  will-change: transform, opacity;
}

.offset-hero-slide .offset-hero-slide__rear-image {
  opacity: 0.88;
  transform: scale(1.12) translate3d(42px, 0, 0);
  will-change: transform, opacity;
}

/* slide activo */
.offset-hero-slide.is-hero-current .offset-hero-slide__eyebrow,
.offset-hero-slide.is-hero-current .offset-hero-slide__content h1,
.offset-hero-slide.is-hero-current .offset-hero-slide__content h2,
.offset-hero-slide.is-hero-current .offset-hero-slide__content p,
.offset-hero-slide.is-hero-current .offset-hero-slide__actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.offset-hero-slide.is-hero-current .offset-hero-slide__front-image {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.offset-hero-slide.is-hero-current .offset-hero-slide__rear-image {
  opacity: 0.96;
  transform: scale(1.03) translate3d(0, 0, 0);
}

/* tiempos de entrada texto */
.offset-hero-slide .offset-hero-slide__eyebrow {
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
}

.offset-hero-slide .offset-hero-slide__content h1 {
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.95s ease;
  transition-delay: 0.08s;
}

.offset-hero-slide .offset-hero-slide__content h2 {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
  transition-delay: 0.16s;
}

.offset-hero-slide .offset-hero-slide__content p {
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.95s ease;
  transition-delay: 0.24s;
}

.offset-hero-slide .offset-hero-slide__actions {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
  transition-delay: 0.34s;
}

/* imagen frontal */
.offset-hero-slide .offset-hero-slide__front-image {
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
  transition-delay: 0.18s;
}

/* imagen trasera */
.offset-hero-slide .offset-hero-slide__rear-image {
  transition:
    transform 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;
}

/* movimiento continuo sutil para la capa trasera */
.offset-hero-slide.is-hero-current .offset-hero-slide__rear-image {
  animation: heroRearFloat 7s ease-in-out infinite alternate;
}

@keyframes heroRearFloat {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-18px, 10px, 0);
  }
}

/* pequeño drift de la frontal cuando ya entró */
.offset-hero-slide.is-hero-current .offset-hero-slide__front-image {
  animation: heroFrontFloat 5.8s ease-in-out infinite alternate;
}

@keyframes heroFrontFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-8px, -6px, 0) scale(1.01);
  }
}

@media (max-width: 768px) {
  .offset-hero-slide .offset-hero-slide__eyebrow,
  .offset-hero-slide .offset-hero-slide__content h1,
  .offset-hero-slide .offset-hero-slide__content h2,
  .offset-hero-slide .offset-hero-slide__content p,
  .offset-hero-slide .offset-hero-slide__actions {
    transform: translate3d(-36px, 0, 0);
  }

  .offset-hero-slide .offset-hero-slide__front-image {
    transform: translate3d(48px, 0, 0) scale(0.98);
  }

  @keyframes heroRearFloat {
    0% {
      transform: scale(1.03) translate3d(0, 0, 0);
    }
    100% {
      transform: scale(1.06) translate3d(-10px, 6px, 0);
    }
  }

  @keyframes heroFrontFloat {
    0% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
      transform: translate3d(-4px, -3px, 0) scale(1.005);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .offset-hero-slide .offset-hero-slide__eyebrow,
  .offset-hero-slide .offset-hero-slide__content h1,
  .offset-hero-slide .offset-hero-slide__content h2,
  .offset-hero-slide .offset-hero-slide__content p,
  .offset-hero-slide .offset-hero-slide__actions,
  .offset-hero-slide .offset-hero-slide__front-image,
  .offset-hero-slide .offset-hero-slide__rear-image {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   AJUSTE FINO HERO SLIDER
   pegar al final del CSS
   ========================================================= */

/* 1) mover el contenido más hacia la derecha */
.offset-hero-slide__inner {
  padding-left: clamp(115px, 7vw, 138px) !important;
  padding-right: clamp(64px, 4vw, 72px) !important;
}

.offset-hero-slide__content {
  max-width: 560px !important;
}

/* 2) sombras para mejorar contraste del texto */
.offset-hero-slide__eyebrow,
.offset-hero-slide__content h1,
.offset-hero-slide__content h2,
.offset-hero-slide__content p {
  text-shadow:
    0 3px 10px rgba(3, 16, 45, 0.42),
    0 10px 24px rgba(3, 16, 45, 0.22) !important;
}

.offset-hero-slide__content h1 {
  text-shadow:
    0 4px 14px rgba(3, 16, 45, 0.52),
    0 12px 30px rgba(3, 16, 45, 0.28) !important;
}

.offset-hero-slide__content h2 {
  max-width: 560px !important;
}

.offset-hero-slide__content p {
  max-width: 520px !important;
}

/* 3) mover la imagen frontal más a la izquierda y agrandarla */
.offset-hero-slide__front-layer {
  left: -4% !important;
  right: 0 !important;
  padding-left: 24% !important;
  padding-right: 0 !important;
}

.offset-hero-slide__front-image {
  height: clamp(500px, 90%, 740px) !important;
  max-width: 70vw !important;
}

/* 4) la trasera sigue ocupando todo el slider */
.offset-hero-slide__rear-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* 5) tablet / escritorio mediano */
@media (max-width: 1200px) {
  .offset-hero-slide__inner {
    padding-left: 38px !important;
    padding-right: 30px !important;
  }

  .offset-hero-slide__front-layer {
    left: -2% !important;
    padding-left: 8% !important;
    padding-right: 0 !important;
  }

  .offset-hero-slide__front-image {
    height: 460px !important;
    max-width: 90vw !important;
  }
}

/* 6) móviles: overlay oscuro para que el texto resalte más */
.offset-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 768px) {
  .offset-hero-slide__inner {
    padding-left: 26px !important;
    padding-right: 18px !important;
  }

  .offset-hero-slide__content {
    max-width: 100% !important;
  }

  .offset-hero-slide__content h1,
  .offset-hero-slide__content h2,
  .offset-hero-slide__content p,
  .offset-hero-slide__eyebrow {
    text-shadow:
      0 4px 12px rgba(3, 16, 45, 0.62),
      0 12px 28px rgba(3, 16, 45, 0.34) !important;
  }

  .offset-hero-slide::after {
    opacity: 1;
    background:
      linear-gradient(
        180deg,
        rgba(3, 16, 45, 0.44) 0%,
        rgba(3, 16, 45, 0.26) 28%,
        rgba(3, 16, 45, 0.38) 62%,
        rgba(3, 16, 45, 0.52) 100%
      );
  }

  .offset-hero-slide__front-layer,
  .offset-hero-slide__rear-layer {
    left: 0 !important;
    right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .offset-hero-slide__front-image {
    height: 320px !important;
    max-width: 108vw !important;
  }
}

/* 7) móviles pequeños */
@media (max-width: 560px) {
  .offset-hero-slide__inner {
    padding-left: 20px !important;
    padding-right: 14px !important;
  }

  .offset-hero-slide__front-image {
    height: 300px !important;
    max-width: 112vw !important;
  }

  .offset-hero-slide__content h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem) !important;
  }

  .offset-hero-slide__content h2 {
    font-size: 1rem !important;
  }

  .offset-hero-slide__content p {
    font-size: 0.93rem !important;
    line-height: 1.62 !important;
  }
}

/* =========================================================
   ABOUT TILT CARDS / NOSOTROS
   versión ajustada corporativa
   ========================================================= */

.about-brand .section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.about-tilt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  perspective: 1400px;
}

.about-tilt-card {
  position: relative;
  min-height: 460px;
  border-radius: 32px;
  overflow: hidden;
  transform-style: preserve-3d;
  padding: 24px;
  cursor: pointer;
  isolation: isolate;
  background:
    radial-gradient(circle at 100% 0%, rgba(125, 160, 235, 0.38) 0%, rgba(125, 160, 235, 0.08) 18%, transparent 34%),
    linear-gradient(145deg, #0d245c 0%, #0a1d4a 50%, #071537 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 24px 55px rgba(7, 26, 73, 0.18);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.about-tilt-card::before,
.about-tilt-card::after {
  position: absolute;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
}

.about-tilt-card::before {
  top: 18px;
  left: 22px;
  font-size: clamp(3.1rem, 4.4vw, 4.8rem);
  opacity: 1;
}

.about-tilt-card::after {
  right: 20px;
  bottom: 18px;
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  opacity: 0;
}

.about-tilt-card--mission::before { content: "MISIÓN"; }
.about-tilt-card--mission::after { content: "PROPÓSITO"; }

.about-tilt-card--vision::before { content: "VISIÓN"; }
.about-tilt-card--vision::after { content: "FUTURO"; }

.about-tilt-card--values::before { content: "VALORES"; }
.about-tilt-card--values::after { content: "BASE"; }

.about-tilt-card--mission {
  background:
    radial-gradient(circle at 100% 0%, rgba(112, 155, 255, 0.34) 0%, rgba(112, 155, 255, 0.06) 18%, transparent 34%),
    linear-gradient(145deg, #12347d 0%, #0d245c 50%, #071537 100%);
}

.about-tilt-card--vision {
  background:
    radial-gradient(circle at 100% 0%, rgba(89, 135, 237, 0.34) 0%, rgba(89, 135, 237, 0.06) 18%, transparent 34%),
    linear-gradient(145deg, #14356f 0%, #0b2558 50%, #071537 100%);
}

.about-tilt-card--values {
  background:
    radial-gradient(circle at 100% 0%, rgba(63, 124, 255, 0.34) 0%, rgba(63, 124, 255, 0.06) 18%, transparent 34%),
    linear-gradient(145deg, #0f3172 0%, #0b2458 50%, #071537 100%);
}

.about-tilt-card:hover,
.about-tilt-card.is-open,
.about-tilt-card:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 32px 70px rgba(7, 26, 73, 0.24);
  border-color: rgba(255,255,255,0.20);
}

.about-tilt-card:hover::after,
.about-tilt-card.is-open::after,
.about-tilt-card:focus-visible::after {
  opacity: 1;
}

.about-tilt-card__name {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  margin: 0;
  padding: 12px 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 36px);
  min-width: 136px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  z-index: 12;
  transform: translate3d(0, 0, 70px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 14px 28px rgba(3, 16, 45, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow:
    0 3px 10px rgba(3, 16, 45, 0.34),
    0 10px 24px rgba(3, 16, 45, 0.18);
}

.about-tilt-card__trigger {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate3d(-50%, 0, 70px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.16);
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    bottom 0.28s ease,
    background 0.28s ease;
  opacity: 1;
  z-index: 11;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(3, 16, 45, 0.20);
}

.about-tilt-card__trigger:hover {
  background: rgba(255,255,255,0.18);
}

.about-tilt-card:hover .about-tilt-card__trigger,
.about-tilt-card.is-open .about-tilt-card__trigger,
.about-tilt-card:focus-visible .about-tilt-card__trigger {
  opacity: 0;
  transform: translate3d(-50%, 14px, 70px);
  pointer-events: none;
}

.about-tilt-card__orb {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: 1;
  opacity: 0.96;
}

.about-tilt-card:hover .about-tilt-card__orb,
.about-tilt-card.is-open .about-tilt-card__orb,
.about-tilt-card:focus-visible .about-tilt-card__orb {
  transform: translate3d(-50%, -50%, 34px) scale(1.03);
}

.about-tilt-card__product {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(245px, 80%);
  max-width: none;
  z-index: 3;
  transform: translate3d(-50%, -50%, 0) scale(0.98);
  transform-style: preserve-3d;
  transition: transform 0.45s ease, filter 0.45s ease, top 0.45s ease;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.18));
  pointer-events: none;
}

.about-tilt-card:hover .about-tilt-card__product,
.about-tilt-card.is-open .about-tilt-card__product,
.about-tilt-card:focus-visible .about-tilt-card__product {
  top: 39%;
  transform: translate3d(-50%, -50%, 100px) scale(1.03);
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.24));
}

.about-tilt-card__detail {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translate3d(0, 20px, 60px);
  opacity: 0;
  z-index: 10;
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  box-shadow: 0 18px 36px rgba(3, 16, 45, 0.18);
}

.about-tilt-card:hover .about-tilt-card__detail,
.about-tilt-card.is-open .about-tilt-card__detail,
.about-tilt-card:focus-visible .about-tilt-card__detail {
  opacity: 1;
  transform: translate3d(0, 0, 60px);
}

.about-tilt-card__detail p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.88);
  text-align: left;
}

@media (max-width: 1180px) {
  .about-tilt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-tilt-grid {
    grid-template-columns: 1fr;
  }

  .about-tilt-card {
    min-height: 430px;
  }

  .about-tilt-card__name {
    top: 16px;
    left: 16px;
    right: 16px;
    font-size: 1.08rem;
    padding: 11px 16px;
  }

  .about-tilt-card__product {
    top: 40%;
    width: min(220px, 74%);
  }

  .about-tilt-card__detail {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .about-tilt-card__trigger {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-tilt-card,
  .about-tilt-card::before,
  .about-tilt-card::after,
  .about-tilt-card__name,
  .about-tilt-card__trigger,
  .about-tilt-card__orb,
  .about-tilt-card__product,
  .about-tilt-card__detail {
    transition: none !important;
  }
}

/* =========================================================
   AJUSTE FINAL - SECCION NOSOTROS
   ========================================================= */

/* centrar contenido de detalle dentro de cada card */
.about-tilt-card__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-tilt-card__detail p {
  margin: 0;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.88);
  max-width: 95%;
}

/* bloque empresarial debajo de las cards */
.about-brand__closing {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.about-brand__closing-inner {
  width: 100%;
  max-width: 980px;
  padding: 28px 34px;
  border-radius: 26px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.58));
  border: 1px solid rgba(18, 52, 125, 0.10);
  box-shadow:
    0 20px 48px rgba(7, 26, 73, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-brand__closing-inner h3 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.2;
  font-weight: 800;
  color: #0b2458;
  letter-spacing: -0.02em;
}

.about-brand__closing-inner p {
  margin: 0 auto 12px;
  max-width: 900px;
  font-size: 1rem;
  line-height: 1.8;
  color: #50627f;
}

.about-brand__closing-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-brand__closing {
    margin-top: 26px;
  }

  .about-brand__closing-inner {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .about-brand__closing-inner h3 {
    font-size: 1.3rem;
  }

  .about-brand__closing-inner p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .about-tilt-card__detail p {
    max-width: 100%;
    font-size: 0.93rem;
  }
}


/* =========================================================
   AJUSTE ENCABEZADO SECCIÓN NOSOTROS
   centrado + párrafo justificado
   ========================================================= */

.about-brand .section-heading {
  max-width: 980px;
  margin: 0 auto 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-brand .section-tag {
  margin: 0 auto 18px;
  text-align: center !important;
}

.about-brand .section-heading h2 {
  width: 100%;
  margin: 0 auto 18px;
  text-align: center !important;
}

.about-brand .section-heading p {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: justify !important;
  text-align-last: center;
  line-height: 1.82;
}

/* =========================================================
   LOGO REAL HEADER / FOOTER + WHATSAPP FIX
   pegar al final del CSS
   ========================================================= */

/* logo real */
.brand--logo {
  align-items: center;
  gap: 14px;
}

.brand__logo-wrap {
  width: 170px;
  min-width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(3, 16, 45, 0.10));
}

.brand__logo-wrap--footer {
  width: 180px;
  min-width: 180px;
}

.brand__logo-image--footer {
  width: 100%;
  height: auto;
}

/* ocultar completamente el cubo SF si quedó por ahí en otra parte */
.brand--logo .brand__mark {
  display: none !important;
}

/* ajustar texto al lado del logo */
.brand--logo .brand__text strong {
  font-size: 1rem;
  line-height: 1.08;
}

.brand--logo .brand__text span {
  font-size: 0.8rem;
  line-height: 1.2;
}

/* footer con logo mejor alineado */
.brand--footer.brand--logo {
  align-items: center;
}

/* whatsapp flotante corregido */
.whatsapp-float {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  left: auto !important;
  top: auto !important;
  z-index: 99999 !important;
  width: 74px !important;
  height: 74px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  animation: whatsappFloatRestore 3.6s ease-in-out infinite !important;
}

.whatsapp-float__img {
  width: 78px !important;
  height: 78px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.18)) !important;
  transition: transform 0.28s ease, filter 0.28s ease !important;
}

.whatsapp-float:hover .whatsapp-float__img {
  transform: scale(1.08) rotate(-6deg);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22)) !important;
}

@keyframes whatsappFloatRestore {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* responsive */
@media (max-width: 860px) {
  .brand__logo-wrap {
    width: 140px;
    min-width: 140px;
  }

  .brand__logo-wrap--footer {
    width: 150px;
    min-width: 150px;
  }

  .brand--logo .brand__text strong {
    font-size: 0.92rem;
  }

  .brand--logo .brand__text span {
    font-size: 0.75rem;
  }
}

@media (max-width: 560px) {
  .brand__logo-wrap {
    width: 118px;
    min-width: 118px;
  }

  .brand__logo-wrap--footer {
    width: 130px;
    min-width: 130px;
  }

  .whatsapp-float {
    right: 12px !important;
    bottom: 12px !important;
    width: 64px !important;
    height: 64px !important;
  }

  .whatsapp-float__img {
    width: 66px !important;
    height: 66px !important;
  }
}