/* =========================================================
   Integración con tienda online
   ========================================================= */

.site-main--store-integration {
  padding: 0;
  overflow: hidden;
  background: var(--si-white);
}

.si-store-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--si-blue);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.si-store-eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

/* Revelado progresivo */

[data-store-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--store-delay, 0ms);
}

[data-store-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */

.si-store-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(76px, 9vw, 128px) 0 clamp(78px, 9vw, 126px);
  background:
    linear-gradient(rgb(8 114 190 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(8 114 190 / 5%) 1px, transparent 1px),
    #fbfdff;
  background-size: 48px 48px;
}

.si-store-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgb(255 148 24 / 8%));
  content: "";
}

.si-store-hero__glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
}

.si-store-hero__glow--blue {
  top: -220px;
  left: -230px;
  background: var(--si-blue);
}

.si-store-hero__glow--orange {
  right: -260px;
  bottom: -300px;
  background: var(--si-orange);
}

.si-store-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.si-store-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #7b828b;
  font-size: 12px;
}

.si-store-breadcrumb a {
  text-decoration: none;
}

.si-store-breadcrumb a:hover {
  color: var(--si-blue);
}

.si-store-hero__title {
  max-width: 740px;
  margin: 19px 0 24px;
  font-size: clamp(47px, 5.7vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.062em;
}

.si-store-hero__title span {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--si-blue),
    #3e9ddd 52%,
    var(--si-orange)
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.si-store-hero__description {
  max-width: 680px;
  margin: 0;
  color: var(--si-muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.si-store-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.si-store-hero__actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.si-store-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 27px 0 0;
  padding: 0;
  color: #69717a;
  font-size: 13px;
  font-weight: 550;
  list-style: none;
}

.si-store-hero__checks li {
  position: relative;
  padding-left: 18px;
}

.si-store-hero__checks li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--si-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--si-blue-soft);
  content: "";
}

/* Visual del hero */

.si-store-hero__visual {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.si-store-commerce {
  overflow: hidden;
  background: var(--si-white);
  border: 1px solid rgb(8 114 190 / 14%);
  border-radius: 8px;
  box-shadow:
    0 45px 100px rgb(26 52 76 / 17%),
    0 12px 35px rgb(8 114 190 / 9%);
  transform: rotateY(-2deg) rotateX(1deg);
}

.si-store-commerce__topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 17px;
  background: #fbfcfe;
  border-bottom: 1px solid #e6ebf0;
}

.si-store-commerce__dots {
  display: flex;
  gap: 5px;
}

.si-store-commerce__dots span {
  width: 7px;
  height: 7px;
  background: #d8dee5;
  border-radius: 50%;
}

.si-store-commerce__topbar strong {
  color: #454c55;
  font-size: 11px;
}

.si-store-commerce__status {
  margin-left: auto;
  padding: 5px 9px;
  color: #10824b;
  background: #eaf8f0;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
}

.si-store-commerce__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 360px;
  padding: 24px;
  background: #f7f9fc;
}

.si-store-commerce__erp,
.si-store-commerce__shop {
  min-width: 0;
  min-height: 270px;
  background: var(--si-white);
  border: 1px solid #e5eaf0;
  border-radius: 8px;
}

.si-store-commerce__erp {
  padding: 20px;
}

.si-store-commerce__brand {
  display: inline-flex;
  padding: 6px 9px;
  color: var(--si-white);
  background: linear-gradient(135deg, var(--si-blue), var(--si-blue-dark));
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
}

.si-store-commerce__erp > strong {
  display: block;
  margin-top: 16px;
  color: var(--si-ink);
  font-size: 16px;
}

.si-store-commerce__products {
  display: grid;
  gap: 9px;
  margin-top: 19px;
}

.si-store-commerce__products div {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 6px 8px;
  background: #f9fafc;
  border: 1px solid #edf0f3;
  border-radius: 7px;
}

.si-store-commerce__products div > span {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--si-blue-soft), #d4ebfb);
  border-radius: 6px;
}

.si-store-commerce__products div > i {
  height: 7px;
  background: #dfe5eb;
  border-radius: 999px;
}

.si-store-commerce__products small {
  color: #149054;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.si-store-commerce__connector {
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--si-blue);
  text-align: center;
}

