/* ==========================================================================ACJ Soluciones — Firma DigitalMobile-first stylesheet. Tokens -> Base -> Layout -> Components -> Sections========================================================================== */
:root {
  /* Brand palette (ACJ) */
  --navy: #071738;
  --navy-2: #0d2450;
  --indigo: #161449;
  --purple: #6d43d7;
  --purple-light: #9b7ce8;
  --pink: #eb2d72;
  --pink-dark: #c51f5c;
  --pink-light: #ff6ca1;
  --ink: #12172b;
  --muted: #5b6472;
  --surface: #ffffff;
  --surface-2: #f6f7fc;
  --border: #e6e8f2;
  --success: #1f9d6c;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 16px 40px rgba(18, 23, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(18, 23, 56, 0.16);
  --container: 1180px;
  --gutter: 20px;
  --dur-fast: .18s;
  --dur: .5s;
  --ease: cubic-bezier(.22,.61,.36,1);
}
/* ---------- Reset / base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font: inherit;
}
h1, h2, h3 {
  font-family: var(--font-display);
  margin-top: 0;
  line-height: 1;
  color: var(--navy);
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}
p {
  margin-bottom: 0;
}
.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 450, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 999;
}
.skip-link:focus {
  left: 0;
}
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section, .hero {
  scroll-margin-top: 106px;
}
.section {
  padding: 56px 0;
}
.section-soft {
  background: var(--surface-2);
}
h1 {
  font-size: clamp(2rem, 8vw, 3.6rem);
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(1.65rem, 5.5vw, 2.5rem);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(235,45,114,.09);
  color: var(--pink-dark);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.eyebrow-light {
  background: rgba(255,255,255,.12);
  color: #ffd7e6;
}
.dot-check {
  color: #ff6ca1;
}
.section-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 64ch;
  margin-bottom: 28px;
}
.section-intro-light {
  color: #cfd6ec;
}
.grad-text {
  background: linear-gradient(100deg, var(--pink-light), var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: .86rem;
  display: none;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 14px 28px rgba(235,45,114,.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(235,45,114,.3);
}
.btn-secondary {
  color: var(--navy);
  border-color: var(--border);
  background: #fff;
}
.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.btn-block {
  width: 100%;
}
/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(229,231,239,.8);
  box-shadow: 0 8px 24px rgba(18,23,56,.08);
}
.nav {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top:20px;
}
.brand {
  position: relative;
  display: flex;
  align-items: center;
  width: 168px;
  height: 62px;
  flex: 0 0 168px;
}
.brand-mark {
  display: block;
  width: auto;
  height: 60px;
  max-width: none;
  object-fit: contain;
}
.brand-mark-dark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-header.is-scrolled .brand-mark-light {
  opacity: 0;
}
.site-header.is-scrolled .brand-mark-dark {
  opacity: 1;
}
.nav-links {
  display: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease), background .3s ease;
}
.site-header.is-scrolled .menu-toggle {
  border-color: var(--border);
  background: #fff;
}
.site-header.is-scrolled .menu-toggle span {
  background: var(--navy);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px var(--gutter) 18px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav a {
  padding: 12px 6px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn {
  margin-top: 14px;
}
.mobile-nav[hidden] {
  display: none;
}
/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 84px 0 60px;
  background: linear-gradient(-60deg, #061432 0%, #6d43d7 30%, #eb2d72 55%, #161449 80%, #061432 100%);
  background-size: 340% 340%;
  animation: hero-gradient-shift 18s ease infinite;
}
@keyframes hero-gradient-shift {
  0%, 100% {
    background-position: 0% 40%;
  }
  50% {
    background-position: 100% 60%;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
}
.hero-blob-1 {
  top: -10%;
  right: -8%;
  width: 60vw;
  height: 60vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
}
.hero-blob-2 {
  bottom: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
}
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -6%;
  width: 340px;
  max-width: 46vw;
  height: auto;
  transform: translateY(-50%);
  opacity: .1;
  mix-blend-mode: screen;
}
.hero-signature {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 130%;
  max-width: 900px;
  transform: translate(-50%, -50%);
  opacity: .16;
}
.hero-signature path {
  fill: none;
  stroke: url(#sigGrad);
  stroke: #ff6ca1;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-signature 2.6s var(--ease) .3s forwards;
}
@keyframes draw-signature {
  to {
    stroke-dashoffset: 0;
  }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}
.hero h1 {
  color: #fff;
}
.lead {
  font-size: 1.05rem;
  color: #dce4f6;
  max-width: 60ch;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-actions .btn {
  width: 100%;
}
.trust-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #d8e0ef;
  font-size: .88rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-showcase-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.trust-image {
  border-radius: 24px;
}


.check {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  color: #ff6ca1;
  font-weight: 900;
  font-size: .72rem;
}
.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
}
.visual-card {
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.visual-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.visual-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(235,45,114,.14), rgba(109,67,215,.16));
  color: var(--pink);
  flex: 0 0 auto;
}
.visual-title {
  font-weight: 750;
  margin: 0;
}
.visual-sub {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}
.badge-ok {
  margin-left: auto;
  background: rgba(31,157,108,.12);
  color: var(--success);
  font-weight: 700;
  font-size: .78rem;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.visual-progress {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  margin: 16px 0 14px;
  overflow: hidden;
}
.visual-progress span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  animation: fill-progress 1.6s var(--ease) .9s forwards;
}
@keyframes fill-progress {
  to {
    width: 92%;
  }
}
.visual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .82rem;
  color: var(--muted);
}
.visual-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.visual-meta .material-symbols-rounded {
  font-size: 18px;
  color: var(--purple);
}
.visual-float {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  max-width: 260px;
}
.visual-float .material-symbols-rounded {
  font-size: 26px;
  color: var(--pink);
  background: rgba(235,45,114,.1);
  border-radius: 10px;
  padding: 8px;
}
/* ---------- Grids & cards ---------- */
.grid {
  display: grid;
  gap: 18px;
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 26px rgba(18,23,56,.05);
}
.question {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.card p {
  color: var(--muted);
}
.card .question {
  color: var(--navy);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(235,45,114,.12), rgba(109,67,215,.13));
  color: var(--pink);
  margin-bottom: 16px;
}
.icon .material-symbols-rounded {
  font-size: 24px;
}
.icon-sm {
  width: 42px;
  height: 42px;
}
.icon-sm .material-symbols-rounded {
  font-size: 21px;
}
.feature-card ul {
  margin: 14px 0 0;
  padding-left: 4px;
  color: var(--muted);
}
.feature-card li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}
.feature-split {
  display: grid;
  gap: 32px;
  align-items: start;
}
.feature-grid {
  gap: 16px;
}
.mini-card {
  padding: 20px;
}
.benefit-card {
  text-align: center;
  padding: 22px 16px;
}
.benefit-card .icon {
  margin-inline: auto;
}
/* ---------- Sector band ---------- */
.sector-band {
  background: linear-gradient(135deg, var(--navy), var(--indigo));
  color: #fff;
}
.sector-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  text-align: center;
  padding: 22px 14px;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.sector-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.sector-card .material-symbols-rounded {
  font-size: 30px;
  color: #ff6ca1;
  display: block;
  margin: 0 auto 12px;
}
.sector-card p {
  margin: 0;
  color: #e4eaf7;
  font-weight: 650;
}
.use-cases {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: #edf2fb;
  text-align: center;
}
/* ---------- Steps ---------- */
.steps-grid {
  counter-reset: none;
}
.step {
  position: relative;
  padding-top: 56px;
}
.step-number {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-weight: 800;
  font-size: .84rem;
  font-family: var(--font-display);
}
.step p {
  color: var(--muted);
  margin: 0;
}
/* ---------- Why / confianza ---------- */
.why-grid {
  display: grid;
  gap: 32px;
}
.why-list {
  display: grid;
  gap: 16px;
}
.why-item {
  display: flex;
  gap: 14px;
}
.why-item .check {
  background: rgba(31,157,108,.11);
  color: var(--success);
}
.why-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}
.why-item p {
  color: var(--muted);
  margin: 0;
}
/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--surface);
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  float: right;
  color: var(--pink);
  font-weight: 800;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  color: var(--muted);
  margin: 12px 0 0;
}
/* ---------- Contact ---------- */
.contact-section {
  background: linear-gradient(160deg, var(--navy), var(--indigo));
  color: #fff;
}
.contact-grid {
  display: grid;
  gap: 36px;
}
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce4f6;
}
.check-list .material-symbols-rounded {
  color: #3ddc97;
  font-size: 20px;
}
.demo-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  gap: 14px;
}
.demo-form h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.form-row {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: .84rem;
  font-weight: 650;
  color: #e2e8f7;
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: .94rem;
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(255,255,255,.45);
}
.field select {
  color-scheme: dark;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink-light);
  background: rgba(255,255,255,.12);
}
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .82rem;
  color: #cbd5ee;
}
.checkbox-row input {
  margin-top: 4px;
}
.checkbox-row a {
  color: #ff9dc0;
  text-decoration: underline;
}
.form-note {
  font-size: .85rem;
  color: #3ddc97;
  min-height: 1.2em;
  margin: 0;
}
.form-note.error {
  color: #ff6ca1;
}
/* ---------- Footer ---------- */
.site-footer {
  background: #05112c;
  color: #d8e0ef;
  padding: 44px 0 20px;
}
.footer-grid {
  display: grid;
  gap: 30px;
}
.footer-brand p {
  margin-top: 12px;
  font-size: .88rem;
  color: #aebad2;
  max-width: 32ch;
}
.footer-eyebrow {
  display: block;
  margin-top: 18px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7684a3;
}
.footer-accred {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  margin-top: 2px;
}
.footer-badge-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #aebad2;
}
.footer-badge .material-symbols-rounded {
  font-size: 18px;
}
.site-footer h3 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 10px;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
}
.site-footer a {
  color: #aebad2;
  font-size: .88rem;
  padding: 4px 0;
}
.site-footer a:hover {
  color: #ff9dc0;
}
.copyright {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .78rem;
  color: #6b7899;
}
/* Tablet: 2 columns */
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Desktop: marca ancha + 3 columnas, barra inferior en una fila */
@media (min-width: 860px) {
  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 40px;
  }
  .copyright {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-signature path {
    animation: none;
    stroke-dashoffset: 0;
  }
  .hero {
    animation: none;
    background-position: 0% 40%;
  }
  .visual-progress span {
    animation: none;
    width: 92%;
  }
  html {
    scroll-behavior: auto;
  }
}
/* ==========================================================================Breakpoints — mobile-first========================================================================== */
@media (min-width: 560px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
  }
  .hero-actions .btn {
    width: auto;
  }
  .trust-row {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 860px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
  }
  .nav-links a {
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    color: inherit;
    transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  }
  .nav-links a:hover {
    color: var(--pink-light);
    border-color: var(--pink-light);
  }
  .site-header.is-scrolled .nav-links {
    color: var(--ink);
  }
  .site-header.is-scrolled .nav-links a:hover {
    color: var(--pink);
    border-color: var(--pink);
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
  .btn-sm {
    display: inline-flex;
  }
  .hero {
    padding: 88px 0 96px;
  }
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
  }
  .hero-actions, .trust-row {
    margin-bottom: 0;
  }
  .section {
    padding: 84px 0;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature-split {
    grid-template-columns: .9fr 1.1fr;
  }
  .why-grid {
    grid-template-columns: .95fr 1.05fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  h1 {
    font-size: clamp(2.6rem, 5vw, 3.9rem);
  }
}
/* ==========================================================================PROBLEMAS QUE RESOLVEMOSMobile first========================================================================== */
.problems-section {
  overflow: hidden;
  background: #ffffff;
}
/* Encabezado centrado */
.section-heading-center {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-heading-center .section-intro {
  max-width: 720px;
  margin: 0 auto;
}
/* Estructura principal */
.problems-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}
/* Imagen */
.problems-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.problems-image {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}
/* Columna de contenido */
.problems-content {
  display: grid;
  gap: 16px;
}
/* Tarjetas */
.problem-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(18, 23, 56, 0.05);
  transition:transform var(--dur-fast) var(--ease),box-shadow var(--dur-fast) var(--ease),border-color var(--dur-fast) var(--ease);
}
.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 67, 215, 0.28);
  box-shadow: 0 18px 38px rgba(18, 23, 56, 0.09);
}
/* Número */
.problem-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg,rgba(235, 45, 114, 0.12),rgba(109, 67, 215, 0.14));
  color: var(--pink-dark);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}
