:root {
  --purple-950: #16082a;
  --purple-900: #2a1058;
  --purple-800: #4c1d95;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-200: #ddd6fe;
  --purple-100: #ede9fe;
  --purple-50: #f6f2ff;
  --ink: #10233f;
  --ink-soft: #4a6078;
  --paper: #f5f7fb;
  --cyan: #0ea5e9;
  --white: #ffffff;
  --line: rgba(109, 40, 217, 0.14);
  --shadow: 0 22px 50px -24px rgba(76, 29, 149, 0.45);
  --radius: 22px;
  --header-h: 78px;
  --font: "Poppins", system-ui, sans-serif;
  --serif: "Poppins", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--purple-700);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.35rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
}

h3 {
  font-size: 1.28rem;
}

.lead,
.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

section[id] {
  scroll-margin-top: 92px;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head--light {
  color: #fff;
}

.section-head--light .eyebrow {
  color: var(--purple-200);
}

.section-head--light .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:focus-visible,
.nav a:focus-visible,
.logo-nav:focus-visible,
.shots-tabs button:focus-visible,
.buyer-link:focus-visible {
  outline: 3px solid var(--purple-200);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(109, 40, 217, 0.8);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--purple-800);
  border: 1px solid var(--line);
}

.btn-login {
  background: #fff;
  color: var(--purple-800);
  border: 1px solid var(--line);
}

.btn-login:hover {
  border-color: var(--purple-400);
  color: var(--purple-700);
}

.btn-lg {
  padding: 14px 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 28px -20px rgba(16, 35, 63, 0.45);
}

.cta-short {
  display: none;
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  background: transparent;
  height: 52px;
  flex-shrink: 0;
}

.brand img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav a:hover,
.nav a.is-active {
  color: var(--purple-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-mobile-actions {
  display: none;
}

.social-cluster {
  display: flex;
  gap: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.social-btn:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
  transform: translateY(-1px);
}

.social-btn--ig:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: transparent;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: 28px 0 36px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4eeff 0%, #fbf8ff 55%, #fff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assent/img/hero/hero%201.png") center right / cover no-repeat;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fbf8ff 0%, rgba(251, 248, 255, 0.94) 40%, rgba(251, 248, 255, 0.4) 56%, transparent 74%),
    linear-gradient(180deg, transparent 68%, #fff 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 16px 20px;
  align-items: end;
  min-height: min(72vh, 620px);
}

.hero-copy {
  max-width: 520px;
  z-index: 2;
  align-self: center;
}

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

.hero-copy h1 {
  margin-bottom: 18px;
  color: var(--ink);
}

.hero-copy h1 span {
  display: block;
  color: var(--purple-700);
  text-shadow: 0 0 22px #fff, 0 0 12px #fff, 0 1px 0 #fff;
}

.hero-copy .lead {
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 20px;
}

.hero-btn-main {
  border-radius: 14px;
  padding: 15px 22px;
}

.hero-btn-main svg {
  width: 18px;
  height: 18px;
}

.hero-btn-play {
  border-radius: 14px;
  background: #fff;
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 600;
}

.hero-btn-play:hover {
  border-color: var(--purple-400);
  color: var(--purple-800);
}

.play-ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple-700);
}

.play-ico svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-left: 2px;
}