.si-store-commerce__connector svg {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  padding: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--si-white);
  border: 1px solid #d9e6f1;
  border-radius: 50%;
  animation: si-store-rotate 7s linear infinite;
}

.si-store-commerce__connector small {
  color: #76808a;
  font-size: 8px;
}

.si-store-commerce__pulse {
  position: absolute;
  width: 62px;
  height: 62px;
  background: rgb(8 114 190 / 10%);
  border-radius: 50%;
  animation: si-store-pulse 2.4s ease-out infinite;
}

.si-store-commerce__shop {
  padding: 15px;
}

.si-store-commerce__shop-head {
  display: flex;
  gap: 5px;
  padding-bottom: 13px;
  border-bottom: 1px solid #edf0f3;
}

.si-store-commerce__shop-head span {
  width: 32px;
  height: 6px;
  background: #dfe5eb;
  border-radius: 999px;
}

.si-store-commerce__shop-head span:first-child {
  width: 58px;
  background: var(--si-blue);
}

.si-store-commerce__shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 14px;
}

.si-store-commerce__shop-grid article {
  padding: 8px;
  background: #fafbfd;
  border: 1px solid #edf0f3;
  border-radius: 7px;
}

.si-store-commerce__shop-grid article > span {
  display: block;
  aspect-ratio: 1.35;
  background:
    radial-gradient(circle at 45% 42%, rgb(8 114 190 / 16%), transparent 34%),
    #edf5fb;
  border-radius: 5px;
}

.si-store-commerce__shop-grid strong,
.si-store-commerce__shop-grid small {
  display: block;
  height: 6px;
  margin-top: 8px;
  background: #dfe5eb;
  border-radius: 999px;
}

.si-store-commerce__shop-grid small {
  width: 46%;
  background: rgb(255 148 24 / 50%);
}

.si-store-commerce__events {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e8edf2;
  border-top: 1px solid #e8edf2;
}

.si-store-commerce__events > div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 65px;
  padding: 12px 16px;
  background: var(--si-white);
}

.si-store-commerce__events > div > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.si-store-commerce__events .is-blue {
  background: var(--si-blue);
  box-shadow: 0 0 0 4px var(--si-blue-soft);
}

.si-store-commerce__events .is-orange {
  background: var(--si-orange);
  box-shadow: 0 0 0 4px var(--si-orange-soft);
}

.si-store-commerce__events p,
.si-store-commerce__events strong,
.si-store-commerce__events small {
  display: block;
  margin: 0;
}

.si-store-commerce__events strong {
  color: #303740;
  font-size: 9px;
}

.si-store-commerce__events small,
.si-store-commerce__events time {
  color: #8a929a;
  font-size: 7px;
}

.si-store-floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 15px;
  background: rgb(255 255 255 / 97%);
  border: 1px solid #dfe6ed;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgb(26 52 76 / 16%);
}

.si-store-floating-card svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  color: var(--si-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--si-blue-soft);
  border-radius: 7px;
}

.si-store-floating-card span,
.si-store-floating-card strong,
.si-store-floating-card small {
  display: block;
}

.si-store-floating-card strong {
  color: #27303a;
  font-size: 10px;
}

.si-store-floating-card small {
  margin-top: 2px;
  color: #858d96;
  font-size: 8px;
}

.si-store-floating-card--stock {
  top: 64px;
  left: -48px;
  animation: si-store-float 4.8s ease-in-out infinite;
}

.si-store-floating-card--order {
  right: -38px;
  bottom: 64px;
  animation: si-store-float 5.4s ease-in-out -1.2s infinite;
}

.si-store-floating-card--order svg {
  color: var(--si-orange-dark);
  background: var(--si-orange-soft);
}

/* Métricas */

.si-store-proof {
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
  background: var(--si-white);
}

.si-store-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.si-store-proof__grid div {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid #edf0f3;
}

.si-store-proof__grid div:last-child {
  border-right: 0;
}

.si-store-proof__grid strong,
.si-store-proof__grid span {
  display: block;
}

