:root {
  --ink: #070b16;
  --navy: #0a1630;
  --blue: #123f8c;
  --red: #d4192a;
  --gold: #f5c84c;
  --gold-strong: #e6aa19;
  --white: #ffffff;
  --soft: #f4f7fb;
  --muted: #9aa7bd;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 22px 70px rgba(0, 0, 0, .28);
  --radius: 8px;
  --container: 1280px;
  --font: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--white);
  background: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 76px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background:
    linear-gradient(90deg, rgba(7, 11, 22, .94), rgba(21, 29, 45, .88) 52%, rgba(7, 11, 22, .94));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 200, 76, .16);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .2);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand strong { display: block; letter-spacing: .08em; font-size: .9rem; }
.brand span { display: block; color: var(--gold); font-size: .72rem; letter-spacing: .22em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.nav-links a {
  color: #d9e2f2;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 750;
  transition: .22s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(245, 200, 76, .28), rgba(245, 200, 76, .12));
  box-shadow: inset 0 0 0 1px rgba(245, 200, 76, .24), 0 10px 24px rgba(0, 0, 0, .18);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn-gold {
  min-height: 48px;
  padding-inline: 28px;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(245, 200, 76, .3);
}
.menu-toggle {
  display: none;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #111827;
  box-shadow: 0 16px 40px rgba(245, 200, 76, .24);
}
.btn-red {
  background: linear-gradient(135deg, #f03b4d, var(--red));
  color: var(--white);
  box-shadow: 0 16px 40px rgba(212, 25, 42, .24);
}
.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .06);
}
.btn-whatsapp { background: #25d366; color: #062011; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 64px 0 38px;
  background:
    linear-gradient(110deg, rgba(7, 11, 22, .98) 0%, rgba(10, 22, 48, .93) 47%, rgba(8, 15, 28, .7) 100%),
    url("../backend/src/main/resources/static/img/equipo1.png") right center / min(52vw, 780px) no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--red);
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
.hero h1 {
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  margin: 18px 0;
  max-width: 850px;
}
.accent { color: var(--gold); }
.hero-copy {
  color: #d7dfec;
  max-width: 690px;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
}
.hero-actions, .section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}
.metric {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .07);
  padding: 18px;
  border-radius: var(--radius);
}
.metric strong { display: block; font-size: 1.6rem; color: var(--gold); }
.metric span { color: #c5d0e3; font-size: .9rem; }
.hero-panel {
  border: 1px solid rgba(245, 200, 76, .24);
  background: rgba(8, 15, 28, .74);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px;
}
.hero-panel img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .12);
}
.status-list { margin-top: 18px; display: grid; gap: 10px; color: #dce6f5; }
.status-list li { display: flex; gap: 10px; align-items: center; }
.status-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(245, 200, 76, .7);
}

.home-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: start;
  padding: clamp(38px, 5vw, 64px) 0 clamp(46px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(212, 25, 42, .2) 0 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, rgba(245, 200, 76, .1) 0 1px, transparent 1px) 0 0 / 92px 92px,
    radial-gradient(circle at 17% 20%, rgba(212, 25, 42, .2), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(245, 200, 76, .15), transparent 27%),
    linear-gradient(116deg, #050914 0%, #0a1836 51%, #071020 100%);
}
.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: start;
  gap: clamp(34px, 5.2vw, 72px);
}
.home-hero__content h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 4.25vw, 4.2rem);
  max-width: 680px;
  margin: 16px 0 14px;
  line-height: 1.03;
  text-wrap: balance;
}
.home-hero__content p {
  max-width: 620px;
  color: #d7dfec;
  font-size: clamp(1rem, 1.22vw, 1.08rem);
}
.home-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.home-hero__proof div {
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  padding: 16px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.home-hero__proof strong {
  display: block;
  color: var(--gold);
  font-size: 1.65rem;
  line-height: 1;
}
.home-hero__proof span {
  color: #c8d3e5;
  font-size: .86rem;
}
.home-hero__visual {
  position: relative;
  align-self: start;
  margin-top: clamp(42px, 5.4vw, 72px);
  border: 1px solid rgba(245, 200, 76, .26);
  border-radius: var(--radius);
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(245, 200, 76, .22), rgba(255, 255, 255, .08) 36%, rgba(212, 25, 42, .16)),
    rgba(255, 255, 255, .055);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
  overflow: hidden;
}
.home-hero__visual::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 180deg, transparent, rgba(245, 200, 76, .26), transparent, rgba(212, 25, 42, .18), transparent);
  opacity: .42;
  animation: hero-video-glow 12s linear infinite;
}
.home-hero__video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  background: #050914;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}
@keyframes hero-video-glow {
  to { transform: rotate(360deg); }
}
.home-hero__badge {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid rgba(245, 200, 76, .22);
  border-radius: var(--radius);
  background: rgba(5, 9, 20, .56);
  backdrop-filter: blur(14px);
  padding: 12px 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease;
}
.home-hero__visual:hover .home-hero__badge,
.home-hero__visual:focus-within .home-hero__badge {
  opacity: 1;
  transform: translateY(0);
}
.home-hero__badge strong {
  display: block;
  color: var(--gold);
  font-size: .98rem;
}
.home-hero__badge span {
  color: #d7dfec;
  font-size: .84rem;
}
.home-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.home-process article {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  padding: 22px;
}
.home-process span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.home-process p {
  color: #c8d3e5;
  margin-top: 10px;
}
.home-package-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-package-strip strong {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 11px;
  border-radius: var(--radius);
  background: rgba(245, 200, 76, .16);
  color: #8a6200;
}
.home-services-preview {
  padding-bottom: clamp(52px, 7vw, 92px) !important;
}
.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(245, 200, 76, .26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: clamp(24px, 5vw, 44px);
}
.home-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 820px;
  margin: 10px 0;
}
.home-cta p {
  color: #c8d3e5;
  max-width: 720px;
}
.trusted-clients {
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 200, 76, .22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(212, 25, 42, .12), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(18, 63, 140, .14), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #eef4fb 100%);
  color: #172033;
  overflow: hidden;
}
.trusted-clients--embedded {
  margin-top: clamp(36px, 5vw, 58px);
  padding: clamp(28px, 4.5vw, 46px);
  border: 1px solid rgba(10, 22, 48, .08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 200, 76, .22), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(212, 25, 42, .12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(242, 247, 253, .9));
  box-shadow: 0 26px 80px rgba(10, 22, 48, .11);
}
.trusted-clients__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}
.trusted-clients__head .eyebrow {
  justify-content: center;
}
.trusted-clients__head h2 {
  font-size: clamp(2rem, 4.3vw, 4rem);
  color: #070b16;
  margin: 12px 0;
}
.trusted-clients__head p {
  color: #5d6b80;
  font-size: 1.05rem;
}
.trusted-clients__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  align-items: center;
}
.trusted-client {
  min-height: 162px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 20px 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(10, 22, 48, .07);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .72) 42%, transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(239, 245, 252, .78));
  box-shadow: 0 16px 42px rgba(10, 22, 48, .08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.trusted-client::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  opacity: .55;
  transform: scaleX(.42);
  transition: opacity .28s ease, transform .28s ease;
}
.trusted-client::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -58px;
  top: -62px;
  background: rgba(245, 200, 76, .13);
  transition: transform .28s ease, opacity .28s ease;
}
.trusted-client:nth-child(3n + 1)::after { background: rgba(212, 25, 42, .11); }
.trusted-client:nth-child(3n + 2)::after { background: rgba(18, 63, 140, .12); }
.trusted-client img {
  width: min(100%, 158px);
  height: 98px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: saturate(1.05) contrast(1.02);
  transition: filter .24s ease, transform .24s ease;
}
.trusted-client span {
  position: relative;
  z-index: 1;
  color: #263957;
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(10, 22, 48, .06);
}
.trusted-client:hover {
  transform: translateY(-8px) scale(1.018);
  border-color: rgba(245, 200, 76, .75);
  box-shadow: 0 30px 78px rgba(10, 22, 48, .16);
}
.trusted-client:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.trusted-client:hover::after {
  opacity: .9;
  transform: scale(1.18);
}
.trusted-client:hover img {
  filter: saturate(1.16) contrast(1.05);
  transform: scale(1.07);
}
.trusted-client-modal {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 7, 16, .88);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.trusted-client-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.trusted-client-modal__box {
  width: min(92vw, 560px);
  border-radius: 24px;
  border: 1px solid rgba(245, 200, 76, .36);
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 200, 76, .2), transparent 34%),
    linear-gradient(135deg, #0d2146, #070b16);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
  text-align: center;
  transform: translateY(24px) scale(.92);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}