.hero-trust-line {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: end;
  min-height: 420px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-dash {
  position: absolute;
  right: 0;
  top: 6%;
  z-index: 1;
  width: min(440px, 90%);
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.hero-dash-img {
  display: block;
  width: 100%;
  border-radius: 18px;
  filter: drop-shadow(0 22px 36px rgba(28, 18, 40, 0.28));
}

.mascot {
  display: block;
  background: transparent !important;
  border: 0;
  box-shadow: none;
  mix-blend-mode: normal;
  object-fit: contain;
  object-position: center bottom;
  width: auto;
  max-width: 100%;
}

.hero-mascot {
  height: min(380px, 52vw);
  filter: drop-shadow(0 10px 16px rgba(28, 18, 40, 0.16));
}

.hero-quote {
  position: absolute;
  right: 6%;
  bottom: 72px;
  z-index: 3;
  margin: 0;
  max-width: 260px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
  font-style: italic;
  color: var(--purple-800);
  line-height: 1.35;
  box-shadow: 0 10px 24px -16px rgba(28, 18, 40, 0.45);
}

.hero-mascot-label {
  margin: 8px 0 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

.hero-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.hero-features article {
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.08);
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 18px 40px -24px rgba(76, 29, 149, 0.45);
}

.hero-features h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hero-features p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-feat-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--purple-50);
  color: var(--purple-700);
}

.hero-feat-icon--blue {
  background: #eef8ff;
  color: #0284c7;
}

.hero-feat-icon svg {
  width: 22px;
  height: 22px;
}

.stats {
  padding: 28px 0 10px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px -22px rgba(76, 29, 149, 0.6);
}

.stats-row article {
  padding: 22px 24px;
  text-align: center;
}

.stats-row article + article {
  border-left: 1px solid var(--line);
}

.stats-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--purple-700);
  line-height: 1;
}

.stats-row span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.vision,
.apoyo,
.aliados {
  padding: 88px 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.vision-media img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mascot-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  margin-bottom: 22px;
  padding: 8px 16px 8px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px -18px rgba(76, 29, 149, 0.8);
}

.mascot-chip img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  background: var(--purple-50);
}

.mascot-chip p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-900);
}

.vision-copy blockquote {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--purple-500);
  background: var(--purple-50);
  border-radius: 0 16px 16px 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--purple-900);
}

.apoyo {
  background:
    linear-gradient(180deg, transparent, #fff 8%, #fff 92%, transparent);
}

.apoyo-list {
  display: grid;
  gap: 28px;
}

.apoyo-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.apoyo-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow);
}

.apoyo-card--reverse {
  grid-template-columns: 1.05fr 1fr;
}

.apoyo-card--reverse .apoyo-text {
  order: 2;
}

.apoyo-card figure {
  margin: 0;
}

.apoyo-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.apoyo-figure-mascot {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 320px;
  margin: 0;
  background: linear-gradient(180deg, var(--purple-100), #fff);
  border-radius: 20px;
  overflow: hidden;
}

.apoyo-figure-mascot img {
  width: auto;
  max-width: 68%;
  max-height: 260px;
  height: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
}

.num {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--purple-500);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.servicios {
  padding: 88px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(167, 139, 250, 0.28), transparent 32%),
    linear-gradient(160deg, var(--purple-900), var(--purple-800) 55%, #3b1578);
  color: #fff;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.servicio {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.servicio:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.mod-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #f3e8ff;
}

.mod-icon svg {
  width: 36px;
  height: 36px;
}

.mod-icon--gantt {
  color: #fbbf24;
}

.servicio p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.mod-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.mod-benefits li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.acerca {
  padding: 20px 0 10px;
}

.acerca-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.acerca-mascot,
.modal-mascot {
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  background: var(--purple-50);
}

.acerca-mascot {
  width: 180px;
  height: 180px;
}

.logo-slider {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  min-width: 0;
}

.logo-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  min-width: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.logo-nav {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 40, 217, 0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--purple-700);
  box-shadow: 0 8px 18px -12px rgba(76, 29, 149, 0.55);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.logo-nav svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.logo-nav:hover {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  border-color: transparent;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 14px 28px -12px rgba(109, 40, 217, 0.75);
}

.logo-nav:active {
  transform: scale(0.96);
}

.logo-nav:focus-visible {
  outline: 3px solid var(--purple-200);
  outline-offset: 3px;
}

.logo-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
  background: #fff;
  color: var(--purple-400);
  border-color: var(--line);
}

.logo-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.logo-viewport::-webkit-scrollbar {
  display: none;
}