.si-store-proof__grid strong {
  color: var(--si-ink);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.si-store-proof__grid span {
  margin-top: 8px;
  color: var(--si-muted);
  font-size: 12px;
}

/* Encabezados */

.si-store-section-heading {
  max-width: 790px;
  margin: 0 auto 55px;
  text-align: center;
}

.si-store-section-heading .si-store-eyebrow {
  justify-content: center;
}

.si-store-section-heading h2 {
  margin: 18px 0;
  font-size: clamp(37px, 4.7vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.si-store-section-heading p {
  margin: 0;
  color: var(--si-muted);
  font-size: 17px;
  line-height: 1.65;
}

/* Beneficios */

.si-store-benefits {
  padding: clamp(92px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 7% 5%, rgb(8 114 190 / 8%), transparent 25%),
    radial-gradient(circle at 94% 92%, rgb(255 148 24 / 9%), transparent 27%),
    #f8f9fc;
}

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

.si-store-benefit {
  position: relative;
  min-height: 280px;
  padding: 29px;
  overflow: hidden;
  background: rgb(255 255 255 / 95%);
  border: 1px solid #e4e9ee;
  border-radius: 8px;
  box-shadow: 0 10px 32px rgb(31 51 73 / 4%);
  transition:
    border-color var(--si-transition),
    box-shadow var(--si-transition),
    transform var(--si-transition);
}

.si-store-benefit::after {
  position: absolute;
  right: -70px;
  bottom: -78px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgb(8 114 190 / 12%), transparent 70%);
  border-radius: 50%;
  content: "";
  transition: transform var(--si-transition);
}

.si-store-benefit:nth-child(even)::after {
  background: radial-gradient(circle, rgb(255 148 24 / 13%), transparent 70%);
}

.si-store-benefit:hover {
  border-color: rgb(8 114 190 / 25%);
  box-shadow: 0 24px 52px rgb(31 51 73 / 10%);
  transform: translateY(-5px);
}

.si-store-benefit:hover::after {
  transform: scale(1.2);
}

.si-store-benefit__icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--si-blue);
  background: var(--si-blue-soft);
  border: 1px solid rgb(8 114 190 / 11%);
  border-radius: 8px;
}

.si-store-benefit:nth-child(even) .si-store-benefit__icon {
  color: var(--si-orange-dark);
  background: var(--si-orange-soft);
  border-color: rgb(255 148 24 / 15%);
}