/* Textos */
.problem-card-copy h3 {
  margin: 2px 0 8px;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.3;
}
.problem-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}
/* Cierre y CTA */
.problems-result {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.problems-result p {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.55;
}
.problems-result .btn {
  width: 100%;
}
/* Tablet */
@media (min-width: 720px) {
  .section-heading-center {
    margin-bottom: 54px;
  }
  .problems-image {
    max-width: 570px;
  }
  .problems-result .btn {
    width: auto;
  }
}
/* Escritorio */
@media (min-width: 860px) {
  .problems-split {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 72px;
    align-items: center;
  }
  .problems-visual {
    position: sticky;
    top: 110px;
  }
  .problems-image {
    max-width: 540px;
  }
  .problems-content {
    gap: 18px;
  }
  .problem-card {
    padding: 24px;
  }
}
/* Pantallas grandes */
@media (min-width: 1080px) {
  .problems-split {
    gap: 92px;
  }
  .problems-image {
    max-width: 580px;
  }
  .problem-card {
    grid-template-columns: 50px 1fr;
    padding: 26px;
  }
  .problem-number {
    width: 46px;
    height: 46px;
  }
}
/* ==========================================================================HERO CENTRADO========================================================================== */
.hero-grid-centered {
  display: flex;
  justify-content: center;
}
.hero-copy-centered {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}
.hero-copy-centered h1 {
  max-width: 900px;
  margin-inline: auto;
}
.hero-copy-centered .lead {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 28px;
}
.hero-copy-centered .hero-actions {
  justify-content: center;
}
.hero-copy-centered .trust-row {
  justify-content: center;
  margin-top: 26px;
}
.hero-sectors {
  margin-top: 32px;
  color: #d8e0ef;
}
.hero-sectors p {
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-sectors ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.88rem;
}
.hero-sectors li {
  position: relative;
}
.hero-sectors li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -12px;
  color: var(--pink-light);
}
/* Móvil */
@media (max-width: 719px) {
  .hero-copy-centered {
    text-align: left;
  }
  .hero-copy-centered h1,.hero-copy-centered .lead {
    margin-inline: 0;
  }
  .hero-copy-centered .hero-actions,.hero-copy-centered .trust-row,.hero-sectors ul {
    justify-content: flex-start;
  }
  .hero-sectors {
    text-align: left;
  }
}
/* Escritorio */
@media (min-width: 860px) {
  .hero-grid.hero-grid-centered {
    grid-template-columns: 1fr;
  }
  .hero-copy-centered h1 {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    line-height: 0.98;
  }
}
/* ==========================================================================HERO ENTERPRISE ACJ — Fondo animado definitivo========================================================================== */
/*La animación se realiza con dos capas luminosas que se desplazan.Es más visible y confiable que mover background-position sobre variosradial-gradient con coordenadas internas.*/
.hero.hero-enterprise {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg,#17112f 0%,#211946 42%,#2c2259 72%,#35266b 100%);
  background-size: 100% 100%;
  animation: none;
}
/* Aurora magenta-violeta */
.hero.hero-enterprise::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -30%;
  pointer-events: none;
  opacity: 0.78;
  filter: blur(78px);
  background:radial-gradient(circle at 72% 24%,rgba(235, 45, 114, 0.48) 0%,rgba(235, 45, 114, 0.16) 28%,transparent 58%),radial-gradient(circle at 28% 72%,rgba(109, 67, 215, 0.52) 0%,rgba(109, 67, 215, 0.16) 30%,transparent 60%);
  transform: translate3d(-5%, -3%, 0) scale(1.04);
  animation: acj-aurora-primary 13s ease-in-out infinite alternate;
}
/* Aurora azul-violeta secundaria */
.hero.hero-enterprise::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -28%;
  pointer-events: none;
  opacity: 0.58;
  filter: blur(92px);
  background:radial-gradient(circle at 38% 34%,rgba(79, 112, 255, 0.40) 0%,rgba(79, 112, 255, 0.12) 30%,transparent 58%),radial-gradient(circle at 76% 74%,rgba(178, 91, 225, 0.36) 0%,rgba(178, 91, 225, 0.10) 30%,transparent 60%);
  transform: translate3d(5%, 4%, 0) scale(1.06);
  animation: acj-aurora-secondary 17s ease-in-out infinite alternate;
}
@keyframes acj-aurora-primary {
  0% {
    transform: translate3d(-7%, -4%, 0) scale(1.02) rotate(-2deg);
    opacity: 0.62;
  }
  50% {
    transform: translate3d(5%, 2%, 0) scale(1.12) rotate(2deg);
    opacity: 0.84;
  }
  100% {
    transform: translate3d(9%, 6%, 0) scale(1.06) rotate(4deg);
    opacity: 0.70;
  }
}
@keyframes acj-aurora-secondary {
  0% {
    transform: translate3d(7%, 5%, 0) scale(1.08) rotate(2deg);
    opacity: 0.42;
  }
  50% {
    transform: translate3d(-4%, -2%, 0) scale(1.16) rotate(-3deg);
    opacity: 0.66;
  }
  100% {
    transform: translate3d(-9%, 4%, 0) scale(1.10) rotate(-5deg);
    opacity: 0.50;
  }
}
/* El contenido siempre queda por encima de las capas animadas */
.hero.hero-enterprise .hero-bg {
  z-index: 1;
}
.hero.hero-enterprise .hero-grid {
  z-index: 2;
}
/* Blobs decorativos: suaves para no competir con la aurora */
.hero.hero-enterprise .hero-blob {
  filter: blur(115px);
  opacity: 0.14;
  animation: none;
}
.hero.hero-enterprise .hero-blob-1 {
  background: radial-gradient(circle,rgba(255, 91, 157, 0.46) 0%,rgba(255, 91, 157, 0.12) 36%,transparent 72%);
}
.hero.hero-enterprise .hero-blob-2 {
  background: radial-gradient(circle,rgba(102, 116, 255, 0.40) 0%,rgba(102, 116, 255, 0.10) 38%,transparent 72%);
}
/* Isotipo y firma de fondo */
.hero.hero-enterprise .hero-watermark {
  opacity: 0.035;
}
.hero.hero-enterprise .hero-signature {
  opacity: 0.10;
}
.hero.hero-enterprise .hero-signature path {
  stroke: #9b82ff;
  stroke-width: 2.2;
}
/* Degradado del titular */
.hero.hero-enterprise .grad-text {
  background: linear-gradient(90deg,#ff6b9f 0%,#df72de 34%,#aa7df3 66%,#7f8dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Móvil: menos blur y movimiento para mejor rendimiento */
@media (max-width: 719px) {
  .hero.hero-enterprise::before {
    inset: -38%;
    filter: blur(64px);
    opacity: 0.68;
  }
  .hero.hero-enterprise::after {
    inset: -38%;
    filter: blur(72px);
    opacity: 0.48;
  }
}
/* Accesibilidad: respeta la preferencia del sistema */
@media (prefers-reduced-motion: reduce) {
  .hero.hero-enterprise::before,.hero.hero-enterprise::after {
    animation: none;
  }
}
/* ==========================================================================SOLUCIONES — ECOSISTEMA ACJMobile first========================================================================== */
.solutions-ecosystem {
  overflow: hidden;
}
/* Encabezado centrado */
.solutions-heading {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}
.solutions-heading .section-intro {
  max-width: 720px;
  margin: 0 auto;
}
.solutions-highlight {
  background: linear-gradient(90deg,var(--purple),var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Estructura principal */
.solutions-ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: center;
}
/* Lista de capacidades */
.solutions-list {
  display: grid;
  gap: 16px;
}
.solution-row {
  display: block;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(18, 23, 56, 0.05);
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}
.solution-row:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 67, 215, 0.28);
  box-shadow: 0 18px 38px rgba(18, 23, 56, 0.09);
}
/*.solution-number {
  color: var(--pink-dark);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  padding-top: 11px;
}*/
.solution-row-content {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.solution-row-content .icon {
  margin: 0;
}
.solution-row h3 {
  margin: 2px 0 7px;
  font-size: 1.08rem;
  line-height: 1.3;
}
.solution-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}
.solutions-next {
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.solutions-next p {
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 18px;
}
.solutions-next .btn {
  width: 100%;
}
/* ==========================================================================ECOSISTEMA ANIMADO========================================================================== */
.ecosystem-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.ecosystem-orbit {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
}
/* Anillos */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-ring-main {
  inset: 13%;
  border: 2px dashed rgba(109, 67, 215, 0.30);
  animation: ecosystem-spin 22s linear infinite;
}
.orbit-ring-main::before,.orbit-ring-main::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 18px rgba(109, 67, 215, 0.38);
}
.orbit-ring-main::before {
  top: 8%;
  left: 19%;
}
.orbit-ring-main::after {
  right: 6%;
  bottom: 26%;
}
.orbit-ring-inner {
  inset: 25%;
  border: 1px solid rgba(235, 45, 114, 0.18);
  animation: ecosystem-spin-reverse 16s linear infinite;
}
/* Centro */
.ecosystem-center {
  position: absolute;
  inset: 31%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(145deg,#2a1d58 0%,#6040d0 52%,#d52c83 100%);
  box-shadow:0 24px 50px rgba(34, 27, 82, 0.22),inset 0 1px 0 rgba(255, 255, 255, 0.20);
}
/*.ecosystem-center img {width: 78%;max-width: 150px;height: auto;object-fit: contain;}

.ecosystem-center span {margin-top: 8px;color: rgba(255, 255, 255, 0.80);font-size: 0.72rem;line-height: 1.35;}*/
/* Nodos */
.ecosystem-node {
  position: absolute;
  z-index: 4;
  width: 150px;
  padding: 15px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(18, 23, 56, 0.10);
}
.ecosystem-node .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  border-radius: 11px;
  color: var(--purple);
  background: linear-gradient(135deg,rgba(235, 45, 114, 0.10),rgba(109, 67, 215, 0.12));
}
.ecosystem-node strong,.ecosystem-node small {
  display: block;
}
.ecosystem-node strong {
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.25;
}
.ecosystem-node small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}
.ecosystem-node-1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}
.ecosystem-node-2 {
  left: 0;
  bottom: 8%;
}
.ecosystem-node-3 {
  right: 0;
  bottom: 8%;
}
/* Animaciones */
@keyframes ecosystem-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ecosystem-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}
/* Tablet */
@media (min-width: 720px) {
  .solutions-next .btn {
    width: auto;
  }
  .ecosystem-orbit {
    width: 500px;
  }
}
/* Escritorio */
@media (min-width: 860px) {
  .solutions-heading {
    margin-bottom: 64px;
  }
  .solutions-ecosystem-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 74px;
  }
  .ecosystem-visual {
    order: 2;
  }
  .solutions-list {
    order: 1;
  }
}
/* Pantallas grandes */
@media (min-width: 1080px) {
  .solutions-ecosystem-grid {
    gap: 92px;
  }
  .ecosystem-orbit {
    width: 520px;
  }
}
/* Móvil pequeño */
@media (max-width: 480px) {
  .ecosystem-node {
    width: 112px;
    padding: 11px 8px;
  }
  .ecosystem-node strong {
    font-size: 0.74rem;
  }
  .ecosystem-node small {
    display: none;
  }
  .ecosystem-node .material-symbols-rounded {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }
  .ecosystem-center {
    inset: 30%;
    padding: 14px;
  }
  /* .ecosystem-center span {display: none;} */
  .solution-row {
 display: block;
    padding: 18px;
  }
  .solution-row-content {
   grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
  }
}
/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .orbit-ring-main,.orbit-ring-inner {
    animation: none;
  }
}
/* ===========================================Casos de uso - Biometría=========================================== */
.feature-usecases {
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid var(--border);
}
.usecases-title {
  margin:0 0 14px;
  font-size:.9rem;
  font-weight:700;
  color:var(--navy);
}
.usecases-list {
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  padding:0;
  margin:0;
  list-style:none;
}
.usecases-list li {
  position:relative;
  padding-left:14px;
  color:var(--muted);
  font-size:.92rem;
}
.usecases-list li::before {
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--pink);
}
/* ==========================================================================CERTIFICADOS DIGITALESMobile first========================================================================== */
.certificates-section {
  overflow: hidden;
}
/* Encabezado centrado */
.certificates-heading {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}
.certificates-heading .section-intro {
  max-width: 720px;
  margin: 0 auto;
}
.certificates-highlight {
  display: block;
  background: linear-gradient(90deg,var(--pink),var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Layout principal */
.certificates-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}
/* Introducción */
.certificates-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.certificates-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.certificates-intro h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.15;
}
.certificates-intro > p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}
/* Bloque de confianza */
.certificates-trust {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(109, 67, 215, 0.14);
  border-radius: 16px;
  background: rgba(109, 67, 215, 0.05);
}
.certificates-trust .material-symbols-rounded {
  flex: 0 0 auto;
  color: var(--purple);
  font-size: 26px;
}
.certificates-trust p {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.55;
}
/* Opciones */
.certificates-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.certificate-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(18, 23, 56, 0.05);
  transition:transform var(--dur-fast) var(--ease),box-shadow var(--dur-fast) var(--ease),border-color var(--dur-fast) var(--ease);
}
.certificate-option:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 67, 215, 0.28);
  box-shadow: 0 18px 38px rgba(18, 23, 56, 0.09);
}
/* .certificate-number {padding-top: 11px;color: var(--pink-dark);font-family: var(--font-display);font-size: 0.82rem;font-weight: 700;} */
.certificate-option .icon {
  margin: 0;
}
.certificate-option h3 {
  margin: 2px 0 8px;
  font-size: 1rem;
  line-height: 1.3;
}
.certificate-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
/* Modalidades */
.certificate-modalities {
  margin-top: 54px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}
