/* ==========================================================
   GRUPO INTEGRAL VC
   STYLE COMPLETO
   ========================================================== */

:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #15171c;
  --muted: #626774;
  --line: #e7e9ee;
  --line-strong: #d8dce4;
  --soft: #f5f7fb;
  --soft-blue: #edf3ff;
  --nav: #18191e;
  --nav-2: #1d1f24;
  --blue: #2478ff;
  --blue-hover: #438cff;
  --blue-soft: #dcecff;
  --shadow: 0 18px 46px rgba(22, 29, 43, 0.08);
  --shadow-hover: 0 24px 60px rgba(22, 29, 43, 0.13);
  --radius: 26px;
  --max: 1220px;
}


/* ==========================================================
   RESET
   ========================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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




html, body {
  padding: 0;
  border: 0;
  outline: 0;
}

body::before {
  content: none !important;
  display: none !important;
}

/* ==========================================================
   HEADER DEL INICIO
   ========================================================== */

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 102px;
  z-index: 1000;
  pointer-events: none;
  border: 0;
  outline: 0;
}

/* Logo grande, libre, sin cuadro */
.home-logo {
  position: absolute;
  top: 15px;
  left: 26px;
  width: 260px;
  height: auto;
  z-index: 1002;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-14px);
  animation: logoEnter .85s cubic-bezier(.22,.8,.25,1) .08s forwards;
  transition: transform .25s ease, filter .25s ease;
}

.home-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 18px rgba(14, 28, 48, .12));
}

.home-logo:hover {
  transform: translateY(-1px) scale(1.022);
  filter: drop-shadow(0 11px 24px rgba(36, 120, 255, .18));
}

/* ==========================================================
   MENÚ GLASS CLARO / LETRAS OSCURAS
   ========================================================== */

.site-nav-wrap {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1001;
  width: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-nav {
  position: relative;
  width: max-content;
  max-width: calc(100vw - 345px);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 22px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.54));
  box-shadow:
    0 12px 34px rgba(18, 28, 44, .10),
    inset 0 1px 0 rgba(255,255,255,.88);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-14px);
  animation: navEnter .8s cubic-bezier(.22,.8,.25,1) .16s forwards;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.site-nav.scrolled {
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.68));
  border-color: rgba(255,255,255,.94);
  box-shadow: 0 16px 42px rgba(15, 24, 40, .13), inset 0 1px 0 rgba(255,255,255,.94);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  width: auto;
  position: relative;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: rgba(22, 29, 39, .82);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.015em;
  white-space: nowrap;
  cursor: pointer;
  text-shadow: none;
  transition: color .18s ease, transform .18s ease, background .18s ease;
}

.nav-link:hover,
.nav-link.open {
  color: #0e1622;
  transform: translateY(-1px);
}

.nav-contact {
  min-height: 40px;
  padding: 0 17px !important;
  margin-left: 2px;
  border-radius: 999px;
  background: #2478ff !important;
  color: #fff !important;
  box-shadow: 0 9px 22px rgba(36, 120, 255, .22);
  text-shadow: none;
}

.nav-contact:hover {
  background: #438cff !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.chev {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(22, 29, 39, .62);
  transform: translateY(1px);
  transition: transform .18s ease, border-color .18s ease;
}

.nav-link:hover .chev,
.nav-link.open .chev {
  border-top-color: #0e1622;
}

.nav-link.open .chev {
  transform: translateY(1px) rotate(180deg);
}

/* ==========================================================
   DROPDOWNS
   ========================================================== */

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 1200;
  min-width: 320px;
  padding: 11px;
  border: 1px solid rgba(20, 24, 35, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 26px 60px rgba(15, 20, 30, .20);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown.services { min-width: 325px; }
.dropdown.products { min-width: 430px; }

.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 11px;
  color: #424650;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.01em;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.dropdown a:hover {
  background: #f1f4f9;
  color: #111827;
  transform: translateX(2px);
}

.nav-burger {
  display: none;
  border: 0;
  background: transparent;
  color: #17202b;
  cursor: pointer;
}

/* ==========================================================
   HERO / PORTADA CENTRADA
   ========================================================== */

.home-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  outline: 0;
  background-image: url("../img/inicio1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Sin franja/fade inferior: la imagen llega limpia hasta el final del hero */
.home-hero::after {
  content: none !important;
  display: none !important;
}

/* Oscurecimiento localizado detrás del texto + luz suave a la izquierda */
.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 54% 48% at 50% 50%, rgba(7,14,26,.44) 0%, rgba(7,14,26,.27) 38%, rgba(7,14,26,.08) 62%, rgba(7,14,26,0) 78%),
    radial-gradient(circle at -4% 26%, rgba(255,255,255,.24) 0%, rgba(255,255,255,.10) 20%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, rgba(9,16,29,0) 0%, rgba(9,16,29,.02) 66%, rgba(9,16,29,.18) 100%);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: min(920px, calc(100% - 56px));
  margin: 0 auto;
  padding: 132px 0 112px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(6px);
}

/* Halo invisible para mejorar contraste sin apagar toda la foto */
.home-hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 112%;
  height: 82%;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(8,15,28,.22) 0%, rgba(8,15,28,.09) 42%, rgba(8,15,28,0) 72%);
  filter: blur(10px);
  pointer-events: none;
}

.home-title {
  width: 100%;
  max-width: 920px;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: .94;
  letter-spacing: -.05em;
}

.home-title-main,
.home-title-accent {
  display: block;
  width: 100%;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 4px 28px rgba(8, 15, 28, .24);
}

.home-title-main {
  font-size: clamp(58px, 6.1vw, 94px);
  font-weight: 700;
  letter-spacing: -.052em;
}

.home-title-accent {
  margin-top: 8px;
  font-size: clamp(50px, 5.25vw, 82px);
  font-weight: 400;
  letter-spacing: -.043em;
}

.home-description {
  width: min(690px, 100%);
  max-width: 690px;
  margin: 31px auto 0;
  color: rgba(255, 255, 255, .95);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.012em;
  text-align: center;
  text-shadow: 0 2px 18px rgba(8, 15, 28, .26);
}

.home-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  margin: 54px auto 0;
  text-align: center;
}

.home-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.home-button-primary {
  background: #2478ff;
  color: #fff;
  box-shadow: 0 12px 30px rgba(36, 120, 255, .28);
}