.si-store-benefit__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.si-store-benefit h3 {
  max-width: 330px;
  margin: 25px 0 13px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.si-store-benefit p {
  max-width: 350px;
  margin: 0;
  color: var(--si-muted);
  font-size: 13px;
  line-height: 1.65;
}

.si-store-benefit__number {
  position: absolute;
  right: 21px;
  bottom: 16px;
  color: #e4e8ed;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

/* Proceso */

.si-store-process {
  padding: clamp(94px, 10vw, 150px) 0;
  background: var(--si-white);
}

.si-store-process__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.si-store-process__content h2 {
  margin: 18px 0 22px;
  font-size: clamp(38px, 4.6vw, 61px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.si-store-process__content > p {
  color: var(--si-muted);
  font-size: 17px;
  line-height: 1.7;
}

.si-store-process__steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.si-store-process__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid #edf0f3;
}

.si-store-process__steps li:last-child {
  border-bottom: 0;
}

.si-store-process__steps li > span {
  color: #9aa2ab;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.si-store-process__steps li.is-active > span {
  color: var(--si-blue);
}

.si-store-process__steps strong,
.si-store-process__steps p {
  display: block;
}

.si-store-process__steps strong {
  color: var(--si-ink);
  font-size: 15px;
}

.si-store-process__steps p {
  margin: 5px 0 0;
  color: var(--si-muted);
  font-size: 12px;
  line-height: 1.55;
}

.si-store-sync-map {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background:
    linear-gradient(rgb(8 114 190 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(8 114 190 / 6%) 1px, transparent 1px),
    #fbfdff;
  background-size: 34px 34px;
  border: 1px solid #dfe6ed;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgb(31 51 73 / 10%);
}

.si-store-sync-map__node {
  position: absolute;
  top: 73px;
  display: grid;
  place-items: center;
  width: 180px;
  min-height: 120px;
  padding: 20px;
  text-align: center;
  background: var(--si-white);
  border: 1px solid #dfe6ed;
  border-radius: 8px;
  box-shadow: 0 14px 35px rgb(31 51 73 / 12%);
}

.si-store-sync-map__node.is-seinto {
  left: 45px;
  color: var(--si-white);
  background: linear-gradient(145deg, var(--si-blue), var(--si-blue-dark));
  border-color: transparent;
}

.si-store-sync-map__node.is-shop {
  right: 45px;
}

.si-store-sync-map__node span,
.si-store-sync-map__node small {
  display: block;
}

.si-store-sync-map__node span {
  font-size: 17px;
  font-weight: 800;
}

.si-store-sync-map__node small {
  margin-top: 6px;
  color: #7b848e;
  font-size: 9px;
}

.si-store-sync-map__node.is-seinto small {
  color: rgb(255 255 255 / 72%);
}

.si-store-sync-map__node.is-shop svg {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  color: var(--si-orange-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.si-store-sync-map__line {
  position: absolute;
  top: 100px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 110px;
  height: 70px;
  transform: translateX(-50%);
}

.si-store-sync-map__line::before,
.si-store-sync-map__line::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgb(8 114 190 / 38%) 0 7px,
    transparent 7px 14px
  );
  content: "";
}

.si-store-sync-map__line::before {
  top: 17px;
}

.si-store-sync-map__line::after {
  bottom: 17px;
}

.si-store-sync-map__line svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--si-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--si-white);
  border: 1px solid #dce6ef;
  border-radius: 50%;
  animation: si-store-rotate 7s linear infinite;
}

.si-store-sync-map__line small {
  position: absolute;
  bottom: -4px;
  color: #7c858e;
  font-size: 8px;
}

.si-store-sync-map__stream {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 168px;
  padding: 10px 12px;
  background: var(--si-white);
  border: 1px solid #e1e7ed;
  border-radius: 7px;
  box-shadow: 0 10px 28px rgb(31 51 73 / 9%);
  font-size: 9px;
  font-weight: 650;
}

.si-store-sync-map__stream i {
  width: 8px;
  height: 8px;
  background: var(--si-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--si-blue-soft);
}

.si-store-sync-map__stream.is-product {
  top: 226px;
  left: 52px;
  animation: si-store-float 5s ease-in-out infinite;
}

.si-store-sync-map__stream.is-order {
  top: 226px;
  right: 52px;
  animation: si-store-float 5.5s ease-in-out -1.4s infinite;
}

.si-store-sync-map__stream.is-order i {
  background: var(--si-orange);
  box-shadow: 0 0 0 4px var(--si-orange-soft);
}

.si-store-sync-map__inventory {
  position: absolute;
  right: 70px;
  bottom: 48px;
  left: 70px;
  padding: 23px;
  background: var(--si-white);
  border: 1px solid #dfe6ed;
  border-radius: 8px;
  box-shadow: 0 15px 38px rgb(31 51 73 / 10%);
}

.si-store-sync-map__inventory span,
.si-store-sync-map__inventory strong,
.si-store-sync-map__inventory small {
  display: block;
}

.si-store-sync-map__inventory span {
  color: #59616a;
  font-size: 10px;
  font-weight: 650;
}

.si-store-sync-map__inventory strong {
  margin-top: 8px;
  color: var(--si-ink);
  font-size: 29px;
  line-height: 1;
}

.si-store-sync-map__inventory small {
  margin-top: 3px;
  color: #8b929a;
  font-size: 8px;
}

.si-store-sync-map__inventory div {
  height: 7px;
  margin-top: 19px;
  overflow: hidden;
  background: #edf1f4;
  border-radius: 999px;
}

.si-store-sync-map__inventory i {
  display: block;
  width: var(--width);
  height: 100%;
  background: linear-gradient(90deg, var(--si-blue), #4ba2dd, var(--si-orange));
  border-radius: inherit;
}

/* Funcionalidades */

.si-store-features {
  padding: clamp(94px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgb(8 114 190 / 8%), transparent 26%),
    radial-gradient(circle at 93% 88%, rgb(255 148 24 / 9%), transparent 28%),
    #f8f9fc;
}

.si-store-feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}

.si-store-feature-card {
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  background: rgb(255 255 255 / 95%);
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  box-shadow: 0 12px 38px rgb(31 51 73 / 5%);
}

.si-store-feature-card--large {
  grid-row: span 2;
  min-height: 854px;
}

.si-store-feature-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 55px;
  min-height: 360px;
}

.si-store-feature-card__label {
  color: var(--si-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.si-store-feature-card h3 {
  max-width: 520px;
  margin: 15px 0 13px;
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.si-store-feature-card p {
  max-width: 550px;
  margin: 0;
  color: var(--si-muted);
  font-size: 14px;
  line-height: 1.65;
}

.si-store-catalog-ui,
.si-store-stock-ui,
.si-store-order-ui,
.si-store-fields-ui {
  margin-top: 38px;
  background: #fbfcfe;
  border: 1px solid #dfe6ed;
  border-radius: 8px;
}

.si-store-catalog-ui {
  padding: 20px;
}

.si-store-catalog-ui__head,
.si-store-catalog-ui__row {
  display: grid;
  align-items: center;
}

.si-store-catalog-ui__head {
  grid-template-columns: 1fr auto;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5eaf0;
}

.si-store-catalog-ui__head span {
  color: #36404a;
  font-size: 11px;
  font-weight: 750;
}

.si-store-catalog-ui__head small {
  padding: 5px 8px;
  color: #12804b;
  background: #eaf8f0;
  border-radius: 999px;
  font-size: 8px;
}

.si-store-catalog-ui__row {
  grid-template-columns: 42px 1fr auto auto;
  gap: 11px;
  min-height: 72px;
  border-bottom: 1px solid #e8edf2;
}

.si-store-catalog-ui__row:last-child {
  border-bottom: 0;
}

.si-store-catalog-ui__row i {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--si-blue-soft), #d6ecfb);
  border-radius: 7px;
}

.si-store-catalog-ui__row span {
  color: #3c444d;
  font-size: 10px;
  font-weight: 650;
}

.si-store-catalog-ui__row small {
  color: #656e78;
  font-size: 9px;
}

.si-store-catalog-ui__row b {
  padding: 5px 7px;
  color: #16824d;
  background: #eaf8f0;
  border-radius: 5px;
  font-size: 7px;
}

.si-store-catalog-ui__row:last-child b {
  color: #b66b00;
  background: var(--si-orange-soft);
}

.si-store-stock-ui,
.si-store-order-ui {
  padding: 23px;
}

.si-store-stock-ui span,
.si-store-stock-ui strong,
.si-store-stock-ui small {
  display: block;
}

.si-store-stock-ui span {
  color: #535c66;
  font-size: 10px;
}

.si-store-stock-ui strong {
  margin-top: 12px;
  color: var(--si-ink);
  font-size: 32px;
}

.si-store-stock-ui div {
  height: 8px;
  margin: 18px 0 10px;
  overflow: hidden;
  background: #edf1f4;
  border-radius: 999px;
}

.si-store-stock-ui i {
  display: block;
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, var(--si-blue), #49a0db);
  border-radius: inherit;
}

.si-store-stock-ui small {
  color: #8a929b;
  font-size: 8px;
}

.si-store-order-ui > span {
  color: #646d77;
  font-size: 10px;
}

.si-store-order-ui > strong {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 9px;
  color: #13814b;
  background: #eaf8f0;
  border-radius: 6px;
  font-size: 9px;
}

.si-store-order-ui ul {
  display: grid;
  gap: 10px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.si-store-order-ui li {
  position: relative;
  padding-left: 20px;
  color: #505963;
  font-size: 9px;
}

.si-store-order-ui li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  color: var(--si-white);
  background: var(--si-blue);
  border-radius: 50%;
  font-size: 7px;
  content: "✓";
}

.si-store-fields-ui {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 22px;
}

.si-store-fields-ui div {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 9px 12px;
  background: var(--si-white);
  border: 1px solid #e8edf2;
  border-radius: 7px;
}

.si-store-fields-ui span,
.si-store-fields-ui strong {
  font-size: 9px;
}

.si-store-fields-ui span {
  color: #6d7680;
}

.si-store-fields-ui strong {
  color: #343d47;
}

.si-store-fields-ui i {
  position: relative;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgb(8 114 190 / 38%) 0 5px,
    transparent 5px 10px
  );
}

.si-store-fields-ui i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--si-blue);
  border-radius: 50%;
  content: "";
}