.certificate-modalities-heading {
  max-width: 700px;
  margin: 0 auto 26px;
  text-align: center;
}
.certificate-modalities-heading .eyebrow {
  margin-bottom: 12px;
}
.certificate-modalities-heading h3 {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  line-height: 1.2;
}
.certificate-modalities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.certificate-modality {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  background: var(--surface-2);
}
.certificate-modality .icon {
  margin: 0;
}
.certificate-modality h3 {
  margin: 2px 0 7px;
  font-size: 1rem;
}
.certificate-modality p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
/* Cierre */
.certificates-next {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.certificates-next p {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  line-height: 1.55;
}
.certificates-next .btn {
  width: 100%;
}
/* Tablet */
@media (min-width: 720px) {
  .certificates-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .certificate-modalities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .certificates-next {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .certificates-next .btn {
    width: auto;
    flex: 0 0 auto;
  }
}
/* Escritorio */
@media (min-width: 860px) {
  .certificates-heading {
    margin-bottom: 64px;
  }
  .certificates-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 72px;
    align-items: center;
  }
  .certificates-intro {
    position: sticky;
    top: 112px;
  }
  .certificate-modalities {
    margin-top: 64px;
    padding: 34px;
  }
}
/* Pantallas grandes */
@media (min-width: 1080px) {
  .certificates-layout {
    gap: 92px;
  }
  .certificate-option {
    padding: 22px;
  }
}
/* Móvil pequeño */
@media (max-width: 480px) {
  .certificate-option {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 17px;
  }
  .certificate-number {
    font-size: 0.76rem;
  }
  .certificate-modalities {
    padding: 20px;
  }
  .certificate-modality {
    grid-template-columns: 38px 1fr;
    padding: 17px;
  }
}
/* ==========================================================================BENEFICIOS — ECOSISTEMA VISUAL ACJMobile first========================================================================== */
.benefits-section {
  overflow: hidden;
  background: #ffffff;
}
/* Encabezado */
.benefits-heading {
  max-width: 880px;
  margin: 0 auto 50px;
  text-align: center;
}
.benefits-heading .section-intro {
  max-width: 730px;
  margin: 0 auto;
}
.benefits-highlight {
  display: block;
  background: linear-gradient(90deg,var(--pink),var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Layout principal */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: center;
}
/* ==========================================================================DIAGRAMA========================================================================== */
.benefits-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.benefits-orbit {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
}
/* Anillos */
.benefits-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.benefits-ring-main {
  inset: 14%;
  border: 2px dashed rgba(109, 67, 215, 0.28);
  animation: benefits-spin 24s linear infinite;
}
.benefits-ring-main::before,.benefits-ring-main::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 18px rgba(109, 67, 215, 0.35);
}
.benefits-ring-main::before {
  top: 7%;
  left: 18%;
}
.benefits-ring-main::after {
  right: 7%;
  bottom: 24%;
}
.benefits-ring-inner {
  inset: 27%;
  border: 1px solid rgba(235, 45, 114, 0.16);
  animation: benefits-spin-reverse 18s linear infinite;
}
/* Centro */
.benefits-center {
  position: absolute;
  inset: 32%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(145deg,#2a1d58 0%,#6040d0 55%,#c92c8d 100%);
  box-shadow:0 24px 50px rgba(33, 26, 78, 0.24),inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
/*.benefits-center img {display: block;width: 82%;max-width: 145px;height: auto;object-fit: contain;}

.benefits-center small {margin-top: 9px;color: rgba(255, 255, 255, 0.84);font-size: 0.68rem;line-height: 1.3;max-width: 120px;}*/
/*.benefits-center .material-symbols-rounded {color: #ffffff;font-size: 30px;margin-bottom: 6px;}

.benefits-center strong {color: #ffffff;font-family: var(--font-display);font-size: 1.3rem;}*/
/* Nodos */
.benefit-node {
  position: absolute;
  z-index: 4;
  width: 148px;
  padding: 14px 12px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(18, 23, 56, 0.09);
}
.benefit-node .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  border-radius: 10px;
  color: var(--purple);
  background: linear-gradient(135deg,rgba(235,45,114,.10),rgba(109,67,215,.12));
}
.benefit-node strong,.benefit-node small {
  display: block;
}
.benefit-node strong {
  color: var(--navy);
  font-size: .82rem;
  line-height: 1.25;
}
.benefit-node small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.35;
}
/* Posiciones */
.benefit-node-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.benefit-node-2 {
  top: 22%;
  right: 0;
}
.benefit-node-3 {
  right: 4%;
  bottom: 8%;
}
.benefit-node-4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.benefit-node-5 {
  left: 4%;
  bottom: 8%;
}
.benefit-node-6 {
  top: 22%;
  left: 0;
}
/* ==========================================================================CONTENIDO========================================================================== */
.benefits-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.benefits-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pink-dark);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.benefits-content > h3 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.15;
}
.benefits-content > p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}
/* Lista */
.benefits-list {
  display: grid;
  gap: 18px;
  width: 100%;
  margin-top: 28px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.benefits-list .check {
  margin-top: 2px;
  background: rgba(31,157,108,.10);
  color: var(--success);
}
.benefits-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: .98rem;
}
.benefits-list p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}
/* Cierre */
.benefits-next {
  width: 100%;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.benefits-next p {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--navy);
  line-height: 1.55;
}
.benefits-next .btn {
  width: 100%;
}
/* Animaciones */
@keyframes benefits-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes benefits-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}
/* Tablet */
@media (min-width: 720px) {
  .benefits-next .btn {
    width: auto;
  }
  .benefits-orbit {
    width: 520px;
  }
}
/* Escritorio */
@media (min-width: 860px) {
  .benefits-heading {
    margin-bottom: 66px;
  }
  .benefits-layout {
    grid-template-columns: .95fr 1.05fr;
    gap: 76px;
  }
  .benefits-visual {
    order: 1;
  }
  .benefits-content {
    order: 2;
  }
}
/* Pantallas grandes */
@media (min-width: 1080px) {
  .benefits-layout {
    gap: 96px;
  }
  .benefits-orbit {
    width: 540px;
  }
}
/* Móvil pequeño */
@media (max-width: 480px) {
  .benefits-orbit {
    width: 100%;
  }
  .benefit-node {
    width: 104px;
    padding: 10px 7px;
  }
  .benefit-node strong {
    font-size: .7rem;
  }
  .benefit-node small {
    display: none;
  }
  .benefit-node .material-symbols-rounded {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .benefits-center {
    inset: 31%;
    padding: 12px;
  }
  .benefits-center strong {
    font-size: 1rem;
  }
}
/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .benefits-ring-main,.benefits-ring-inner {
    animation: none;
  }
}
/* ==========================================================================CENTRO COMPARTIDO DE ÓRBITAS ACJPortafolio + Beneficios========================================================================== */
.acj-orbit-center {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
  border-radius: 50%;
  background:linear-gradient(145deg,#2b1c65 0%,#5336bd 52%,#bd2d98 100%);
  box-shadow:0 24px 52px rgba(38, 24, 91, 0.24),inset 0 1px 0 rgba(255, 255, 255, 0.20);
  overflow: hidden;
}
/* Brillo interior sutil */
.acj-orbit-center::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:radial-gradient(circle at 28% 18%,rgba(255, 255, 255, 0.14),transparent 42%);
}
/* Logo */
.acj-orbit-center img {
  position: relative;
  z-index: 1;
  display: block;
  width: 78%;
  max-width: 150px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
/* Texto inferior */
.acj-orbit-center > span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 130px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
}
/* Tamaño del centro en Portafolio */
.ecosystem-center.acj-orbit-center {
  inset: 31%;
}
/* Tamaño del centro en Beneficios */
.benefits-center.acj-orbit-center {
  inset: 31%;
}
/* Elimina estilos anteriores que interfieren */
.benefits-center .material-symbols-rounded,.benefits-center strong {
  display: none;
}
/* Móvil */
@media (max-width: 480px) {
  .ecosystem-center.acj-orbit-center,.benefits-center.acj-orbit-center {
    inset: 29%;
    padding: 12px;
  }
  .acj-orbit-center img {
    width: 82%;
    max-width: 112px;
  }
  .acj-orbit-center > span {
    display: block;
    max-width: 100px;
    margin-top: 5px;
    font-size: 0.58rem;
    line-height: 1.2;
  }
}
.benefits-center.acj-orbit-center > small {
  display: block;
  max-width: 120px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.68rem;
  line-height: 1.25;
  text-align: center;
}
/* ==========================================================================APLICACIONES POR SECTORMobile first========================================================================== */
.sectors-section {
  overflow: hidden;
  background:radial-gradient(circle at 15% 20%,rgba(109, 67, 215, 0.10),transparent 32%),linear-gradient(135deg,#0b1738 0%,#10194a 48%,#17164f 100%);
}
/* Encabezado centrado */
.sectors-heading {
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: center;
}
.sectors-heading .section-intro {
  max-width: 760px;
  margin: 0 auto;
}

#sectores-title{
    color:#fff;
}