.home-button-primary:hover { background: #438cff; }

.home-button-secondary {
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .22);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 8px 22px rgba(8,15,28,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-button-secondary:hover {
  background: rgba(255, 255, 255, .30);
  border-color: rgba(255, 255, 255, .72);
}

/* ==========================================================
   ANIMACIÓN DE ENTRADA DEL HERO
   ========================================================== */

.hero-enter {
  opacity: 0;
  transform: translateY(30px) scale(.988);
  filter: blur(8px);
  animation: heroEnter .92s cubic-bezier(.2,.75,.25,1) forwards;
}

.hero-enter-1 { animation-delay: .34s; }
.hero-enter-2 { animation-delay: .50s; }
.hero-enter-3 { animation-delay: .68s; }
.hero-enter-4 { animation-delay: .86s; }

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

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

@keyframes heroEnter {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(.988);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}


/* ==========================================================
   BLOQUES INTRODUCTORIOS
   ========================================================== */

.intro-blocks {
  position: relative;
  z-index: 5;
  padding: 58px 0 26px;
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.intro-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.intro-card h3 {
  margin: 22px 0 10px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.intro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}


/* ==========================================================
   SECCIONES GENERALES
   ========================================================== */

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 480px);
  gap: 38px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #707685;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #cbd0da;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-light::before {
  background: rgba(255, 255, 255, 0.36);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #dfe4ee;
  box-shadow: var(--shadow-hover);
}


/* ==========================================================
   VALORES
   ========================================================== */

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

.value-card {
  min-height: 250px;
  padding: 24px;
}

.value-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.value-card h3 {
  margin: 21px 0 11px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

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


/* ==========================================================
   GRIDS
   ========================================================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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


/* ==========================================================
   SERVICIOS
   ========================================================== */

.service-card {
  min-height: 310px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #eef4ff, #dfe9ff);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 28px;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}

.link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}


/* ==========================================================
   PRODUCTOS
   ========================================================== */

.product-card {
  min-height: 255px;
  padding: 24px;
  display: block;
  background:
    radial-gradient(circle at 84% 15%, rgba(56, 115, 255, 0.12), transparent 24%),
    #ffffff;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f0f4fb;
  color: #68728b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 18px 0 10px;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
}


/* ==========================================================
   CTA
   ========================================================== */

.cta {
  padding: clamp(34px, 5vw, 62px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(83, 136, 255, 0.38), transparent 28%),
    linear-gradient(145deg, #111827 0%, #1c2854 100%);
  color: #ffffff;
  box-shadow: 0 25px 65px rgba(17, 24, 39, 0.18);
}

.cta h2 {
  max-width: 850px;
  margin: 16px 0 16px;
  font-size: clamp(42px, 5.5vw, 75px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.cta > p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.62;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn.light {
  background: #ffffff;
  color: #111827;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.btn.primary {
  background: var(--blue);
  color: #ffffff;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-brand h3 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 14px;
}

.footer-col a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-col p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #858a95;
  font-size: 12px;
}


/* ==========================================================
   PÁGINAS INTERNAS
   Estas reglas permiten que el mismo style.css siga funcionando
   con acerca.html, servicios.html, productos.html, etc.
   ========================================================== */

.page-shell {
  padding: 0 0 80px;
}

.top-space {
  height: 100px;
}

.page-hero {
  padding: 45px 0 28px;
}

.page-hero-box {
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid #e9edf4;
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, rgba(60, 119, 255, 0.14), transparent 23%),
    linear-gradient(180deg, #f8faff 0%, #f3f6fb 100%);
}

.page-hero h1 {
  max-width: 920px;
  margin: 14px 0 12px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.big-card {
  min-height: 310px;
  padding: 31px;
}

.big-card h3 {
  margin: 18px 0 12px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.big-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.list-card {
  min-height: 250px;
  padding: 26px;
}

.list-card h3 {
  margin: 16px 0 10px;
  font-size: 33px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.list-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}

.list-card .link {
  display: inline-flex;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 20px;
}

.detail-sticky {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 28px;
}

.detail-sticky h2 {
  margin: 16px 0 12px;
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.detail-sticky p,
.detail-content p,
.detail-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.detail-content {
  padding: 30px;
}

.detail-content h3,
.detail-content h4 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.detail-content h4 {
  margin-top: 28px;
}

.detail-content ul {
  padding-left: 21px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin: 0 0 14px;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.contact-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.62;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.field,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  outline: none;
  background: #ffffff;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field:focus,
textarea:focus {
  border-color: #8eb5ff;
  box-shadow: 0 0 0 4px rgba(36, 120, 255, 0.08);
}

textarea {
  min-height: 165px;
  resize: vertical;
  grid-column: 1 / -1;
}

.full {
  grid-column: 1 / -1;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.logo-pill {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px dashed #d4d9e3;
  border-radius: 18px;
  background: #fafbfe;
  color: #7c8393;
  font-size: 13px;
  font-weight: 700;
}

.quote-card {
  padding: 30px;
}

.quote-card h3 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.quote-card > p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.post-card {
  min-height: 260px;
  padding: 24px;
}

.meta {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f1f4f9;
  color: #68728b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 18px 0 11px;
  font-size: 26px;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

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


/* ==========================================================
   ANIMACIONES SUAVES
   ========================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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



/* ==========================================================
   RESPONSIVE 1180
   ========================================================== */

@media (max-width: 1180px) {
  .home-logo {
    width: 210px;
    top: 17px;
    left: 20px;
  }

  .site-nav {
    max-width: calc(100vw - 270px);
    padding: 0 16px 0 20px;
  }

  .nav-links { gap: 15px; }
  .nav-link { font-size: 13.5px; }

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

  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

/* ==========================================================
   RESPONSIVE 980 - MENÚ MÓVIL
   ========================================================== */

@media (max-width: 980px) {
  .home-header { height: 78px; }

  .home-logo {
    top: 13px;
    left: 15px;
    width: 150px;
  }

  .site-nav-wrap {
    top: 12px;
    left: auto;
    right: 13px;
    transform: none;
  }

  .site-nav {
    width: 54px;
    max-width: none;
    min-height: 54px;
    padding: 0;
    background: rgba(255,255,255,.78);
    border-color: rgba(255,255,255,.92);
  }

  .nav-burger {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    font-size: 19px;
    color: #17202b;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.84);
    border-radius: 23px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 25px 55px rgba(15,24,40,.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-links.show { display: flex; }
  .nav-item { width: 100%; display: block; }

  .nav-link {
    width: 100%;
    min-height: 47px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(20,28,40,.08);
    color: #1a2430;
    font-size: 16px;
  }

  .nav-contact {
    width: 100%;
    margin: 8px 0 0;
    justify-content: center;
    border-bottom: 0 !important;
  }

  .dropdown,
  .dropdown.services,
  .dropdown.products {
    position: static;
    width: 100%;
    min-width: 100%;
    margin: 4px 0 9px;
    transform: none;
    box-shadow: none;
  }

  .dropdown.show { transform: none; }
  .dropdown a { font-size: 14px; }

  .home-hero {
    background-position: 63% center;
    animation: none;
  }

  .home-hero-content {
    width: min(760px, calc(100% - 38px));
    padding: 112px 0 90px;
    transform: none;
  }

  .home-title-main { font-size: clamp(54px, 9vw, 78px); }
  .home-title-accent { font-size: clamp(47px, 8vw, 68px); }

  .intro-grid,
  .grid-3 { grid-template-columns: 1fr; }

  .section-head { grid-template-columns: 1fr; gap: 18px; }

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

  .detail-sticky { position: relative; top: auto; }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================
   RESPONSIVE 700
   ========================================================== */

@media (max-width: 700px) {
  .container { width: calc(100% - 28px); }

  .home-logo {
    width: 128px;
    top: 12px;
    left: 12px;
  }

  .home-hero {
    min-height: 760px;
    background-position: 68% center;
  }

  .home-hero-overlay {
    background:
      radial-gradient(ellipse 80% 45% at 50% 50%, rgba(8,14,26,.54) 0%, rgba(8,14,26,.32) 45%, rgba(8,14,26,.12) 72%, rgba(8,14,26,0) 100%),
      linear-gradient(180deg, rgba(8,13,23,.12) 0%, rgba(8,13,23,.22) 68%, rgba(8,13,23,.40) 100%);
  }

  .home-hero-content {
    width: calc(100% - 30px);
    padding: 112px 0 78px;
  }

  .home-title { line-height: .96; }
  .home-title-main { font-size: clamp(44px, 13vw, 60px); }
  .home-title-accent {
    margin-top: 7px;
    font-size: clamp(40px, 11.5vw, 54px);
  }

  .home-description {
    width: min(560px, 94%);
    margin-top: 23px;
    font-size: 16px;
    line-height: 1.52;
  }

  .home-actions {
    width: 100%;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 42px;
  }

  .home-button {
    width: auto;
    min-height: 47px;
    padding: 0 17px;
    font-size: 12.5px;
  }

  .intro-blocks { padding-top: 42px; }
  .section { padding: 68px 0; }

  .value-grid,
  .grid-4,
  .list-grid,
  .footer-grid,
  .logo-strip { grid-template-columns: 1fr; }

  .footer-col:last-child { grid-column: auto; }
  .form { grid-template-columns: 1fr; }
  textarea,
  .full { grid-column: auto; }
}

@media (max-width: 460px) {
  .home-actions {
    flex-direction: column;
    align-items: center;
  }

  .home-button { width: min(290px, 100%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
  }

  .home-logo,
  .site-nav,
  .hero-enter,
  .home-hero {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
/* ==========================================================
   AJUSTE V6: SIN LINEA SUPERIOR NI FRANJA INFERIOR
   ========================================================== */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #ffffff;
}

.home-hero {
  margin: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #d9e0e8;
}

.home-hero::before,
.home-hero::after {
  border: 0 !important;
  outline: 0 !important;
}



/* ==========================================================
   QUÉ OFRECEMOS — TIMELINE HORIZONTAL / SCROLL STORY
   ========================================================== */
.offerings-story {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 126px) 0 clamp(94px, 9vw, 138px);
  background:
    radial-gradient(circle at 12% 12%, rgba(48, 125, 255, .045), transparent 24%),
    radial-gradient(circle at 90% 68%, rgba(65, 148, 255, .045), transparent 26%),
    #ffffff;
}

.offerings-story::before,
.offerings-story::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  border: 1px solid rgba(40, 119, 255, .06);
}

.offerings-story::before {
  width: 540px;
  height: 540px;
  top: -350px;
  right: -170px;
}

.offerings-story::after {
  width: 420px;
  height: 420px;
  left: -290px;
  bottom: -250px;
}

.offerings-story-inner {
  position: relative;
  z-index: 1;
  width: min(1640px, calc(100% - 64px));
  margin: 0 auto;
}

.offerings-story-head {
  max-width: 900px;
  margin: 0 auto clamp(58px, 5.4vw, 86px);
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(7px);
  transition:
    opacity .75s cubic-bezier(.2,.75,.25,1),
    transform .75s cubic-bezier(.2,.75,.25,1),
    filter .75s ease;
}

.offerings-story.is-playing .offerings-story-head {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.offerings-story-head h2 {
  margin: 0;
  color: #102c59;
  font-size: clamp(36px, 3.3vw, 54px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.052em;
}

.offerings-title-line {
  display: block;
  width: 0;
  height: 3px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b62bf, #46a1ff);
  transition: width .7s cubic-bezier(.2,.8,.2,1) .25s;
}

.offerings-story.is-playing .offerings-title-line {
  width: 74px;
}

.offerings-track {
  display: none;
}

.offerings-track-progress {
  display: block;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #2a77d8 0%, #4aa4ff 100%);
  transition: transform 1.4s cubic-bezier(.16,.8,.22,1) .18s;
}

.offerings-story.is-playing.direction-up .offerings-track-progress {
  transform-origin: right center;
}

.offerings-story.is-playing .offerings-track-progress {
  transform: scaleX(1);
}

.offerings-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 54px);
}

.offering-step {
  --delay: 0ms;
  position: relative;
  min-width: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(48px) scale(.975);
  filter: blur(9px);
  transition:
    opacity .72s cubic-bezier(.2,.78,.25,1) var(--delay),
    transform .72s cubic-bezier(.2,.78,.25,1) var(--delay),
    filter .72s ease var(--delay);
}

.offerings-story.direction-up .offering-step {
  transform: translateY(-48px) scale(.975);
}

.offering-step.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.offering-topline {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;
  margin-bottom: 24px;
}

.offering-number {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(31, 104, 189, .58);
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 24px rgba(21, 72, 134, .06);
  color: #0e4d98;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.offering-connector {
  flex: 1 1 auto;
  height: 1px;
  margin-left: 0;
  background: rgba(26, 91, 166, .24);
}

.offering-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #1767bd;
  box-shadow: 0 0 0 5px rgba(23, 103, 189, .06);
}

.offering-arrows {
  flex: 0 0 auto;
  margin-left: 8px;
  color: #0f66ba;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -8px;
  transform: translateY(-2px);
}

.offering-media-wrap {
  position: relative;
  width: clamp(174px, 13.8vw, 224px);
  aspect-ratio: 1;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.offering-media-ring {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 3px solid rgba(39, 121, 213, .12);
  border-top-color: #4b94e4;
  border-left-color: #74a9e5;
  transform: rotate(-34deg) scale(.86);
  opacity: 0;
  transition:
    opacity .65s ease calc(var(--delay) + 220ms),
    transform .9s cubic-bezier(.18,.8,.18,1) calc(var(--delay) + 160ms);
}

.offering-step.is-visible .offering-media-ring {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.offering-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #f5f8fc;
  border: 8px solid #ffffff;
  box-shadow: 0 16px 38px rgba(16, 48, 89, .10);
  transform: scale(1.085);
  transition: transform .75s cubic-bezier(.2,.8,.2,1) var(--delay), box-shadow .3s ease;
}

.offering-step.is-visible .offering-media {
  transform: scale(1);
}

.offering-step:hover .offering-media {
  transform: scale(1.035);
  box-shadow: 0 20px 44px rgba(16, 48, 89, .15);
}

.offering-accent {
  display: block;
  width: 0;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #216ec9, #55aaff);
  transition: width .55s cubic-bezier(.2,.8,.2,1) calc(var(--delay) + 280ms);
}

.offering-step.is-visible .offering-accent {
  width: 54px;
}

.offering-step h3 {
  margin: 0;
  min-height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #0d2d5c;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.offering-step p {
  margin: 18px auto 0;
  max-width: 360px;
  color: #5f6570;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
  text-wrap: pretty;
}

@media (max-width: 1180px) {
  .offerings-story-inner {
    width: min(1100px, calc(100% - 44px));
  }

  .offerings-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 72px;
  }

  .offerings-track {
    display: none;
  }

  .offering-step h3 {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .offerings-story {
    padding: 72px 0 82px;
  }

  .offerings-story-inner {
    width: calc(100% - 28px);
  }

  .offerings-story-head {
    margin-bottom: 38px;
  }

  .offerings-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 2px 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .offerings-row::-webkit-scrollbar {
    display: none;
  }

  .offering-step {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: center;
    padding: 0 10px;
  }

  .offering-topline {
    height: 60px;
  }

  .offering-number {
    width: 60px;
    height: 60px;
    font-size: 21px;
  }

  .offering-media-wrap {
    width: 190px;
    margin-bottom: 26px;
  }

  .offering-step h3 {
    font-size: 19px;
  }

  .offering-step p {
    font-size: 15.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offerings-story-head,
  .offering-step,
  .offering-media-ring,
  .offering-media,
  .offering-accent,
  .offerings-track-progress {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .offerings-title-line { width: 74px !important; }
  .offering-accent { width: 54px !important; }
}

/* ==========================================================
   SMART HEADER — auto hide / reveal según dirección de scroll
   ========================================================== */

/* Conserva exactamente el diseño actual; sólo añade el movimiento. */
.home-logo,
.site-nav {
  will-change: transform, opacity;
}

.home-logo {
  transition:
    transform .38s cubic-bezier(.22,.78,.22,1),
    opacity .28s ease,
    filter .25s ease;
}

.site-nav {
  transition:
    transform .38s cubic-bezier(.22,.78,.22,1),
    opacity .28s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

/* Se ocultan juntos para dejar libres las secciones al hacer scroll. */
.home-header.smart-hidden .home-logo {
  opacity: 0 !important;
  transform: translateY(-125%) scale(.985) !important;
  pointer-events: none !important;
}

.home-header.smart-hidden .site-nav {
  opacity: 0 !important;
  transform: translateY(-125%) scale(.99) !important;
  pointer-events: none !important;
}

/* Evita clicks accidentales mientras el header está fuera de pantalla. */
.home-header.smart-hidden .site-nav-wrap {
  pointer-events: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-logo,
  .site-nav {
    transition: none !important;
  }

  .home-header.smart-hidden .home-logo,
  .home-header.smart-hidden .site-nav {
    transform: none !important;
    opacity: 0 !important;
  }
}



/* ==========================================================
   QUIÉNES SOMOS — EDITORIAL GLASS / RIBBONS ANIMADOS
   ========================================================== */
.about-story {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(88px, 8vw, 124px) 0 clamp(86px, 8vw, 118px);
  background:
    radial-gradient(circle at 10% 18%, rgba(77, 145, 255, .12), transparent 29%),
    radial-gradient(circle at 86% 72%, rgba(81, 179, 235, .11), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 48%, #f9fbff 100%);
  color: #0e2a55;
}

.about-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255,255,255,.68), rgba(255,255,255,.12) 43%, rgba(255,255,255,.46)),
    radial-gradient(circle at 50% -8%, rgba(255,255,255,.92), rgba(255,255,255,0) 46%);
  pointer-events: none;
}

.about-story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .36;
  background-image:
    radial-gradient(circle, rgba(42, 111, 205, .18) 1px, transparent 1.3px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, #000 0 7%, transparent 15% 82%, #000 94% 100%);
  mask-image: linear-gradient(90deg, #000 0 7%, transparent 15% 82%, #000 94% 100%);
  pointer-events: none;
}

.about-ribbons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.about-ribbon,
.about-ribbon-soft {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  will-change: stroke-dashoffset, opacity;
  transition: opacity .18s ease;
}

.about-ribbon {
  stroke: url(#aboutRibbonGradient);
  stroke-width: 5px;
  filter: drop-shadow(0 8px 13px rgba(72, 137, 235, .13));
}

.about-ribbon-soft {
  stroke: url(#aboutRibbonSoft);
  stroke-width: 2px;
}

/* El trazo de las curvas se controla con el scroll desde app.js.
   Así se dibujan al bajar y se desdibujan al subir. */
.about-story.is-in-view .about-ribbon,
.about-story.is-in-view .about-ribbon-soft {
  opacity: 1;
}

/* Profundidad sutil: la línea principal es más visible y la secundaria más tenue. */
.about-ribbon-a { opacity: .96; }
.about-ribbon-b { opacity: .94; }
.about-ribbon-c { opacity: .88; }
.about-ribbon-soft { opacity: .54; }

.about-story-inner {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
}

.about-story-head {
  max-width: 960px;
  margin: 0 auto clamp(52px, 5vw, 74px);
  text-align: center;
}

.about-story-head h2 {
  margin: 0;
  color: #102d59;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.045em;
}

.about-title-line {
  display: block;
  width: 0;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #57dce0 0%, #4b8fff 58%, #aa79d1 100%);
  transition: width .72s cubic-bezier(.2,.8,.2,1) .2s;
}

.about-story.is-playing .about-title-line { width: 62px; }

.about-story-head > p {
  max-width: 880px;
  margin: 18px auto 0;
  color: #546173;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(390px, 1.14fr) minmax(360px, 1fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: stretch;
}

.about-statement {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3vw, 48px) clamp(18px, 2vw, 26px);
}

.about-statement::before {
  content: "";
  position: absolute;
  inset: 4% auto 4% -18%;
  width: 90%;
  border: 1px solid rgba(76, 145, 244, .10);
  border-right: 0;
  border-radius: 280px 0 0 280px;
  pointer-events: none;
}

.about-statement-kicker {
  display: block;
  margin-bottom: 20px;
  color: #2d78d0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-statement p {
  margin: 0;
  color: #102c59;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.about-statement p em {
  color: #246fcb;
  font-weight: 400;
  font-style: italic;
}

.about-statement-line {
  display: block;
  width: 0;
  height: 3px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #55d9df, #4c8fff, #b077ce);
  transition: width .8s cubic-bezier(.2,.8,.2,1) var(--about-delay, .5s);
}

.about-reveal.is-visible .about-statement-line,
.about-statement.is-visible .about-statement-line {
  width: 92px;
}

.about-copy-stack {
  display: grid;
  gap: 16px;
}

.about-copy-card {
  position: relative;
  min-height: 142px;
  display: flex;
  align-items: center;
  padding: 25px 30px;
  border: 1px solid rgba(78, 126, 186, .12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.66), rgba(236,247,255,.52));
  box-shadow:
    0 18px 45px rgba(36, 80, 133, .07),
    inset 0 1px 0 rgba(255,255,255,.80);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  overflow: hidden;
}

.about-copy-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #57dce0, #4b8fff 62%, #a779d3);
  opacity: .75;
}

.about-copy-card p {
  margin: 0;
  color: #3f5066;
  font-size: clamp(14.5px, 1vw, 16.5px);
  line-height: 1.68;
  text-wrap: pretty;
}

.about-priorities {
  display: grid;
  align-content: center;
}

.about-priority {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(33, 75, 128, .14);
}

.about-priority:first-child { padding-top: 6px; }
.about-priority:last-child { border-bottom: 0; padding-bottom: 6px; }

.about-priority-arrow {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255,255,255,.76), rgba(244,249,255,.64)) padding-box,
    linear-gradient(135deg, rgba(90,218,226,.78), rgba(55,128,255,.86) 55%, rgba(153,116,217,.58)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 12px 30px rgba(43, 92, 153, .10),
    inset 0 1px 0 rgba(255,255,255,.96),
    inset 0 0 20px rgba(77,151,255,.035);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .32s cubic-bezier(.2,.8,.2,1),
    box-shadow .32s ease,
    background .32s ease;
}

.about-priority-arrow::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 24%, rgba(255,255,255,.9), rgba(255,255,255,.28) 42%, rgba(78,145,255,.05) 76%);
  z-index: -1;
}

.about-priority-arrow::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1px;
  left: -10px;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(66,145,255,.45));
  transform: translateY(-50%) scaleX(.45);
  transform-origin: right center;
  opacity: .25;
  transition: transform .34s ease, opacity .34s ease;
}

.about-priority-arrow-svg {
  width: 42px;
  height: 42px;
  overflow: visible;
  transition: transform .34s cubic-bezier(.2,.8,.2,1);
}

.about-priority-arrow-orbit {
  fill: none;
  stroke: rgba(48, 119, 215, .16);
  stroke-width: 1;
  stroke-dasharray: 2.5 4.5;
  transform-origin: 22px 22px;
  transition: stroke .3s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}

.about-priority-arrow-path {
  fill: none;
  stroke: #2478ff;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 0;
  transition: stroke .3s ease, stroke-width .3s ease;
}

.about-priority-arrow-dot {
  fill: #56d7df;
  opacity: .9;
  transform-origin: 10px 22px;
  transition: transform .34s ease, fill .3s ease, opacity .3s ease;
}

.about-priority:hover .about-priority-arrow {
  transform: translateX(4px) scale(1.035);
  box-shadow:
    0 16px 34px rgba(36, 120, 255, .16),
    inset 0 1px 0 rgba(255,255,255,.98),
    0 0 0 5px rgba(36,120,255,.035);
}

.about-priority:hover .about-priority-arrow::after {
  transform: translateY(-50%) scaleX(1);
  opacity: .75;
}

.about-priority:hover .about-priority-arrow-svg {
  transform: translateX(2px);
}

.about-priority:hover .about-priority-arrow-orbit {
  stroke: rgba(45, 128, 240, .30);
  transform: rotate(22deg);
}

.about-priority:hover .about-priority-arrow-path {
  stroke: #155fca;
  stroke-width: 2.35;
}

.about-priority:hover .about-priority-arrow-dot {
  fill: #7b87ff;
  transform: translateX(2px) scale(1.15);
}


/* Flecha: se dibuja cuando cada prioridad entra con la animación de la sección */
.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-path {
  stroke-dashoffset: 30;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-path {
  stroke-dashoffset: 0;
  transition:
    stroke-dashoffset .72s cubic-bezier(.2,.8,.2,1) calc(var(--about-delay, 0ms) + 220ms),
    stroke .3s ease,
    stroke-width .3s ease;
}

.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-orbit {
  opacity: 0;
  transform: rotate(-34deg) scale(.82);
}

.about-priority.about-reveal.is-visible .about-priority-arrow-orbit {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition:
    opacity .55s ease calc(var(--about-delay, 0ms) + 120ms),
    transform .75s cubic-bezier(.2,.8,.2,1) calc(var(--about-delay, 0ms) + 100ms),
    stroke .3s ease;
}

.about-priority h3 {
  margin: 4px 0 8px;
  color: #0d2f61;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.012em;
}

.about-priority p {
  margin: 0;
  color: #53647a;
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.58;
}

.about-clients {
  margin-top: clamp(42px, 5vw, 66px);
  padding: 22px 26px 24px;
  border: 1px solid rgba(70, 120, 184, .13);
  border-radius: 24px;
  background: rgba(255,255,255,.46);
  box-shadow: 0 18px 50px rgba(31, 74, 126, .06), inset 0 1px 0 rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-clients-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.about-clients-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 107, 184, .35));
}

.about-clients-title span:last-child {
  background: linear-gradient(90deg, rgba(45, 107, 184, .35), transparent);
}

.about-clients-title strong {
  color: #183968;
  font-size: 15px;
  font-weight: 800;
}

.about-client-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 10px;
  align-items: stretch;
}

.about-client-wordmark {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-left: 1px solid rgba(38, 77, 125, .10);
  color: #7a828d;
  text-align: center;
  filter: grayscale(1);
  opacity: .82;
  transition: opacity .2s ease, filter .2s ease, transform .2s ease, color .2s ease;
}

.about-client-wordmark:first-child { border-left: 0; }

.about-client-wordmark:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
  color: #2f6fb8;
}

.about-client-wordmark b {
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
  letter-spacing: -.04em;
}

.about-client-wordmark small {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.15;
}

.about-client-cf b { font-size: clamp(15px, 1.45vw, 23px); }
.about-client-max { flex-direction: row; gap: 3px; }
.about-client-max small { margin: 1px 0 0; font-weight: 800; }
.about-client-sonora b { font-size: clamp(22px, 2vw, 34px); font-weight: 900; font-style: italic; }
.about-client-itc b { font-family: Georgia, serif; font-weight: 400; }

.about-reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(7px);
  transition:
    opacity .74s cubic-bezier(.2,.78,.25,1) var(--about-delay, 0ms),
    transform .74s cubic-bezier(.2,.78,.25,1) var(--about-delay, 0ms),
    filter .74s ease var(--about-delay, 0ms);
}

.about-story.direction-up .about-reveal:not(.is-visible) {
  transform: translateY(-32px);
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1180px) {
  .about-story-inner { width: min(1080px, calc(100% - 44px)); }
  .about-story-grid {
    grid-template-columns: .92fr 1.08fr;
  }
  .about-priorities {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .about-priority {
    grid-template-columns: 58px 1fr;
    border: 1px solid rgba(33, 75, 128, .12);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255,255,255,.42);
  }
  .about-priority:first-child,
  .about-priority:last-child { padding: 20px; }
  .about-priority-arrow { width: 50px; height: 50px; }
  .about-priority-arrow-svg { width: 36px; height: 36px; }
}

@media (max-width: 820px) {
  .about-story { padding: 76px 0 84px; }
  .about-story-inner { width: calc(100% - 30px); }
  .about-story-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-statement { padding: 10px 6px 18px; }
  .about-statement::before { display: none; }
  .about-statement p { max-width: 640px; }
  .about-copy-card { min-height: auto; }
  .about-priorities { grid-template-columns: 1fr; gap: 12px; }
  .about-client-row { grid-template-columns: repeat(2, 1fr); }
  .about-client-wordmark:nth-child(odd) { border-left: 0; }
  .about-client-wordmark:last-child { grid-column: 1 / -1; }
  .about-ribbon-a { transform: translate(-100px, -20px); }
}

@media (max-width: 520px) {
  .about-story-head { margin-bottom: 38px; }
  .about-story-head h2 { font-size: 34px; }
  .about-statement p { font-size: 44px; }
  .about-copy-card { padding: 22px 20px; border-radius: 18px; }
  .about-priority { grid-template-columns: 48px 1fr; padding: 17px; }
  .about-priority:first-child,
  .about-priority:last-child { padding: 17px; }
  .about-priority-arrow { width: 42px; height: 42px; font-size: 25px; }
  .about-clients { padding: 18px 14px 20px; }
  .about-client-row { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .about-ribbon,
  .about-ribbon-soft,
  .about-reveal,
  .about-title-line,
  .about-statement-line {
    transition: none !important;
    animation: none !important;
  }
  .about-ribbon,
  .about-ribbon-soft { stroke-dashoffset: 0 !important; opacity: 1 !important; }
  .about-reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .about-title-line { width: 62px !important; }
  .about-statement-line { width: 92px !important; }
}


/* ==========================================================
   V5 — ESCALA WEB EQUILIBRADA + FLECHAS CURVAS MODERNAS
   Ajuste pensado para navegador al 100%.
   No modifica hero, header ni smart header.
   ========================================================== */

/* ---------- QUÉ OFRECEMOS: más compacto y proporcionado ---------- */
.offerings-story {
  padding: clamp(64px, 5.4vw, 88px) 0 clamp(72px, 6.2vw, 98px);
}

.offerings-story-inner {
  width: min(1500px, calc(100% - 72px));
}

.offerings-story-head {
  max-width: 760px;
  margin-bottom: clamp(42px, 3.8vw, 58px);
}

.offerings-story-head h2 {
  font-size: clamp(30px, 2.55vw, 46px);
  letter-spacing: -.045em;
}

.offerings-title-line {
  height: 2.5px;
  margin-top: 17px;
}

.offerings-story.is-playing .offerings-title-line {
  width: 62px;
}

.offerings-row {
  gap: clamp(20px, 2.25vw, 38px);
}

.offering-topline {
  height: 62px;
  margin-bottom: 20px;
}

.offering-number {
  width: 62px;
  height: 62px;
  font-size: 22px;
  border-width: 1.25px;
}

.offering-dot {
  width: 8px;
  height: 8px;
  flex-basis: 8px;
  box-shadow: 0 0 0 4px rgba(23, 103, 189, .055);
}

.offering-arrows {
  font-size: 28px;
  margin-left: 7px;
}

.offering-media-wrap {
  width: clamp(154px, 11.2vw, 190px);
  margin-bottom: 24px;
}

.offering-media-ring {
  inset: -7px;
  border-width: 2.5px;
}

.offering-media {
  border-width: 7px;
  box-shadow: 0 13px 30px rgba(16, 48, 89, .085);
}

.offering-accent {
  height: 2.5px;
  margin-bottom: 15px;
}

.offering-step.is-visible .offering-accent {
  width: 46px;
}

.offering-step h3 {
  min-height: 48px;
  font-size: clamp(16.5px, 1.12vw, 21px);
  line-height: 1.14;
}

.offering-step p {
  margin-top: 14px;
  max-width: 325px;
  font-size: clamp(14px, .88vw, 15.5px);
  line-height: 1.62;
}

/* ---------- QUIÉNES SOMOS: escala ~88%, menos altura y mejor aire ---------- */
.about-story {
  padding: clamp(66px, 5.5vw, 88px) 0 clamp(70px, 5.8vw, 92px);
}

.about-story-inner {
  width: min(1360px, calc(100% - 72px));
}

.about-story-head {
  max-width: 820px;
  margin-bottom: clamp(38px, 3.5vw, 52px);
}

.about-story-head h2 {
  font-size: clamp(28px, 2.25vw, 38px);
  letter-spacing: -.04em;
}

.about-title-line {
  margin-top: 14px;
  height: 2.5px;
}

.about-story.is-playing .about-title-line {
  width: 56px;
}

.about-story-head > p {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(14px, .98vw, 16px);
  line-height: 1.52;
}

.about-story-grid {
  grid-template-columns: minmax(240px, .80fr) minmax(350px, 1.10fr) minmax(330px, .98fr);
  gap: clamp(26px, 2.8vw, 44px);
}

.about-statement {
  padding: clamp(22px, 2vw, 32px) clamp(10px, 1.25vw, 18px);
}

.about-statement::before {
  inset: 7% auto 7% -14%;
  width: 88%;
}

.about-statement-kicker {
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: .155em;
}

.about-statement p {
  font-size: clamp(34px, 3.05vw, 54px);
  line-height: 1.035;
  letter-spacing: -.041em;
}

.about-statement-line {
  height: 2.5px;
  margin-top: 22px;
}

.about-reveal.is-visible .about-statement-line,
.about-statement.is-visible .about-statement-line {
  width: 78px;
}

.about-copy-stack {
  gap: 13px;
}

.about-copy-card {
  min-height: 116px;
  padding: 19px 23px;
  border-radius: 19px;
  box-shadow:
    0 14px 34px rgba(36, 80, 133, .06),
    inset 0 1px 0 rgba(255,255,255,.80);
}

.about-copy-card p {
  font-size: clamp(13.8px, .86vw, 15.3px);
  line-height: 1.58;
}

.about-priorities {
  align-content: center;
}

.about-priority {
  grid-template-columns: 78px 1fr;
  gap: 15px;
  padding: 18px 0;
  align-items: center;
}

.about-priority:first-child { padding-top: 3px; }
.about-priority:last-child { padding-bottom: 3px; }

/* Nueva flecha curva: sin círculos, inspirada en el trazo de referencia. */
.about-arrow-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.about-priority-arrow {
  width: 72px;
  height: 58px;
  display: block;
  position: relative;
  overflow: visible;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  isolation: auto;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), filter .32s ease;
}

.about-priority-arrow::before,
.about-priority-arrow::after {
  content: none !important;
  display: none !important;
}

.about-priority-arrow-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 7px 10px rgba(63, 133, 221, .12));
  transform-origin: center;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), filter .32s ease;
}

.about-priority-arrow-curve,
.about-priority-arrow-head {
  fill: none;
  stroke: url(#aboutPriorityArrowGradient);
  stroke-width: 4.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.about-priority-arrow-curve {
  transition:
    stroke-dashoffset .82s cubic-bezier(.16,.8,.22,1) calc(var(--about-delay, 0ms) + 120ms),
    opacity .3s ease;
}

.about-priority-arrow-head {
  transition:
    stroke-dashoffset .46s cubic-bezier(.16,.8,.22,1) calc(var(--about-delay, 0ms) + 610ms),
    opacity .3s ease;
}

.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-curve,
.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-head {
  stroke-dashoffset: 1;
  opacity: .22;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-curve,
.about-priority.about-reveal.is-visible .about-priority-arrow-head {
  stroke-dashoffset: 0;
  opacity: 1;
}

.about-priority:hover .about-priority-arrow {
  transform: translateX(4px);
  filter: drop-shadow(0 10px 14px rgba(61, 133, 225, .17));
  box-shadow: none;
}

.about-priority:hover .about-priority-arrow-svg {
  transform: translateX(2px) scale(1.025);
}

/* Anula por completo los estilos de la flecha circular anterior. */
.about-priority-arrow-orbit,
.about-priority-arrow-path,
.about-priority-arrow-dot {
  display: none !important;
}

.about-priority h3 {
  margin: 2px 0 6px;
  font-size: clamp(14px, .94vw, 16.5px);
  line-height: 1.18;
}

.about-priority p {
  font-size: clamp(13.5px, .84vw, 15px);
  line-height: 1.52;
}

.about-clients {
  margin-top: clamp(30px, 3vw, 42px);
  padding: 16px 22px 18px;
  border-radius: 20px;
}

.about-clients-title {
  gap: 14px;
  margin-bottom: 14px;
}

.about-clients-title strong {
  font-size: 14px;
}

.about-client-row {
  gap: 6px;
}

.about-client-wordmark {
  min-height: 62px;
  padding: 9px;
}

.about-client-wordmark b {
  font-size: clamp(16px, 1.35vw, 23px);
}

.about-client-wordmark small {
  margin-top: 3px;
  font-size: 9px;
}

.about-client-cf b { font-size: clamp(14px, 1.15vw, 20px); }
.about-client-sonora b { font-size: clamp(19px, 1.6vw, 28px); }

/* Desktop mediano / laptop: mantenemos 4 columnas en Qué ofrecemos y 3 columnas en Quiénes somos. */
@media (max-width: 1180px) and (min-width: 981px) {
  .offerings-story-inner {
    width: calc(100% - 46px);
  }

  .offerings-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .offering-media-wrap {
    width: clamp(142px, 14.6vw, 172px);
  }

  .offering-step h3 {
    min-height: 44px;
    font-size: clamp(15px, 1.45vw, 18px);
  }

  .offering-step p {
    font-size: 13.8px;
    line-height: 1.58;
  }

  .about-story-inner {
    width: calc(100% - 46px);
  }

  .about-story-grid {
    grid-template-columns: minmax(215px, .78fr) minmax(320px, 1.08fr) minmax(300px, .96fr);
    gap: 24px;
  }

  .about-statement p {
    font-size: clamp(32px, 3.7vw, 46px);
  }

  .about-copy-card {
    min-height: 108px;
    padding: 17px 19px;
  }

  .about-priority {
    grid-template-columns: 68px 1fr;
    gap: 12px;
  }

  .about-priority-arrow {
    width: 64px;
    height: 52px;
  }
}

/* Tablet: aquí sí reorganizamos para evitar aplastar el contenido. */
@media (max-width: 980px) {
  .offerings-story-inner,
  .about-story-inner {
    width: calc(100% - 36px);
  }

  .offerings-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 54px;
  }

  .about-story-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 22px;
  }

  .about-priorities {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .about-priority {
    grid-template-columns: 62px 1fr;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(33, 75, 128, .10);
    border-radius: 18px;
    background: rgba(255,255,255,.36);
  }

  .about-priority:first-child,
  .about-priority:last-child {
    padding: 16px;
  }

  .about-priority-arrow {
    width: 58px;
    height: 48px;
  }
}

@media (max-width: 680px) {
  .offerings-story {
    padding: 58px 0 68px;
  }

  .offerings-story-head h2 {
    font-size: 32px;
  }

  .offering-media-wrap {
    width: 170px;
  }

  .about-story {
    padding: 58px 0 66px;
  }

  .about-story-head {
    margin-bottom: 32px;
  }

  .about-story-head h2 {
    font-size: 30px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-statement p {
    font-size: clamp(36px, 11vw, 48px);
  }

  .about-copy-card {
    min-height: auto;
    padding: 19px 18px;
  }

  .about-priorities {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-priority {
    grid-template-columns: 62px 1fr;
    padding: 14px;
  }

  .about-priority:first-child,
  .about-priority:last-child {
    padding: 14px;
  }

  .about-priority-arrow {
    width: 58px;
    height: 48px;
  }

  .about-client-wordmark {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-priority-arrow-curve,
  .about-priority-arrow-head {
    transition: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
  }
}


/* ==========================================================
   V6 — ESCALA FINAL + FLECHAS CURVAS BIEN FORMADAS
   Ajuste fino para navegador al 100%.
   ========================================================== */

/* -------- QUÉ OFRECEMOS: más proporcionado, sin perder presencia -------- */
@media (min-width: 1181px) {
  .offerings-story {
    padding: 66px 0 78px;
  }

  .offerings-story-inner {
    width: min(1510px, calc(100% - 56px));
  }

  .offerings-story-head {
    margin-bottom: 48px;
  }

  .offerings-story-head h2 {
    font-size: clamp(32px, 2.55vw, 45px);
  }

  .offerings-title-line {
    margin-top: 17px;
    height: 2.5px;
  }

  .offerings-story.is-playing .offerings-title-line {
    width: 62px;
  }

  .offerings-row {
    gap: clamp(24px, 2.4vw, 40px);
  }

  .offering-topline {
    height: 60px;
    margin-bottom: 18px;
  }

  .offering-number {
    width: 60px;
    height: 60px;
    font-size: 21px;
  }

  .offering-dot {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
  }

  .offering-arrows {
    font-size: 28px;
  }

  .offering-media-wrap {
    width: clamp(158px, 11.8vw, 192px);
    margin-bottom: 24px;
  }

  .offering-media {
    border-width: 7px;
  }

  .offering-media-ring {
    inset: -7px;
    border-width: 2.5px;
  }

  .offering-accent {
    height: 2.5px;
    margin-bottom: 15px;
  }

  .offering-step.is-visible .offering-accent {
    width: 48px;
  }

  .offering-step h3 {
    min-height: 48px;
    font-size: clamp(16px, 1.16vw, 20px);
    line-height: 1.13;
  }

  .offering-step p {
    max-width: 330px;
    margin-top: 13px;
    font-size: clamp(13.8px, .88vw, 15.3px);
    line-height: 1.58;
  }
}

/* -------- QUIÉNES SOMOS: escala editorial más fina -------- */
@media (min-width: 1181px) {
  .about-story {
    padding: 62px 0 72px;
  }

  .about-story-inner {
    width: min(1480px, calc(100% - 64px));
  }

  .about-story-head {
    margin-bottom: 42px;
  }

  .about-story-head h2 {
    font-size: clamp(30px, 2.45vw, 40px);
  }

  .about-story-head p {
    margin-top: 15px;
    font-size: clamp(14px, .95vw, 16.5px);
  }

  .about-title-line {
    margin-top: 14px;
    height: 2.5px;
  }

  .about-story-grid {
    grid-template-columns: minmax(250px, .78fr) minmax(390px, 1.08fr) minmax(355px, .98fr);
    gap: clamp(28px, 2.5vw, 42px);
  }

  .about-statement-kicker {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .about-statement p {
    font-size: clamp(31px, 2.75vw, 45px);
    line-height: 1.01;
  }

  .about-statement-line {
    margin-top: 18px;
  }

  .about-copy-stack {
    gap: 12px;
  }

  .about-copy-card {
    min-height: 102px;
    padding: 17px 21px;
    border-radius: 18px;
  }

  .about-copy-card p {
    font-size: clamp(13.2px, .78vw, 14.5px);
    line-height: 1.54;
  }

  .about-priority {
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding: 15px 0;
  }

  .about-priority h3 {
    margin: 0 0 5px;
    font-size: clamp(13.5px, .82vw, 15.5px);
    line-height: 1.15;
  }

  .about-priority p {
    font-size: clamp(13px, .78vw, 14.4px);
    line-height: 1.48;
  }

  .about-clients {
    margin-top: 28px;
    padding: 13px 19px 15px;
    border-radius: 18px;
  }

  .about-clients-title {
    margin-bottom: 10px;
  }

  .about-clients-title strong {
    font-size: 13px;
  }

  .about-client-wordmark {
    min-height: 54px;
    padding: 7px;
  }

  .about-client-wordmark b {
    font-size: clamp(15px, 1.1vw, 20px);
  }

  .about-client-wordmark small {
    font-size: 8px;
  }
}

/* -------- FLECHAS NUEVAS -------- */
.about-priority-arrow {
  width: 78px !important;
  height: 58px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  transition: transform .32s cubic-bezier(.2,.8,.2,1) !important;
}

.about-priority-arrow::before,
.about-priority-arrow::after {
  content: none !important;
  display: none !important;
}

.about-priority-arrow-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 6px 10px rgba(62, 133, 229, .12));
  transform: translateZ(0);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}

.about-priority-arrow-swoosh,
.about-priority-arrow-tip {
  fill: none;
  stroke: url(#aboutPriorityArrowGradient);
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.about-priority-arrow-swoosh {
  transition:
    stroke-dashoffset .78s cubic-bezier(.16,.8,.22,1) calc(var(--about-delay, 0ms) + 100ms),
    opacity .25s ease;
}

.about-priority-arrow-tip {
  transition:
    stroke-dashoffset .38s cubic-bezier(.16,.8,.22,1) calc(var(--about-delay, 0ms) + 560ms),
    opacity .22s ease;
}

.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-swoosh,
.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-tip {
  stroke-dashoffset: 1;
  opacity: .12;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-swoosh,
.about-priority.about-reveal.is-visible .about-priority-arrow-tip {
  stroke-dashoffset: 0;
  opacity: 1;
}

.about-priority:hover .about-priority-arrow {
  transform: translateX(4px) !important;
}

.about-priority:hover .about-priority-arrow-svg {
  transform: translateX(2px) !important;
}

/* Oculta cualquier rastro de versiones anteriores de flechas. */
.about-priority-arrow-curve,
.about-priority-arrow-head,
.about-priority-arrow-orbit,
.about-priority-arrow-path,
.about-priority-arrow-dot {
  display: none !important;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .about-priority {
    grid-template-columns: 72px 1fr;
  }

  .about-priority-arrow {
    width: 68px !important;
    height: 52px !important;
  }
}

@media (max-width: 980px) {
  .about-priority-arrow {
    width: 66px !important;
    height: 50px !important;
  }
}

@media (max-width: 680px) {
  .about-priority-arrow {
    width: 62px !important;
    height: 48px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-priority-arrow-swoosh,
  .about-priority-arrow-tip {
    transition: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
  }
}


/* ==========================================================
   V7 — FLECHA REALMENTE CONTINUA / PUNTA INTEGRADA
   ========================================================== */
.about-priority-arrow {
  width: 84px !important;
  height: 62px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  transition: transform .32s cubic-bezier(.2,.8,.2,1) !important;
}

.about-priority-arrow::before,
.about-priority-arrow::after {
  content: none !important;
  display: none !important;
}

.about-priority-arrow-svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  overflow: visible !important;
  filter: drop-shadow(0 5px 10px rgba(75, 151, 255, .12));
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .25s ease !important;
}

.about-priority-arrow-line {
  fill: none !important;
  stroke: url(#aboutPriorityArrowGradient) !important;
  stroke-width: 4.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .82s cubic-bezier(.16,.8,.22,1) calc(var(--about-delay, 0ms) + 110ms) !important;
}

.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-svg {
  opacity: 0 !important;
  transform: translateX(-6px) scale(.96) !important;
}

.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-line {
  stroke-dashoffset: 1 !important;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-svg {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-line {
  stroke-dashoffset: 0 !important;
}

.about-priority:hover .about-priority-arrow {
  transform: translateX(4px) !important;
}

.about-priority:hover .about-priority-arrow-svg {
  transform: translateX(2px) !important;
}

/* Apaga por completo todos los dibujos de flechas de versiones anteriores. */
.about-priority-arrow-swoosh,
.about-priority-arrow-tip,
.about-priority-arrow-curve,
.about-priority-arrow-head,
.about-priority-arrow-orbit,
.about-priority-arrow-path,
.about-priority-arrow-dot {
  display: none !important;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .about-priority {
    grid-template-columns: 76px 1fr !important;
  }
  .about-priority-arrow {
    width: 72px !important;
    height: 56px !important;
  }
}

@media (max-width: 980px) {
  .about-priority-arrow {
    width: 70px !important;
    height: 54px !important;
  }
}

@media (max-width: 680px) {
  .about-priority-arrow {
    width: 66px !important;
    height: 50px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-priority-arrow-svg,
  .about-priority-arrow-line {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ==========================================================
   AJUSTE FINAL V8 — QUIÉNES SOMOS MÁS BALANCEADO + FLECHA REFERENCIA
   ========================================================== */
.about-story {
  padding: clamp(76px, 6.8vw, 102px) 0 clamp(78px, 6.8vw, 104px);
}

.about-story-inner {
  width: min(1320px, calc(100% - 56px));
}

.about-story-head {
  max-width: 920px;
  margin: 0 auto clamp(40px, 4.3vw, 58px);
}

.about-story-head h2 {
  font-size: clamp(34px, 3.1vw, 58px);
  letter-spacing: -0.038em;
}

.about-story-head > p {
  margin-top: 16px;
  max-width: 860px;
  font-size: clamp(16px, 1.02vw, 19px);
}

.about-title-line {
  margin-top: 14px;
}

.about-story-grid {
  grid-template-columns: minmax(250px, .8fr) minmax(430px, 1.12fr) minmax(360px, .96fr);
  gap: clamp(24px, 2.8vw, 38px);
  align-items: start;
}

.about-statement {
  padding: clamp(18px, 1.6vw, 28px) clamp(14px, 1.4vw, 20px);
}

.about-statement::before {
  inset: 8% auto 8% -16%;
  width: 88%;
}

.about-statement-kicker {
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: .18em;
}

.about-statement p {
  font-size: clamp(34px, 3.7vw, 68px);
  line-height: 1.02;
}

.about-statement-line {
  margin-top: 22px;
}

.about-copy-stack {
  gap: 14px;
}

.about-copy-card {
  min-height: 132px;
  padding: 24px 28px;
  border-radius: 20px;
}

.about-copy-card p {
  font-size: clamp(15px, .92vw, 16.5px);
  line-height: 1.62;
}

.about-priorities {
  display: grid;
  align-content: start;
}

.about-priority {
  grid-template-columns: 126px 1fr;
  gap: 18px;
  padding: 18px 0;
}

.about-priority:first-child {
  padding-top: 10px;
}

.about-priority:last-child {
  padding-bottom: 10px;
}

.about-priority-arrow {
  width: 122px;
  height: 94px;
  display: block;
  margin-top: 2px;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  isolation: auto !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: transform .34s cubic-bezier(.2,.8,.2,1);
}

.about-priority-arrow::before,
.about-priority-arrow::after {
  display: none !important;
  content: none !important;
}

.about-priority-arrow-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 8px 14px rgba(74, 140, 255, .10));
  transition: transform .34s cubic-bezier(.2,.8,.2,1), filter .34s ease;
}

.about-priority-arrow-stem,
.about-priority-arrow-head-a,
.about-priority-arrow-head-b {
  fill: none;
  stroke: url(#aboutPriorityArrowGradient);
  stroke-width: 4.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.about-priority-arrow-stem {
  filter: drop-shadow(0 0 3px rgba(88, 219, 224, .10));
}

.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-stem,
.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-head-a,
.about-priority.about-reveal:not(.is-visible) .about-priority-arrow-head-b {
  opacity: 0;
  stroke-dashoffset: 1;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-stem,
.about-priority.about-reveal.is-visible .about-priority-arrow-head-a,
.about-priority.about-reveal.is-visible .about-priority-arrow-head-b {
  opacity: 1;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-stem {
  transition: stroke-dashoffset .9s cubic-bezier(.2,.8,.2,1) calc(var(--about-delay, 0ms) + 80ms), opacity .25s ease;
  stroke-dashoffset: 0;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-head-a {
  transition: stroke-dashoffset .34s ease calc(var(--about-delay, 0ms) + 630ms), opacity .25s ease calc(var(--about-delay, 0ms) + 620ms);
  stroke-dashoffset: 0;
}

.about-priority.about-reveal.is-visible .about-priority-arrow-head-b {
  transition: stroke-dashoffset .34s ease calc(var(--about-delay, 0ms) + 690ms), opacity .25s ease calc(var(--about-delay, 0ms) + 680ms);
  stroke-dashoffset: 0;
}

.about-priority:hover .about-priority-arrow {
  transform: translateX(6px);
}

.about-priority:hover .about-priority-arrow-svg {
  transform: translateX(2px) scale(1.02);
  filter: drop-shadow(0 10px 16px rgba(74, 140, 255, .16));
}

.about-priority h3 {
  margin: 6px 0 8px;
  font-size: clamp(16px, 1.14vw, 19px);
}

.about-priority p {
  font-size: clamp(14.5px, .98vw, 16px);
  line-height: 1.56;
}

.about-clients {
  margin-top: clamp(34px, 4vw, 54px);
}

/* Apagamos estilos viejos de otras versiones de flecha para evitar mezclas visuales */
.about-priority-arrow-line,
.about-priority-arrow-swoosh,
.about-priority-arrow-tip,
.about-priority-arrow-curve,
.about-priority-arrow-head,
.about-priority-arrow-orbit,
.about-priority-arrow-path,
.about-priority-arrow-dot {
  display: none !important;
}

@media (max-width: 1320px) {
  .about-story-inner {
    width: min(1220px, calc(100% - 48px));
  }

  .about-story-grid {
    grid-template-columns: minmax(230px, .78fr) minmax(390px, 1.1fr) minmax(330px, .92fr);
    gap: 24px 28px;
  }

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

  .about-priority-arrow {
    width: 110px;
    height: 86px;
  }
}

@media (max-width: 1080px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-statement {
    max-width: 720px;
    min-height: auto;
  }

  .about-copy-stack,
  .about-priorities {
    max-width: 780px;
  }

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

@media (max-width: 767px) {
  .about-story {
    padding: 62px 0 72px;
  }

  .about-story-inner {
    width: min(100%, calc(100% - 28px));
  }

  .about-story-head h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .about-story-head > p {
    font-size: 15px;
    line-height: 1.55;
  }

  .about-statement p {
    font-size: clamp(44px, 14vw, 60px);
  }

  .about-copy-card {
    min-height: auto;
    padding: 20px 20px;
  }

  .about-priority {
    grid-template-columns: 84px 1fr;
    gap: 14px;
  }

  .about-priority-arrow {
    width: 82px;
    height: 64px;
  }
}

/* ==========================================================
   NUESTRO EQUIPO — RED DE TALENTO / V9
   Diseño ligero, editorial y conectado con QUIÉNES SOMOS
   ========================================================== */
.team-network {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(62px, 6vw, 84px) 0 clamp(68px, 6vw, 88px);
  background:
    radial-gradient(circle at 12% 16%, rgba(75, 145, 245, .08), transparent 28%),
    radial-gradient(circle at 89% 76%, rgba(83, 205, 219, .08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #f5f9ff 100%);
  color: #0e2d5a;
}

.team-network::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .5;
  background-image: radial-gradient(circle, rgba(52, 121, 210, .15) 1px, transparent 1.2px);
  background-size: 23px 23px;
  -webkit-mask-image: linear-gradient(90deg, #000 0 8%, transparent 18% 82%, #000 94% 100%);
  mask-image: linear-gradient(90deg, #000 0 8%, transparent 18% 82%, #000 94% 100%);
  pointer-events: none;
}

.team-network::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -116px;
  height: 240px;
  z-index: -1;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-top: 1px solid rgba(81, 151, 241, .20);
  box-shadow:
    0 -22px 70px rgba(74, 145, 241, .035),
    inset 0 22px 70px rgba(92, 186, 228, .025);
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.team-network-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.team-network-bg::before,
.team-network-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(69, 141, 238, .11);
}

.team-network-bg::before {
  width: 430px;
  height: 430px;
  top: -260px;
  right: -100px;
}

.team-network-bg::after {
  width: 360px;
  height: 360px;
  left: -250px;
  bottom: -150px;
}

.team-network-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

.team-network-head {
  width: min(760px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.team-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #2678d7;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.team-network-head h2 {
  margin: 0;
  color: #102e5c;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.042em;
  text-wrap: balance;
}

.team-title-line {
  display: block;
  width: 0;
  height: 3px;
  margin: 15px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #5bdce1, #4b91f4 60%, #8e82e9);
  transition: width .75s cubic-bezier(.2,.8,.2,1) .18s;
}

.team-network.is-playing .team-title-line {
  width: 58px;
}

.team-network-head p {
  width: min(670px, 100%);
  margin: 15px auto 0;
  color: #5b697d;
  font-size: clamp(14.5px, 1vw, 16.5px);
  line-height: 1.55;
}

.team-stage {
  position: relative;
  width: min(1200px, 100%);
  height: 610px;
  margin: 0 auto;
}

.team-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.team-link {
  fill: none;
  stroke: url(#teamConnectionGradient);
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: .9;
  filter: drop-shadow(0 2px 5px rgba(74, 145, 245, .07));
}

.team-network.is-playing .team-link {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s cubic-bezier(.2,.8,.2,1);
}

.team-network.is-playing .team-link:nth-of-type(1),
.team-network.is-playing .team-link:nth-of-type(2) { transition-delay: .40s; }
.team-network.is-playing .team-link:nth-of-type(3),
.team-network.is-playing .team-link:nth-of-type(4) { transition-delay: .58s; }
.team-network.is-playing .team-link:nth-of-type(5),
.team-network.is-playing .team-link:nth-of-type(6) { transition-delay: .66s; }
.team-network.is-playing .team-link:nth-of-type(7),
.team-network.is-playing .team-link:nth-of-type(8) { transition-delay: .74s; }

.team-dots {
  fill: #78aaf0;
  opacity: 0;
  transform-origin: center;
}

.team-network.is-playing .team-dots {
  opacity: .72;
  transition: opacity .45s ease .94s;
}

.team-member {
  position: absolute;
  z-index: 3;
  width: 220px;
  text-align: center;
  color: #102e5b;
}

.team-photo {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 50%;
  background:
    linear-gradient(#ffffff, #f7fbff) padding-box,
    linear-gradient(135deg, rgba(92,218,225,.78), rgba(69,137,241,.90) 58%, rgba(141,128,233,.64)) border-box;
  border: 2px solid transparent;
  box-shadow:
    0 14px 32px rgba(35, 81, 139, .10),
    0 0 0 5px rgba(255,255,255,.52);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(70, 145, 241, .12);
  border-radius: inherit;
  pointer-events: none;
}

.team-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.team-photo-lead {
  width: 164px;
  height: 164px;
  padding: 6px;
  border-width: 2px;
  box-shadow:
    0 18px 42px rgba(32, 76, 132, .13),
    0 0 0 6px rgba(255,255,255,.58);
}

.team-photo-small {
  width: 116px;
  height: 116px;
}

.team-member h3 {
  margin: 13px 0 5px;
  color: #1555b7;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.018em;
}

.team-member p {
  margin: 0;
  color: #24334a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.team-member::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin: 9px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #5bdce1, #4b91f4 70%, #8e82e9);
  opacity: .78;
}

.team-member:hover .team-photo {
  transform: translateY(-5px) scale(1.025);
  box-shadow:
    0 20px 42px rgba(35, 89, 160, .16),
    0 0 0 7px rgba(255,255,255,.66);
}

.team-member-javier {
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
}

.team-member-kenia {
  left: 24%;
  top: 175px;
  transform: translateX(-50%);
}

.team-member-cristian {
  left: 76%;
  top: 175px;
  transform: translateX(-50%);
}

.team-member-hannia {
  left: 12%;
  top: 404px;
  transform: translateX(-50%);
}

.team-member-eduardo {
  left: 37.5%;
  top: 404px;
  transform: translateX(-50%);
}

.team-member-karina {
  left: 62.5%;
  top: 404px;
  transform: translateX(-50%);
}

.team-member-enrique {
  left: 88%;
  top: 404px;
  transform: translateX(-50%);
}

.team-reveal {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity .72s ease var(--team-delay, 0ms),
    filter .72s ease var(--team-delay, 0ms),
    transform .82s cubic-bezier(.2,.8,.2,1) var(--team-delay, 0ms);
}

.team-network-head.team-reveal {
  transform: translateY(24px);
}

.team-member.team-reveal {
  --member-shift-y: 22px;
}

.team-member-javier.team-reveal,
.team-member-kenia.team-reveal,
.team-member-cristian.team-reveal,
.team-member-hannia.team-reveal,
.team-member-eduardo.team-reveal,
.team-member-karina.team-reveal,
.team-member-enrique.team-reveal {
  opacity: 0;
  filter: blur(6px);
}

.team-member-javier.team-reveal { transform: translateX(-50%) translateY(22px) scale(.965); }
.team-member-kenia.team-reveal,
.team-member-cristian.team-reveal,
.team-member-hannia.team-reveal,
.team-member-eduardo.team-reveal,
.team-member-karina.team-reveal,
.team-member-enrique.team-reveal { transform: translateX(-50%) translateY(18px) scale(.975); }

.team-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
}

.team-network-head.team-reveal.is-visible {
  transform: translateY(0);
}

.team-member-javier.team-reveal.is-visible,
.team-member-kenia.team-reveal.is-visible,
.team-member-cristian.team-reveal.is-visible,
.team-member-hannia.team-reveal.is-visible,
.team-member-eduardo.team-reveal.is-visible,
.team-member-karina.team-reveal.is-visible,
.team-member-enrique.team-reveal.is-visible {
  transform: translateX(-50%) translateY(0) scale(1);
}

@media (max-width: 1120px) {
  .team-stage {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 18px;
    padding-top: 12px;
  }

  .team-connections {
    display: none;
  }

  .team-member,
  .team-member-javier,
  .team-member-kenia,
  .team-member-cristian,
  .team-member-hannia,
  .team-member-eduardo,
  .team-member-karina,
  .team-member-enrique {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }

  .team-member-javier {
    grid-column: 2;
    grid-row: 1;
  }

  .team-member-kenia { grid-column: 1; grid-row: 2; }
  .team-member-cristian { grid-column: 3; grid-row: 2; }
  .team-member-hannia { grid-column: 1; grid-row: 3; }
  .team-member-eduardo { grid-column: 2; grid-row: 3; }
  .team-member-karina { grid-column: 3; grid-row: 3; }
  .team-member-enrique { grid-column: 2; grid-row: 4; }

  .team-member-javier.team-reveal,
  .team-member-kenia.team-reveal,
  .team-member-cristian.team-reveal,
  .team-member-hannia.team-reveal,
  .team-member-eduardo.team-reveal,
  .team-member-karina.team-reveal,
  .team-member-enrique.team-reveal {
    transform: translateY(18px) scale(.98);
  }

  .team-member-javier.team-reveal.is-visible,
  .team-member-kenia.team-reveal.is-visible,
  .team-member-cristian.team-reveal.is-visible,
  .team-member-hannia.team-reveal.is-visible,
  .team-member-eduardo.team-reveal.is-visible,
  .team-member-karina.team-reveal.is-visible,
  .team-member-enrique.team-reveal.is-visible {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  .team-network {
    padding: 56px 0 66px;
  }

  .team-network-inner {
    width: min(100%, calc(100% - 28px));
  }

  .team-network-head {
    margin-bottom: 34px;
  }

  .team-network-head h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .team-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 12px;
  }

  .team-member-javier {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .team-member-kenia,
  .team-member-cristian,
  .team-member-hannia,
  .team-member-eduardo,
  .team-member-karina,
  .team-member-enrique {
    grid-column: auto;
    grid-row: auto;
  }

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

  .team-photo-lead {
    width: 142px;
    height: 142px;
  }

  .team-photo-small {
    width: 102px;
    height: 102px;
  }

  .team-member h3 {
    font-size: 16px;
  }

  .team-member p {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .team-stage {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-member-javier,
  .team-member-kenia,
  .team-member-cristian,
  .team-member-hannia,
  .team-member-eduardo,
  .team-member-karina,
  .team-member-enrique {
    grid-column: 1;
  }
}

/* ==========================================================
   CONTACTO V10 — PANEL ÚNICO / DOS TONOS
   Un solo recuadro continuo: información + formulario
   ========================================================== */
.contact-page-shell {
  padding-bottom: 0;
  background: #f7fbff;
}

.contact-page-shell .top-space {
  height: 92px;
}

.contact-main {
  position: relative;
  overflow: hidden;
}

.contact-unified-section {
  position: relative;
  isolation: isolate;
  padding: 42px 0 78px;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 9% 15%, rgba(81, 177, 237, .10), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(74, 126, 245, .09), transparent 28%),
    linear-gradient(135deg, #fbfdff 0%, #f4f9ff 48%, #fbfdff 100%);
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.contact-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(75, 146, 244, .11);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(84, 216, 224, .10);
  border-radius: inherit;
}

.contact-orbit::after {
  inset: 55px;
  border-color: rgba(113, 126, 238, .075);
}

.contact-orbit-a {
  left: -340px;
  bottom: -250px;
}

.contact-orbit-b {
  right: -360px;
  top: -285px;
}

.contact-dots {
  position: absolute;
  width: 230px;
  height: 230px;
  opacity: .32;
  background-image: radial-gradient(circle, rgba(49, 124, 226, .27) 1.2px, transparent 1.5px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(circle, #000 5%, transparent 70%);
  mask-image: radial-gradient(circle, #000 5%, transparent 70%);
}

.contact-dots-a { left: 0; top: 45px; }
.contact-dots-b { right: 10px; bottom: 18px; }

.contact-unified-container {
  width: min(1380px, calc(100% - 54px));
}

.contact-unified-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, .82fr) minmax(580px, 1.35fr);
  width: 100%;
  min-height: 620px;
  border: 1px solid rgba(78, 126, 185, .16);
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 30px 80px rgba(29, 69, 125, .105),
    0 8px 26px rgba(29, 69, 125, .055),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.contact-info-panel,
.contact-form-panel {
  position: relative;
  min-width: 0;
}

.contact-info-panel {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,.92), transparent 34%),
    linear-gradient(145deg, #edf6ff 0%, #e8f3ff 52%, #e3f0ff 100%);
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(83, 129, 191, .13) 24%, rgba(83, 129, 191, .13) 76%, transparent);
}

.contact-form-panel {
  background:
    radial-gradient(circle at 93% 8%, rgba(76, 145, 255, .075), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(249,252,255,.98));
}

.contact-panel-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(44px, 4vw, 62px);
}

.contact-form-content {
  padding-left: clamp(48px, 4.4vw, 72px);
  padding-right: clamp(48px, 4.4vw, 72px);
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  color: #57708f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-kicker i {
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #54d9df, #4d8fff, #9b7bd9);
}

.contact-info-panel h2 {
  max-width: 450px;
  margin: 0;
  color: #102d59;
  font-size: clamp(32px, 2.75vw, 46px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.contact-info-intro {
  max-width: 470px;
  margin: 18px 0 0;
  color: #586a80;
  font-size: 16px;
  line-height: 1.62;
}

.contact-info-list {
  display: grid;
  gap: 28px;
  margin-top: 52px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(64, 133, 230, .13);
  border-radius: 50%;
  background: rgba(255,255,255,.66);
  box-shadow: 0 10px 25px rgba(45, 101, 173, .07), inset 0 1px 0 rgba(255,255,255,.95);
}

.contact-info-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #2478ff;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  display: block;
  margin-bottom: 5px;
  color: #65809f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-info-item a,
.contact-info-value {
  color: #18355d;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 650;
  line-height: 1.45;
  transition: color .2s ease;
}

.contact-info-item a:hover {
  color: #2478ff;
}

.contact-form-panel h1 {
  margin: 0;
  color: #102d59;
  font-size: clamp(36px, 3.15vw, 54px);
  line-height: .98;
  letter-spacing: -.05em;
}

.contact-form-panel h2 {
  margin: 8px 0 0;
  color: #2478ff;
  font-size: clamp(21px, 1.75vw, 29px);
  font-weight: 750;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.contact-form-intro {
  max-width: 720px;
  margin: 16px 0 30px;
  color: #5c6c80;
  font-size: 16px;
  line-height: 1.55;
}

.contact-modern-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-field {
  position: relative;
  display: block;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(90, 117, 157, .19);
  border-radius: 17px;
  outline: none;
  background: rgba(255,255,255,.83);
  color: #1b2d47;
  box-shadow:
    0 6px 18px rgba(37, 73, 122, .035),
    inset 0 1px 0 rgba(255,255,255,.85);
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    transform .2s ease;
}

.contact-field input {
  height: 58px;
  padding: 0 18px 0 52px;
  font-size: 15px;
}

.contact-field textarea {
  min-height: 158px;
  padding: 17px 18px 17px 52px;
  resize: vertical;
  font: inherit;
  font-size: 15px;
  line-height: 1.55;
  grid-column: auto;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8491a4;
  opacity: 1;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(36,120,255,.48);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(36,120,255,.07),
    0 10px 24px rgba(36,120,255,.055);
}

.contact-field-icon {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-message-icon {
  top: 18px;
  transform: none;
}

.contact-field-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #5878a6;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .2s ease;
}

.contact-field:focus-within .contact-field-icon svg {
  stroke: #2478ff;
}

.contact-submit {
  grid-column: 1 / -1;
  min-height: 56px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(100deg, #1269ee 0%, #2485ff 48%, #3375f4 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(36,120,255,.22), inset 0 1px 0 rgba(255,255,255,.20);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

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

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(36,120,255,.28), inset 0 1px 0 rgba(255,255,255,.22);
  filter: saturate(1.06);
}

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

.contact-submit:active {
  transform: translateY(0);
}

.contact-privacy-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding-top: 2px;
  color: #8592a4;
  font-size: 12px;
}

.contact-privacy-note svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #72839a;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

/* Entrada del único recuadro */
.contact-unified-shell.reveal {
  transform: translateY(22px) scale(.992);
  filter: blur(5px);
}

.contact-unified-shell.reveal.visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 1060px) {
  .contact-unified-shell {
    grid-template-columns: minmax(300px, .78fr) minmax(480px, 1.22fr);
  }

  .contact-panel-content {
    padding: 42px 38px;
  }

  .contact-form-content {
    padding-left: 42px;
    padding-right: 42px;
  }

  .contact-info-list {
    margin-top: 38px;
    gap: 23px;
  }
}

@media (max-width: 840px) {
  .contact-page-shell .top-space {
    height: 84px;
  }

  .contact-unified-section {
    min-height: auto;
    padding: 30px 0 60px;
  }

  .contact-unified-container {
    width: min(100%, calc(100% - 32px));
  }

  .contact-unified-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 28px;
  }

  .contact-info-panel::after {
    top: auto;
    left: 8%;
    right: 8%;
    bottom: -1px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(83,129,191,.13) 24%, rgba(83,129,191,.13) 76%, transparent);
  }

  .contact-panel-content,
  .contact-form-content {
    padding: 38px 34px;
  }

  .contact-info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .contact-info-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .contact-info-icon {
    width: 48px;
    height: 48px;
  }

  .contact-info-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 650px) {
  .contact-panel-content,
  .contact-form-content {
    padding: 32px 24px;
  }

  .contact-info-panel h2 {
    font-size: 32px;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact-field-half,
  .contact-field-full,
  .contact-submit,
  .contact-privacy-note {
    grid-column: 1;
  }

  .contact-form-panel h1 {
    font-size: 38px;
  }

  .contact-form-panel h2 {
    font-size: 22px;
  }
}

@media (max-width: 430px) {
  .contact-unified-container {
    width: min(100%, calc(100% - 20px));
  }

  .contact-unified-shell {
    border-radius: 23px;
  }

  .contact-panel-content,
  .contact-form-content {
    padding: 28px 19px;
  }

  .contact-kicker {
    font-size: 10.5px;
  }

  .contact-info-intro,
  .contact-form-intro {
    font-size: 14.5px;
  }
}

/* ==========================================================
   V11 — CONTACTO COMPACTO + HEADER GLOBAL
   Mantiene el diseño aprobado y reduce la escala del formulario.
   ========================================================== */

/* El mismo header del inicio se usa ahora en todas las páginas. */
body:not(.home-page) .home-header {
  display: block;
}

/* CONTACTO: una sola pieza, pero mucho más compacta a zoom 100%. */
.contact-page-shell {
  min-height: 100vh;
  background: #f7fbff;
}

.contact-page-shell .top-space {
  height: 104px;
}

.contact-unified-section {
  min-height: auto;
  padding: 24px 0 58px;
  align-items: flex-start;
}

.contact-unified-container {
  width: min(1120px, calc(100% - 48px));
}

.contact-unified-shell {
  grid-template-columns: minmax(300px, .78fr) minmax(500px, 1.22fr);
  min-height: 0;
  border-radius: 28px;
  box-shadow:
    0 24px 58px rgba(29, 69, 125, .09),
    0 6px 18px rgba(29, 69, 125, .045),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.contact-panel-content {
  padding: 34px 38px;
}

.contact-form-content {
  padding: 34px 42px;
}

.contact-kicker {
  gap: 10px;
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: .16em;
}

.contact-kicker i {
  width: 36px;
  height: 2px;
}

.contact-info-panel h2 {
  max-width: 360px;
  font-size: clamp(27px, 2vw, 34px);
  line-height: 1.02;
}

.contact-info-intro {
  max-width: 380px;
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.55;
}

.contact-info-list {
  gap: 20px;
  margin-top: 30px;
}

.contact-info-item {
  grid-template-columns: 46px 1fr;
  gap: 13px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
}

.contact-info-icon svg {
  width: 21px;
  height: 21px;
}

.contact-info-label {
  margin-bottom: 3px;
  font-size: 9.5px;
}

.contact-info-item a,
.contact-info-value {
  font-size: clamp(13.5px, .95vw, 15.5px);
  line-height: 1.38;
}

.contact-form-panel h1 {
  font-size: clamp(31px, 2.45vw, 42px);
  line-height: 1;
}

.contact-form-panel h2 {
  margin-top: 6px;
  font-size: clamp(18px, 1.38vw, 23px);
  line-height: 1.18;
}

.contact-form-intro {
  max-width: 650px;
  margin: 12px 0 21px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-modern-form {
  gap: 10px;
}

.contact-field input,
.contact-field textarea {
  border-radius: 14px;
}

.contact-field input {
  height: 48px;
  padding: 0 15px 0 44px;
  font-size: 13.5px;
}

.contact-field textarea {
  min-height: 112px;
  padding: 14px 15px 14px 44px;
  font-size: 13.5px;
  line-height: 1.45;
}

.contact-field-icon {
  left: 15px;
  width: 17px;
  height: 17px;
}

.contact-message-icon {
  top: 15px;
}

.contact-submit {
  min-height: 48px;
  margin-top: 0;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(36,120,255,.18), inset 0 1px 0 rgba(255,255,255,.20);
}

.contact-submit svg {
  width: 18px;
  height: 18px;
}

.contact-privacy-note {
  gap: 6px;
  padding-top: 0;
  font-size: 10.5px;
}

.contact-privacy-note svg {
  width: 13px;
  height: 13px;
}

/* Decoración más discreta para que el panel sea protagonista. */
.contact-orbit {
  width: 420px;
  height: 420px;
}

.contact-dots {
  width: 190px;
  height: 190px;
  opacity: .24;
}

/* Tablet */
@media (max-width: 980px) {
  .contact-unified-container {
    width: min(920px, calc(100% - 36px));
  }

  .contact-unified-shell {
    grid-template-columns: minmax(275px, .72fr) minmax(440px, 1.28fr);
  }

  .contact-panel-content {
    padding: 30px 28px;
  }

  .contact-form-content {
    padding: 30px 32px;
  }
}

/* Cuando ya no caben bien dos columnas, apilamos sin inflar la sección. */
@media (max-width: 820px) {
  .contact-page-shell .top-space {
    height: 92px;
  }

  .contact-unified-section {
    padding: 20px 0 48px;
  }

  .contact-unified-container {
    width: min(100%, calc(100% - 28px));
  }

  .contact-unified-shell {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .contact-panel-content,
  .contact-form-content {
    padding: 28px 26px;
  }

  .contact-info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
  }

  .contact-info-item {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-icon svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 620px) {
  .contact-info-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .contact-field-half,
  .contact-field-full,
  .contact-submit,
  .contact-privacy-note {
    grid-column: 1;
  }

  .contact-info-panel h2 {
    font-size: 28px;
  }

  .contact-form-panel h1 {
    font-size: 34px;
  }

  .contact-form-panel h2 {
    font-size: 19px;
  }
}

@media (max-width: 430px) {
  .contact-unified-container {
    width: min(100%, calc(100% - 18px));
  }

  .contact-panel-content,
  .contact-form-content {
    padding: 24px 18px;
  }
}

/* ==========================================================
   V12 — ACERCA DE / MISIÓN, VISIÓN Y VALORES
   ========================================================== */
.about-modern-page {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(79, 149, 255, .10), transparent 25%),
    radial-gradient(circle at 92% 34%, rgba(82, 218, 224, .08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 32%, #f6faff 100%);
}

.about-modern-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image: radial-gradient(circle, rgba(37, 113, 212, .18) 1px, transparent 1.25px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(90deg, #000 0 8%, transparent 17% 83%, #000 94% 100%);
  mask-image: linear-gradient(90deg, #000 0 8%, transparent 17% 83%, #000 94% 100%);
}

.about-modern-page .top-space {
  height: 112px;
}

.about-modern-hero {
  position: relative;
  padding: 58px 0 52px;
}

.about-modern-hero::before,
.about-modern-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(64, 133, 227, .12);
  border-radius: 50%;
  pointer-events: none;
}

.about-modern-hero::before {
  width: 430px;
  height: 430px;
  left: -255px;
  top: -215px;
}

.about-modern-hero::after {
  width: 380px;
  height: 380px;
  right: -220px;
  bottom: -250px;
}

.about-modern-intro {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-modern-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #276fc7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-modern-kicker::after {
  content: "";
  width: 52px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #59dce0, #4b8fff, #9d7fdb);
}

.about-modern-intro h1 {
  margin: 18px 0 16px;
  color: #112e5d;
  font-size: clamp(46px, 5.6vw, 82px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.055em;
}

.about-modern-intro h1 span,
.about-values-head h2 span {
  color: #2478ff;
}

.about-modern-quote {
  max-width: 760px;
  margin: 0 auto;
  color: #607086;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(17px, 1.35vw, 21px);
  font-style: italic;
  line-height: 1.55;
}

.about-purpose-section {
  position: relative;
  z-index: 1;
  padding: 26px 0 64px;
}

.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-purpose-card {
  position: relative;
  min-height: 420px;
  padding: 38px 42px 40px;
  border: 1px solid rgba(72, 126, 190, .13);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(31, 74, 126, .07), inset 0 1px 0 rgba(255,255,255,.86);
}

.about-purpose-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  bottom: -115px;
  border: 1px solid rgba(68, 137, 231, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(68, 137, 231, .025), 0 0 0 62px rgba(68, 137, 231, .018);
}

.about-mission {
  background:
    linear-gradient(145deg, rgba(231,243,255,.94), rgba(246,251,255,.78)),
    #edf6ff;
}

.about-vision {
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(237,247,255,.76)),
    #ffffff;
}

.about-purpose-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.about-purpose-number {
  color: rgba(28, 73, 130, .22);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
}

.about-purpose-icon,
.about-value-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(49, 121, 222, .15);
  background: rgba(255,255,255,.72);
  box-shadow: 0 13px 32px rgba(36, 90, 158, .08), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-purpose-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
}

.about-purpose-icon svg {
  width: 38px;
  height: 38px;
}

.about-purpose-icon svg,
.about-value-icon svg {
  fill: none;
  stroke: #2478ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-purpose-label {
  color: #2478ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.about-purpose-card h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 12px 0 18px;
  color: #102d59;
  font-size: clamp(31px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.about-purpose-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4d6078;
  font-size: clamp(15.5px, 1.08vw, 17px);
  line-height: 1.75;
  text-wrap: pretty;
}

.about-values-section {
  position: relative;
  z-index: 1;
  padding: 74px 0 82px;
}

.about-values-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 470px);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.about-values-head h2 {
  margin: 12px 0 0;
  color: #102d59;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: -.05em;
}

.about-values-head > p {
  margin: 0 0 4px;
  color: #647389;
  font-size: 16px;
  line-height: 1.65;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-value-card {
  position: relative;
  min-height: 380px;
  padding: 30px 32px 34px;
  overflow: hidden;
  border: 1px solid rgba(71, 123, 185, .12);
  border-radius: 27px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 54px rgba(31, 74, 126, .055), inset 0 1px 0 rgba(255,255,255,.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease, border-color .32s ease;
}

.about-value-card::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -62px;
  top: -64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 145, 255, .10), rgba(78,145,255,0) 72%);
  pointer-events: none;
}

.about-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 126, 225, .22);
  box-shadow: 0 26px 70px rgba(31, 74, 126, .10), inset 0 1px 0 rgba(255,255,255,.95);
}

.about-value-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.about-value-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.about-value-icon svg {
  width: 31px;
  height: 31px;
}

.about-value-index {
  color: rgba(20, 66, 122, .20);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.about-value-card h3 {
  margin: 0;
  color: #123362;
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.about-value-line {
  display: block;
  width: 46px;
  height: 2px;
  margin: 15px 0 17px;
  border-radius: 999px;
  background: linear-gradient(90deg, #58dbe0, #4a89ff, #9a7fe0);
  transition: width .36s ease;
}

.about-value-card:hover .about-value-line {
  width: 74px;
}

.about-value-card p {
  margin: 0;
  color: #53657a;
  font-size: 15.5px;
  line-height: 1.68;
  text-wrap: pretty;
}

.about-quote-section {
  position: relative;
  z-index: 1;
  padding: 0 0 88px;
}

.about-quote-card {
  position: relative;
  overflow: hidden;
  padding: 50px 68px 46px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(67, 160, 231, .28), transparent 27%),
    linear-gradient(120deg, #0c2e58 0%, #0e4a76 54%, #0b375f 100%);
  box-shadow: 0 28px 78px rgba(17, 55, 95, .20);
}

.about-quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 70% 100%);
  mask-image: linear-gradient(90deg, transparent, #000 70% 100%);
}

.about-quote-mark {
  position: relative;
  z-index: 1;
  display: block;
  height: 38px;
  color: #6fdde4;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: .8;
}

.about-quote-card p {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 13px 0 0;
  color: #ffffff;
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.about-quote-accent {
  position: relative;
  z-index: 1;
  display: block;
  width: 82px;
  height: 3px;
  margin-top: 25px;
  border-radius: 999px;
  background: linear-gradient(90deg, #60e0e2, #4e92ff, #a37be1);
}

/* ==========================================================
   V12 — FOOTER GLOBAL MODERNO
   ========================================================== */
.footer.footer-modern {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(circle at 7% 20%, rgba(74, 169, 231, .20), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(75, 141, 255, .15), transparent 26%),
    linear-gradient(120deg, #092849 0%, #0c3b65 55%, #0a3157 100%);
  color: #ffffff;
}

.footer-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(circle, rgba(255,255,255,.9) 1px, transparent 1.35px);
  background-size: 25px 25px;
  -webkit-mask-image: linear-gradient(90deg, #000 0 12%, transparent 22% 78%, #000 90% 100%);
  mask-image: linear-gradient(90deg, #000 0 12%, transparent 22% 78%, #000 90% 100%);
  pointer-events: none;
}

.footer-decor {
  position: absolute;
  border: 1px solid rgba(125, 200, 255, .16);
  border-radius: 50%;
  pointer-events: none;
}

.footer-decor-a {
  width: 460px;
  height: 460px;
  left: -275px;
  top: -255px;
  box-shadow: 0 0 0 36px rgba(99, 185, 245, .018), 0 0 0 72px rgba(99,185,245,.012);
}

.footer-decor-b {
  width: 390px;
  height: 390px;
  right: -230px;
  bottom: -265px;
}

.footer-modern-inner {
  position: relative;
  z-index: 1;
  padding-top: 58px;
  padding-bottom: 24px;
}

.footer-modern-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.55fr) .72fr .72fr 1.08fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.footer-modern-brand {
  max-width: 430px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.12));
}

.footer-logo span {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.footer-modern-brand > p {
  max-width: 390px;
  margin: 0;
  color: rgba(231, 242, 255, .74);
  font-size: 14.5px;
  line-height: 1.7;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.24);
}

.footer-cta span {
  color: #65dce1;
  font-size: 17px;
}

.footer-modern-label {
  display: block;
  margin-bottom: 17px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}

.footer-modern-col > a:not(.footer-contact-item) {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: rgba(230, 240, 253, .72);
  font-size: 14px;
  transition: color .22s ease, transform .22s ease;
}

.footer-modern-col > a:not(.footer-contact-item):hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-col {
  min-width: 0;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: start;
  margin: 11px 0;
  color: rgba(230, 240, 253, .76);
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact-dot {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #58dbe0, #4b8fff);
  box-shadow: 0 0 0 4px rgba(86, 188, 232, .06);
}

.footer-modern-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(218, 232, 249, .50);
  font-size: 11.5px;
}

@media (max-width: 1050px) {
  .about-purpose-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-purpose-card {
    min-height: auto;
  }

  .about-values-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .footer-contact-col {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 24px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .footer-contact-col .footer-modern-label {
    grid-column: 1 / -1;
    margin-top: 16px;
  }
}

@media (max-width: 700px) {
  .about-modern-page .top-space {
    height: 92px;
  }

  .about-modern-hero {
    padding: 42px 0 34px;
  }

  .about-modern-intro h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .about-purpose-section {
    padding-bottom: 46px;
  }

  .about-purpose-card {
    padding: 28px 24px 30px;
    border-radius: 24px;
  }

  .about-purpose-top {
    margin-bottom: 32px;
  }

  .about-purpose-icon {
    width: 62px;
    height: 62px;
  }

  .about-values-section {
    padding: 54px 0 62px;
  }

  .about-value-card {
    min-height: auto;
    padding: 26px 23px 28px;
    border-radius: 23px;
  }

  .about-quote-section {
    padding-bottom: 66px;
  }

  .about-quote-card {
    padding: 38px 28px 36px;
    border-radius: 24px;
  }

  .footer-modern-inner {
    padding-top: 44px;
  }

  .footer-modern-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-modern-brand {
    grid-column: 1 / -1;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .footer-modern-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .footer-modern-grid {
    grid-template-columns: 1fr;
  }

  .footer-modern-brand,
  .footer-contact-col {
    grid-column: auto;
  }

  .footer-logo img {
    width: 56px;
    height: 56px;
  }

  .footer-logo span {
    font-size: 22px;
  }
}

/* ==========================================================
   V13 — PÁGINAS INTERNAS: SERVICIOS, PRODUCTOS, BLOG Y ACERCA
   Escala contenida, fondos suaves, tarjetas limpias y CTA discretos.
   ========================================================== */
.solution-page,
.blog-modern-page,
.about-v13-page {
  --v13-navy: #0d315f;
  --v13-blue: #2679ff;
  --v13-cyan: #59d9e0;
  --v13-violet: #8d75ec;
  --v13-text: #263b59;
  --v13-muted: #66758b;
  --v13-line: rgba(44, 105, 188, .13);
  --v13-glass: rgba(255,255,255,.72);
  --v13-shadow: 0 22px 60px rgba(28, 70, 132, .08);
  background:
    radial-gradient(circle at 10% 10%, rgba(90,218,224,.08), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(63,132,255,.07), transparent 28%),
    linear-gradient(180deg,#fbfdff 0%,#f5faff 54%,#fff 100%);
  color: var(--v13-text);
  overflow: hidden;
}
.solution-top-space { height: 112px; }
.solution-hero { padding: 38px 0 26px; position: relative; }
.solution-hero::after,
.blog-modern-hero::after,
.about-v13-hero::after {
  content:""; position:absolute; width:320px; height:320px; border:1px solid rgba(55,135,250,.11); border-radius:50%; right:-190px; top:-150px; pointer-events:none;
}
.solution-hero-inner { display:flex; align-items:flex-end; justify-content:space-between; gap:36px; }
.solution-hero-copy { max-width: 840px; }
.solution-kicker { display:inline-flex; align-items:center; gap:10px; color:#2d72d9; font-size:11px; line-height:1; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.solution-kicker::after { content:""; width:44px; height:1px; background:linear-gradient(90deg,var(--v13-cyan),var(--v13-blue),var(--v13-violet)); }
.solution-hero h1,
.blog-modern-hero h1,
.about-v13-hero h1 { margin:15px 0 10px; color:var(--v13-navy); font-size:clamp(36px,4vw,58px); line-height:1.02; letter-spacing:-.045em; font-weight:780; }
.solution-hero p,
.blog-modern-hero p,
.about-v13-hero p { max-width:760px; margin:0; color:var(--v13-muted); font-size:clamp(16px,1.3vw,19px); line-height:1.65; }
.solution-hero-action { flex:0 0 auto; padding-bottom:6px; }
.solution-demo-btn,
.solution-small-cta { display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:42px; padding:0 18px; border-radius:999px; text-decoration:none; font-size:14px; font-weight:760; color:#fff; background:linear-gradient(100deg,#1575f7,#367df7 60%,#7967ec); box-shadow:0 12px 26px rgba(37,111,237,.18); transition:transform .25s ease, box-shadow .25s ease; }
.solution-demo-btn:hover,.solution-small-cta:hover { transform:translateY(-2px); box-shadow:0 17px 30px rgba(37,111,237,.23); }
.solution-content-section { padding: 26px 0 92px; }
.solution-content-section > .container { display:grid; gap:30px; }
.solution-section-head { max-width:900px; margin:16px 0 2px; }
.solution-section-head h2,.product-intro h2 { margin:10px 0 0; color:var(--v13-navy); font-size:clamp(24px,2.25vw,34px); line-height:1.13; letter-spacing:-.026em; }
.solution-section-head p,.product-intro p { color:var(--v13-muted); line-height:1.72; font-size:15.5px; }
.product-intro { max-width:1050px; padding:26px 30px; border:1px solid var(--v13-line); border-radius:26px; background:rgba(255,255,255,.58); box-shadow:var(--v13-shadow); }
.product-intro h3 { color:var(--v13-navy); font-size:18px; line-height:1.45; font-weight:650; }

.solution-feature-grid { display:grid; gap:18px; }
.solution-feature-grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.solution-feature-grid-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.solution-media-card,
.solution-feature-card,
.web-plan-card,
.solution-list-panel,
.solution-prose,
.hosting-plan,
.hosting-visual,
.solution-mini-media { border:1px solid var(--v13-line); background:rgba(255,255,255,.72); border-radius:22px; box-shadow:0 16px 42px rgba(33,76,138,.055); }
.solution-media-card { padding:14px 14px 22px; }
.solution-media-card h3,.solution-feature-card h3,.solution-mini-media h3 { margin:17px 4px 9px; color:var(--v13-navy); font-size:17px; line-height:1.25; letter-spacing:-.01em; }
.solution-media-card p,.solution-feature-card p,.solution-prose p,.solution-list-panel p,.solution-list-panel dd { color:#53647c; font-size:14.5px; line-height:1.62; }
.solution-media-placeholder { min-height:205px; border-radius:16px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:7px; color:#70819a; border:1px dashed rgba(56,122,212,.24); background:linear-gradient(145deg,rgba(239,247,255,.9),rgba(255,255,255,.95)); overflow:hidden; }
.solution-media-placeholder span { font-size:11px; text-transform:uppercase; letter-spacing:.14em; font-weight:750; color:#7193c4; }
.solution-media-placeholder strong { max-width:80%; font-size:14px; color:#31537f; font-weight:720; }
.solution-icon-badge { width:50px; height:50px; display:grid; place-items:center; border-radius:16px; color:#287af7; background:linear-gradient(145deg,#fff,#edf6ff); border:1px solid rgba(40,122,247,.13); box-shadow:0 10px 22px rgba(42,103,184,.08); }
.solution-icon-badge svg { width:27px; height:27px; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.solution-feature-card { padding:24px 22px; min-height:190px; }
.solution-callout { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:19px 24px; border-left:3px solid #2c7cff; border-radius:0 18px 18px 0; background:linear-gradient(90deg,rgba(231,244,255,.82),rgba(255,255,255,.38)); }
.solution-callout > p { margin:0; color:#234268; font-size:clamp(16px,1.4vw,20px); line-height:1.45; font-weight:690; }
.solution-image-feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.solution-mini-media { padding:12px; }
.solution-mini-media .solution-media-placeholder { min-height:145px; }
.solution-two-cols { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.solution-three-info { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.solution-three-info.compact .solution-prose { min-height:auto; }
.solution-prose,.solution-list-panel { padding:24px 26px; }
.solution-prose h3,.solution-list-panel h3 { color:var(--v13-navy); margin:0 0 12px; font-size:19px; }
.solution-prose p:first-child,.solution-list-panel p:first-child { margin-top:0; }
.solution-list-panel ul { list-style:none; padding:0; margin:14px 0 0; display:grid; gap:9px; }
.solution-list-panel li { position:relative; padding-left:20px; color:#405572; font-size:14px; line-height:1.45; }
.solution-list-panel li::before { content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; border-radius:50%; background:linear-gradient(135deg,var(--v13-cyan),var(--v13-blue)); }
.solution-list-panel dl { margin:0; display:grid; gap:7px; }
.solution-list-panel dt { margin-top:9px; color:var(--v13-navy); font-weight:800; font-size:13.5px; letter-spacing:.02em; }
.solution-list-panel dd { margin:0; }
.solution-icon-row { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:15px; }
.solution-icon-row-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.solution-icon-row .solution-feature-card { min-height:150px; text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.solution-icon-row .solution-feature-card h3 { margin-bottom:0; font-size:14.5px; }
.solution-wide-placeholder > .solution-media-placeholder { min-height:290px; }
.solution-hardware-row { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.solution-hardware-row .solution-feature-card { min-height:160px; text-align:center; }
.solution-inline-actions { display:flex; align-items:center; flex-wrap:wrap; gap:10px 14px; margin-top:14px; color:#36516f; font-size:13px; }
.solution-top-cta { display:flex; justify-content:center; }
.solution-quote { position:relative; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:14px; max-width:960px; margin:18px auto 0; padding:10px 0; color:var(--v13-navy); }
.solution-quote > span { color:#55cbd9; font:700 42px/1 Georgia,serif; }
.solution-quote p { margin:0; font-size:clamp(17px,1.55vw,22px); line-height:1.4; font-family:Georgia,serif; font-style:italic; color:#334c6d; }
.solution-quote i { width:70px; height:2px; background:linear-gradient(90deg,var(--v13-cyan),var(--v13-blue),var(--v13-violet)); }

/* Diseño web */
.web-plan-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.web-plan-card { padding:14px 14px 24px; text-align:center; }
.web-plan-card .solution-media-placeholder { min-height:185px; }
.web-plan-card h3 { color:var(--v13-navy); font-size:19px; margin:18px 0 8px; }
.web-price { display:flex; justify-content:center; align-items:baseline; gap:4px; color:#263d5c; margin:10px 0 18px; }
.web-price small { font-size:16px; }.web-price strong { font-size:clamp(38px,3vw,52px); letter-spacing:-.04em; }.web-price span { font-size:14px; }
.web-plan-card ul { list-style:none; margin:0 0 18px; padding:0; color:#55667f; display:grid; gap:5px; font-size:14px; }
.web-plan-card > a { color:#2d79ed; text-decoration:none; font-weight:750; font-size:14px; }

/* Hosting */
.hosting-layout { display:grid; grid-template-columns:1.1fr .9fr; gap:22px; }
.hosting-visual { padding:14px; }.hosting-visual .solution-media-placeholder { min-height:440px; }
.hosting-plan { padding:32px; }
.hosting-plan h2 { color:var(--v13-navy); font-size:28px; margin:14px 0 10px; }
.hosting-price { display:flex; align-items:baseline; gap:6px; margin:8px 0 18px; }.hosting-price strong { font-size:54px; color:#203b5e; letter-spacing:-.05em; }.hosting-price span,.hosting-price small { color:#5b6e88; }
.hosting-plan ul { list-style:none; padding:0; display:grid; gap:7px; color:#52657e; font-size:14px; }
.hosting-plan li::before { content:"✦"; color:#2d7df2; margin-right:8px; }

/* BLOG */
.blog-modern-hero,.about-v13-hero { position:relative; padding:45px 0 34px; }
.blog-modern-hero .container,.about-v13-hero .container { max-width:1120px; }
.blog-modern-section { padding:20px 0 90px; }
.blog-modern-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.blog-modern-card { display:grid; grid-template-columns:190px 1fr; min-height:215px; overflow:hidden; border:1px solid var(--v13-line); border-radius:22px; background:rgba(255,255,255,.77); box-shadow:0 16px 42px rgba(34,77,138,.055); }
.blog-modern-media { display:flex; align-items:flex-end; padding:15px; text-decoration:none; color:#56749f; background:linear-gradient(145deg,#eaf5ff,#fafdff 48%,#edf0ff); border-right:1px solid var(--v13-line); position:relative; }
.blog-modern-media::before { content:""; position:absolute; width:90px; height:90px; border-radius:50%; top:22px; left:48px; border:1px solid rgba(38,121,255,.16); }
.blog-modern-media span { position:relative; z-index:1; font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.blog-modern-copy { padding:22px 22px 20px; display:flex; flex-direction:column; }
.blog-modern-meta { display:flex; justify-content:space-between; gap:12px; color:#7790b0; font-size:10.5px; text-transform:uppercase; letter-spacing:.09em; font-weight:760; }
.blog-modern-card h2 { margin:12px 0 9px; font-size:19px; line-height:1.25; letter-spacing:-.015em; }
.blog-modern-card h2 a { color:var(--v13-navy); text-decoration:none; }
.blog-modern-card p { margin:0; color:#637188; font-size:13.5px; line-height:1.55; }
.blog-modern-link { margin-top:auto; padding-top:12px; color:#2679f4; font-weight:750; text-decoration:none; font-size:13px; }

/* ACERCA V13 */
.about-v13-hero { text-align:center; }
.about-v13-hero .solution-kicker { justify-content:center; }
.about-v13-hero h1 { font-size:clamp(34px,3.6vw,52px); }
.about-v13-purpose { padding:24px 0 38px; }
.about-v13-purpose-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.about-v13-purpose-card { position:relative; min-height:300px; padding:32px 34px; border-radius:26px; border:1px solid var(--v13-line); background:linear-gradient(145deg,rgba(235,246,255,.86),rgba(255,255,255,.74)); box-shadow:var(--v13-shadow); overflow:hidden; }
.about-v13-purpose-card::after { content:""; position:absolute; width:180px; height:180px; border-radius:50%; border:1px solid rgba(40,122,247,.10); right:-85px; bottom:-90px; }
.about-v13-number { color:#d4e0ef; font-size:34px; font-weight:800; letter-spacing:-.05em; }
.about-v13-label { display:block; margin:42px 0 9px; color:#2b7af0; font-size:10px; letter-spacing:.19em; font-weight:850; }
.about-v13-purpose-card h2 { margin:0 0 13px; color:var(--v13-navy); font-size:28px; letter-spacing:-.025em; }
.about-v13-purpose-card p { margin:0; color:#4d627d; line-height:1.75; font-size:15px; max-width:620px; }
.about-v13-values { padding:46px 0 96px; }
.about-v13-values-head { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:22px; }
.about-v13-values-head h2 { margin:12px 0 0; color:var(--v13-navy); font-size:clamp(30px,3vw,44px); letter-spacing:-.04em; }
.about-v13-values-head > p { max-width:380px; color:#66758b; line-height:1.6; font-size:14px; }
.about-v13-values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.about-v13-value { position:relative; padding:26px 28px 28px; border:1px solid var(--v13-line); border-radius:22px; background:rgba(255,255,255,.72); box-shadow:0 16px 42px rgba(34,77,138,.045); }
.about-v13-value-top { display:flex; align-items:center; justify-content:space-between; }
.about-v13-icon { width:42px; height:42px; display:grid; place-items:center; color:#277bf4; border:1px solid rgba(39,123,244,.17); border-radius:13px; background:#fff; }
.about-v13-icon svg { width:23px; height:23px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.about-v13-value .about-v13-number { font-size:24px; }
.about-v13-value h3 { color:var(--v13-navy); font-size:18px; text-transform:uppercase; margin:18px 0 11px; }
.about-v13-value h3::after { content:""; display:block; width:30px; height:1px; margin-top:10px; background:linear-gradient(90deg,var(--v13-cyan),var(--v13-blue)); }
.about-v13-value p { color:#50637d; font-size:14px; line-height:1.72; margin:0; }
.about-v13-quote { max-width:1060px; margin:48px auto 0; display:flex; align-items:center; gap:16px; padding:0 6px; }
.about-v13-quote-mark { color:#4bcbd9; font:700 48px/1 Georgia,serif; }
.about-v13-quote p { margin:0; color:#274666; font:italic 600 clamp(18px,1.65vw,23px)/1.45 Georgia,serif; }
.about-v13-quote-line { flex:0 0 82px; height:2px; background:linear-gradient(90deg,var(--v13-cyan),var(--v13-blue),var(--v13-violet)); }

@media (max-width:1100px) {
  .solution-feature-grid-4,.solution-image-feature-grid { grid-template-columns:repeat(2,1fr); }
  .solution-icon-row,.solution-hardware-row { grid-template-columns:repeat(3,1fr); }
  .blog-modern-card { grid-template-columns:150px 1fr; }
}
@media (max-width:900px) {
  .solution-top-space { height:96px; }
  .solution-hero-inner { align-items:flex-start; flex-direction:column; gap:18px; }
  .solution-feature-grid-3,.web-plan-grid,.solution-three-info,.hosting-layout { grid-template-columns:1fr; }
  .solution-two-cols { grid-template-columns:1fr; }
  .hosting-visual .solution-media-placeholder { min-height:260px; }
  .blog-modern-grid { grid-template-columns:1fr; }
  .about-v13-purpose-grid,.about-v13-values-grid { grid-template-columns:1fr; }
  .about-v13-values-head { align-items:flex-start; flex-direction:column; }
}
@media (max-width:650px) {
  .solution-hero h1,.blog-modern-hero h1,.about-v13-hero h1 { font-size:34px; }
  .solution-content-section { padding-bottom:68px; }
  .solution-feature-grid-4,.solution-image-feature-grid,.solution-icon-row,.solution-icon-row-3,.solution-hardware-row { grid-template-columns:1fr; }
  .solution-media-placeholder { min-height:165px; }
  .solution-wide-placeholder > .solution-media-placeholder { min-height:210px; }
  .solution-callout { padding:16px 18px; }
  .solution-three-info { gap:12px; }
  .blog-modern-card { grid-template-columns:1fr; }
  .blog-modern-media { min-height:150px; border-right:0; border-bottom:1px solid var(--v13-line); }
  .about-v13-purpose-card { padding:27px 24px; min-height:auto; }
  .about-v13-label { margin-top:26px; }
  .about-v13-quote { align-items:flex-start; }
  .about-v13-quote-line { display:none; }
}

/* ==========================================================
   V14 — DETALLES MÁS LIMPIOS Y EDITORIALES
   Sin encabezados genéricos gigantes. Mantiene el contenido
   y moderniza únicamente su organización visual.
   ========================================================== */

/* La página comienza directamente con el contenido real. */
.solution-page .solution-top-space,
.blog-modern-page .solution-top-space {
  height: 102px;
}

.solution-hero,
.solution-hero-inner,
.solution-hero-copy,
.solution-hero-action {
  display: none !important;
}

.solution-content-section {
  padding: 42px 0 88px;
}

.solution-content-section > .container {
  gap: 26px;
}

/* Encabezado real de cada servicio: etiqueta pequeña + título moderado. */
.solution-section-head,
.solution-primary-head {
  max-width: 1020px;
  margin: 4px 0 8px;
}

.solution-primary-head {
  padding-bottom: 12px;
}

.solution-section-head h2,
.product-intro h2 {
  max-width: 1040px;
  margin: 12px 0 0;
  color: var(--v13-navy);
  font-size: clamp(24px, 2.05vw, 32px);
  line-height: 1.16;
  letter-spacing: -.025em;
  font-weight: 760;
}

.solution-primary-head h2 {
  font-size: clamp(26px, 2.25vw, 35px);
}

.solution-section-head p,
.product-intro p {
  max-width: 950px;
  color: var(--v13-muted);
  font-size: 15px;
  line-height: 1.72;
}

/* Los productos dejan de empezar dentro de un "cuadrote". */
.product-intro {
  position: relative;
  max-width: 1100px;
  padding: 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-intro h3 {
  max-width: 960px;
  margin: 14px 0 0;
  color: #425a78;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 590;
}

.product-demo-inline {
  margin-top: 18px;
}

.product-demo-inline .solution-demo-btn {
  min-height: 38px;
  padding: 0 15px;
  font-size: 12.5px;
  box-shadow: 0 9px 20px rgba(37,111,237,.13);
}

/* Tarjetas de características: más compactas, no cajas enormes. */
.solution-feature-card {
  min-height: 0;
  padding: 19px 20px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  border-radius: 19px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 30px rgba(33,76,138,.045);
}

.solution-feature-card .solution-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  grid-row: 1 / span 2;
}

.solution-feature-card .solution-icon-badge svg {
  width: 23px;
  height: 23px;
}

.solution-feature-card h3 {
  margin: 2px 0 6px;
  font-size: 15px;
  line-height: 1.3;
}

.solution-feature-card p {
  grid-column: 2;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.58;
}

/* Las tarjetas que sí representan una imagen conservan más protagonismo visual. */
.solution-media-card {
  padding: 12px 12px 19px;
  border-radius: 20px;
  box-shadow: 0 13px 34px rgba(33,76,138,.045);
}

.solution-media-card h3 {
  margin: 15px 5px 8px;
  font-size: 15px;
}

.solution-media-card p {
  margin: 8px 5px 0;
  font-size: 13.5px;
}

.solution-media-placeholder {
  min-height: 182px;
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(236,246,255,.76), rgba(255,255,255,.94));
}

.solution-media-placeholder-clean {
  min-height: 170px;
  position: relative;
  gap: 4px;
  background:
    linear-gradient(145deg, rgba(230,243,255,.68), rgba(255,255,255,.94));
}

.solution-media-placeholder-clean::before,
.solution-media-placeholder-clean::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.solution-media-placeholder-clean::before {
  width: 58px;
  height: 42px;
  border: 1px solid rgba(44,121,230,.18);
  border-radius: 10px;
  top: 35%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.solution-media-placeholder-clean::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(44,121,230,.10);
  top: calc(35% - 5px);
  left: calc(50% - 12px);
}

.solution-media-placeholder-clean span,
.solution-media-placeholder-clean strong {
  position: relative;
  z-index: 1;
  transform: translateY(30px);
}

/* Textos largos: altura natural, sin igualar cajas y crear espacios vacíos. */
.solution-two-cols,
.solution-three-info {
  align-items: start;
}

.solution-prose,
.solution-list-panel {
  min-height: 0;
  padding: 22px 24px;
  border-radius: 19px;
  box-shadow: 0 12px 30px rgba(33,76,138,.038);
}

.solution-prose h3,
.solution-list-panel h3 {
  font-size: 18px;
}

.solution-callout {
  padding: 16px 20px;
  border-left-width: 2px;
  border-radius: 0 15px 15px 0;
  background: linear-gradient(90deg,rgba(232,245,255,.70),rgba(255,255,255,.18));
}

.solution-callout > p {
  font-size: clamp(15px,1.22vw,18px);
  line-height: 1.5;
  font-weight: 630;
}

.solution-callout-soft {
  display: grid;
  gap: 12px;
}

/* Soporte técnico: una sola pieza editorial para el texto de protección. */
.support-protection-panel {
  display: grid;
  grid-template-columns: minmax(230px,.62fr) minmax(0,1.38fr);
  gap: 30px;
  padding: 28px 30px;
  border: 1px solid var(--v13-line);
  border-radius: 22px;
  background:
    linear-gradient(135deg,rgba(237,247,255,.78),rgba(255,255,255,.78));
  box-shadow: 0 15px 40px rgba(34,77,138,.045);
}

.support-protection-intro {
  align-self: start;
  padding-right: 20px;
  border-right: 1px solid rgba(44,105,188,.10);
}

.support-protection-intro p {
  margin: 16px 0 0;
  color: #53647c;
  font-size: 14.5px;
  line-height: 1.72;
}

.support-protection-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px 24px;
}

.support-protection-grid article {
  position: relative;
  padding: 0 0 0 15px;
}

.support-protection-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 30px;
  border-radius: 99px;
  background: linear-gradient(180deg,var(--v13-cyan),var(--v13-blue),var(--v13-violet));
  opacity: .76;
}

.support-protection-grid h3 {
  margin: 0 0 7px;
  color: var(--v13-navy);
  font-size: 13.5px;
  line-height: 1.3;
  letter-spacing: .025em;
}

.support-protection-grid p {
  margin: 0;
  color: #596b83;
  font-size: 13.5px;
  line-height: 1.58;
}

/* Venta de Hardware: fotos, no iconos. */
.solution-hardware-gallery {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
}

.solution-hardware-media {
  padding: 10px 10px 16px;
  border: 1px solid var(--v13-line);
  border-radius: 19px;
  background: rgba(255,255,255,.70);
  box-shadow: 0 12px 30px rgba(33,76,138,.04);
}

.solution-hardware-media h3 {
  min-height: 38px;
  margin: 13px 4px 1px;
  color: var(--v13-navy);
  font-size: 13.5px;
  line-height: 1.32;
  text-align: center;
}

.solution-hardware-media .solution-media-placeholder {
  min-height: 145px;
}

.solution-two-cols-balanced {
  grid-template-columns: .9fr 1.1fr;
}

/* Los grupos compactos de iconos dejan de parecer bloques gigantes. */
.solution-icon-row .solution-feature-card {
  min-height: 118px;
  padding: 18px 14px;
  display: flex;
  text-align: center;
}

.solution-icon-row .solution-feature-card .solution-icon-badge {
  width: 40px;
  height: 40px;
}

.solution-icon-row .solution-feature-card h3 {
  margin: 9px 0 0;
  font-size: 13px;
}

/* Diseño web y hosting: menor escala general. */
.web-plan-card {
  padding: 12px 12px 21px;
  border-radius: 20px;
}

.web-plan-card .solution-media-placeholder {
  min-height: 165px;
}

.web-price strong {
  font-size: clamp(34px,2.7vw,46px);
}

.hosting-visual .solution-media-placeholder {
  min-height: 360px;
}

.hosting-plan {
  padding: 27px 28px;
  border-radius: 20px;
}

.hosting-price strong {
  font-size: 48px;
}

/* Blog sin el kicker genérico "BLOG · GRUPO..." ni hero enorme. */
.blog-simple-head {
  padding: 35px 0 18px;
}

.blog-simple-head .container {
  max-width: 1180px;
}

.blog-simple-head h1 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--v13-navy);
  font-size: clamp(27px,2.2vw,36px);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.blog-modern-section {
  padding-top: 18px;
}

/* Frases finales: discretas, no banners. */
.solution-quote {
  max-width: 900px;
  margin-top: 8px;
  padding: 8px 0;
}

.solution-quote > span {
  font-size: 34px;
}

.solution-quote p {
  font-size: clamp(16px,1.35vw,20px);
  font-weight: 500;
}

.solution-quote i {
  width: 48px;
  height: 1px;
}

@media (max-width: 1180px) {
  .solution-hardware-gallery {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 900px) {
  .solution-page .solution-top-space,
  .blog-modern-page .solution-top-space {
    height: 88px;
  }

  .solution-content-section {
    padding-top: 34px;
  }

  .support-protection-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .support-protection-intro {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(44,105,188,.10);
  }

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

  .solution-two-cols-balanced {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .solution-content-section {
    padding-top: 26px;
    padding-bottom: 64px;
  }

  .solution-primary-head h2,
  .solution-section-head h2,
  .product-intro h2 {
    font-size: 25px;
  }

  .solution-feature-card {
    grid-template-columns: 38px minmax(0,1fr);
    padding: 17px;
  }

  .solution-feature-card .solution-icon-badge {
    width: 38px;
    height: 38px;
  }

  .support-protection-grid,
  .solution-hardware-gallery {
    grid-template-columns: 1fr;
  }

  .solution-hardware-media .solution-media-placeholder {
    min-height: 180px;
  }

  .blog-simple-head {
    padding-top: 28px;
  }

  .blog-simple-head h1 {
    font-size: 28px;
  }
}

/* ==========================================================
   V21 — HERO CINEMÁTICO / SCROLLYTELLING PROTAGONISTA
   Hero -> zoom y profundidad -> partículas -> título ->
   01 protagonista y se acomoda -> 02 -> 03 -> 04 -> sección final.
   Sin cajas glass, sin cuadrículas, sin bloques flotantes.
   ========================================================== */

.home-v21 .home-scroll-story-v21 {
  position: relative;
  height: 680vh;
  min-height: 680vh;
  background: #fff;
}

.home-v21 .home-story-stage-v21 {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

/* ---------------- HERO ---------------- */
.home-v21 .home-hero-v21 {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: transparent !important;
}

.home-v21 .home-hero-media-v21 {
  position: absolute;
  inset: -4%;
  z-index: 0;
  background: url("../img/inicio1.png") center center / cover no-repeat;
  transform: translate3d(0,0,0) scale(1.035);
  transform-origin: 70.5% 59.5%;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.home-v21 .home-hero-v21 .home-hero-overlay {
  z-index: 2;
  opacity: 1;
  will-change: opacity;
}

.home-v21 .home-hero-v21 .home-hero-content {
  z-index: 6;
  will-change: opacity, transform;
}

/* ---------------- PARTÍCULAS / PROFUNDIDAD ---------------- */
.home-v21 .home-hero-fx-v21 {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.home-v21 .hero-particles-v21 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.home-v21 .hero-glow-v21 {
  position: absolute;
  left: 68.5%;
  top: 60.5%;
  translate: -50% -50%;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.home-v21 .hero-glow-v21-a {
  width: min(30vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(43,133,244,.22) 0%,
    rgba(74,190,239,.08) 31%,
    rgba(83,196,244,.018) 55%,
    transparent 73%);
  filter: blur(13px);
}

.home-v21 .hero-glow-v21-b {
  width: min(19vw, 330px);
  aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(96,215,239,.18) 0%,
    rgba(48,132,242,.048) 43%,
    transparent 73%);
  filter: blur(18px);
}

/* Fondo blanco continuo: nunca aparece como una pantalla vacía. */
.home-v21 .home-story-wash-v21 {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.08) 0%,
      rgba(255,255,255,.20) 24%,
      rgba(255,255,255,.49) 58%,
      rgba(255,255,255,.90) 100%);
  transform: translate3d(0,9vh,0);
  will-change: opacity, transform;
}

/* ---------------- QUÉ OFRECEMOS ---------------- */
.home-v21 .offerings-story-v21 {
  position: absolute;
  inset: 0;
  z-index: 8;
  padding: 0 !important;
  overflow: hidden;
  pointer-events: none;
  background: transparent !important;
  opacity: 1;
}

.home-v21 .offerings-story-v21::before,
.home-v21 .offerings-story-v21::after {
  content: none !important;
  display: none !important;
}

.home-v21 .offerings-story-v21 .offerings-story-inner {
  position: relative;
  width: min(1760px, calc(100% - 60px));
  height: 100%;
  margin: 0 auto;
  padding: clamp(34px,4.6vh,54px) 0 clamp(14px,1.8vh,24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Partícula que une el hero con el título. */
.home-v21 .story-spark-v21 {
  display: none !important;
  position: absolute;
  left: 50%;
  top: clamp(52px,7.8vh,84px);
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #3188f4;
  opacity: 0;
  transform: scale(.25);
  box-shadow:
    0 0 0 0 rgba(49,136,244,.18),
    0 0 24px rgba(49,136,244,.34);
  will-change: opacity, transform, box-shadow;
}

.home-v21 .offerings-story-v21 .offerings-story-head {
  position: relative;
  z-index: 5;
  margin: clamp(44px,7.3vh,78px) auto 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,18px,0);
  filter: blur(4px);
  transition: none !important;
  will-change: opacity, transform, filter;
}

.home-v21 .offerings-story-v21 .offerings-story-head h2 {
  margin: 0;
  color: #0b2e60;
  font-size: clamp(32px,2.95vw,54px);
  line-height: 1;
  letter-spacing: -.027em;
  text-shadow: 0 1px 0 rgba(255,255,255,.82);
}

.home-v21 .offerings-story-v21 .offerings-title-line {
  display: block;
  width: 72px !important;
  height: 3px;
  margin: 13px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg,#2478ff,#62b9ee);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: none !important;
}

.home-v21 .offerings-story-v21 .offerings-track {
  display: none !important;
}

/* ---------------- FILA FINAL ---------------- */
.home-v21 .offerings-story-v21 .offerings-row {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: clamp(168px,22vh,228px);
  bottom: clamp(15px,2vh,25px);
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: clamp(18px,2vw,36px);
  align-items: start;
}

.home-v21 .offerings-story-v21 .offering-step {
  position: relative;
  min-width: 0;
  padding: 0 clamp(4px,.48vw,9px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,12px,0);
  filter: none;
  transition: none !important;
  will-change: opacity, transform;
}

.home-v21 .offerings-story-v21 .offering-step::before,
.home-v21 .offerings-story-v21 .offering-step::after {
  content: none !important;
  display: none !important;
}

/* En la fila final los hijos están listos; JS sólo controla el artículo. */
.home-v21 .offerings-story-v21 .offering-topline,
.home-v21 .offerings-story-v21 .offering-media-wrap,
.home-v21 .offerings-story-v21 .offering-accent,
.home-v21 .offerings-story-v21 .offering-step h3,
.home-v21 .offerings-story-v21 .offering-step p {
  opacity: 1;
  visibility: visible;
  filter: none;
  transition: none !important;
}

.home-v21 .offerings-story-v21 .offering-topline {
  height: clamp(48px,5vh,60px);
  margin-bottom: clamp(8px,1vh,13px);
}

.home-v21 .offerings-story-v21 .offering-number {
  width: clamp(47px,3.95vw,60px);
  height: clamp(47px,3.95vw,60px);
  font-size: clamp(17px,1.25vw,21px);
  font-weight: 800;
  color: #0e3b75;
  background: #fff;
  border: 1.4px solid rgba(43,125,220,.58);
  box-shadow: 0 9px 23px rgba(23,72,132,.07);
}

.home-v21 .offerings-story-v21 .offering-connector {
  height: 1px;
  background: linear-gradient(90deg,rgba(36,120,255,.46),rgba(36,120,255,.14));
  transform: scaleX(1);
  transform-origin: left center;
}

.home-v21 .offerings-story-v21 .offering-dot {
  width: 8px;
  height: 8px;
  background: #2478ff;
  box-shadow: 0 0 0 5px rgba(36,120,255,.075),0 0 15px rgba(36,120,255,.12);
  transform: scale(1);
}

.home-v21 .offerings-story-v21 .offering-arrows {
  color: #2478ff;
  opacity: 1;
  transform: translate3d(0,-2px,0);
}

.home-v21 .offerings-story-v21 .offering-media-wrap {
  width: clamp(126px,9.8vw,168px);
  margin: 0 auto clamp(10px,1.4vh,17px);
  transform: none;
}

.home-v21 .offerings-story-v21 .offering-media-ring {
  opacity: 1;
  border-width: 2px;
  border-color: rgba(69,143,226,.14);
  border-top-color: rgba(61,139,232,.95);
  border-left-color: rgba(100,173,239,.64);
  transform: rotate(0deg) scale(1);
  transition: none !important;
}

.home-v21 .offerings-story-v21 .offering-media {
  border-width: 6px;
  border-color: rgba(255,255,255,.97);
  box-shadow: 0 13px 30px rgba(15,52,96,.085),0 0 0 1px rgba(47,128,225,.045);
  transform: scale(1) !important;
}

.home-v21 .offerings-story-v21 .offering-accent {
  display: block;
  width: 48px !important;
  height: 3px;
  margin: 0 auto clamp(8px,.9vh,11px);
  border-radius: 999px;
  background: #2478ff;
  transform: scaleX(1);
}

.home-v21 .offerings-story-v21 .offering-step h3 {
  min-height: clamp(34px,4vh,46px);
  margin: 0 auto clamp(7px,.85vh,11px);
  color: #0b2e60;
  font-size: clamp(15px,1.05vw,19px);
  line-height: 1.17;
  letter-spacing: -.012em;
  transform: none;
  text-shadow: 0 1px 0 rgba(255,255,255,.92);
}

.home-v21 .offerings-story-v21 .offering-step p {
  max-width: 350px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #536071;
  font-size: clamp(13px,.83vw,15px);
  line-height: 1.53;
  transform: none;
  text-shadow: 0 1px 0 rgba(255,255,255,.88);
}

/* ---------------- PROTAGONISTA CENTRAL ---------------- */
.home-v21 .offering-spotlight-layer-v21 {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.home-v21 .offering-spotlight-v21 {
  position: absolute;
  left: 50%;
  top: 57.5%;
  width: min(660px,58vw);
  text-align: center;
  color: #0b2e60;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,-50%) scale(.88);
  transform-origin: center center;
  will-change: opacity, transform, filter;
}

.home-v21 .offering-spotlight-number-v21 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: clamp(12px,1.6vh,18px);
  border-radius: 50%;
  border: 1.5px solid rgba(42,125,221,.62);
  background: rgba(255,255,255,.92);
  color: #0d3b75;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(30,82,145,.08);
  opacity: 0;
  transform: translate3d(0,10px,0) scale(.80);
}

.home-v21 .offering-spotlight-media-v21 {
  position: relative;
  width: clamp(148px,12.3vw,188px);
  aspect-ratio: 1;
  margin: 0 auto clamp(12px,1.7vh,19px);
  opacity: 0;
  transform: translate3d(0,18px,0) scale(.88);
}

.home-v21 .offering-spotlight-media-v21::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(56,137,232,.16);
  border-top-color: rgba(54,137,236,.98);
  border-left-color: rgba(90,178,238,.70);
  transform: rotate(-38deg);
}

.home-v21 .offering-spotlight-media-v21 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid rgba(255,255,255,.97);
  box-shadow: 0 18px 45px rgba(15,52,96,.105),0 0 0 1px rgba(47,128,225,.05);
}

.home-v21 .offering-spotlight-accent-v21 {
  display: block;
  width: 58px;
  height: 3px;
  margin: 0 auto 11px;
  border-radius: 999px;
  background: linear-gradient(90deg,#2478ff,#58b3ed);
  opacity: 0;
  transform: scaleX(.15);
  transform-origin: center;
}

.home-v21 .offering-spotlight-v21 h3 {
  margin: 0 auto 10px;
  color: #0b2e60;
  font-size: clamp(22px,1.72vw,30px);
  line-height: 1.12;
  letter-spacing: -.018em;
  opacity: 0;
  transform: translate3d(0,12px,0);
  text-shadow: 0 1px 0 rgba(255,255,255,.96);
}

.home-v21 .offering-spotlight-v21 p {
  max-width: 635px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: #47576a;
  font-size: clamp(15px,1vw,17px);
  line-height: 1.62;
  opacity: 0;
  transform: translate3d(0,14px,0);
  text-shadow: 0 1px 0 rgba(255,255,255,.94), 0 0 18px rgba(255,255,255,.72);
}

/* Laptop / pantallas de poca altura: mantiene la jerarquía sin desbordar. */
@media (min-width: 900px) and (max-height: 800px) {
  .home-v21 .offerings-story-v21 .offerings-story-head {
    margin-top: 45px;
  }
  .home-v21 .offerings-story-v21 .offerings-story-head h2 {
    font-size: clamp(30px,2.5vw,44px);
  }
  .home-v21 .offerings-story-v21 .offerings-row {
    top: 145px;
    bottom: 10px;
  }
  .home-v21 .offerings-story-v21 .offering-topline {
    height: 43px;
    margin-bottom: 6px;
  }
  .home-v21 .offerings-story-v21 .offering-number {
    width: 43px;
    height: 43px;
    font-size: 16px;
  }
  .home-v21 .offerings-story-v21 .offering-media-wrap {
    width: clamp(102px,7.6vw,128px);
    margin-bottom: 6px;
  }
  .home-v21 .offerings-story-v21 .offering-accent {
    margin-bottom: 5px;
  }
  .home-v21 .offerings-story-v21 .offering-step h3 {
    min-height: 27px;
    margin-bottom: 4px;
    font-size: clamp(13px,.9vw,16px);
  }
  .home-v21 .offerings-story-v21 .offering-step p {
    font-size: clamp(11.5px,.72vw,13px);
    line-height: 1.38;
  }
  .home-v21 .offering-spotlight-v21 {
    top: 59%;
    width: min(600px,58vw);
  }
  .home-v21 .offering-spotlight-number-v21 {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    font-size: 17px;
  }
  .home-v21 .offering-spotlight-media-v21 {
    width: clamp(118px,8.6vw,142px);
    margin-bottom: 7px;
  }
  .home-v21 .offering-spotlight-v21 h3 {
    margin-bottom: 6px;
    font-size: clamp(18px,1.35vw,23px);
  }
  .home-v21 .offering-spotlight-v21 p {
    max-width: 560px;
    font-size: clamp(13px,.83vw,14.5px);
    line-height: 1.43;
  }
}

/* Tablet/móvil: hero normal + sección final limpia, sin sticky largo. */
@media (max-width: 899px) {
  .home-v21 .home-scroll-story-v21 { height: auto; min-height: 0; }
  .home-v21 .home-story-stage-v21 { position: relative; height: auto; overflow: visible; }
  .home-v21 .home-hero-v21 { position: relative; height: 100svh; min-height: 100svh; }
  .home-v21 .home-hero-media-v21 { inset: 0; transform: scale(1.035); transform-origin: center; opacity: 1 !important; filter: none !important; }
  .home-v21 .home-story-wash-v21,
  .home-v21 .hero-particles-v21,
  .home-v21 .hero-glow-v21,
  .home-v21 .story-spark-v21,
  .home-v21 .offering-spotlight-layer-v21 { display: none !important; }
  .home-v21 .offerings-story-v21 {
    position: relative;
    inset: auto;
    padding: 70px 0 88px !important;
    background: #fff !important;
    pointer-events: auto;
  }
  .home-v21 .offerings-story-v21 .offerings-story-inner {
    width: min(900px,calc(100% - 34px));
    height: auto;
    padding: 0;
  }
  .home-v21 .offerings-story-v21 .offerings-story-head {
    margin: 0 auto 42px;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
  }
  .home-v21 .offerings-story-v21 .offerings-title-line {
    opacity: 1 !important;
    transform: none !important;
  }
  .home-v21 .offerings-story-v21 .offerings-row {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 52px 28px;
  }
  .home-v21 .offerings-story-v21 .offering-step {
    padding: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .home-v21 .offerings-story-v21 .offering-media-wrap { width: 150px; }
}

@media (max-width: 620px) {
  .home-v21 .offerings-story-v21 .offerings-row {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .home-v21 .offerings-story-v21 .offering-step {
    width: min(450px,100%);
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v21 .home-scroll-story-v21 { height: auto; min-height: 0; }
  .home-v21 .home-story-stage-v21 { position: relative; height: auto; overflow: visible; }
  .home-v21 .home-hero-v21 { position: relative; height: 100vh; min-height: 100vh; }
  .home-v21 .home-hero-media-v21 { inset: 0; transform: none !important; filter: none !important; opacity: 1 !important; }
  .home-v21 .home-story-wash-v21,
  .home-v21 .hero-particles-v21,
  .home-v21 .hero-glow-v21,
  .home-v21 .story-spark-v21,
  .home-v21 .offering-spotlight-layer-v21 { display: none !important; }
  .home-v21 .offerings-story-v21 { position: relative; inset: auto; padding: 76px 0 92px !important; background: #fff !important; }
  .home-v21 .offerings-story-v21 .offerings-story-inner { height: auto; }
  .home-v21 .offerings-story-v21 .offerings-story-head,
  .home-v21 .offerings-story-v21 .offerings-title-line,
  .home-v21 .offerings-story-v21 .offering-step {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
  }
  .home-v21 .offerings-story-v21 .offerings-row { position: relative; inset: auto; }
}

/* ==========================================================
   V22 — PULIDO FINAL DEL HERO / QUÉ OFRECEMOS
   Mantiene el concepto V21. Solo ajusta timing visual, jerarquía,
   color de texto y fondo para conservar la fotografía detrás.
   ========================================================== */

/* Un poco más de recorrido para que cada protagonista tenga su momento
   y la composición final respire antes de pasar a Quiénes somos. */
.home-v21 .home-scroll-story-v21 {
  height: 625vh;
  min-height: 625vh;
  background: #e8f0f8;
}

.home-v21 .home-story-stage-v21 {
  background: #e8f0f8;
}

/* El velo ya NO termina en blanco. Es un tono frío translúcido que deja
   la foto del hero presente durante toda la transformación. */
.home-v21 .home-story-wash-v21 {
  background:
    radial-gradient(circle at 69% 58%, rgba(214,234,250,.12) 0%, rgba(226,238,248,.28) 35%, transparent 62%),
    linear-gradient(180deg,
      rgba(226,237,247,.04) 0%,
      rgba(226,237,247,.13) 25%,
      rgba(225,236,247,.34) 58%,
      rgba(221,234,246,.72) 100%);
}

/* Todo el texto de Qué ofrecemos pasa a negro / carbón. */
.home-v21 .offerings-story-v21 .offerings-story-head h2,
.home-v21 .offerings-story-v21 .offering-step h3,
.home-v21 .offering-spotlight-v21,
.home-v21 .offering-spotlight-v21 h3 {
  color: #111318;
  text-shadow: none;
}

.home-v21 .offerings-story-v21 .offering-step p,
.home-v21 .offering-spotlight-v21 p {
  color: #20252c;
  text-shadow: none;
}

.home-v21 .offerings-story-v21 .offering-number,
.home-v21 .offering-spotlight-number-v21 {
  color: #111318;
  background: rgba(235,244,251,.90);
  box-shadow: 0 9px 24px rgba(24,64,111,.065);
}

/* El protagonista gana presencia: ~20–25% más grande que en V21. */
.home-v21 .offering-spotlight-v21 {
  top: 58%;
  width: min(770px,66vw);
}

.home-v21 .offering-spotlight-number-v21 {
  width: 64px;
  height: 64px;
  font-size: 22px;
  margin-bottom: clamp(13px,1.7vh,20px);
}

.home-v21 .offering-spotlight-media-v21 {
  width: clamp(178px,14.5vw,228px);
  margin-bottom: clamp(13px,1.8vh,21px);
}

.home-v21 .offering-spotlight-media-v21 img,
.home-v21 .offerings-story-v21 .offering-media {
  border-color: rgba(239,247,252,.96);
}

.home-v21 .offering-spotlight-v21 h3 {
  font-size: clamp(26px,2.05vw,35px);
  margin-bottom: 12px;
}

.home-v21 .offering-spotlight-v21 p {
  max-width: 700px;
  font-size: clamp(16px,1.08vw,18px);
  line-height: 1.64;
}

/* La fila final mantiene el diseño aprobado, pero con lectura más fuerte. */
.home-v21 .offerings-story-v21 .offering-step p {
  color: #252a31;
  font-size: clamp(13.2px,.86vw,15.2px);
  line-height: 1.56;
}

.home-v21 .offerings-story-v21 .offering-step h3 {
  color: #111318;
}

/* El título queda limpio y negro, conservando el acento azul. */
.home-v21 .offerings-story-v21 .offerings-story-head h2 {
  color: #111318;
  font-weight: 800;
}

/* El hero original NO cambia. Solo mantenemos el fondo vivo al final. */
.home-v21 .home-hero-media-v21 {
  will-change: transform, opacity, filter;
}

/* Laptop / pantallas de poca altura: protagonista grande pero sin desbordar. */
@media (min-width: 900px) and (max-height: 800px) {
  .home-v21 .offering-spotlight-v21 {
    top: 58%;
    width: min(700px,62vw);
  }

  .home-v21 .offering-spotlight-number-v21 {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 9px;
  }

  .home-v21 .offering-spotlight-media-v21 {
    width: clamp(148px,11vw,178px);
    margin-bottom: 10px;
  }

  .home-v21 .offering-spotlight-v21 h3 {
    font-size: clamp(22px,1.7vw,28px);
    margin-bottom: 8px;
  }

  .home-v21 .offering-spotlight-v21 p {
    max-width: 650px;
    font-size: clamp(14px,.92vw,16px);
    line-height: 1.5;
  }
}

/* En tablet/móvil no hay storytelling sticky largo, pero mantenemos la misma
   identidad: fondo azul-gris con una huella muy suave de la fotografía. */
@media (max-width: 899px) {
  .home-v21 .offerings-story-v21 {
    background:
      linear-gradient(180deg, rgba(231,240,248,.90), rgba(225,237,247,.96)),
      url("../img/inicio1.png") 69% center / cover no-repeat !important;
  }

  .home-v21 .offerings-story-v21 .offerings-story-head h2,
  .home-v21 .offerings-story-v21 .offering-step h3,
  .home-v21 .offerings-story-v21 .offering-number {
    color: #111318 !important;
    text-shadow: none !important;
  }

  .home-v21 .offerings-story-v21 .offering-step p {
    color: #252a31 !important;
    text-shadow: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v21 .offerings-story-v21 {
    background:
      linear-gradient(180deg, rgba(231,240,248,.90), rgba(225,237,247,.96)),
      url("../img/inicio1.png") 69% center / cover no-repeat !important;
  }
}