/* Fiabilidad */

.si-store-reliability {
  padding: clamp(94px, 10vw, 150px) 0;
  background: var(--si-white);
}

.si-store-reliability__inner {
  display: grid;
  grid-template-columns: minmax(480px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.si-store-monitor {
  padding: 30px;
  background:
    linear-gradient(rgb(8 114 190 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(8 114 190 / 5%) 1px, transparent 1px),
    #fbfdff;
  background-size: 32px 32px;
  border: 1px solid #dfe6ed;
  border-radius: 8px;
  box-shadow: 0 24px 65px rgb(31 51 73 / 10%);
}

.si-store-monitor__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: var(--si-white);
  border: 1px solid #e5eaf0;
  border-radius: 8px;
}

.si-store-monitor__head span {
  color: #49525c;
  font-size: 11px;
  font-weight: 650;
}

.si-store-monitor__head strong {
  padding: 6px 9px;
  color: #12804b;
  background: #eaf8f0;
  border-radius: 999px;
  font-size: 8px;
}

.si-store-monitor__metric {
  margin-top: 12px;
  padding: 22px;
  background: var(--si-white);
  border: 1px solid #e5eaf0;
  border-radius: 8px;
}

.si-store-monitor__metric span,
.si-store-monitor__metric strong {
  display: block;
}

.si-store-monitor__metric span {
  color: #69727c;
  font-size: 9px;
}

.si-store-monitor__metric strong {
  margin-top: 8px;
  color: var(--si-ink);
  font-size: 31px;
}

.si-store-monitor__metric div {
  height: 8px;
  margin-top: 17px;
  overflow: hidden;
  background: #edf1f4;
  border-radius: 999px;
}

.si-store-monitor__metric i {
  display: block;
  width: 99.8%;
  height: 100%;
  background: linear-gradient(90deg, var(--si-blue), #43a0de, var(--si-orange));
  border-radius: inherit;
}

.si-store-monitor ul {
  display: grid;
  gap: 1px;
  margin: 12px 0 0;
  padding: 0;
  overflow: hidden;
  background: #e8edf2;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  list-style: none;
}

.si-store-monitor li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 17px;
  background: var(--si-white);
  color: #59626c;
  font-size: 9px;
}

.si-store-monitor li > span {
  width: 8px;
  height: 8px;
  background: #20a060;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #eaf8f0;
}

.si-store-monitor li strong {
  color: #12804b;
  font-size: 8px;
}

.si-store-reliability__content h2 {
  margin: 18px 0 22px;
  font-size: clamp(38px, 4.5vw, 59px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.si-store-reliability__content > p {
  color: var(--si-muted);
  font-size: 17px;
  line-height: 1.7;
}

.si-store-reliability__content ul {
  display: grid;
  gap: 13px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.si-store-reliability__content li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #444d56;
  font-size: 14px;
  font-weight: 600;
}

.si-store-reliability__content li svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  color: var(--si-white);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--si-blue);
  border-radius: 50%;
}

/* FAQ */

.si-store-faq {
  padding: clamp(94px, 10vw, 145px) 0;
  border-top: 1px solid #edf0f3;
  background: #fbfcfd;
}

.si-store-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(500px, 1.3fr);
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

.si-store-faq__heading {
  position: sticky;
  top: 120px;
}

.si-store-faq__heading h2 {
  margin: 18px 0 20px;
  font-size: clamp(36px, 4.3vw, 55px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.si-store-faq__heading p {
  margin: 0;
  color: var(--si-muted);
  font-size: 15px;
  line-height: 1.7;
}

.si-store-faq__list {
  border-top: 1px solid #dfe5eb;
}

.si-store-faq__item {
  border-bottom: 1px solid #dfe5eb;
}

.si-store-faq__item h3 {
  margin: 0;
}

.si-store-faq__item button {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 86px;
  padding: 21px 0;
  color: var(--si-ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.si-store-faq__item button span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.si-store-faq__item button i {
  position: relative;
  width: 28px;
  height: 28px;
  background: var(--si-white);
  border: 1px solid #dfe5eb;
  border-radius: 50%;
}

.si-store-faq__item button i::before,
.si-store-faq__item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--si-blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--si-transition);
}

.si-store-faq__item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.si-store-faq__item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.si-store-faq__answer {
  overflow: hidden;
}

.si-store-faq__answer p {
  max-width: 720px;
  margin: 0;
  padding: 0 56px 27px 0;
  color: var(--si-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* CTA */

.si-store-final-cta {
  padding: 0 0 clamp(92px, 9vw, 132px);
  background: #fbfcfd;
}

.si-store-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: clamp(40px, 5vw, 65px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgb(8 114 190 / 22%), transparent 35%),
    radial-gradient(circle at 100% 0%, rgb(255 148 24 / 21%), transparent 38%),
    var(--si-white);
  border: 1px solid #dfe5eb;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgb(31 51 73 / 9%);
}

.si-store-final-cta h2 {
  max-width: 750px;
  margin: 16px 0;
  font-size: clamp(32px, 3.8vw, 49px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.si-store-final-cta p {
  max-width: 690px;
  margin: 0;
  color: var(--si-muted);
}

.si-store-final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Animaciones */

@keyframes si-store-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes si-store-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.65);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes si-store-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */

@media (max-width: 1120px) {
  .si-store-hero__inner,
  .si-store-process__inner,
  .si-store-reliability__inner {
    grid-template-columns: 1fr;
  }

  .si-store-hero__content {
    max-width: 830px;
    margin-inline: auto;
    text-align: center;
  }

  .si-store-breadcrumb,
  .si-store-hero__actions,
  .si-store-hero__checks {
    justify-content: center;
  }

  .si-store-hero__visual {
    width: min(100%, 850px);
    margin-inline: auto;
  }

  .si-store-process__content,
  .si-store-reliability__content {
    max-width: 770px;
  }

  .si-store-reliability__visual {
    width: min(100%, 780px);
  }
}

@media (max-width: 900px) {
  .si-store-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .si-store-proof__grid div:nth-child(2) {
    border-right: 0;
  }

  .si-store-proof__grid div:nth-child(-n + 2) {
    border-bottom: 1px solid #edf0f3;
  }

  .si-store-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .si-store-feature-grid {
    grid-template-columns: 1fr;
  }

  .si-store-feature-card--large {
    grid-row: auto;
    min-height: 620px;
  }

  .si-store-feature-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .si-store-faq__inner,
  .si-store-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .si-store-faq__heading {
    position: static;
  }

  .si-store-final-cta__actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .si-store-hero {
    padding-top: 56px;
  }

  .si-store-hero__title {
    font-size: clamp(43px, 13vw, 60px);
  }

  .si-store-commerce {
    transform: none;
  }

  .si-store-commerce__body {
    grid-template-columns: 1fr;
  }

  .si-store-commerce__connector {
    min-height: 65px;
  }

  .si-store-commerce__connector::before,
  .si-store-commerce__connector::after {
    display: none;
  }

  .si-store-commerce__events {
    grid-template-columns: 1fr;
  }

  .si-store-floating-card {
    display: none;
  }

  .si-store-benefits__grid {
    grid-template-columns: 1fr;
  }

  .si-store-sync-map {
    min-height: 650px;
  }

  .si-store-sync-map__node {
    right: 50%;
    left: auto;
    transform: translateX(50%);
  }

  .si-store-sync-map__node.is-seinto {
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
  }

  .si-store-sync-map__node.is-shop {
    top: 245px;
    right: 50%;
  }

  .si-store-sync-map__line {
    top: 176px;
    transform: translateX(-50%) rotate(90deg);
  }

  .si-store-sync-map__stream {
    display: none;
  }

  .si-store-sync-map__inventory {
    right: 25px;
    bottom: 35px;
    left: 25px;
  }

  .si-store-feature-card {
    min-height: auto;
    padding: 25px;
  }

  .si-store-feature-card--large {
    min-height: auto;
  }

  .si-store-fields-ui div {
    grid-template-columns: 1fr 36px 1fr;
    gap: 8px;
  }

  .si-store-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .si-store-final-cta__actions .si-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .si-store-proof__grid {
    grid-template-columns: 1fr;
  }

  .si-store-proof__grid div {
    border-right: 0;
    border-bottom: 1px solid #edf0f3;
  }

  .si-store-proof__grid div:last-child {
    border-bottom: 0;
  }

  .si-store-benefit {
    min-height: 250px;
    padding: 24px;
  }

  .si-store-catalog-ui__row {
    grid-template-columns: 34px 1fr auto;
  }

  .si-store-catalog-ui__row b {
    display: none;
  }

  .si-store-faq__answer p {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-store-reveal] {
    opacity: 1;
    transform: none;
  }

  .si-store-commerce__connector svg,
  .si-store-sync-map__line svg,
  .si-store-floating-card,
  .si-store-sync-map__stream {
    animation: none;
  }
}

/* =========================================================
   Corrección final: hero principal centrado
   ========================================================= */

.si-store-hero {
  position: relative;
  isolation: isolate;
  padding:
    clamp(76px, 9vw, 128px)
    0
    clamp(82px, 9vw, 130px);
  overflow: hidden;
  background:
    linear-gradient(
      rgb(8 114 190 / 5%) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgb(8 114 190 / 5%) 1px,
      transparent 1px
    ),
    #fbfdff;
  background-size: 48px 48px;
}

.si-store-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 42%;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgb(255 148 24 / 8%)
    );
  content: "";
}

.si-store-hero__glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
}

.si-store-hero__glow--blue {
  top: -220px;
  left: -230px;
  background: var(--si-blue);
}

.si-store-hero__glow--orange {
  right: -260px;
  bottom: -300px;
  background: var(--si-orange);
}

.si-store-hero__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(54px, 7vw, 90px);
  text-align: center;
}

.si-store-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 930px);
  margin-inline: auto;
  text-align: center;
}