.sectors-highlight {
  display: block;
  background: linear-gradient(90deg,#ff6b9f 0%,#dc71de 38%,#9d7df4 70%,#7f8dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Estructura principal */
.sectors-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
/* Imagen */
.sectors-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.sectors-visual img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 24px 44px rgba(4, 9, 35, 0.22));
}
/* Contenido */
.sectors-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sectors-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff7bac;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.sectors-content > h3 {
  max-width: 620px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.15;
}
.sectors-content > p {
  max-width: 620px;
  color: rgba(229, 234, 247, 0.78);
  line-height: 1.7;
}
/* Chips */
.sectors-chips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 28px;
}
.sector-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:transform var(--dur-fast) var(--ease),background var(--dur-fast) var(--ease),border-color var(--dur-fast) var(--ease);
}
.sector-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.20);
}
.sector-chip .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: #ff76aa;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 20px;
}
.sector-chip span {
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.3;
}
/* Procesos */
.sector-processes {
  width: 100%;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sector-processes .eyebrow {
  margin-bottom: 16px;
}
.sector-processes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sector-processes li {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  font-size: 0.84rem;
  line-height: 1.2;
}
/* Cierre */
.sectors-next {
  width: 100%;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sectors-next p {
  max-width: 620px;
  margin-bottom: 18px;
  color: rgba(229, 234, 247, 0.80);
  line-height: 1.65;
}
.sectors-next strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
}
.sectors-next .btn {
  width: 100%;
}
/* Tablet */
@media (min-width: 720px) {
  .sectors-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sectors-next .btn {
    width: auto;
  }
  .sectors-visual img {
    max-width: 680px;
  }
}
/* Escritorio */
@media (min-width: 860px) {
  .sectors-heading {
    margin-bottom: 66px;
  }
  .sectors-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 76px;
  }
  .sectors-visual {
    order: 1;
  }
  .sectors-content {
    order: 2;
  }
  .sectors-visual img {
    max-width: 590px;
  }
}
/* Pantallas grandes */
@media (min-width: 1080px) {
  .sectors-layout {
    gap: 96px;
  }
  .sectors-visual img {
    max-width: 640px;
  }
}
/* Móvil pequeño */
@media (max-width: 480px) {
  .sectors-heading {
    margin-bottom: 40px;
  }
  .sectors-layout {
    gap: 36px;
  }
  .sectors-visual img {
    border-radius: 18px;
  }
  .sector-chip {
    padding: 12px 13px;
  }
  .sector-chip .material-symbols-rounded {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .sector-processes li {
    font-size: 0.78rem;
  }
}
/* ==========================================================================PROCESO INTERACTIVO ACJMobile first========================================================================== */
.process-section {
  overflow: hidden;
  background: #ffffff;
}
.process-heading {
  max-width: 890px;
  margin: 0 auto 52px;
  text-align: center;
}
.process-heading .section-intro {
  max-width: 730px;
  margin: 0 auto;
}
.process-highlight {
  display: block;
  background: linear-gradient(90deg,var(--pink),var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Layout */
.process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}
/* ==========================================================================PASOS========================================================================== */
.process-steps {
  position: relative;
  display: grid;
  gap: 12px;
}
.process-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 15px;
  width: 100%;
  padding: 18px;
  text-align: left;
  font: inherit;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 17px;
  cursor: pointer;
  transition:transform 0.3s ease,border-color 0.3s ease,box-shadow 0.3s ease,background 0.3s ease;
}
.process-step:hover {
  transform: translateX(4px);
  border-color: rgba(109, 67, 215, 0.30);
  box-shadow: 0 14px 34px rgba(18, 23, 56, 0.08);
}
.process-step.is-active {
  border-color: rgba(109, 67, 215, 0.38);
  background: linear-gradient(135deg,rgba(235, 45, 114, 0.05),rgba(109, 67, 215, 0.07));
  box-shadow: 0 16px 38px rgba(59, 43, 137, 0.10);
}
.process-step-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.process-step-number {
  color: var(--pink-dark);
  font-size: 0.72rem;
  font-weight: 800;
}
.process-step-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--purple);
  background: linear-gradient(135deg,rgba(235, 45, 114, 0.11),rgba(109, 67, 215, 0.13));
}
.process-step.is-active .process-step-icon {
  color: #ffffff;
  background: linear-gradient(135deg,var(--pink),var(--purple));
}
.process-step-copy strong,.process-step-copy span {
  display: block;
}
.process-step-copy strong {
  margin: 2px 0 6px;
  font-size: 1rem;
  line-height: 1.3;
}
.process-step-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
/* Progreso vertical */
.process-progress {
  display: none;
}
/* ==========================================================================MOCKUP========================================================================== */
.process-demo {
  min-width: 0;
}
.process-window {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(18, 23, 56, 0.13);
}
.process-window-header {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: #f8f9fd;
}
.process-window-dots {
  display: flex;
  gap: 6px;
}
.process-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dce8;
}
.process-window-dots span:nth-child(1) {
  background: #ff7b99;
}
.process-window-dots span:nth-child(2) {
  background: #f7bf63;
}
.process-window-dots span:nth-child(3) {
  background: #68c99a;
}
.process-window-title {
  overflow: hidden;
  flex: 1;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.process-window-secure {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 700;
}
.process-window-secure .material-symbols-rounded {
  font-size: 16px;
}
.process-window-body {
  position: relative;
  min-height: 430px;
  padding: 22px;
}
.process-panel {
  animation: process-panel-enter 0.45s ease both;
}
@keyframes process-panel-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.process-panel-label {
  margin-bottom: 22px;
  color: var(--pink-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* Paso 1 */
.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 315px;
  padding: 28px;
  text-align: center;
  border: 2px dashed rgba(109, 67, 215, 0.24);
  border-radius: 18px;
  background: rgba(109, 67, 215, 0.03);
}
.upload-zone > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 18px;
  color: var(--purple);
  background: linear-gradient(135deg,rgba(235, 45, 114, 0.10),rgba(109, 67, 215, 0.13));
  font-size: 32px;
}
.upload-zone > strong {
  color: var(--navy);
}
.upload-zone > p {
  margin: 7px 0 22px;
  color: var(--muted);
  font-size: 0.86rem;
}
.upload-file {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  width: 100%;
  max-width: 410px;
  padding: 13px;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 10px 25px rgba(18, 23, 56, 0.06);
}
.upload-file > .material-symbols-rounded {
  color: var(--pink);
}
.upload-file strong,.upload-file small {
  display: block;
}
.upload-file strong {
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-file small {
  color: var(--muted);
  font-size: 0.7rem;
}
.upload-status {
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 800;
}
/* Paso 2 */
.identity-demo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  min-height: 320px;
}
.identity-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 190px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 80px 80px 24px 24px;
  background: linear-gradient(145deg,rgba(109, 67, 215, 0.13),rgba(235, 45, 114, 0.12));
}
.identity-avatar > .material-symbols-rounded {
  color: var(--purple);
  font-size: 92px;
}
.identity-scan {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 16%;
  height: 3px;
  background: #ff4f98;
  box-shadow: 0 0 14px rgba(255, 79, 152, 0.75);
  animation: identity-scan 2.4s ease-in-out infinite;
}
@keyframes identity-scan {
  0%,100% {
    top: 17%;
  }
  50% {
    top: 78%;
  }
}
.identity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--purple);
  background: rgba(109, 67, 215, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
}
.identity-badge .material-symbols-rounded {
  font-size: 17px;
}
.identity-information h3 {
  margin: 15px 0;
  font-size: 1.15rem;
}
.identity-information ul {
  display: grid;
  gap: 9px;
}
.identity-information li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 0.86rem;
}
.identity-information li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}
.identity-result {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 22px;
  padding: 14px;
  border-radius: 13px;
  color: var(--success);
  background: rgba(31, 157, 108, 0.08);
}
.identity-result > .material-symbols-rounded {
  font-size: 27px;
}
.identity-result strong,.identity-result small {
  display: block;
}
.identity-result strong {
  color: var(--navy);
  font-size: 0.84rem;
}
.identity-result small {
  color: var(--muted);
  font-size: 0.72rem;
}
/* Paso 3 */
.signature-demo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  min-height: 320px;
}
.document-preview {
  min-height: 280px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(18, 23, 56, 0.08);
}
.document-lines {
  display: grid;
  gap: 11px;
}
.document-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #e7e9f1;
}
.document-lines span:nth-child(2) {
  width: 82%;
}
.document-lines span:nth-child(3) {
  width: 94%;
}
.document-lines span:nth-child(4) {
  width: 68%;
}
.document-lines span:nth-child(5) {
  width: 88%;
}
.signature-area {
  margin-top: 58px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.signature-area svg {
  width: 100%;
  height: 70px;
}
.signature-path {
  fill: none;
  stroke: var(--purple);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
}
.process-panel.is-active .signature-path {
  animation: draw-process-signature 1.8s ease 0.25s forwards;
}
@keyframes draw-process-signature {
  to {
    stroke-dashoffset: 0;
  }
}
.signature-area > span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}
.signature-controls h3 {
  margin: 15px 0 10px;
}
.signature-controls p {
  color: var(--muted);
  line-height: 1.6;
}
.signature-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 17px;
  color: #ffffff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  background: linear-gradient(135deg,var(--pink),var(--purple));
  border: 0;
  border-radius: 11px;
}
/* Paso 4 */
.success-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  text-align: center;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
  color: #ffffff;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(31, 157, 108, 0.24);
}
.success-icon .material-symbols-rounded {
  font-size: 38px;
}
.success-demo > h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}
.success-demo > p {
  color: var(--muted);
}
.success-document {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin-top: 22px;
  padding: 15px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 13px;
}
.success-document > .material-symbols-rounded {
  color: var(--purple);
}
.success-document strong,.success-document small {
  display: block;
}
.success-document strong {
  overflow: hidden;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.success-document small {
  color: var(--muted);
  font-size: 0.7rem;
}
.success-badge {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 5px 10px;
  color: var(--success);
  background: rgba(31, 157, 108, 0.10);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}
.success-evidence {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 13px;
  margin-top: 20px;
}
.success-evidence > span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.7rem;
}
.success-evidence .material-symbols-rounded {
  color: var(--purple);
  font-size: 16px;
}
/* Footer mockup */
.process-window-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: #f8f9fd;
}
.process-counter {
  color: var(--muted);
  font-size: 0.8rem;
}
.process-counter strong {
  color: var(--pink-dark);
  font-size: 1rem;
}
.process-demo-controls {
  display: flex;
  gap: 8px;
}
.process-control {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.process-control:hover {
  color: #ffffff;
  background: var(--purple);
  border-color: var(--purple);
}
/* Cierre */
.process-section > .container > .process-next {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.process-section > .container > .process-next p {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  line-height: 1.55;
}
.process-section > .container > .process-next .btn {
  width: 100%;
}
/* Tablet */
@media (min-width: 720px) {
  .identity-demo,.signature-demo {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .process-section > .container > .process-next {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .process-section > .container > .process-next .btn {
    width: auto;
  }
}
/* Escritorio */
@media (min-width: 860px) {
  .process-heading {
    margin-bottom: 66px;
  }
  .process-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 72px;
  }
  .process-window-body {
    min-height: 465px;
    padding: 30px;
  }
  .process-progress {
    position: absolute;
    z-index: 1;
    top: 26px;
    bottom: 26px;
    left: 39px;
    display: block;
    width: 2px;
    overflow: hidden;
    background: rgba(109, 67, 215, 0.12);
  }
  .process-progress-bar {
    display: block;
    width: 100%;
    height: 0;
    background: linear-gradient(var(--pink),var(--purple));
    transition: height 0.5s ease;
  }
}
/* Móvil pequeño */
@media (max-width: 480px) {
  .process-step {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 15px;
  }
  .process-step-copy span {
    font-size: 0.84rem;
  }
  .process-window-body {
    min-height: 450px;
    padding: 18px;
  }
  .upload-file {
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .upload-status {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .process-window-secure {
    display: none;
  }
}
/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .process-panel,.identity-scan,.signature-path {
    animation: none !important;
  }
}

/* ==========================================================================
   CONFIANZA ACJ — ENTERPRISE
   ========================================================================== */

.trust-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(109, 67, 215, 0.07),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #f7f8fd 0%,
      #ffffff 100%
    );
}

/* --------------------------------------------------------------------------
   Encabezado centrado
   -------------------------------------------------------------------------- */

.trust-heading {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: center;
}

.trust-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.trust-heading h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.04;
}

.trust-highlight {
  display: block;
  background: linear-gradient(
    90deg,
    var(--pink),
    var(--purple)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-heading .trust-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Layout principal
   -------------------------------------------------------------------------- */

.trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Visual
   -------------------------------------------------------------------------- */

.trust-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow:visible;
}

.trust-visual-glow {
  position: absolute;
  z-index: 0;
  width: 72%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(235, 45, 114, 0.13) 0%,
      rgba(109, 67, 215, 0.09) 40%,
      transparent 72%
    );
  filter: blur(34px);
}

.trust-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
}