.trusted-client-modal.open .trusted-client-modal__box {
  transform: translateY(0) scale(1);
}
.trusted-client-modal__close {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}
.trusted-client-modal img {
  width: min(100%, 320px);
  max-height: 320px;
  object-fit: contain;
  margin: 14px auto 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  padding: 18px;
}
.trusted-client-modal h3 {
  color: var(--gold);
  font-size: 1.65rem;
}
.trusted-client-modal p {
  color: #d7e1f0;
  margin-top: 10px;
}

.section { padding: clamp(58px, 8vw, 104px) 0; }
.section-light { background: var(--soft); color: #172033; }
.section-dark {
  background:
    linear-gradient(135deg, rgba(18, 63, 140, .18), transparent 44%),
    #08101f;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 10px;
}
.section-head p { color: #68758c; max-width: 650px; }
.section-dark .section-head p { color: #bec9dc; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.card {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.section-light .card {
  background: var(--white);
  color: #172033;
  border-color: #dce4ef;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 200, 76, .5);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(245, 200, 76, .14);
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 900;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p, .card li { color: #c8d3e5; }
.section-light .card p, .section-light .card li { color: #526176; }
.check-list { display: grid; gap: 9px; margin-top: 14px; }
.check-list li { padding-left: 22px; position: relative; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.page-hero {
  padding: 82px 0 54px;
  background:
    linear-gradient(135deg, rgba(212, 25, 42, .18), transparent 34%),
    linear-gradient(110deg, #071020, #0d2146 55%, #08101f);
}
body[data-page="nosotros"] .page-hero {
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .92) 0%, rgba(7, 16, 32, .78) 46%, rgba(7, 16, 32, .48) 100%),
    radial-gradient(circle at 12% 14%, rgba(212, 25, 42, .3), transparent 30%),
    url("../backend/Portadas/Nosotros.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(245, 200, 76, .18);
}
body[data-page="quienes-somos"] .page-hero {
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .92) 0%, rgba(7, 16, 32, .78) 46%, rgba(7, 16, 32, .48) 100%),
    radial-gradient(circle at 12% 14%, rgba(212, 25, 42, .3), transparent 30%),
    url("../backend/Portadas/Nosotros.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(245, 200, 76, .18);
}
body[data-page="servicios"] .page-hero {
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .94) 0%, rgba(7, 16, 32, .8) 46%, rgba(7, 16, 32, .52) 100%),
    radial-gradient(circle at 12% 14%, rgba(245, 200, 76, .24), transparent 30%),
    url("../backend/Portadas/Servicios.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(245, 200, 76, .18);
}
body[data-page="pagos"] .page-hero {
  min-height: clamp(520px, 68vh, 720px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .94) 0%, rgba(7, 16, 32, .8) 48%, rgba(7, 16, 32, .5) 100%),
    radial-gradient(circle at 14% 16%, rgba(37, 211, 102, .2), transparent 28%),
    url("../backend/Portadas/Pagos.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(245, 200, 76, .18);
}
body[data-page="contacto"] .page-hero {
  min-height: clamp(520px, 68vh, 720px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .94) 0%, rgba(7, 16, 32, .8) 48%, rgba(7, 16, 32, .5) 100%),
    radial-gradient(circle at 14% 16%, rgba(212, 25, 42, .28), transparent 30%),
    url("../backend/Portadas/Contactos.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(245, 200, 76, .18);
}
body[data-page="nuestros-software"] .page-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 58px 0 46px;
  background:
    linear-gradient(90deg, rgba(245, 200, 76, .08) 0 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, rgba(212, 25, 42, .1) 0 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(145deg, #050914 0%, #091731 54%, #050914 100%);
  border-bottom: 1px solid rgba(245, 200, 76, .18);
}
body[data-page="nuestros-software"] .software-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}
body[data-page="nuestros-software"] .software-hero__content .eyebrow::before { display: none; }
body[data-page="nuestros-software"] .page-hero h1 {
  max-width: 1020px;
  text-shadow: 0 0 30px rgba(245, 200, 76, .22), 0 0 60px rgba(255, 255, 255, .12);
  animation: stellarTitle 5s ease-in-out infinite;
}
body[data-page="nuestros-software"] .software-hero-title {
  max-width: 980px;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 1.04;
  margin-bottom: 12px;
}
body[data-page="nuestros-software"] .software-hero-title span {
  display: inline-block;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(245, 200, 76, .45), 0 0 55px rgba(212, 25, 42, .22);
  animation: brandSignal 4.8s ease-in-out infinite;
}
body[data-page="nuestros-software"] .software-hero-subtitle {
  max-width: 760px;
  color: #e4ecf8;
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 750;
  line-height: 1.55;
  margin: 0 0 6px;
  animation: subtitleReveal 1.1s ease both;
}
body[data-page="nuestros-software"] .page-hero p {
  max-width: 760px;
  margin-bottom: 0;
}
body[data-page="nuestros-software"] .hero-actions {
  justify-content: center;
  margin-top: 26px;
}
.software-stars,
.software-stars::before,
.software-stars::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .95) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(245, 200, 76, .9) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 255, 255, .55) 0 1px, transparent 1.5px);
  background-size: 140px 140px, 220px 220px, 310px 310px;
  background-position: 0 0, 34px 58px, 92px 18px;
  opacity: .56;
}
.software-stars::before {
  transform: scale(1.25);
  opacity: .34;
  animation: starDrift 22s linear infinite;
}
.software-stars::after {
  opacity: .28;
  animation: starDriftReverse 30s linear infinite;
}
.software-demo-frame {
  position: relative;
  width: min(980px, 100%);
  margin-top: 34px;
  padding: 1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 200, 76, .65), rgba(212, 25, 42, .46), rgba(255, 255, 255, .18));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .44), 0 0 70px rgba(245, 200, 76, .14);
  animation: demoFloat 6s ease-in-out infinite;
}
.software-demo-frame__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(245, 200, 76, .45), transparent);
  filter: blur(18px);
  opacity: .48;
  animation: frameSweep 4.8s ease-in-out infinite;
}
.software-demo-window {
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  background: #071020;
  border: 1px solid rgba(255, 255, 255, .12);
}
.software-demo-topbar {
  min-height: 54px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: #dbe6f7;
  background: linear-gradient(90deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.software-demo-topbar > span {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 900;
}
.software-demo-dots { display: flex; gap: 8px; }
.software-demo-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}
.software-demo-dots span:nth-child(2) { background: #f03b4d; }
.software-demo-dots span:nth-child(3) { background: #48d597; }
.software-demo-body {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 430px;
}
.software-demo-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, .035);
  border-right: 1px solid rgba(255, 255, 255, .09);
}
.software-demo-sidebar span {
  display: block;
  border-radius: 8px;
  color: #b8c4d7;
  padding: 11px 12px;
  font-weight: 850;
}
.software-demo-sidebar span.active,
.software-demo-sidebar span:nth-child(2) {
  background: rgba(245, 200, 76, .12);
  color: var(--gold);
  animation: sidePulse 8s ease-in-out infinite;
}
.software-demo-sidebar span:nth-child(2) { animation-delay: 2.7s; }
.software-demo-workspace {
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}
.software-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.software-demo-head small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.software-demo-head h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  margin-top: 5px;
}
.software-demo-head button,
.software-demo-actions button {
  border: 1px solid rgba(245, 200, 76, .3);
  background: rgba(245, 200, 76, .13);
  color: var(--gold);
  border-radius: 8px;
  padding: 10px 13px;
  font-weight: 900;
}
.software-demo-head button { animation: clickGlow 8s ease-in-out infinite; }
.software-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, .72fr);
  gap: 16px;
}
.juice-demo-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(170px, .46fr) minmax(260px, .8fr);
  gap: 16px;
  align-items: stretch;
}
.juice-table-map,
.juice-phone,
.juice-live-orders {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  padding: 16px;
}
.juice-table-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.juice-zone-title {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-align: left;
}
.juice-table {
  min-height: 74px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(5, 9, 20, .7);
  color: #e7eefb;
  display: grid;
  place-items: center;
  gap: 3px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}