.si-store-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  color: #7b828b;
  font-size: 12px;
}

.si-store-breadcrumb a {
  text-decoration: none;
}

.si-store-breadcrumb a:hover,
.si-store-breadcrumb a:focus-visible {
  color: var(--si-blue);
}

.si-store-hero .si-store-eyebrow {
  justify-content: center;
}

.si-store-hero__title {
  max-width: 970px;
  margin:
    19px
    auto
    24px;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.si-store-hero__title span {
  display: block;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      var(--si-blue),
      #3e9ddd 52%,
      var(--si-orange)
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.si-store-hero__description {
  max-width: 780px;
  margin-inline: auto;
  color: var(--si-muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.7;
  text-wrap: balance;
}

.si-store-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.si-store-hero__actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.si-store-hero__checks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: #69717a;
  font-size: 13px;
  font-weight: 550;
  list-style: none;
}

.si-store-hero__checks li {
  position: relative;
  padding-left: 18px;
}

.si-store-hero__checks li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--si-blue);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px
    var(--si-blue-soft);
  content: "";
}

.si-store-hero__visual {
  position: relative;
  width: min(100%, 1080px);
  margin-inline: auto;
  perspective: 1200px;
}

.si-store-commerce {
  width: 100%;
  overflow: hidden;
  background: var(--si-white);
  border: 1px solid rgb(8 114 190 / 14%);
  border-radius: 8px;
  box-shadow:
    0 45px 100px rgb(26 52 76 / 17%),
    0 12px 35px rgb(8 114 190 / 9%);
  transform: none;
}