.trust-visual-badge {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(109, 67, 215, 0.13);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(18, 23, 56, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trust-visual-badge > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--purple);
  background: linear-gradient(
    135deg,
    rgba(235, 45, 114, 0.11),
    rgba(109, 67, 215, 0.13)
  );
  border-radius: 12px;
}

.trust-visual-badge strong,
.trust-visual-badge span {
  display: block;
}

.trust-visual-badge strong {
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.3;
}

.trust-visual-badge div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Contenido
   -------------------------------------------------------------------------- */

.trust-content {
  min-width: 0;
}

/* --------------------------------------------------------------------------
   Prueba principal
   -------------------------------------------------------------------------- */

.trust-proof {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 17px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 22px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #17143f 0%,
      #32246f 52%,
      #6d43d7 100%
    );
  border-radius: 20px;
  box-shadow: 0 20px 46px rgba(39, 29, 99, 0.18);
}

.trust-proof-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.trust-proof-icon .material-symbols-rounded {
  font-size: 26px;
}

.trust-proof-kicker {
  display: block;
  margin-bottom: 4px;
  color: #ffb7d1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-proof h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.1rem;
}

.trust-proof p {
  margin: 0;
  color: rgba(235, 239, 250, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Pilares
   -------------------------------------------------------------------------- */

.trust-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust-pillar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(18, 23, 56, 0.04);
  transition:
    transform var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}

.trust-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 67, 215, 0.24);
  box-shadow: 0 16px 34px rgba(18, 23, 56, 0.08);
}