.logo-row {
  list-style: none;
  margin: 0;
  padding: 10px 4px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 28px;
  width: max-content;
}

.logo-row li {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.logo-row button {
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 88px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  cursor: pointer;
}

.logo-row img {
  max-height: 64px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.logo-row button:hover img,
.logo-row li.is-on img {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

.logo-row li.is-on button {
  border-color: var(--purple-200);
  background: #fff;
}

.contacto {
  padding: 88px 0 48px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.contacto-mascot {
  height: 220px;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 14px rgba(28, 18, 40, 0.14));
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #c4b5fd, #7c3aed) border-box;
  border: 1px solid transparent;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.form-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-700);
}

.form-complete {
  font-size: 0.82rem;
  color: var(--purple-800);
}

.form-progress {
  height: 6px;
  border-radius: 99px;
  background: var(--purple-100);
  overflow: hidden;
}

.form-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--purple-400), var(--purple-700));
  transition: width 0.35s ease;
}

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

.field-icon {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 18px;
  height: 18px;
  color: #8b7a9c;
  transition: color 0.2s ease, transform 0.2s ease;
}

.field-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.field-label {
  position: absolute;
  left: 42px;
  top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #7a6b88;
  pointer-events: none;
  transition: transform 0.2s ease, font-size 0.2s ease, color 0.2s ease, top 0.2s ease;
}

.field-ok {
  position: absolute;
  right: 12px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #16a34a;
  color: #fff;
  font-size: 0.72rem;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.field-msg {
  display: block;
  min-height: 1.1em;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field:not(:has(.field-icon)) .field-label {
  left: 14px;
}

.field:has(.field-icon) input,
.field:has(.field-icon) textarea {
  padding-left: 42px;
  padding-right: 40px;
}

.demo-form input:not(.visually-hidden),
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1.5px solid #e6def3;
  border-radius: 14px;
  padding: 18px 14px 8px 14px;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: #f8f5fd;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.demo-form textarea {
  min-height: 112px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
  transform: translateY(-1px);
}

.field:focus-within .field-label,
.field.has-value .field-label {
  top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-700);
}

.field:focus-within .field-icon {
  color: var(--purple-700);
  transform: scale(1.08);
}

.field.is-valid input,
.field.is-valid textarea {
  border-color: #16a34a;
  background: #f3fbf6;
}

.field.is-valid .field-ok {
  opacity: 1;
  transform: scale(1);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #dc2626;
  background: #fff6f6;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.field.is-invalid .field-msg {
  color: #b91c1c;
}

.field.is-valid .field-msg {
  color: #15803d;
}

.demo-form.is-success {
  pointer-events: none;
  opacity: 0.92;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-send {
  width: 100%;
  justify-self: stretch;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-send.is-ready {
  animation: pulse-ready 1.6s ease infinite;
}

@keyframes pulse-ready {
  0%, 100% { box-shadow: 0 10px 24px -10px rgba(109, 40, 217, 0.8); }
  50% { box-shadow: 0 14px 30px -8px rgba(109, 40, 217, 1); }
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--purple-700);
}

.form-check a {
  color: var(--purple-700);
}

.demo-form .btn:not(.btn-send) {
  justify-self: start;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--purple-800);
}

.form-status.is-ok {
  color: #15803d;
}

.form-status.is-wait {
  color: var(--purple-700);
}

.contact-options--inline {
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

.privacy {
  padding: 8px 0 80px;
}

.privacy-card {
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-left: 5px solid var(--purple-700);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 14px 30px -22px rgba(16, 35, 63, 0.35);
}

.privacy h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.privacy p {
  max-width: 70ch;
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 88px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--purple-400);
  box-shadow: var(--shadow);
}

.contact-card--wa:hover {
  border-color: #25d366;
}

.contact-card--wa .contact-icon {
  background: #e8f8ee;
  color: #128c7e;
}