.si-store-commerce__body {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    90px
    minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 410px;
  padding: 30px;
  background: #f7f9fc;
}

.si-store-commerce__erp,
.si-store-commerce__shop {
  min-height: 310px;
}

.si-store-floating-card--stock {
  top: 72px;
  left: -42px;
}

.si-store-floating-card--order {
  right: -42px;
  bottom: 72px;
}

@media (max-width: 1120px) {
  .si-store-hero__content {
    width: min(100%, 850px);
  }

  .si-store-hero__visual {
    width: min(100%, 900px);
  }

  .si-store-floating-card--stock {
    left: 12px;
  }

  .si-store-floating-card--order {
    right: 12px;
  }
}

@media (max-width: 760px) {
  .si-store-hero {
    padding-top: 56px;
  }

  .si-store-hero__inner {
    gap: 48px;
  }

  .si-store-hero__title {
    font-size: clamp(43px, 13vw, 62px);
  }

  .si-store-hero__description {
    font-size: 16px;
  }

  .si-store-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .si-store-hero__actions .si-button {
    width: 100%;
  }

  .si-store-hero__checks {
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .si-store-commerce__body {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
  }

  .si-store-commerce__erp,
  .si-store-commerce__shop {
    min-height: 270px;
  }

  .si-store-commerce__connector {
    min-height: 80px;
  }

  .si-store-commerce__events {
    grid-template-columns: 1fr;
  }

  .si-store-floating-card {
    display: none;
  }
}