.trust-pillar-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--purple);
  background: linear-gradient(
    135deg,
    rgba(235, 45, 114, 0.1),
    rgba(109, 67, 215, 0.12)
  );
  border-radius: 12px;
}

.trust-pillar-icon .material-symbols-rounded {
  font-size: 21px;
}

.trust-pillar h3 {
  margin: 1px 0 5px;
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.35;
}

.trust-pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Cierre
   -------------------------------------------------------------------------- */

.trust-closing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.trust-closing-copy span,
.trust-closing-copy strong {
  display: block;
}

.trust-closing-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-closing-copy strong {
  margin-top: 3px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.trust-closing .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Tablet
   -------------------------------------------------------------------------- */

@media (min-width: 720px) {
  .trust-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-closing {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .trust-closing .btn {
    width: auto;
    flex: 0 0 auto;
  }
}

/* --------------------------------------------------------------------------
   Escritorio
   -------------------------------------------------------------------------- */

@media (min-width: 860px) {
  .trust-layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 76px;
  }

  .trust-visual {
    position: sticky;
    top: 112px;
  }

  .trust-image {
    max-width: 560px;
  }
}

/* --------------------------------------------------------------------------
   Pantallas grandes
   -------------------------------------------------------------------------- */

@media (min-width: 1080px) {
  .trust-layout {
    gap: 14px;
  }

  .trust-image {
    max-width: 610px;
  }
}

/* --------------------------------------------------------------------------
   Móvil pequeño
   -------------------------------------------------------------------------- */

@media (max-width: 719px) {
  .trust-heading {
    margin-bottom: 48px;
  }

  .trust-heading h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .trust-heading .trust-lead {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trust-layout {
    gap: 40px;
  }

  .trust-visual-badge {
    right: 0;
    bottom: 2%;
    min-width: 205px;
    padding: 12px 14px;
  }

  .trust-visual-badge > .material-symbols-rounded {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .trust-proof {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .trust-proof-icon {
    width: 44px;
    height: 44px;
  }

  .trust-pillar {
    padding: 16px;
  }
}


/* HERO — AJUSTE MÓVIL */
@media (max-width: 719px) {
  .hero.hero-enterprise {
    padding-top: 125px;
    padding-bottom: 42px;
  }

  .hero-copy-centered .eyebrow {
    margin-bottom: 20px;
  }
}

/* HERO — MÁS SEPARACIÓN DEBAJO DEL MENÚ EN ESCRITORIO */
@media (min-width: 860px) {
  .hero.hero-enterprise {
    padding-top: 175px;
    padding-bottom: 70px;
  }
}

/* Badge */
.hero-badge{
    margin-bottom:28px;
}

/* Título */
.hero-copy h1{
    margin-bottom:28px;
}

/* Subtítulo */
.hero-copy p{
    margin-bottom:42px;
}

/* Botonera */
.hero-actions{
    margin-bottom:34px;
}

.hero-grid-centered{
     display:flex;
    align-items:center;
    padding-top: 52px;
    padding-top:40px;
    box-sizing:border-box;
}

@media (min-width:860px){

.hero.hero-enterprise{
    padding-top:150px;
    padding-bottom:90px;
}

}


/* =========================================================
   HERO ACJ — FONDO ANIMADO VISIBLE
   ========================================================= */

.hero.hero-enterprise {
  position: relative;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(109, 67, 215, 0.42),
      transparent 42%
    ),
    radial-gradient(
      circle at 82% 24%,
      rgba(235, 45, 114, 0.34),
      transparent 40%
    ),
    radial-gradient(
      circle at 55% 82%,
      rgba(92, 111, 255, 0.25),
      transparent 44%
    ),
    linear-gradient(
      135deg,
      #17112f 0%,
      #211946 40%,
      #30225f 72%,
      #35266b 100%
    );

  background-size:
    180% 180%,
    190% 190%,
    170% 170%,
    100% 100%;

  animation: acj-hero-background 12s ease-in-out infinite;
}

@keyframes acj-hero-background {
  0% {
    background-position:
      0% 20%,
      100% 10%,
      50% 100%,
      0 0;
  }

  50% {
    background-position:
      70% 70%,
      25% 80%,
      90% 20%,
      0 0;
  }

  100% {
    background-position:
      0% 20%,
      100% 10%,
      50% 100%,
      0 0;
  }
}

/* Capas luminosas adicionales */

.hero.hero-enterprise::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -25%;
  pointer-events: none;
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 45%,
      rgba(255, 75, 155, 0.32),
      transparent 42%
    );

  filter: blur(75px);
  animation: acj-aurora-one 10s ease-in-out infinite alternate;
}

.hero.hero-enterprise::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -25%;
  pointer-events: none;
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 65% 50%,
      rgba(112, 88, 255, 0.30),
      transparent 44%
    );

  filter: blur(85px);
  animation: acj-aurora-two 14s ease-in-out infinite alternate;
}