.juice-table span {
  color: #9fb0c9;
  font-size: .72rem;
  font-weight: 800;
}
.juice-table.is-active {
  border-color: rgba(245, 200, 76, .72);
  background: rgba(245, 200, 76, .14);
  color: var(--gold);
  animation: tableOrderPulse 7s ease-in-out infinite;
}
.juice-table.is-busy { border-color: rgba(212, 25, 42, .42); }
.juice-table.is-free { border-color: rgba(72, 213, 151, .34); }
.juice-table.is-paid { border-color: rgba(120, 160, 255, .36); }
.juice-phone {
  padding: 9px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .035)),
    #050914;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .08), 0 18px 35px rgba(0, 0, 0, .28);
  animation: phoneSend 7s ease-in-out infinite;
}
.juice-phone__screen {
  min-height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #dfe8f6);
  color: #111827;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 9px;
}
.juice-phone__top {
  color: #d4192a;
  font-weight: 950;
  text-align: left;
}
.juice-order-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  background: #ffffff;
  padding: 9px;
  font-size: .72rem;
  box-shadow: 0 8px 18px rgba(7, 11, 22, .08);
}
.juice-order-item span {
  color: #d4192a;
  font-weight: 950;
}
.juice-phone button {
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #111827;
  font-weight: 950;
  animation: sendButtonGlow 7s ease-in-out infinite;
}
.juice-live-orders {
  display: grid;
  gap: 10px;
  text-align: left;
}
.juice-live-orders__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  align-items: center;
}
.juice-live-orders__head span {
  color: #9cf0c9;
  font-size: .78rem;
  font-weight: 900;
}
.juice-live-orders article {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(5, 9, 20, .55);
  padding: 11px;
  display: grid;
  gap: 4px;
  animation: liveOrderIn 7s ease-in-out infinite;
}
.juice-live-orders article:nth-child(3) { animation-delay: 1.4s; }
.juice-live-orders article:nth-child(4) { animation-delay: 2.4s; }
.juice-live-orders article span {
  color: var(--gold);
  font-weight: 950;
  font-size: .76rem;
}
.juice-live-orders article strong {
  color: #f7fbff;
  font-size: .9rem;
}
.juice-live-orders article small {
  color: #9fb0c9;
  font-weight: 800;
}
.software-demo-form,
.software-demo-document {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  padding: 16px;
}
.software-demo-form {
  display: grid;
  gap: 12px;
}
.software-demo-form label {
  display: grid;
  gap: 6px;
  color: #9fb0c9;
  text-align: left;
  font-size: .82rem;
  font-weight: 900;
}
.software-demo-form label span {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(5, 9, 20, .72);
  color: #e7eefb;
  display: flex;
  align-items: center;
  padding: 0 12px;
  overflow: hidden;
}
.software-demo-form label:nth-child(1) span,
.software-demo-form label:nth-child(3) span { animation: fieldFocus 8s ease-in-out infinite; }
.software-demo-form label:nth-child(3) span { animation-delay: 1.8s; }
.software-demo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.software-demo-actions button:nth-child(1) { animation: clickGlow 8s ease-in-out infinite 3.1s; }
.software-demo-actions button:nth-child(2) { animation: clickGlow 8s ease-in-out infinite 4.6s; }
.software-demo-document {
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(220, 228, 240, .92));
  color: #111827;
  transform-origin: center;
  animation: documentPop 8s ease-in-out infinite;
}
.software-demo-document span {
  color: #d4192a;
  font-weight: 900;
  display: block;
  margin-bottom: 16px;
}
.software-demo-document div {
  height: 9px;
  margin: 10px 0;
  border-radius: 999px;
  background: #c9d3e4;
}
.software-demo-document div:nth-child(3) { width: 78%; }
.software-demo-document div:nth-child(4) { width: 58%; }
.software-demo-document strong {
  display: inline-flex;
  margin-top: 18px;
  background: rgba(212, 25, 42, .1);
  color: #b50f20;
  padding: 8px 10px;
  border-radius: 8px;
}
.software-demo-history {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.software-demo-history span {
  border: 1px solid rgba(72, 213, 151, .24);
  background: rgba(72, 213, 151, .09);
  color: #9cf0c9;
  border-radius: 8px;
  padding: 11px;
  font-weight: 900;
  font-size: .82rem;
  animation: statusPulse 8s ease-in-out infinite;
}
.software-demo-history span:nth-child(2) { animation-delay: 2.2s; }
.software-demo-history span:nth-child(3) { animation-delay: 4.1s; }
.software-demo-cursor {
  position: absolute;
  left: 76%;
  top: 17%;
  width: 24px;
  height: 34px;
  clip-path: polygon(0 0, 0 100%, 30% 76%, 48% 100%, 64% 92%, 45% 68%, 78% 68%);
  background: var(--white);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .46));
  animation: cursorTour 8s cubic-bezier(.45, 0, .2, 1) infinite;
  z-index: 4;
}
.software-demo-cursor span {
  position: absolute;
  inset: -18px;
  border: 2px solid rgba(245, 200, 76, .65);
  border-radius: 50%;
  opacity: 0;
  animation: cursorClick 8s ease-in-out infinite;
}
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  max-width: 920px;
  margin: 16px 0;
}
.page-hero p { max-width: 760px; color: #d4deee; font-size: 1.12rem; }

.software-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .45fr);
  gap: 28px;
  align-items: stretch;
}
.software-summary__main {
  display: grid;
  align-content: center;
  gap: 14px;
}
.software-summary__main h2,
.software-tech-layout h2,
.software-cta h2 { color: #111827; }
.section-dark .software-tech-layout h2 { color: var(--white); }
.software-panel-preview {
  border: 1px solid rgba(245, 200, 76, .34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035)),
    #081225;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  min-height: 360px;
  display: grid;
  align-content: start;
  gap: 14px;
}
.software-panel-preview__bar {
  display: flex;
  gap: 7px;
  margin-bottom: 8px;
}
.software-panel-preview__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 200, 76, .78);
}
.software-panel-preview h3 {
  color: #f7fbff;
  font-size: 1.55rem;
  text-shadow: 0 0 24px rgba(245, 200, 76, .16);
}
.software-panel-preview__row,
.software-panel-preview__doc {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 14px;
}
.software-panel-preview__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.software-panel-preview__row strong {
  color: #e7eefb;
  font-weight: 900;
}
.software-panel-preview__row span,
.software-panel-preview__doc span {
  color: var(--gold);
  font-weight: 900;
  font-size: .86rem;
}
.software-panel-preview__doc p {
  color: #e0e8f6;
  margin-top: 6px;
}
.software-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.software-steps article {
  border: 1px solid rgba(7, 11, 22, .12);
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 45px rgba(7, 11, 22, .08);
}
.software-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}
.software-steps h3 { color: #111827; margin-bottom: 8px; }
.software-steps p { color: #526176; }
.software-features {
  position: relative;
  overflow: hidden;
}
.software-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 26%, rgba(245, 200, 76, .08), transparent 28%),
    radial-gradient(circle at 84% 68%, rgba(212, 25, 42, .09), transparent 30%);
  pointer-events: none;
}
.software-features .container {
  position: relative;
  z-index: 1;
}
.software-feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.software-module-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035)),
    #101a2b;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
}
.software-module-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(245, 200, 76, .16), transparent 38%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}
.software-module-card:nth-child(1) { animation: featureFocus 12s ease-in-out infinite 0s; }
.software-module-card:nth-child(2) { animation: featureFocus 12s ease-in-out infinite 1.8s; }
.software-module-card:nth-child(3) { animation: featureFocus 12s ease-in-out infinite 3.6s; }
.software-module-card:nth-child(4) { animation: featureFocus 12s ease-in-out infinite 5.4s; }
.software-module-card:nth-child(5) { animation: featureFocus 12s ease-in-out infinite 7.2s; }
.software-module-card:nth-child(6) { animation: featureFocus 12s ease-in-out infinite 9s; }
.software-module-card:nth-child(1)::after { animation: featureSweep 12s ease-in-out infinite 0s; }
.software-module-card:nth-child(2)::after { animation: featureSweep 12s ease-in-out infinite 1.8s; }
.software-module-card:nth-child(3)::after { animation: featureSweep 12s ease-in-out infinite 3.6s; }
.software-module-card:nth-child(4)::after { animation: featureSweep 12s ease-in-out infinite 5.4s; }
.software-module-card:nth-child(5)::after { animation: featureSweep 12s ease-in-out infinite 7.2s; }
.software-module-card:nth-child(6)::after { animation: featureSweep 12s ease-in-out infinite 9s; }
.software-module-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f7fbff;
}
.software-module-card__top span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(245, 200, 76, .16);
  color: var(--gold);
  font-weight: 950;
  animation: iconSignal 12s ease-in-out infinite;
}
.software-module-card__top strong {
  font-size: 1.15rem;
}
.software-module-card p {
  color: #d9e4f4;
  margin: 0;
}
.module-table-mini,
.module-phone-mini,
.module-live-mini,
.module-status-mini,
.module-cash-mini,
.module-secure-mini {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(5, 9, 20, .42);
  padding: 14px;
}
.module-table-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.module-table-mini span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #eef4ff;
  font-weight: 950;
  border: 1px solid rgba(255, 255, 255, .14);
}
.module-table-mini .busy { border-color: rgba(212, 25, 42, .52); }
.module-table-mini .free { border-color: rgba(72, 213, 151, .48); }
.module-table-mini .active { border-color: rgba(245, 200, 76, .7); color: var(--gold); background: rgba(245, 200, 76, .12); }
.module-table-mini .paid { border-color: rgba(120, 160, 255, .46); }
.module-phone-mini {
  max-width: 190px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f7fbff, #dce7f6);
  color: #111827;
  display: grid;
  gap: 8px;
}
.module-phone-mini > span {
  color: #d4192a;
  font-weight: 950;
}
.module-phone-mini div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  font-size: .78rem;
  font-weight: 800;
}
.module-phone-mini b { color: #d4192a; }
.module-phone-mini button,
.module-cash-mini button,
.module-secure-mini button {
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #111827;
  min-height: 34px;
  font-weight: 950;
}
.module-live-mini {
  display: grid;
  gap: 10px;
}
.module-live-mini div,
.module-cash-mini div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(72, 213, 151, .28);
  border-radius: 9px;
  background: rgba(72, 213, 151, .07);
  padding: 10px;
}
.module-live-mini span,
.module-cash-mini span { color: var(--gold); font-weight: 950; font-size: .78rem; }
.module-live-mini b,
.module-cash-mini strong { color: #f7fbff; }
.module-status-mini {
  display: grid;
  gap: 10px;
}
.module-status-mini span {
  border-radius: 999px;
  padding: 9px 11px;
  background: rgba(245, 200, 76, .1);
  color: var(--gold);
  font-weight: 950;
}
.module-status-mini span:nth-child(2) { background: rgba(72, 213, 151, .09); color: #9cf0c9; }
.module-status-mini span:nth-child(3) { background: rgba(120, 160, 255, .1); color: #b9cbff; }
.module-cash-mini {
  display: grid;
  gap: 12px;
}
.module-secure-mini {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}
.module-secure-mini > span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(245, 200, 76, .55);
  position: relative;
}
.module-secure-mini > span::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: -13px;
  height: 24px;
  border: 3px solid rgba(245, 200, 76, .55);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}
.module-secure-mini div {
  color: #f7fbff;
  font-weight: 950;
}
.software-feature-cursor {
  position: absolute;
  left: 11%;
  top: 18%;
  width: 24px;
  height: 34px;
  clip-path: polygon(0 0, 0 100%, 30% 76%, 48% 100%, 64% 92%, 45% 68%, 78% 68%);
  background: #ffffff;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .46));
  z-index: 5;
  pointer-events: none;
  animation: featureCursorTour 12s cubic-bezier(.45, 0, .2, 1) infinite;
}
.software-feature-cursor span {
  position: absolute;
  inset: -18px;
  border: 2px solid rgba(245, 200, 76, .7);
  border-radius: 50%;
  opacity: 0;
  animation: featureCursorClick 12s ease-in-out infinite;
}
.software-tech-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding-right: 92px;
}
.software-tech-layout p {
  color: #c8d3e5;
  margin-top: 14px;
  max-width: 820px;
}
.software-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 14px;
  width: min(100%, 680px);
  justify-self: end;
}
.software-stack span {
  border: 1px solid rgba(245, 200, 76, .28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
    rgba(245, 200, 76, .08);
  color: var(--gold);
  border-radius: var(--radius);
  min-height: 70px;
  padding: 12px 14px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.software-cta {
  margin: 32px auto 0;
  max-width: 1120px;
  border: 1px solid rgba(245, 200, 76, .24);
  background:
    linear-gradient(135deg, rgba(7, 11, 22, .96), rgba(12, 26, 52, .92)),
    #071020;
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(7, 11, 22, .18);
}
.software-value-section {
  padding-bottom: 52px;
}
.software-value-section .container {
  padding-right: 92px;
}
.software-cta .eyebrow { color: var(--gold); }
.software-cta .eyebrow::before { background: var(--red); }
.software-cta h2 {
  color: var(--white);
  max-width: 760px;
}
.software-cta p {
  color: #c8d3e5;
  max-width: 820px;
  margin-top: 10px;
}
.software-cta .btn {
  min-width: 220px;
  box-shadow: 0 18px 42px rgba(212, 25, 42, .24);
  white-space: nowrap;
}

.story-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.story-layout img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .14);
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline-item {
  border-left: 3px solid var(--red);
  padding: 8px 0 8px 18px;
}
.team-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.team-member {
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-member::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(245, 200, 76, .16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 58%);
  opacity: .9;
  pointer-events: none;
}
.team-member h3,
.team-member p,
.team-illustration {
  position: relative;
  z-index: 1;
}
.team-member img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 3px solid var(--gold);
}
.team-illustration {
  width: min(100%, 220px);
  aspect-ratio: 1.35;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(245, 200, 76, .24);
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 200, 76, .22), transparent 34%),
    linear-gradient(145deg, rgba(13, 33, 70, .94), rgba(7, 11, 22, .96));
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.team-illustration svg {
  width: 88%;
  height: 88%;
  overflow: visible;
}
.team-illustration rect,
.team-illustration path,
.team-illustration circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.team-illustration rect {
  fill: rgba(255, 255, 255, .045);
  stroke: rgba(245, 200, 76, .72);
}
.team-illustration circle {
  fill: #08101f;
}
.team-illustration--strategy path,
.team-illustration--strategy circle { stroke: #f5c84c; }
.team-illustration--marketing path,
.team-illustration--marketing circle { stroke: #f03b4d; }
.team-illustration--tech path,
.team-illustration--tech circle { stroke: #62a8ff; }
.team-illustration--support path,
.team-illustration--support circle { stroke: #25d366; }
.team-member:hover .team-illustration {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(245, 200, 76, .68);
  box-shadow: 0 30px 72px rgba(245, 200, 76, .14), 0 18px 55px rgba(0, 0, 0, .28);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.package-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.package-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.package-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.package-price {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 16px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(245, 200, 76, .14);
  color: var(--gold);
  font-weight: 900;
}
.package-actions { display: grid; gap: 10px; margin-top: auto; padding-top: 18px; }
.service-catalog {
  margin-top: clamp(34px, 5vw, 58px);
  padding-top: clamp(24px, 4vw, 36px);
  border-top: 1px solid rgba(245, 200, 76, .22);
}
.service-catalog .section-head {
  align-items: start;
  margin-bottom: 26px;
}
.service-category {
  display: grid;
  gap: 16px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.service-category__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-category__head span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(245, 200, 76, .16);
  color: var(--gold);
  font-weight: 900;
}
.service-category__head h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}
.service-category__intro {
  max-width: 960px;
  color: #c8d3e5;
}
.service-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-offer-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-offer-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 200, 76, .13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035)),
    #0c1729;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .2);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.service-offer-card:hover,
.service-offer-card[open] {
  border-color: rgba(245, 200, 76, .52);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
}
.service-offer-card[open] {
  transform: translateY(-3px);
}
.service-offer-card--featured {
  border-color: rgba(245, 200, 76, .46);
  background:
    linear-gradient(135deg, rgba(245, 200, 76, .16), rgba(212, 25, 42, .08) 38%, rgba(255, 255, 255, .05)),
    #0c1729;
}
.service-offer-card summary {
  min-height: 224px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  list-style: none;
}
.service-offer-card summary::-webkit-details-marker {
  display: none;
}
.service-offer-card summary::after {
  content: "Ver";
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 200, 76, .34);
  color: var(--gold);
  font-size: .74rem;
  font-weight: 900;
}
.service-offer-card[open] summary::after {
  content: "Ver";
}
.service-offer-card summary span {
  color: var(--white);
  max-width: 100%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.16;
}
.service-offer-card summary .service-offer-icon {
  width: min(100%, 136px);
  height: 102px;
  max-width: none;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px solid rgba(245, 200, 76, .24);
  background:
    radial-gradient(circle at 50% 28%, rgba(245, 200, 76, .28), transparent 35%),
    linear-gradient(145deg, rgba(18, 63, 140, .72), rgba(7, 11, 22, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 14px 34px rgba(0, 0, 0, .2);
}
.service-offer-icon::before {
  color: var(--gold);
  font-size: .84rem;
  font-weight: 950;
  letter-spacing: .06em;
}
.service-offer-icon--automation::before { content: "AUTO"; }
.service-offer-icon--ai::before { content: "IA"; font-size: 1.15rem; }
.service-offer-icon--strategy::before { content: "MAP"; }
.service-offer-icon--consulting::before { content: "360"; font-size: 1rem; }
.service-offer-icon--growth::before { content: "KPI"; }
.service-offer-icon--sales::before { content: "CRM"; }
.service-offer-icon--academy::before { content: "EDU"; }
.service-offer-icon--mentor::before { content: "CEO"; }
.service-offer-icon--workshop::before { content: "LAB"; }
.service-offer-icon--training::before { content: "TEAM"; }
.service-offer-icon--speaker::before { content: "TALK"; }
.service-offer-card:hover .service-offer-icon,
.service-offer-card[open] .service-offer-icon {
  border-color: rgba(245, 200, 76, .6);
  transform: translateY(-2px);
}
.service-offer-card__body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.service-offer-card__body p {
  color: #d8e2f1;
}
.service-offer-card__body h4 {
  color: var(--gold);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-offer-card__body .btn {
  margin-top: 4px;
}
.service-offer-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 7, 16, .88);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.service-offer-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.service-offer-modal__box {
  width: min(94vw, 760px);
  max-height: min(88vh, 820px);
  overflow-y: auto;
  border: 1px solid rgba(245, 200, 76, .34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 200, 76, .18), transparent 34%),
    linear-gradient(135deg, #0d2146, #070b16);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 32px);
  transform: translateY(20px) scale(.96);
  transition: transform .24s ease;
}
.service-offer-modal.open .service-offer-modal__box {
  transform: translateY(0) scale(1);
}
.service-offer-modal__close {
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
}
.service-offer-modal__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0 22px;
}
.service-offer-modal__head .service-offer-icon {
  width: 86px;
  height: 70px;
}
.service-offer-modal__head h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}
.service-offer-modal__body {
  display: grid;
  gap: 16px;
}
.service-offer-modal__body p,
.service-offer-modal__body li {
  color: #d8e2f1;
}
.service-offer-modal__body h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
}
.service-modal-plan {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}
.service-modal-plan + .service-modal-plan {
  margin-top: 4px;
}
.service-modal-plan strong {
  width: fit-content;
  padding: 8px 11px;
  border-radius: var(--radius);
  background: rgba(245, 200, 76, .15);
  color: var(--gold);
}
.service-bonus {
  border-left: 3px solid var(--gold);
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(245, 200, 76, .1);
}
.note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(245, 200, 76, .1);
  border-radius: var(--radius);
  color: #dfe8f7;
}
.instagram-proof {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(245, 200, 76, .22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 25, 42, .12), transparent 34%),
    rgba(255, 255, 255, .055);
}
.instagram-proof__head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 18px;
}
.instagram-proof__head h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}
.instagram-proof__head p {
  color: #c8d3e5;
}
.instagram-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.instagram-proof__item {
  text-align: left;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(7, 11, 22, .55);
  padding: 18px;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.instagram-proof__item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 200, 76, .68);
  background: rgba(245, 200, 76, .09);
}
.instagram-proof__item span {
  color: var(--gold);
  font-weight: 900;
  font-size: .82rem;
}
.instagram-proof__item strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.1rem;
}
.instagram-proof__item small {
  color: #b9c6d8;
  line-height: 1.5;
}
.instagram-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 7, 16, .88);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.instagram-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.instagram-modal__box {
  width: min(92vw, 560px);
  border: 1px solid rgba(245, 200, 76, .34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0d2146, #070b16);
  box-shadow: var(--shadow);
  padding: 26px;
  transform: translateY(24px) scale(.94);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}
.instagram-modal.open .instagram-modal__box {
  transform: translateY(0) scale(1);
}
.instagram-modal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.instagram-modal__top h3 {
  color: var(--gold);
  font-size: 1.35rem;
}
.instagram-modal__close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
}
.instagram-modal__description {
  color: #d7e1f0;
  margin-bottom: 20px;
}
.instagram-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.qr-card { text-align: center; }
.qr-zoom-trigger {
  width: min(100%, 430px);
  margin: 18px auto;
  padding: 16px;
  border: 1px solid rgba(245, 200, 76, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  color: var(--gold);
  cursor: zoom-in;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .32);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.qr-zoom-trigger img {
  margin: 18px auto;
  width: min(100%, 360px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
}
.qr-zoom-trigger span {
  display: inline-flex;
  margin-top: 8px;
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.qr-zoom-trigger:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(245, 200, 76, .7);
  box-shadow: 0 26px 70px rgba(245, 200, 76, .14), 0 18px 55px rgba(0, 0, 0, .38);
}
.qr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 7, 16, .9);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.qr-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.qr-lightbox__content {
  width: min(92vw, 720px);
  border: 1px solid rgba(245, 200, 76, .35);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(18, 63, 140, .22), rgba(7, 11, 22, .98));
  box-shadow: var(--shadow);
  padding: clamp(18px, 4vw, 34px);
  transform: translateY(26px) scale(.92);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}