.contact-icon {
  grid-row: 1 / span 3;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--purple-100);
  color: var(--purple-700);
}

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

.contact-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-700);
}

.contact-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
}

.contact-hint {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--purple-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer .brand img {
  height: 46px;
}

.social-cluster--footer .social-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--purple-200);
}

.site-footer small {
  width: 100%;
  opacity: 0.7;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 8, 42, 0.62);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 10vh auto 0;
  padding: 32px 28px 28px;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.45);
}

.modal-dialog--form {
  width: min(680px, calc(100% - 32px));
  margin: 6vh auto 0;
  max-height: 88vh;
  overflow: auto;
}

.modal-dialog .demo-form {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.modal-mascot {
  width: 92px;
  height: 92px;
  margin-bottom: 6px;
}

.modal-lead {
  color: var(--ink-soft);
  margin-top: 0;
}

.nav.is-open {
  display: flex;
}

.login-logo {
  height: 64px;
  width: auto;
}

.modal-dialog--login {
  width: min(400px, calc(100% - 32px));
  text-align: center;
  padding: 40px 28px 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.login-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.modal-dialog--login .modal-lead {
  text-align: center;
  max-width: 32ch;
  margin: 0 auto 4px;
  font-size: 0.95rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: 0;
}

.login-sub {
  margin: 0;
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.login-form {
  text-align: left;
  margin-top: 20px;
  gap: 10px;
  padding-top: 4px;
}

.login-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.link-btn {
  border: 0;
  background: none;
  padding: 0;
  color: var(--purple-700);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.link-btn:hover {
  text-decoration: underline;
}

.pass-toggle {
  position: absolute;
  right: 12px;
  top: 14px;
  border: 0;
  background: var(--purple-100);
  color: var(--purple-800);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 2;
}

.login-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: #8a7b99;
}

.login-foot {
  margin: 8px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.login-form .btn-send {
  margin-top: 4px;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 32px -12px rgba(18, 140, 126, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -12px rgba(18, 140, 126, 0.85);
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-center {
    grid-column: 1 / -1;
    order: -1;
    min-height: 280px;
  }

  .header-actions .social-cluster {
    display: none;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .social-btn span {
    display: none;
  }

  .social-btn {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

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

  .mod-benefits {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(1160px, calc(100% - 24px));
  }

  .header-inner {
    gap: 10px;
  }

  .header-actions .btn-login,
  .header-actions .btn-primary {
    display: none;
  }

  .nav-mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .nav-mobile-actions .btn {
    width: 100%;
  }

  .hero-grid,
  .hero-features,
  .evidence-row,
  .buyers-grid,
  .mod-grid,
  .flujo-grid,
  .caso-grid,
  .oferta-card,
  .shots-panel,
  .quotes-grid,
  .about-panel,
  .vision-grid,
  .contacto-grid,
  .apoyo-card,
  .apoyo-card--reverse,
  .acerca-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    min-height: 0;
    gap: 12px;
  }

  .hero-copy,
  .hero-copy .lead {
    max-width: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-visual,
  .hero-center {
    min-height: 280px;
  }

  .hero-mascot {
    height: min(260px, 58vw);
  }

  .hero-dash {
    position: relative;
    width: min(360px, 100%);
    right: auto;
    top: auto;
    margin: 0 auto;
  }

  .hero-quote {
    position: static;
    max-width: none;
    margin: 12px auto 0;
    text-align: center;
  }

  .apoyo-card--reverse .apoyo-text {
    order: 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 16px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 14px;
    margin: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .modulos,
  .flujo,
  .shots,
  .caso,
  .testimonios,
  .oferta,
  .nosotros,
  .faq,
  .contacto,
  .aliados {
    padding: 48px 0;
  }

  .buyer-mascot,
  .flujo-pose {
    height: 120px;
  }

  .caso-pose,
  .about-mascot,
  .oferta-mascot,
  .contacto-mascot {
    height: 180px;
    margin-inline: auto;
  }

  .shots-tabs {
    justify-content: flex-start;
  }

  .shots-tabs button {
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .shots-panel.is-on,
  .oferta-card,
  .about-panel,
  .caso-grid,
  .contacto-grid {
    padding: 20px 16px;
  }

  .about-panel {
    justify-items: center;
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-dialog,
  .modal-dialog--form,
  .modal-dialog--login {
    width: calc(100% - 20px);
    margin: 12px auto;
    padding: 24px 16px 20px;
    max-height: calc(100dvh - 24px);
  }
}

@media (max-width: 720px) {
  .logo-slider {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .stats-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-row article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .wa-float span {
    display: none;
  }

  .wa-float {
    width: 56px;
    padding: 0;
    justify-content: center;
    right: 14px;
    bottom: 14px;
  }

  .acerca-mascot {
    width: 120px;
    height: 120px;
  }

  .form-row,
  .contact-options--inline,
  .mod-benefits,
  .servicios-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy h1 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .hero-visual {
    min-height: 240px;
  }

  .hero-dash {
    width: 100%;
  }

  .hero-mascot {
    height: min(200px, 62vw);
  }

  .hero-quote,
  .hero-mascot-label {
    position: static;
    max-width: none;
    text-align: center;
    margin-top: 8px;
  }

  .brand img {
    height: 40px;
  }

  .hero-trust-line {
    font-size: 0.86rem;
  }
}

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

  .btn-lg {
    padding: 13px 16px;
    font-size: 0.92rem;
  }

  .shots-frame img {
    height: 200px;
  }

  .quote-card--main {
    padding: 22px 18px 18px;
  }
}

.evidence {
  padding: 8px 0 56px;
}

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

.evidence-row article {
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 14px 30px -22px rgba(16, 35, 63, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.evidence-row article:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -20px rgba(16, 35, 63, 0.4);
}

.evidence-row strong {
  display: block;
  font-size: 1.45rem;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}

.evidence-row strong.is-plus {
  color: var(--cyan);
}

.evidence-row span,
.evidence-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.evidence-note {
  margin: 14px 4px 0;
}

.buyers,
.modulos,
.flujo,
.shots,
.caso,
.testimonios,
.oferta,
.nosotros,
.faq {
  padding: 72px 0;
}

.buyers-grid,
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.buyers-grid article,
.mod-card,
.quote-card,
.oferta-card {
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 36px -24px rgba(16, 35, 63, 0.4);
}

.band {
  background: #fff;
}

.buyers-grid article {
  padding: 24px 22px;
  display: grid;
  align-content: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buyers-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(109, 40, 217, 0.4);
}

.buyer-mascot {
  height: 150px;
  margin: 0 0 8px;
  filter: drop-shadow(0 8px 12px rgba(28, 18, 40, 0.14));
}

.buyer-role {
  margin: 0 0 8px;
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buyer-link {
  color: var(--purple-700);
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
}

.buyer-link:hover {
  text-decoration: underline;
}

.mod-card {
  padding: 16px 16px 20px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  height: 100%;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mod-card h3 {
  margin: 0;
}

.mod-card p {
  margin: 0;
}

.mod-card .btn {
  width: 100%;
  margin-top: 8px;
}

.mod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -22px rgba(109, 40, 217, 0.45);
}

.mod-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: #efe8ff;
}

.mod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.mod-tag {
  justify-self: start;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

.flujo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.flujo-grid li {
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.flujo-pose {
  height: 140px;
  margin: 0 0 8px;
  filter: drop-shadow(0 6px 10px rgba(28, 18, 40, 0.14));
}

.flujo-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-800);
  font-size: 0.78rem;
  font-weight: 800;
}

.flujo-grid strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
}

.shots-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.shots-tabs button {
  border: 1px solid rgba(16, 35, 63, 0.1);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  pointer-events: auto;
}

.shots-tabs button.is-on {
  background: var(--purple-700);
  border-color: transparent;
  color: #fff;
}

.shots-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 40px -24px rgba(16, 35, 63, 0.4);
}

.shots-panel.is-on {
  display: grid;
}

.shots-copy h3 {
  margin-bottom: 10px;
}

.shots-copy p {
  color: var(--ink-soft);
}

.shots-copy ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.shots-copy li + li {
  margin-top: 6px;
}

.shots-frame {
  margin: 0;
  background: #f5f7fb;
  border-radius: 16px;
  overflow: hidden;
}

.shots-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.caso-grid,
.oferta-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.caso-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--purple-50);
}

.caso-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 35%;
}

.oferta-mascot {
  height: 260px;
  justify-self: center;
  filter: drop-shadow(0 8px 14px rgba(28, 18, 40, 0.14));
}

.caso-pose {
  height: 220px;
  margin: 0 0 10px;
  filter: drop-shadow(0 8px 12px rgba(28, 18, 40, 0.14));
}

.caso-result {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
}

.quotes-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.quote-card--main {
  margin: 0;
  padding: 32px 32px 26px;
  background: linear-gradient(160deg, #fff 0%, #f4eeff 100%);
  border: 1px solid rgba(109, 40, 217, 0.12);
  position: relative;
}

.quote-mark {
  display: block;
  font-size: 4.2rem;
  line-height: 0.7;
  color: var(--purple-500);
  font-weight: 700;
  margin-bottom: 12px;
}

.quote-card p {
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.55;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.quote-card footer img {
  width: auto;
  height: 72px;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 8px 12px rgba(76, 29, 149, 0.25));
}

.quote-card footer strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.quote-side {
  display: grid;
  gap: 12px;
}

.quote-side article {
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  border-left: 4px solid var(--purple-600);
}

.quote-side strong {
  display: block;
  margin-bottom: 6px;
  color: var(--purple-800);
}

.quote-side p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.oferta-card {
  padding: 28px;
}

.oferta-list {
  margin: 0 0 22px;
  padding-left: 18px;
}

.about-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 18px 40px -26px rgba(16, 35, 63, 0.4);
}

.about-mascot {
  height: 260px;
  filter: drop-shadow(0 8px 14px rgba(28, 18, 40, 0.14));
}

.nosotros .section-head {
  max-width: none;
}

.nosotros .section-head h2 {
  font-size: clamp(1.35rem, 2.8vw, 2.55rem);
}

@media (min-width: 981px) {
  .nosotros .section-head h2 {
    white-space: nowrap;
  }
}

.about-points {
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
}

.about-points li {
  padding: 10px 0;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--ink-soft);
}

.about-points li:last-child {
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.faq-wrap details {
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
}

.faq-wrap summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-wrap summary::-webkit-details-marker {
  display: none;
}

.faq-wrap summary::after {
  content: "+";
  color: var(--purple-700);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-wrap details[open] summary::after {
  content: "–";
}

.faq-wrap details p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.field--select select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 14px 6px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .social-btn,
  .contact-card,
  .demo-form input,
  .field-label,
  .field-ok {
    transition: none;
  }

  .btn-send.is-ready {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-features,
  .evidence-row,
  .buyers-grid,
  .mod-grid,
  .flujo-grid,
  .caso-grid,
  .oferta-card,
  .shots-panel,
  .shots-panel.is-on,
  .quotes-grid,
  .about-panel,
  .vision-grid,
  .contacto-grid,
  .apoyo-card,
  .apoyo-card--reverse,
  .acerca-card,
  .stats-row,
  .form-row,
  .contact-options--inline {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .header-actions .btn-login,
  .header-actions .btn-primary {
    display: none;
  }

  .nav-mobile-actions {
    display: grid;
  }
}

@media (max-width: 720px) {
  .nosotros .section-head h2 {
    white-space: normal;
  }
}