@keyframes acj-aurora-one {
  from {
    transform: translate3d(-8%, -4%, 0) scale(1);
    opacity: 0.55;
  }

  to {
    transform: translate3d(12%, 8%, 0) scale(1.2);
    opacity: 0.9;
  }
}

@keyframes acj-aurora-two {
  from {
    transform: translate3d(10%, 6%, 0) scale(1.08);
    opacity: 0.45;
  }

  to {
    transform: translate3d(-10%, -7%, 0) scale(1.22);
    opacity: 0.78;
  }
}

/* Mantener contenido por encima */

.hero.hero-enterprise .hero-bg {
  z-index: 1;
}

.hero.hero-enterprise .hero-grid {
  z-index: 2;
}

/* Accesibilidad */

@media (prefers-reduced-motion: reduce) {
  .hero.hero-enterprise,
  .hero.hero-enterprise::before,
  .hero.hero-enterprise::after {
    animation: none;
  }
}


/* ============================================================
   ACJ — MOBILE FINAL FIX
   Header + overflow horizontal + Hero centrado
   ============================================================ */

@media (max-width: 719px) {

  /* ----------------------------------------------------------
     1. ELIMINAR SCROLL HORIZONTAL
     ---------------------------------------------------------- */

  html {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  header,
  footer,
  section {
    max-width: 100%;
  }

  .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid,
  .problems-split,
  .solutions-ecosystem-grid,
  .certificates-layout,
  .benefits-layout,
  .sectors-layout,
  .process-layout,
  .trust-layout {
    min-width: 0;
    max-width: 100%;
  }

  img,
  svg,
  video,
  iframe {
    max-width: 100%;
  }


  /* ----------------------------------------------------------
     2. HEADER MOBILE
     ---------------------------------------------------------- */

  .site-header {
    width: 100%;
    max-width: 100%;
  }

  .site-header .nav {
    min-height: 82px;

    /* IMPORTANTE:
       elimina el margin-top:20px general */
    margin-top: 0;

    padding-top: 8px;
    padding-bottom: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Al hacer scroll queda más compacto */
  .site-header.is-scrolled .nav {
    min-height: 68px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .brand {
    width: 155px;
    height: 58px;
    flex: 0 0 155px;
  }

  .brand-mark {
    width: auto;
    height: 54px;
    max-width: 155px;
  }

  .site-header.is-scrolled .brand {
    height: 52px;
  }

  .site-header.is-scrolled .brand-mark {
    height: 48px;
  }

  .nav-actions {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    margin: 0;
  }


  /* ----------------------------------------------------------
     3. HERO MOBILE
     ---------------------------------------------------------- */

  .hero.hero-enterprise {
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .hero-grid-centered {
    width: 100%;
    padding-top: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-copy-centered {
    width: 100%;
    max-width: 100%;

    /* SOBRESCRIBE TU text-align:left */
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
  }


  /* ----------------------------------------------------------
     EYEBROW / PREHEADER
     ---------------------------------------------------------- */

  .hero-copy-centered .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    max-width: 94%;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;

    padding: 8px 12px;

    font-size: 0.68rem;
    line-height: 1.3;
    letter-spacing: 0.055em;

    text-align: center;
  }


  /* ----------------------------------------------------------
     H1 — PROTAGONISTA
     ---------------------------------------------------------- */

  .hero-copy-centered h1 {
    width: 100%;
    max-width: 355px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 26px;

    text-align: center;

    font-size: clamp(2.55rem, 11.5vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .hero-copy-centered h1 .grad-text {
    display: block;
  }


  /* ----------------------------------------------------------
     TEXTO HERO
     ---------------------------------------------------------- */

  .hero-copy-centered .lead {
    width: 100%;
    max-width: 350px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;

    text-align: center;

    font-size: 1rem;
    line-height: 1.65;
  }


  /* ----------------------------------------------------------
     BOTONES
     ---------------------------------------------------------- */

  .hero-copy-centered .hero-actions {
    width: 100%;
    max-width: 360px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .hero-copy-centered .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }


  /* ----------------------------------------------------------
     CHECKS
     ---------------------------------------------------------- */

  .hero-copy-centered .trust-row {
    width: 100%;
    max-width: 350px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    text-align: center;
  }

  .hero-copy-centered .trust-item {
    justify-content: center;
    text-align: center;
  }


  /* ----------------------------------------------------------
     SECTORES HERO
     ---------------------------------------------------------- */

  .hero-sectors {
    width: 100%;
    max-width: 350px;

    margin: 32px auto 0;

    text-align: center;
  }

  .hero-sectors ul {
    justify-content: center;
  }

}