.qr-lightbox.open .qr-lightbox__content {
  transform: translateY(0) scale(1);
}
.qr-lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.qr-lightbox__top strong {
  color: var(--gold);
  font-size: 1.05rem;
}
.qr-lightbox__close {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
}
.qr-lightbox img {
  width: min(82vw, 560px);
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
}
.payment-alert {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(37, 211, 102, .36);
  background: rgba(37, 211, 102, .08);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}
.contact-form {
  display: grid;
  gap: 12px;
}
.field {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid #d4deeb;
  background: var(--white);
  color: #172033;
}
textarea.field { min-height: 140px; resize: vertical; }
.join-team-cta {
  margin-top: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 200, 76, .42);
  background:
    linear-gradient(135deg, rgba(245, 200, 76, .18), transparent 36%),
    linear-gradient(110deg, rgba(13, 33, 70, .96), rgba(7, 11, 22, .98));
  color: var(--white);
  padding: clamp(22px, 4vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}
.join-team-cta h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin: 8px 0 10px;
}
.join-team-cta p {
  color: #d7e1f0;
  max-width: 760px;
}

.careers-hero {
  background:
    linear-gradient(135deg, rgba(245, 200, 76, .14), transparent 32%),
    linear-gradient(110deg, rgba(7, 16, 32, .95), rgba(13, 33, 70, .86)),
    url("../backend/src/main/resources/static/img/equipo1.png") right center / min(50vw, 760px) no-repeat;
}
.career-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.career-role {
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .07);
  transition: transform .22s ease, border-color .22s ease;
}
.career-role:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 200, 76, .55);
}
.career-role h3 { margin-bottom: 10px; }
.career-role p { color: #c8d3e5; }
.career-role span {
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(245, 200, 76, .13);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
}
.career-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.career-steps strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #111827;
  margin-bottom: 14px;
}
.career-apply-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.career-apply-button {
  width: 100%;
  margin-top: 24px;
}
.career-apply-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(245, 200, 76, .34);
  background:
    linear-gradient(135deg, rgba(245, 200, 76, .14), transparent 36%),
    rgba(255, 255, 255, .07);
  padding: clamp(24px, 5vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-apply-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 10px 0 14px;
}
.career-apply-panel p {
  color: #c8d3e5;
  max-width: 680px;
}
.career-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 7, 16, .9);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.career-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.career-modal__box {
  width: min(96vw, 920px);
  max-height: min(88vh, 860px);
  overflow-y: auto;
  border: 1px solid rgba(245, 200, 76, .35);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0d2146, #070b16);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 34px);
  transform: translateY(24px) scale(.94);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}
.career-modal.open .career-modal__box {
  transform: translateY(0) scale(1);
}
.career-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.career-modal__top h2 {
  color: var(--white);
  margin-top: 6px;
}
.career-modal__close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
}
.career-form {
  display: grid;
  gap: 14px;
}
.career-form label {
  display: grid;
  gap: 7px;
  color: #dbe6f6;
  font-size: .92rem;
  font-weight: 800;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.testimonial {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote { font-size: 1.02rem; }
.quote-author { color: var(--gold); font-weight: 900; margin-top: 16px; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #050914;
  padding: 34px 0;
  color: #b8c4d7;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--gold); }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.social-dock {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 75;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}
.social-dock a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #f6f9ff;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
    rgba(7, 11, 22, .84);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
  backdrop-filter: blur(14px);
  transition: transform .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.social-dock a:hover {
  color: var(--gold);
  border-color: rgba(245, 200, 76, .5);
  box-shadow: 0 18px 42px rgba(245, 200, 76, .18);
  transform: translateX(-4px);
}
.social-dock svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.chatbot-launch {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #0b1020;
  box-shadow: 0 18px 45px rgba(212, 25, 42, .34);
  display: grid;
  place-items: center;
}
.chatbot-panel {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 80;
  width: min(380px, calc(100vw - 28px));
  max-height: min(650px, calc(100vh - 124px));
  background: #071020;
  border: 1px solid rgba(245, 200, 76, .25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}
.chatbot-panel.open { display: grid; grid-template-rows: auto 1fr auto; }
.chatbot-head {
  padding: 16px;
  background: linear-gradient(135deg, #0d2146, #071020);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.chatbot-head strong { display: block; }
.chatbot-head span { color: #b7c5d8; font-size: .86rem; }
.chatbot-close {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--line);
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
}
.chatbot-messages {
  padding: 16px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
}
.bot-msg, .user-msg {
  padding: 10px 12px;
  border-radius: var(--radius);
  max-width: 88%;
  font-size: .94rem;
}
.bot-msg { background: rgba(255, 255, 255, .08); color: #e6edf8; }
.user-msg { background: rgba(245, 200, 76, .16); color: var(--white); margin-left: auto; }
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}
.quick-replies button {
  border: 1px solid rgba(245, 200, 76, .28);
  background: rgba(245, 200, 76, .08);
  color: var(--gold);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  font-size: .86rem;
}
.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.chatbot-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px;
}
.chatbot-form button {
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: #111827;
  padding: 0 13px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 11, 22, .98);
    padding: 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .hero {
    background:
      linear-gradient(110deg, rgba(7, 11, 22, .98), rgba(10, 22, 48, .9)),
      url("../backend/src/main/resources/static/img/equipo1.png") center bottom / 760px no-repeat;
    min-height: auto;
  }
  .hero-grid, .home-hero__grid, .story-layout, .contact-layout, .career-apply-layout { grid-template-columns: 1fr; }
  .software-summary, .software-tech-layout { grid-template-columns: 1fr; }
  .software-tech-layout { padding-right: 0; }
  .software-value-section .container { padding-right: 0; }
  .software-stack { justify-self: stretch; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .software-demo-body { grid-template-columns: 1fr; }
  .software-demo-sidebar { display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .09); }
  .software-demo-grid, .juice-demo-grid { grid-template-columns: 1fr; }
  .home-hero__visual { margin-top: 8px; }
  .hero-panel { display: none; }
  .trust-strip, .home-hero__proof, .grid-3, .packages-grid, .team-row, .home-process, .home-package-strip, .software-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .software-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-offer-grid, .service-offer-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trusted-clients__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .career-roles, .career-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .instagram-proof__grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .payment-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .brand strong { font-size: .82rem; }
  .hero { padding-top: 44px; }
  .hero h1, .home-hero__content h1, .page-hero h1 { font-size: 2.32rem; }
  .trust-strip, .home-hero__proof, .grid-3, .grid-2, .packages-grid, .team-row, .home-process, .home-package-strip, .software-feature-grid { grid-template-columns: 1fr; }
  .service-catalog { padding: 18px; }
  .service-category__head { align-items: flex-start; }
  .service-offer-grid, .service-offer-grid--two { grid-template-columns: 1fr; }
  .service-offer-card summary { min-height: auto; }
  .service-offer-card summary { min-height: 190px; }
  .service-offer-modal__head { display: grid; }
  .service-modal-plan { padding: 14px; }
  .trusted-clients__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-cta { display: grid; }
  .career-roles, .career-steps { grid-template-columns: 1fr; }
  .software-steps { grid-template-columns: 1fr; }
  .software-stack { grid-template-columns: 1fr; }
  .software-cta { grid-template-columns: 1fr; }
  .software-cta .btn { width: 100%; }
  .software-demo-frame { margin-top: 24px; }
  .software-demo-topbar { grid-template-columns: auto 1fr; }
  .software-demo-topbar > span { display: none; }
  .software-demo-body { min-height: auto; }
  .software-demo-workspace { padding: 14px; }
  .software-demo-history { grid-template-columns: 1fr; }
  .software-demo-cursor { display: none; }
  .software-feature-cursor { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .section-actions .btn, .package-actions .btn { width: 100%; }
  .payment-alert { display: block; }
  .payment-alert .btn { width: 100%; margin-top: 14px; }
  .join-team-cta { display: grid; }
  .join-team-cta .btn { width: 100%; }
  .social-dock {
    right: 12px;
    top: auto;
    bottom: 88px;
    gap: 8px;
    transform: none;
  }
  .social-dock a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .chatbot-launch { right: 16px; bottom: 16px; }
  .chatbot-panel { right: 14px; bottom: 88px; }
  .home-hero__visual { padding: 8px; }
  .home-hero__video { aspect-ratio: 4 / 5; }
  .home-hero__badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 8px;
  }
}

@keyframes starDrift {
  0% { transform: translate3d(0, 0, 0) scale(1.25); }
  100% { transform: translate3d(-140px, 140px, 0) scale(1.25); }
}
@keyframes starDriftReverse {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(180px, -120px, 0); }
}
@keyframes stellarTitle {
  0%, 100% { filter: brightness(1); transform: translateY(0); }
  50% { filter: brightness(1.18); transform: translateY(-2px); }
}
@keyframes brandSignal {
  0%, 100% { transform: translateY(0); filter: brightness(1); }
  50% { transform: translateY(-3px); filter: brightness(1.2); }
}
@keyframes subtitleReveal {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes demoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes frameSweep {
  0%, 100% { transform: translateX(-35%); opacity: .18; }
  50% { transform: translateX(35%); opacity: .55; }
}
@keyframes cursorTour {
  0%, 10% { left: 78%; top: 17%; }
  18%, 28% { left: 31%; top: 45%; }
  36%, 47% { left: 49%; top: 62%; }
  55%, 67% { left: 72%; top: 42%; }
  76%, 88% { left: 74%; top: 70%; }
  96%, 100% { left: 78%; top: 17%; }
}
@keyframes cursorClick {
  8%, 18%, 36%, 54%, 72% { opacity: 0; transform: scale(.45); }
  11%, 21%, 39%, 57%, 75% { opacity: .75; transform: scale(1); }
  15%, 25%, 43%, 61%, 79% { opacity: 0; transform: scale(1.45); }
}
@keyframes clickGlow {
  0%, 18%, 100% { box-shadow: none; transform: none; }
  22%, 31% { box-shadow: 0 0 0 4px rgba(245, 200, 76, .18), 0 0 24px rgba(245, 200, 76, .32); transform: translateY(-1px); }
}
@keyframes fieldFocus {
  0%, 18%, 100% { border-color: rgba(255, 255, 255, .1); box-shadow: none; }
  22%, 42% { border-color: rgba(245, 200, 76, .5); box-shadow: inset 0 0 0 1px rgba(245, 200, 76, .18), 0 0 24px rgba(245, 200, 76, .12); }
}
@keyframes documentPop {
  0%, 48%, 100% { transform: scale(.98); opacity: .84; }
  58%, 82% { transform: scale(1); opacity: 1; box-shadow: 0 22px 45px rgba(245, 200, 76, .16); }
}
@keyframes statusPulse {
  0%, 35%, 100% { opacity: .62; transform: none; }
  45%, 72% { opacity: 1; transform: translateY(-2px); }
}
@keyframes sidePulse {
  0%, 35%, 100% { box-shadow: none; }
  45%, 70% { box-shadow: inset 0 0 0 1px rgba(245, 200, 76, .28), 0 0 24px rgba(245, 200, 76, .12); }
}
@keyframes tableOrderPulse {
  0%, 100% { transform: none; box-shadow: none; }
  35%, 70% { transform: translateY(-2px); box-shadow: 0 0 0 4px rgba(245, 200, 76, .14), 0 18px 34px rgba(245, 200, 76, .16); }
}
@keyframes phoneSend {
  0%, 48%, 100% { transform: none; }
  58%, 72% { transform: translateY(-4px) rotate(-1deg); }
}
@keyframes sendButtonGlow {
  0%, 42%, 100% { box-shadow: none; }
  52%, 68% { box-shadow: 0 0 0 4px rgba(245, 200, 76, .24), 0 16px 30px rgba(245, 200, 76, .28); }
}
@keyframes liveOrderIn {
  0%, 40%, 100% { opacity: .66; transform: translateX(0); }
  50%, 74% { opacity: 1; transform: translateX(-4px); border-color: rgba(72, 213, 151, .36); box-shadow: 0 14px 28px rgba(72, 213, 151, .1); }
}
@keyframes featureCursorTour {
  0%, 9% { left: 9%; top: 17%; }
  16%, 25% { left: 43%; top: 17%; }
  32%, 41% { left: 76%; top: 17%; }
  48%, 57% { left: 9%; top: 62%; }
  64%, 73% { left: 43%; top: 62%; }
  80%, 90% { left: 76%; top: 62%; }
  100% { left: 9%; top: 17%; }
}
@keyframes featureCursorClick {
  6%, 18%, 34%, 50%, 66%, 82% { opacity: 0; transform: scale(.45); }
  9%, 21%, 37%, 53%, 69%, 85% { opacity: .82; transform: scale(1); }
  13%, 25%, 41%, 57%, 73%, 89% { opacity: 0; transform: scale(1.5); }
}
@keyframes featureFocus {
  0%, 16%, 100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: none;
  }
  5%, 12% {
    transform: translateY(-6px);
    border-color: rgba(245, 200, 76, .58);
    box-shadow: 0 22px 50px rgba(245, 200, 76, .13), 0 0 0 1px rgba(245, 200, 76, .16);
  }
}
@keyframes featureSweep {
  0%, 15%, 100% { opacity: 0; transform: translateX(-120%); }
  5%, 12% { opacity: 1; transform: translateX(120%); }
}
@keyframes iconSignal {
  0%, 16%, 100% { transform: scale(1); background: rgba(245, 200, 76, .14); }
  5%, 12% { transform: scale(1.08); background: rgba(245, 200, 76, .28); box-shadow: 0 0 28px rgba(245, 200, 76, .24); }
}
