@charset "UTF-8";
:root {
  --font-titulo: system-ui, -apple-system, Segoe UI, sans-serif;
  --font-contenido: system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Consolas, monospace;
  --color-primary: #586269;
  --color-primary-hover: #4b545b;
  --color-primary-light: #eef0ea;
  --color-secondary: #a6a69a;
  --color-secondary-hover: #959589;
  --color-secondary-btn: #a6a69a;
  --color-secondary-light: #e7e3d9;
  --color-text: #303031;
  --color-text-muted: #586269;
  --color-text-inverse: #ffffff;
  --color-bg: #eeefea;
  --color-bg-alt: #e7e3d9;
  --color-bg-dark: #303031;
  --color-border: #d8d6cf;
  --color-border-strong: #c9c5bc;
  --color-success: #6f8f7b;
  --color-error: #b85c5c;
  --color-warning: #b08a4a;
  --color-info: #586269;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-primary: 0 4px 14px rgba(0, 87, 255, 0.35);
  --shadow-secondary: 0 4px 14px rgba(0, 212, 170, 0.35);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-pill: 9999px;
  --radius-full: 50%;
  --sp-4: 1rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --container-max: 1200px;
  --container-pad: 1.5rem;
  --transition-fast: 0.15s ease;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

body {
  min-height: 100dvh;
  font-family: var(--font-contenido);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titulo);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

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

ul[role=list],
ol[role=list] {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-weight: 600;
  border-radius: var(--radius-md);
  z-index: 999;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 1rem;
}

h1 {
  font-size: clamp(1.875rem, 1.875rem + (3rem - 1.875rem) * (100vw - 480px) / (1280px - 480px), 3rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 1.25rem + (1.875rem - 1.25rem) * (100vw - 480px) / (1280px - 480px), 1.875rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.125rem, 1.125rem + (1.5rem - 1.125rem) * (100vw - 480px) / (1280px - 480px), 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}
@media (min-width: 768px) {
  .lead {
    font-size: 1.25rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

ul:not([role=list]),
ol:not([role=list]) {
  padding-left: 1.5rem;
}
ul:not([role=list]) li,
ol:not([role=list]) li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

small {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #eeefea;
  border-bottom: 1px solid #d8d6cf;
  transition: box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  align-items: center;
}
.site-header__top {
  background: #e7e3d9;
  border-bottom: 1px solid #d8d6cf;
  overflow: hidden;
  max-height: 48px;
  opacity: 1;
  transition: max-height 0.28s ease, opacity 0.24s ease, padding 0.24s ease, border-width 0.24s ease;
}
.site-header__top .site-header__inner--top {
  min-height: 44px;
  justify-content: end;
  grid-template-columns: 1fr;
  padding: 0 clamp(1rem, 3.5vw, 2rem);
}
.site-header__utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}
.site-header__utility-link {
  text-decoration: none;
  color: #586269;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.site-header__utility-link:hover {
  color: #303031;
}
.site-header__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.26);
  background: #156eb2;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(76, 29, 149, 0.16);
}
.site-header__lang-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__lang-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.site-header__lang-link.is-active {
  color: #fff;
  font-weight: 700;
  border-bottom: 1.5px solid;
  -o-border-image: linear-gradient(90deg, #a78bfa, #60a5fa) 1;
     border-image: linear-gradient(90deg, #a78bfa, #60a5fa) 1;
}
.site-header__lang-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.site-header__nav-wrap {
  width: 100%;
  background: #eeefea;
}
.site-header__inner--nav {
  min-height: 88px;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  grid-template-areas: "logo nav search market";
  -moz-column-gap: clamp(1rem, 2vw, 1.75rem);
       column-gap: clamp(1rem, 2vw, 1.75rem);
  padding: 0 clamp(1rem, 3.5vw, 2rem);
}
.site-header__logo-block {
  grid-area: logo;
  display: flex;
  align-items: center;
  align-self: stretch;
  /*background: $colorTextoInverso;*/
  padding: 0.6rem 1.25rem 0.2rem 0;
  position: relative;
  z-index: 2;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-header__brand img {
  display: block;
  width: auto;
  height: 60px;
}
.site-header__search {
  grid-area: search;
  display: flex;
  justify-content: flex-end;
}
.site-header__meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-area: market;
}
.site-header__meta--nav {
  white-space: nowrap;
}
.site-header__market {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  color: #586269;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.site-header__market img {
  width: 16px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  flex-shrink: 0;
  margin-right: 0.3rem;
  opacity: 0.85;
}
.site-header__market:hover {
  color: #303031;
}
.site-header .nav {
  grid-area: nav;
  width: 100%;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  border-bottom-color: rgba(21, 110, 178, 0.24);
}
.site-header.is-scrolled .site-header__top {
  max-height: 0;
  opacity: 0;
  border-bottom-width: 0;
}
.site-header.is-scrolled .site-header__inner--nav {
  min-height: 72px;
  -moz-column-gap: 0;
       column-gap: 0;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav search";
  padding-right: 0;
  background: #fff;
}
.site-header.is-scrolled .site-header__logo-block {
  background: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.55rem 1.4rem 0.55rem 0;
  min-width: 230px;
}
.site-header.is-scrolled .site-header__logo-block img {
  height: 50px;
}
.site-header.is-scrolled .site-header__meta--nav {
  display: none;
}
.site-header.is-scrolled .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #156eb2;
  min-height: 72px;
  padding: 0 1.2rem;
}
.site-header.is-scrolled .site-header__search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #156eb2;
  min-height: 72px;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem) 0 0;
}
.site-header.is-scrolled .nav__menu {
  justify-content: center;
  gap: clamp(1rem, 1.6vw, 2rem);
}
.site-header.is-scrolled .nav__link {
  color: #ffffff;
}
.site-header.is-scrolled .nav__link:hover {
  color: rgba(255, 255, 255, 0.78);
}
.site-header.is-scrolled .nav__link::after {
  background: #ffffff;
}
.site-header.is-scrolled .nav__link--active {
  color: #ffffff;
}
.site-header.is-scrolled .site-search__input {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.site-header.is-scrolled .site-search__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.site-header.is-scrolled .site-search__input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.site-header.is-scrolled .site-search__button {
  color: #ffffff;
}

.nav {
  width: 100%;
}
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.7vw, 2.2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  text-decoration: none;
  color: #303031;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 100;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: #586269;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background: #586269;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}
.nav__link:hover::after, .nav__link--active::after {
  transform: scaleX(1);
}
.nav__link--active {
  color: #586269;
}
.nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  margin-left: auto;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #303031;
}

.site-search {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.site-search--compact {
  max-width: 300px;
}
.site-search__input {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid #d8d6cf;
  background: #fff;
  padding: 0 56px 0 18px;
  outline: none;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #303031;
}
.site-search__button {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  color: #303031;
}

@media (max-width: 980px) {
  .site-header__top .site-header__inner--top {
    justify-content: center;
    padding: 0 1rem;
  }
  .site-header__utility {
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  .site-header__lang {
    margin-left: 0;
  }
  .site-header__inner--nav {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo market search" "nav nav nav";
    row-gap: 0.55rem;
    padding-top: 0.65rem;
    padding-bottom: 0.75rem;
  }
  .site-header__logo-block {
    padding: 0.3rem 0.75rem 0.3rem 0;
  }
  .site-header__meta--nav {
    justify-self: end;
  }
  .site-header__search {
    justify-self: end;
  }
  .site-header__search--nav, .site-header__meta {
    display: none;
  }
  .site-header.is-scrolled .site-header__inner--nav {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "nav" "search";
    padding-right: 1rem;
  }
  .site-header.is-scrolled .site-header__brand--nav {
    margin: 0 auto;
  }
  .site-header.is-scrolled .site-header__logo-block {
    min-width: auto;
    border-right: 0;
    justify-content: center;
    padding-right: 0;
  }
  .site-header.is-scrolled .nav,
  .site-header.is-scrolled .site-header__search {
    min-height: 0;
  }
  .site-header.is-scrolled .site-header__search {
    padding: 0 0 0.65rem;
    justify-content: center;
  }
  .site-header.is-scrolled .site-search--compact {
    max-width: 360px;
    width: 100%;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 1rem 20px 1.25rem;
    background: #eeefea;
    border-bottom: 1px solid #d8d6cf;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__item {
    width: 100%;
    border-top: 1px solid #d8d6cf;
  }
  .nav__item:first-child {
    border-top: 0;
  }
  .nav__link {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
  }
  .nav__link::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .site-header {
    box-shadow: none;
  }
  .site-header__top {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
  }
  .site-header__nav-wrap {
    background: #eeefea;
  }
  .site-header__inner--nav {
    min-height: 0;
    padding: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0;
    align-items: stretch;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo search toggle" "nav nav nav";
  }
  .site-header__logo-block {
    grid-area: logo;
    align-self: stretch;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 7rem;
    min-width: 0;
    background: #ffffff;
    padding: 0.5rem 0.65rem 0.5rem 0;
    border-right: 0;
  }
  .site-header__brand--nav img {
    width: 100%;
    max-width: 6.5rem;
    height: auto;
    display: block;
  }
  .site-header__search.site-header__search--nav {
    grid-area: search;
    display: flex !important;
    align-items: center;
    align-self: stretch;
    justify-content: stretch;
    min-width: 0;
    margin: 0;
    padding: 0.45rem 0.5rem;
    background: #156eb2;
  }
  .site-header .site-search.site-search--compact {
    width: 100%;
    max-width: none;
  }
  .site-header .site-search__input {
    height: 2.25rem;
    padding: 0 2.5rem 0 0.65rem;
    font-size: 0.8125rem;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
  }
  .site-header .site-search__input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.72);
  }
  .site-header .site-search__input::placeholder {
    color: rgba(255, 255, 255, 0.72);
  }
  .site-header .site-search__button {
    color: #ffffff;
    right: 0.35rem;
  }
  .site-header__meta, .site-header__meta--nav {
    display: none !important;
  }
  .site-header .nav {
    grid-area: nav;
    position: relative;
    width: 100%;
    background: transparent !important;
    min-height: 0 !important;
    padding: 0 !important;
  }
  .site-header .nav__menu {
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 1rem 1.25rem 1.25rem;
    background: #eeefea;
    border-bottom: 1px solid #d8d6cf;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  }
  .site-header .nav__menu.is-open {
    display: flex !important;
  }
  .site-header .nav__toggle {
    grid-area: toggle;
    display: inline-flex !important;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    width: auto;
    min-width: 3.25rem;
    padding: 0 0.85rem;
    background: #156eb2;
    border-radius: 0;
  }
  .site-header .nav__toggle-line {
    background: #ffffff;
  }
  .site-header .nav__link {
    color: #303031;
  }
  .site-header.is-scrolled {
    border-bottom-color: #d8d6cf;
    box-shadow: none;
  }
  .site-header.is-scrolled .site-header__top {
    display: none !important;
  }
  .site-header.is-scrolled .site-header__inner--nav {
    min-height: 0;
    padding: 0;
    padding-right: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    background: transparent;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo search toggle" "nav nav nav";
  }
  .site-header.is-scrolled .site-header__logo-block {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 7rem;
    background: #ffffff;
    border-right: 0;
    min-width: 0;
    padding: 0.5rem 0.65rem 0.5rem 0;
  }
  .site-header.is-scrolled .site-header__logo-block img {
    width: 100%;
    max-width: 6.5rem;
    height: auto;
  }
  .site-header.is-scrolled .site-header__search.site-header__search--nav {
    display: flex !important;
    min-height: 0 !important;
    padding: 0.45rem 0.5rem !important;
    background: #156eb2 !important;
  }
  .site-header.is-scrolled .site-header__meta,
  .site-header.is-scrolled .site-header__meta--nav {
    display: none !important;
  }
  .site-header.is-scrolled .nav {
    display: block;
    background: transparent !important;
    min-height: 0 !important;
    padding: 0 !important;
  }
  .site-header.is-scrolled .nav__menu {
    display: none !important;
  }
  .site-header.is-scrolled .nav__menu.is-open {
    display: flex !important;
  }
  .site-header.is-scrolled .nav__link {
    color: #303031;
  }
  .site-header.is-scrolled .nav__link:hover {
    color: #586269;
  }
  .site-header.is-scrolled .nav__link::after {
    background: #586269;
  }
  .site-header.is-scrolled .nav__link--active {
    color: #586269;
  }
  .site-header.is-scrolled .site-search__input {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
  }
  .site-header.is-scrolled .site-search__input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.72);
  }
  .site-header.is-scrolled .site-search__input::placeholder {
    color: rgba(255, 255, 255, 0.72);
  }
  .site-header.is-scrolled .site-search__button {
    color: #ffffff;
  }
}
.site-footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-block: 4rem 2rem;
  margin-top: auto;
}
.site-footer__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
}
@media (max-width: calc(768px - 1px)) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-footer__brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}
.site-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.site-footer__nav a:hover {
  color: rgb(255, 255, 255);
}
.site-footer__legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__copy {
  grid-column: 1/-1;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__copy p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
.site-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}
.site-footer__contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__contact p, .site-footer__contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.35;
}
.site-footer__contact a {
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__contact a:hover {
  color: rgb(255, 255, 255);
}
.site-footer__nav-section + .site-footer__nav-section {
  margin-top: 1.5rem;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: background-color var(--transition), color var(--transition);
}
.site-footer__social a:hover, .site-footer__social a:focus-visible {
  background-color: rgba(255, 255, 255, 0.18);
  color: rgb(255, 255, 255);
  outline: none;
}
.site-footer__social a svg {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-contenido);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn:focus-visible {
  outline: 2px solid #586269;
  outline-offset: 3px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-primary);
}
.btn--secondary {
  background-color: var(--color-secondary-btn);
  border-color: var(--color-secondary-btn);
  color: var(--color-text-inverse);
}
.btn--secondary:hover {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  box-shadow: var(--shadow-secondary);
}
.btn--outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--outline:hover {
  background-color: var(--color-primary-light);
}
.btn--ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
}
.btn--ghost:hover {
  background-color: var(--color-primary-light);
}
.btn--inverse {
  background-color: var(--color-text-inverse);
  border-color: var(--color-text-inverse);
  color: var(--color-primary);
}
.btn--inverse:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn:disabled, .btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
}
.badge--accent {
  background-color: var(--color-secondary-light);
  color: rgb(0, 110, 88.2075471698);
}
.badge--primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}
.badge--dark {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.hero {
  padding-block: 6rem;
  position: relative;
  overflow: hidden;
  color: #303031;
  min-height: clamp(28rem, 70vh, 46rem);
  background: linear-gradient(155deg, #e7e3d9 0%, #eeefea 52%, rgb(220.64, 228.68, 229.52) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 60% at 82% 88%, rgba(21, 110, 178, 0.07) 0%, transparent 58%);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.hero__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
  z-index: 4;
  min-height: clamp(26rem, 64vh, 42rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 1024px) {
  .hero__inner {
    display: block;
    position: relative;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3.5vw, 2rem);
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
    margin-inline: 0;
    max-width: min(36rem, 48%);
    padding-right: 1rem;
  }
}
.hero__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #586269;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}
.hero__title {
  font-size: clamp(1.875rem, 1.875rem + (3.75rem - 1.875rem) * (100vw - 480px) / (1280px - 480px), 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #303031;
  max-width: 12.5em;
}
@media (min-width: 1024px) {
  .hero__title {
    max-width: 11em;
  }
}
.hero__subtitle {
  font-size: clamp(1rem, 1rem + (1.25rem - 1rem) * (100vw - 480px) / (1280px - 480px), 1.25rem);
  color: #586269;
  max-width: 34rem;
  margin-inline: auto;
  line-height: 1.75;
  margin-top: 0.25rem;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    margin-inline: 0;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}
@media (min-width: 1024px) {
  .hero__actions {
    justify-content: flex-start;
  }
}
.hero__media {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: min(56vw, 38rem);
  max-width: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(231, 227, 217, 0.38) 0%, rgba(238, 239, 234, 0.14) 14%, transparent 40%);
}
.hero__media picture {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.hero__media img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
@media (max-width: calc(1024px - 1px)) {
  .hero__media img {
    height: auto;
    max-height: min(40vh, 280px);
    width: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
@media (max-width: calc(1024px - 1px)) {
  .hero__media {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: min(40vh, 18rem);
    align-items: flex-end;
    justify-content: center;
  }
  .hero__media::after {
    background: linear-gradient(0deg, rgba(231, 227, 217, 0.22) 0%, transparent 52%);
  }
}

.hero-home {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eeefea;
}
.hero-home__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-home__media video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.hero-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-home__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  overflow: visible;
}
.hero-home__copy {
  position: relative;
  z-index: 4;
  max-width: min(32rem, 46vw);
  margin-left: 0;
  margin-right: auto;
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
}
.hero-home__floating-stack {
  position: absolute;
  z-index: 3;
  top: 48%;
  left: clamp(14%, 20vw, 30%);
  width: min(18.5rem, 42vw);
  min-height: 11.5rem;
  pointer-events: none;
}
.hero-home__floating-card {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(70, 28, 110, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(23, 8, 43, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
}
.hero-home__floating-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}
.hero-home__floating-icon img {
  width: 24px;
  height: 24px;
  display: block;
}
.hero-home__floating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.hero-home__floating-text strong {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.hero-home__floating-text span {
  margin-top: 4px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
}
.hero-home__floating-card {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity, filter;
}
@media (max-width: calc(768px - 1px)) {
  .hero-home__floating-stack {
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: min(17rem, 92vw);
  }
}
.hero-home__kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  color: #586269;
  font-weight: 500;
}
.hero-home__title {
  font-family: "Marko One", serif;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.97);
  line-height: 1.08;
  margin: 0 0 1.2rem;
  text-shadow: 0 8px 26px rgba(8, 11, 28, 0.35), 0 2px 10px rgba(6, 8, 20, 0.26);
}
.hero-home__title span {
  display: block;
  color: #c4b5fd;
  text-shadow: 0 8px 24px rgba(76, 29, 149, 0.35);
}
.hero-home__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #586269;
  margin: 0 0 2rem;
  max-width: 36rem;
}
.hero-home__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 4;
}
.hero-home__actions .btn--primary {
  background: linear-gradient(100deg, #8b5cf6 0%, #60a5fa 100%);
  border-color: rgba(167, 139, 250, 0.45);
  color: #fff;
  box-shadow: 0 12px 28px rgba(59, 23, 111, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}
.hero-home__actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(120, 80, 255, 0.35);
}
.hero-home__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-home__actions .btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: calc(768px - 1px)) {
  .hero-home {
    min-height: 75vh;
  }
  .hero-home__content {
    max-width: 100%;
    padding: 2rem 1rem;
  }
  .hero-home__copy {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    padding-right: 0.5rem;
  }
  .hero-home__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-home__overlay {
    background: rgba(238, 239, 234, 0.9);
  }
  .hero-home__floating-card {
    min-width: 180px;
    padding: 11px 14px;
    transform: scale(0.9);
    transform-origin: left top;
    transition: box-shadow 0.3s ease;
    will-change: transform;
  }
  .hero-home__actions {
    justify-content: center;
  }
}

.section {
  padding-block: 5rem;
}
.section__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section__header h2 {
  margin-bottom: 1rem;
}
.section__header p {
  font-size: 1.125rem;
  line-height: 1.8;
}
.section--alt {
  background-color: var(--color-bg-alt);
}
.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}
.section--dark h2, .section--dark h3 {
  color: var(--color-text-inverse);
}
.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.seccion-problema {
  padding-block: 6rem;
  background: linear-gradient(160deg, #f9ebe6, #e9c8be 50%, #723a27);
}
.seccion-problema .eyebrow {
  color: #e1e1e1;
  background-color: #200901;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
}
.seccion-problema h2 {
  color: #dd2f3b;
}
.seccion-problema .section__header {
  max-width: 700px;
}
.seccion-problema .section__header p {
  color: rgba(0, 0, 0, 0.7490196078);
}
.seccion-problema__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .seccion-problema__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seccion-problema__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.seccion-problema__card {
  background: rgba(255, 255, 255, 0.04);
  background-size: cover;
  background-position: center;
  aspect-ratio: 450/670;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.seccion-problema__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}
.seccion-problema__card:hover {
  border-color: rgba(21, 110, 178, 0.5);
  transform: translateY(-4px);
}
.seccion-problema__card--suenio {
  background-image: url("/build/img/home/home-suenio.jpg");
}
.seccion-problema__card--energia {
  background-image: url("/build/img/home/energia-desaparece.jpg");
}
.seccion-problema__card--mente {
  background-image: url("/build/img/home/mente-no-apaga.jpg");
}
.seccion-problema__icono {
  display: block;
  color: #156eb2;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.seccion-problema__titulo {
  font-family: "Bona Nova SC", serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #ffffff;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 1;
}
.seccion-problema__texto {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.seccion-problema .section__header__img {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto 0;
  display: block;
}
.seccion-problema .section__header__img picture {
  display: block;
  width: 100%;
}
.seccion-problema .section__header__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .seccion-problema .section__header__img {
    margin: 3rem auto 0;
  }
}

.seccion-problema-sistema {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #40372b, #e4c19f);
  padding: clamp(5rem, 8vw, 8rem) 0;
}
.seccion-problema-sistema .seccion-problema-sistema__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  background-image: url("/build/img/home/home-fondo-problema-sistema.webp");
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(circle at top left, #000 0%, #000 24%, transparent 52%);
  mask-image: radial-gradient(circle at top left, #000 0%, #000 24%, transparent 52%);
  filter: saturate(1.02) contrast(1.03);
}
.seccion-problema-sistema .seccion-problema-sistema__contenido {
  position: relative;
  z-index: 2;
}
.seccion-problema-sistema .section__header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.seccion-problema-sistema .section__header .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  background-color: #372d22;
  border-radius: 999px;
  color: #e1e1e1;
  padding: 0.5rem 1.5rem;
}
.seccion-problema-sistema .section__header h2 {
  margin: 0 auto 1.5rem;
  max-width: 980px;
  line-height: 0.98;
  text-wrap: balance;
  color: #fff;
}
.seccion-problema-sistema .section__header p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.7;
  color: #fff;
  text-wrap: balance;
}
.seccion-problema-sistema__stats {
  display: grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  gap: 2rem;
  margin-top: clamp(3rem, 5vw, 4rem);
  justify-content: center;
}
.seccion-problema-sistema .stat-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 120, 120, 0.08);
  border-radius: 1.75rem;
  box-shadow: 5px 7px 9px rgba(34, 41, 51, 0.08), 0 2px 8px rgba(45, 45, 45, 0.46);
  padding: 2.5rem 2rem;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.seccion-problema-sistema .stat-card__numero {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  color: #372d22;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.seccion-problema-sistema .stat-card__etiqueta {
  display: block;
  max-width: 18ch;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.45;
  color: #52657d;
  text-wrap: balance;
}
@media (max-width: 991.98px) {
  .seccion-problema-sistema {
    padding: 4.5rem 0 5rem;
  }
  .seccion-problema-sistema__stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .seccion-problema-sistema .stat-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }
  .seccion-problema-sistema .stat-card__etiqueta {
    max-width: 24ch;
  }
  .seccion-problema-sistema .seccion-problema-sistema__bg {
    opacity: 0.72;
    -webkit-mask-image: radial-gradient(circle at top left, #000 0%, #000 18%, transparent 46%);
    mask-image: radial-gradient(circle at top left, #000 0%, #000 18%, transparent 46%);
  }
}
@media (max-width: 575.98px) {
  .seccion-problema-sistema {
    padding: 3.5rem 0 4rem;
  }
  .seccion-problema-sistema .seccion-problema-sistema__bg {
    opacity: 0.58;
    background-position: top left;
  }
  .seccion-problema-sistema .section__header h2 {
    line-height: 1.04;
  }
  .seccion-problema-sistema .section__header p {
    font-size: 1.02rem;
    line-height: 1.65;
  }
  .seccion-problema-sistema .stat-card {
    border-radius: 1.35rem;
  }
}

.seccion-home-solucion {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: linear-gradient(90deg, rgba(8, 7, 25, 0.82) 0%, rgba(8, 7, 25, 0.68) 34%, rgba(8, 7, 25, 0.28) 62%, rgba(8, 7, 25, 0.08) 100%), linear-gradient(180deg, rgba(10, 10, 20, 0.18) 0%, rgba(10, 10, 20, 0.45) 100%), url("/build/img/home/home-fondo-solucion.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #fff;
}
.seccion-home-solucion .container {
  position: relative;
  z-index: 2;
}
.seccion-home-solucion__contenido {
  max-width: 760px;
}
.seccion-home-solucion .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}
.seccion-home-solucion h2 {
  max-width: 760px;
  line-height: 1.02;
  margin-bottom: 1.4rem;
  color: #fff;
  text-wrap: balance;
}
.seccion-home-solucion .lead {
  max-width: 700px;
  margin: 0 0 2rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}
.seccion-home-solucion__beneficios {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}
.seccion-home-solucion .beneficio-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.seccion-home-solucion .beneficio-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
}
.seccion-home-solucion .beneficio-item__icono {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7b61ff 0%, #9b7dff 100%);
  box-shadow: 0 10px 20px rgba(123, 97, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.seccion-home-solucion .beneficio-item__texto {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.seccion-home-solucion .beneficio-item__texto strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}
.seccion-home-solucion .beneficio-item__texto small {
  display: block;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 991.98px) {
  .seccion-home-solucion {
    background: linear-gradient(180deg, rgba(8, 7, 25, 0.76) 0%, rgba(8, 7, 25, 0.82) 100%), url("/build/img/home/home-fondo-solucion.jpg");
    background-size: cover;
    background-position: center;
  }
  .seccion-home-solucion__contenido {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .seccion-home-solucion .beneficio-item {
    grid-template-columns: 44px 1fr;
    gap: 0.85rem;
    padding: 0.95rem;
  }
  .seccion-home-solucion .beneficio-item__icono {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
  .seccion-home-solucion .beneficio-item__texto strong {
    font-size: 1rem;
  }
  .seccion-home-solucion .beneficio-item__texto small {
    font-size: 0.94rem;
  }
}

.seccion-como {
  padding-block: 5rem;
}
.seccion-como__pasos {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .seccion-como__pasos {
    grid-template-columns: repeat(3, 1fr);
  }
}
.seccion-como__paso {
  text-align: center;
  padding: 2rem;
  position: relative;
}
@media (min-width: 1024px) {
  .seccion-como__paso:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  }
}
.seccion-como__numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.seccion-como__titulo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.seccion-como__texto {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Proceso de los pasos */
.seccion-proceso {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: linear-gradient(90deg, rgba(6, 10, 35, 0.82) 0%, rgba(6, 10, 35, 0.68) 34%, rgba(6, 10, 35, 0.28) 62%, rgba(6, 10, 35, 0.08) 100%), linear-gradient(180deg, rgba(10, 10, 30, 0.18) 0%, rgba(10, 10, 30, 0.45) 100%), url("/build/img/home/home-fondo-pasos.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.seccion-proceso .container {
  position: relative;
  z-index: 2;
}
.seccion-proceso__contenido {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.seccion-proceso .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}
.seccion-proceso h2 {
  margin-bottom: 1rem;
  line-height: 1.05;
  color: #fff;
}
.seccion-proceso .lead {
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.85);
}
.seccion-proceso__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.seccion-proceso .proceso-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 580px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.seccion-proceso .proceso-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
}
.seccion-proceso .proceso-card__media {
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
}
.seccion-proceso .proceso-card__media img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.seccion-proceso .proceso-card__body {
  position: relative;
  padding: 3.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.seccion-proceso .proceso-card__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7b61ff 0%, #9b7dff 100%);
  box-shadow: 0 10px 20px rgba(90, 132, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  z-index: 2;
}
.seccion-proceso .proceso-card h3 {
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.12;
  text-wrap: balance;
  font-size: 1.5rem;
  font-weight: 500;
}
.seccion-proceso .proceso-card p {
  margin: 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  text-wrap: balance;
  font-size: 1.15rem;
  font-weight: 100;
}
@media (max-width: 991px) {
  .seccion-proceso__cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .seccion-proceso .proceso-card {
    min-height: auto;
  }
  .seccion-proceso .proceso-card__media img {
    height: 260px;
  }
  .seccion-proceso .proceso-card__body {
    padding: 3.25rem 1.5rem 2rem;
  }
  .seccion-proceso {
    background: linear-gradient(180deg, rgba(6, 10, 35, 0.85) 0%, rgba(6, 10, 35, 0.9) 100%), url("/build/img/home/home-fondo-pasos.webp");
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 575px) {
  .seccion-proceso .proceso-card__media img {
    height: 230px;
  }
  .seccion-proceso .proceso-card__body {
    padding: 3rem 1.25rem 1.75rem;
  }
  .seccion-proceso .proceso-card__num {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }
  .seccion-proceso .proceso-card p {
    max-width: 20ch;
  }
}

/**** nibbot ***/
.section--nibbot {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 16vw, 16rem) 0;
  background: url("/build/img/home/home-fondo-nibbot-3.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #1f2937;
}
.section--nibbot .container {
  position: relative;
  z-index: 2;
}
.section--nibbot .section__header {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section--nibbot .section__header .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  background-color: #1f2937;
  border-radius: 999px;
  color: #fff;
  padding: 0.5rem 1.5rem;
}
.section--nibbot .section__header h2 {
  margin: 0 0 1rem;
  color: #1f2937;
  line-height: 1.05;
  text-wrap: balance;
}
.section--nibbot .section__header p {
  margin: 0 auto;
  max-width: 760px;
  color: #1f2937;
  line-height: 1.7;
  text-wrap: balance;
}
.section--nibbot .seccion-beneficios__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  max-width: 1100px;
}
.section--nibbot .seccion-beneficios__item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.section--nibbot .seccion-beneficios__item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
}
.section--nibbot .seccion-beneficios__check {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #7b61ff 0%, #9b7dff 100%);
  box-shadow: 0 10px 20px rgba(123, 97, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.section--nibbot .seccion-beneficios__texto h3 {
  margin: 0 0 0.45rem;
  color: #1f2937;
  line-height: 1.15;
}
.section--nibbot .seccion-beneficios__texto p {
  margin: 0;
  color: #1f2937;
  line-height: 1.65;
}
@media (max-width: 991px) {
  .section--nibbot {
    background: url("/build/img/home/home-fondo-nibbot-3.webp");
    background-size: cover;
    background-position: center;
  }
  .section--nibbot .section__header {
    margin-bottom: 2.25rem;
  }
  .section--nibbot .seccion-beneficios__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}
@media (max-width: 575px) {
  .section--nibbot .seccion-beneficios__item {
    grid-template-columns: 48px 1fr;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 18px;
  }
  .section--nibbot .seccion-beneficios__check {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/*** fondo bienestar **/
.section--bienestar {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 12rem) 0;
  background: linear-gradient(90deg, rgba(18, 34, 64, 0.38) 0%, rgba(18, 34, 64, 0.26) 28%, rgba(18, 34, 64, 0.14) 52%, rgba(18, 34, 64, 0.06) 74%, rgba(18, 34, 64, 0) 100%), linear-gradient(180deg, rgba(255, 210, 170, 0.18) 0%, rgba(255, 210, 170, 0.08) 40%, rgba(255, 255, 255, 0) 100%), url("/build/img/home/home-fondo-bienestar-3.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
}
.section--bienestar .container {
  position: relative;
  z-index: 2;
}
.section--bienestar {
  /* ================= HEADER ================= */
}
.section--bienestar .section__header {
  max-width: 860px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section--bienestar .section__header .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.76);
}
.section--bienestar .section__header h2 {
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.06;
  text-wrap: balance;
}
.section--bienestar .section__header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  text-wrap: balance;
}
.section--bienestar {
  /* ================= BADGES ================= */
}
.section--bienestar .bienestar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.section--bienestar .home-app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.8rem;
  border-radius: 15px;
  /* 🔥 glass claro */
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  /* ✨ textura glass */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  /* texto */
  color: #1f2937;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.2;
  /* suavidad */
  transition: all 0.25s ease;
}
.section--bienestar .home-app-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.section--bienestar .home-app-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.section--bienestar {
  /* ================= CTA ================= */
}
.section--bienestar .btn--ghost {
  background: rgba(22, 19, 48, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.section--bienestar .btn--ghost:hover {
  background: rgba(32, 27, 68, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.section--bienestar {
  /* ================= MOBILE ================= */
}
@media (max-width: 991px) {
  .section--bienestar {
    background: linear-gradient(180deg, rgba(8, 10, 20, 0.75) 0%, rgba(8, 10, 20, 0.85) 100%), url("/build/img/home/home-fondo-bienestar-3.webp");
    background-size: cover;
    background-position: center;
  }
  .section--bienestar .section__header {
    margin-bottom: 2rem;
  }
}

.seccion-beneficios {
  padding-block: 5rem;
}
.seccion-beneficios__grid {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.seccion-beneficios__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.seccion-beneficios__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
  margin-top: 2px;
}
.seccion-beneficios__texto h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.seccion-beneficios__texto p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.seccion-tecnologia {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 12rem) 0;
  background-image: radial-gradient(circle at 100% 0%, #f585ff 0, #be71ff 25%, #865bdb 50%, #5144b1 75%, #1d308a 100%);
  /*
  background-image: linear-gradient(to right top, #9e23b3, #924bc6, #8766d5, #7f7cdf, #7d90e5, #71a1ee, #69b0f5, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
  background: -webkit-linear-gradient(30deg, #9d4355,#d58f6f,#c7239e,#64115b); */
  color: #fff;
}
.seccion-tecnologia .container {
  position: relative;
  z-index: 2;
}
.seccion-tecnologia__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .seccion-tecnologia__inner {
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  }
}
.seccion-tecnologia__media {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}
.seccion-tecnologia__media picture {
  display: block;
  width: 100%;
}
.seccion-tecnologia__media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28));
}
.seccion-tecnologia__content {
  max-width: 760px;
}
.seccion-tecnologia .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}
.seccion-tecnologia h2 {
  margin: 0 0 1.25rem;
  color: #fff;
  line-height: 1.02;
  text-wrap: balance;
}
.seccion-tecnologia__cta {
  margin-top: 2.2rem;
  text-align: center;
}
.seccion-tecnologia__cta .btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 100;
  box-shadow: 9px 15px 20px 4px rgba rgba(0, 0, 0, 0.1019607843) 0, 0, 0, 0.1, 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #c974f9;
  font-size: 1.6rem;
  padding: 0.9rem 1.6rem;
}
.seccion-tecnologia__cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), 0 6px 12px rgba(0, 0, 0, 0.18);
}
.seccion-tecnologia__cta-texto {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.seccion-tecnologia__lead {
  margin: 0 0 2rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}
.seccion-tecnologia__beneficios {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}
.seccion-tecnologia .beneficio-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.seccion-tecnologia .beneficio-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.seccion-tecnologia .beneficio-item__icono {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #7b61ff 0%, #9b7dff 100%);
  box-shadow: 0 10px 20px rgba(123, 97, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.seccion-tecnologia .beneficio-item:hover .beneficio-item__icono {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(123, 97, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.seccion-tecnologia .beneficio-item__texto {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.seccion-tecnologia .beneficio-item__texto strong {
  display: block;
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.25;
}
.seccion-tecnologia .beneficio-item__texto small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}
@media (max-width: 991px) {
  .seccion-tecnologia__inner {
    grid-template-columns: 1fr;
  }
  .seccion-tecnologia__media {
    max-width: 420px;
  }
  .seccion-tecnologia__content {
    max-width: 100%;
    text-align: center;
  }
  .seccion-tecnologia__lead {
    margin-inline: auto;
  }
  .seccion-tecnologia__beneficios {
    max-width: 720px;
    margin-inline: auto;
  }
}
@media (max-width: 575px) {
  .seccion-tecnologia {
    padding: 5rem 0;
  }
  .seccion-tecnologia .beneficio-item {
    grid-template-columns: 48px 1fr;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
  }
  .seccion-tecnologia .beneficio-item__icono {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
  .seccion-tecnologia .beneficio-item__texto strong {
    font-size: 1rem;
  }
  .seccion-tecnologia .beneficio-item__texto small {
    font-size: 0.93rem;
  }
}

.seccion-segmentacion {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 14vw, 14rem) 0;
  /* 🔥 fondo hero */
  background: linear-gradient(90deg, rgba(10, 12, 28, 0.82) 0%, rgba(10, 12, 28, 0.7) 28%, rgba(10, 12, 28, 0.45) 55%, rgba(10, 12, 28, 0.18) 75%, rgba(10, 12, 28, 0.05) 100%), linear-gradient(120deg, rgba(123, 97, 255, 0.18) 0%, rgba(123, 97, 255, 0.08) 35%, rgba(0, 0, 0, 0) 70%), url("/build/img/home/home-fondo-empezar-3.webp");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  color: #fff;
}
.seccion-segmentacion .container {
  position: relative;
  z-index: 2;
}
.seccion-segmentacion {
  /* ================= HEADER ================= */
}
.seccion-segmentacion .section__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}
.seccion-segmentacion .section__header h2 {
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.05;
  text-wrap: balance;
}
.seccion-segmentacion .section__header p {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  text-wrap: balance;
}
.seccion-segmentacion {
  /* ================= GRID ================= */
}
.seccion-segmentacion__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.seccion-segmentacion {
  /* ================= CARD BASE ================= */
}
.seccion-segmentacion__card {
  position: relative;
  border-radius: 28px;
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  /* 🔥 glass */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}
.seccion-segmentacion__card:hover {
  transform: translateY(-6px) scale(1.01);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.seccion-segmentacion {
  /* ================= VARIANTES ================= */
}
.seccion-segmentacion__card--profesional {
  /* más sobrio */
  background: rgba(23, 10, 67, 0.48);
}
.seccion-segmentacion__card--profesional:hover {
  background: rgba(255, 255, 255, 0.08);
}
.seccion-segmentacion__card--paciente {
  /* más cálido / humano */
  background: rgba(239, 164, 22, 0.24);
}
.seccion-segmentacion__card--paciente:hover {
  background: rgba(255, 255, 255, 0.14);
}
.seccion-segmentacion {
  /* ================= TEXTO ================= */
}
.seccion-segmentacion__titulo {
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.1;
}
.seccion-segmentacion__texto {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 38ch;
}
.seccion-segmentacion {
  /* ================= BOTÓN ================= */
}
.seccion-segmentacion .btn {
  align-self: flex-start;
}
.seccion-segmentacion .btn--primary {
  background-color: #0a6ccd;
  border-color: #27175f;
  color: var(--color-text-inverse);
}
.seccion-segmentacion .btn--secondary {
  background-color: #945f90;
  border-color: #834b6d;
  color: var(--color-text-inverse);
}
.seccion-segmentacion .btn--secondary:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.seccion-segmentacion {
  /* ================= MOBILE ================= */
}
@media (max-width: 991px) {
  .seccion-segmentacion__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .seccion-segmentacion {
    background: linear-gradient(180deg, rgba(10, 12, 28, 0.88) 0%, rgba(10, 12, 28, 0.95) 100%), url("/build/img/home/home-fondo-empezar-3.webp");
    background-position: center;
  }
}
@media (max-width: 575px) {
  .seccion-segmentacion__card {
    padding: 2rem 1.75rem;
    border-radius: 24px;
  }
  .seccion-segmentacion__texto {
    max-width: 100%;
  }
}

.seccion-confianza {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 12rem) 0;
  background: linear-gradient(90deg, rgba(7, 10, 28, 0.9) 0%, rgba(7, 10, 28, 0.82) 32%, rgba(7, 10, 28, 0.55) 58%, rgba(7, 10, 28, 0.25) 78%, rgba(7, 10, 28, 0.1) 100%), linear-gradient(120deg, rgba(123, 97, 255, 0.22) 0%, rgba(28, 130, 255, 0.12) 45%, rgba(0, 0, 0, 0) 75%), url("/build/img/home/fondo-confianza-nibbot.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #fff;
}
.seccion-confianza__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
  z-index: 2;
  text-align: center;
}
.seccion-confianza .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}
.seccion-confianza h2 {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}
.seccion-confianza__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  margin-top: 2rem;
  opacity: 0.5;
  filter: grayscale(1);
}
.seccion-confianza__logos img {
  height: 32px;
  width: auto;
}
.seccion-confianza__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1180px;
}
.seccion-confianza .stat-card {
  min-height: 180px;
  padding: 2rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.seccion-confianza .stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.seccion-confianza .stat-card__numero {
  display: block;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.seccion-confianza .stat-card__etiqueta {
  display: block;
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  text-wrap: balance;
}
.seccion-confianza__disclaimer {
  margin: 2rem auto 0;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.7;
}
.seccion-confianza__disclaimer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.seccion-confianza__disclaimer a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
@media (max-width: 991px) {
  .seccion-confianza {
    background: linear-gradient(180deg, rgba(7, 10, 28, 0.86) 0%, rgba(7, 10, 28, 0.94) 100%), url("/build/img/home/fondo-confianza-nibbot.webp");
    background-size: cover;
    background-position: center;
  }
  .seccion-confianza__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
}
@media (max-width: 575px) {
  .seccion-confianza {
    padding: 5rem 0;
  }
  .seccion-confianza__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .seccion-confianza .stat-card {
    min-height: 150px;
    border-radius: 20px;
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
  max-width: 240px;
  padding: 2rem 1.5rem;
  background: #eeefea;
  border: 1px solid rgba(216, 214, 207, 0.7);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.stat-card__numero {
  font-size: 2.25rem;
  font-weight: 900;
  color: #156eb2;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.stat-card__etiqueta {
  font-size: 0.875rem;
  color: #586269;
  line-height: 1.35;
}

.home-app-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background-color: #e7e3d9;
  border: 1px solid rgba(216, 214, 207, 0.8);
  color: #303031;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.home-app-badge:hover, .home-app-badge:focus-visible {
  background-color: rgba(21, 110, 178, 0.08);
  border-color: rgba(21, 110, 178, 0.35);
  color: #156eb2;
  outline: none;
}

.seccion-cta-final {
  position: relative;
  overflow: hidden;
  padding: clamp(8rem, 16vw, 16rem) 0;
  background: radial-gradient(circle at center, rgba(10, 12, 28, 0.76) 0%, rgba(10, 12, 28, 0.58) 34%, rgba(10, 12, 28, 0.34) 58%, rgba(10, 12, 28, 0.18) 78%, rgba(10, 12, 28, 0.08) 100%), linear-gradient(135deg, rgba(123, 97, 255, 0.22) 0%, rgba(255, 184, 118, 0.14) 45%, rgba(0, 0, 0, 0) 75%), url("/build/img/home/cta-final.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
}
.seccion-cta-final__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 1050px;
}
.seccion-cta-final h2 {
  margin: 0;
  max-width: 980px;
  color: #fff;
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
}
.seccion-cta-final p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.seccion-cta-final__acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.seccion-cta-final .btn {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}
.seccion-cta-final .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.seccion-cta-final .btn--primary {
  background-color: #e99724;
  border-color: #50391a;
}
.seccion-cta-final .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.seccion-cta-final .btn--outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
}
@media (max-width: 767px) {
  .seccion-cta-final {
    padding: clamp(6rem, 18vw, 9rem) 0;
    background-position: center;
  }
  .seccion-cta-final__acciones {
    width: 100%;
  }
  .seccion-cta-final__acciones .btn {
    width: 100%;
    justify-content: center;
  }
}

.como-funciona {
  background-color: #eeefea;
}

.como-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eeefea;
}
.como-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.como-hero__media img,
.como-hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.como-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(238, 239, 234, 0.85) 0%, rgba(238, 239, 234, 0.65) 40%, rgba(238, 239, 234, 0.2) 70%, rgba(238, 239, 234, 0) 100%);
}
.como-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  margin-inline: 0;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.como-hero__kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 500;
  color: #586269;
}
.como-hero__title {
  font-family: "Marko One", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: #303031;
  margin: 0;
}
.como-hero__title span {
  display: block;
  color: #156eb2;
}
.como-hero__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #586269;
  margin: 0 0 2rem;
  max-width: 36rem;
}
.como-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.como-hero__actions .btn--primary {
  background-color: #156eb2;
  border-color: #156eb2;
}
.como-hero__actions .btn--primary:hover {
  background-color: #4b545b;
}
@media (max-width: calc(768px - 1px)) {
  .como-hero {
    min-height: 75vh;
  }
  .como-hero__content {
    max-width: 100%;
    padding: 2rem 1rem;
  }
  .como-hero__title {
    font-size: 2rem;
  }
  .como-hero__overlay {
    background: rgba(238, 239, 234, 0.9);
  }
}

.como-section {
  padding-block: 6rem;
}
.como-section--soft {
  position: relative;
  background-color: #e7e3d9;
  overflow: hidden;
}
.como-section--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/build/img/como-funciona/fondo-electrico.jpg");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.como-section--soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e7e3d9 0%, rgba(231, 227, 217, 0.92) 40%, rgba(231, 227, 217, 0.7) 65%, rgba(231, 227, 217, 0.4) 100%);
  z-index: 1;
}
.como-section--soft .container {
  position: relative;
  z-index: 2;
}
.como-section--accent {
  padding-block: 6rem;
  background: linear-gradient(180deg, rgba(21, 110, 178, 0.06) 0%, #eeefea 100%);
}
.como-section__intro {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.como-section__intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 44rem;
}
.como-section__kicker {
  font-family: "Bona Nova SC", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #156eb2;
  margin: 0 0 0.75rem;
}
.como-section__title {
  font-family: "Bona Nova SC", serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 100;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1rem;
}
.como-section__lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  margin: 0 0 1rem;
}
.como-section__note {
  font-size: 1rem;
  font-weight: 500;
  color: #303031;
  margin: 0;
  font-style: italic;
  opacity: 0.95;
}

.como-section.nibbot {
  position: relative;
  overflow: hidden;
}
.como-section.nibbot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/build/img/como-funciona/fondo-senal-magnetica-2.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  z-index: 0;
}
.como-section.nibbot .container {
  position: relative;
  z-index: 2;
}

.como-section--soft:has(#como-basico-titulo) {
  position: relative;
}
.como-section--soft:has(#como-basico-titulo) .como-feature-card__media {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  max-width: 40%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  top: 20%;
}
.como-section--soft:has(#como-basico-titulo) .como-feature-card__image {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(20px);
}
.como-section--soft:has(#como-basico-titulo) .como-feature-card__image img {
  display: block;
  width: 100%;
  height: auto;
}
.como-section--soft:has(#como-basico-titulo) .como-section__intro {
  max-width: min(48rem, 100%);
  margin-bottom: clamp(1.75rem, 4.5vw, 2.5rem);
  padding-right: clamp(0rem, 5vw, 3rem);
}
.como-section--soft:has(#como-basico-titulo) .como-section__kicker {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #156eb2;
  opacity: 0.95;
}
.como-section--soft:has(#como-basico-titulo) .como-section__title {
  font-size: clamp(1.875rem, 1.875rem + (3rem - 1.875rem) * (100vw - 480px) / (1280px - 480px), 3rem);
  font-weight: 100;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #303031;
  margin: 0;
  max-width: min(36rem, 100%);
  text-align: center;
}
.como-section--soft:has(#como-basico-titulo) .como-feature-card__text {
  max-width: 38rem;
  margin: 0;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 0.75rem;
  background: rgba(238, 239, 234, 0.42);
  border: 1px solid rgba(216, 214, 207, 0.42);
  box-shadow: 0 1px 0 rgba(48, 48, 49, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.como-section--soft:has(#como-basico-titulo) .como-feature-card__text > p:not(.como-feature-card__highlight) {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.55;
  color: #586269;
}
.como-section--soft:has(#como-basico-titulo) .como-feature-card__highlight {
  margin: 1.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(21, 110, 178, 0.22);
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 100;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #303031;
}
@media (max-width: calc(768px - 1px)) {
  .como-section--soft:has(#como-basico-titulo) .como-feature-card__text {
    padding: 1.5rem 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

.como-feature-card {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3rem);
  background-color: #eeefea;
  border-radius: 1.5rem;
  border: 1px solid #d8d6cf;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media (min-width: 1024px) {
  .como-feature-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}
.como-feature-card__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
}
.como-feature-card__text p {
  margin: 0 0 1.25rem;
}
.como-feature-card__text p:last-child {
  margin-bottom: 0;
}
.como-feature-card__highlight {
  font-weight: 600;
  color: #303031;
  font-size: 1.25rem;
  line-height: 1.35;
}
.como-feature-card__media {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 350px;
}
@media (max-width: calc(768px - 1px)) {
  .como-feature-card__media {
    order: -1;
  }
}
.como-feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.como-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .como-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (min-width: 1024px) {
  .como-split--media-left .como-split__media {
    order: 0;
  }
  .como-split--media-left .como-split__content {
    order: 1;
  }
}
.como-split__media {
  border-radius: 1.5rem;
  overflow: hidden;
}
.como-split__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.como-split__content {
  max-width: 38rem;
}
@media (min-width: 1024px) {
  .como-split__content {
    padding-left: 1rem;
  }
}
.como-split__body p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
}
.como-split__body p:last-child {
  margin-bottom: 0;
}

.como-tech-banner {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid #d8d6cf;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  background-color: #eeefea;
}
@media (min-width: 1024px) {
  .como-tech-banner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}
.como-tech-banner__media {
  min-height: 280px;
  background-color: #e7e3d9;
}
.como-tech-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.como-tech-banner__content {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.como-tech-banner__body p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
}
.como-tech-banner__body p:last-child {
  margin-bottom: 0;
}
.como-tech-banner__closing {
  font-weight: 600;
  color: #303031;
  font-size: 1.25rem;
  line-height: 1.35;
}

.como-card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 768px) {
  .como-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.como-card {
  display: flex;
  flex-direction: column;
  background-color: #eeefea;
  border-radius: 1rem;
  border: 1px solid #d8d6cf;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.como-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.como-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #e7e3d9;
}
.como-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.como-card__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #303031;
  margin: 0;
  padding: 1.5rem 1.5rem 0;
}
.como-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
  padding: 0.75rem 1.5rem 1.5rem;
}

.como-cta {
  padding-block: 6rem;
  background: linear-gradient(135deg, #586269 0%, rgb(53.1191709845, 59.1554404145, 63.3808290155) 100%);
  color: #ffffff;
}
.como-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 44rem;
  margin-inline: auto;
}
.como-cta__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}
.como-cta__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 38rem;
}
.como-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.como-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.como-cta .btn--outline:hover, .como-cta .btn--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: calc(768px - 1px)) {
  .como-split__content {
    padding-left: 0;
  }
  .como-tech-banner__media {
    min-height: 220px;
  }
}
.aplicaciones {
  background-color: #eeefea;
}

.aplic-hero {
  padding-block: 6rem;
  background: linear-gradient(145deg, #e7e3d9 0%, #eeefea 42%, rgba(21, 110, 178, 0.06) 100%);
  overflow: hidden;
}
.aplic-hero__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .aplic-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  }
}
.aplic-hero__content {
  max-width: 38rem;
}
.aplic-hero__kicker {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #156eb2;
  margin: 0 0 1rem;
}
.aplic-hero__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.875rem, 1.875rem + (3rem - 1.875rem) * (100vw - 480px) / (1280px - 480px), 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #303031;
  margin: 0 0 1.5rem;
}
.aplic-hero__text p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.8;
  color: #586269;
}
.aplic-hero__text p:last-child {
  margin-bottom: 0;
}
.aplic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  align-items: center;
}
.aplic-hero__media {
  position: relative;
}
.aplic-hero__figure {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(216, 214, 207, 0.55);
}
.aplic-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.aplic-editorial {
  padding-block: 6rem;
  background-color: #eeefea;
}
.aplic-editorial__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .aplic-editorial__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
}
@media (min-width: 1280px) {
  .aplic-editorial__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.aplic-ed-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(216, 214, 207, 0.65);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  background-color: #303031;
}
.aplic-ed-card__media {
  position: absolute;
  inset: 0;
}
.aplic-ed-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aplic-ed-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48, 48, 49, 0.1) 0%, rgba(48, 48, 49, 0.55) 45%, rgba(48, 48, 49, 0.92) 100%);
  pointer-events: none;
}
.aplic-ed-card__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 2rem 1.5rem 1.5rem;
  color: #ffffff;
}
.aplic-ed-card__name {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  opacity: 0.92;
}
.aplic-ed-card__stat {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.98);
}
.aplic-ed-card__micro {
  font-size: 0.875rem;
  line-height: 1.35;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 16rem;
}

.aplic-cat-intro {
  max-width: 46rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.aplic-cat-intro__kicker {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #303031;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.aplic-cat-intro__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  color: #303031;
  margin: 0 0 1.5rem;
  line-height: 1.15;
}
.aplic-cat-intro__text p {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
}
.aplic-cat-intro__text p:last-child {
  margin-bottom: 0;
}

.aplic-categories {
  padding-bottom: 2rem;
}

.aplic-cat-group {
  padding-block: 5rem;
  padding-top: 3rem;
}
.aplic-cat-group--alt {
  background-color: #e7e3d9;
  border-block: 1px solid rgba(216, 214, 207, 0.5);
}
.aplic-cat-group__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #303031;
  margin: 0 0 clamp(2.5rem, 4vw, 3rem);
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(21, 110, 178, 0.35);
}

.aplic-topic {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.aplic-topic:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .aplic-topic {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .aplic-topic--reverse .aplic-topic__media {
    order: 1;
  }
  .aplic-topic--reverse .aplic-topic__content {
    order: 0;
  }
}
.aplic-topic__media {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(216, 214, 207, 0.55);
  background-color: #e7e3d9;
}
.aplic-topic__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.aplic-topic__content {
  max-width: 40rem;
}
.aplic-topic__label {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #156eb2;
  margin: 0 0 0.5rem;
}
.aplic-topic__heading {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.5rem;
}
.aplic-topic__body p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
}
.aplic-topic__body p:last-child {
  margin-bottom: 0;
}
.aplic-topic__aside {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background-color: rgba(21, 110, 178, 0.08);
  border: 1px solid rgba(21, 110, 178, 0.2);
}
.aplic-topic__aside .aplic-topic__aside-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #156eb2;
  margin: 0 0 0.5rem;
}
.aplic-topic__aside p:not(.aplic-topic__aside-title) {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #586269;
}
.aplic-topic__dato {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background-color: #eeefea;
  border: 1px solid #d8d6cf;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.aplic-topic__dato .aplic-topic__dato-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #303031;
  margin: 0 0 0.5rem;
}
.aplic-topic__dato p:not(.aplic-topic__dato-label) {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #586269;
}

.aplic-cat-group--alt .aplic-topic__dato {
  background-color: #eeefea;
}

.aplic-cta {
  padding-block: 6rem;
  background: linear-gradient(135deg, #586269 0%, rgb(53.1191709845, 59.1554404145, 63.3808290155) 100%);
  color: #ffffff;
}
.aplic-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 44rem;
  margin-inline: auto;
}
.aplic-cta__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}
.aplic-cta__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.aplic-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.aplic-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.aplic-cta .btn--outline:hover, .aplic-cta .btn--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: calc(768px - 1px)) {
  .aplic-hero__inner {
    grid-template-columns: 1fr;
  }
  .aplic-hero__figure {
    max-width: 400px;
    margin-inline: auto;
  }
  .aplic-ed-card {
    min-height: 380px;
  }
  .aplic-topic--reverse .aplic-topic__media,
  .aplic-topic--reverse .aplic-topic__content {
    order: unset;
  }
}
.beneficios {
  background-color: #eeefea;
}

.benef-stats {
  padding-block: 4rem;
  background-color: #e7e3d9;
  border-block: 1px solid rgba(216, 214, 207, 0.5);
}
.benef-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .benef-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
  }
}
.benef-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.benef-stats__num {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  color: #156eb2;
  margin: 0;
  letter-spacing: -0.02em;
}
.benef-stats__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #586269;
  line-height: 1.35;
  margin: 0;
  max-width: 9rem;
}

.benef-topics {
  padding-block: 4rem;
  padding-bottom: 5rem;
}

.benef-topic {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(216, 214, 207, 0.45);
}
.benef-topic:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .benef-topic {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.benef-topic--reverse {
  background-color: transparent;
}
@media (min-width: 1024px) {
  .benef-topic--reverse .benef-topic__media {
    order: 1;
  }
  .benef-topic--reverse .benef-topic__content {
    order: 0;
  }
}
.benef-topic__media {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(216, 214, 207, 0.55);
  background-color: #e7e3d9;
}
.benef-topic__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.benef-topic__content {
  max-width: 38rem;
}
.benef-topic__kicker {
  display: block;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin: 0 0 0.75rem;
}
.benef-topic__heading {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.5rem;
}
.benef-topic__heading em {
  font-style: italic;
  color: #156eb2;
}
.benef-topic__body p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
}
.benef-topic__body p:last-child {
  margin-bottom: 0;
}
.benef-topic__nota {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background-color: rgba(21, 110, 178, 0.07);
  border-left: 3px solid rgba(21, 110, 178, 0.35);
}
.benef-topic__nota p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #586269;
}
.benef-topic__nota a {
  color: #156eb2;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.benef-topic__nota a:hover, .benef-topic__nota a:focus-visible {
  text-decoration: underline;
}

.benef-cta {
  padding-block: 6rem;
  background: linear-gradient(135deg, #586269 0%, rgb(53.1191709845, 59.1554404145, 63.3808290155) 100%);
  color: #ffffff;
}
.benef-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 44rem;
  margin-inline: auto;
}
.benef-cta__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}
.benef-cta__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.benef-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.benef-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.benef-cta .btn--outline:hover, .benef-cta .btn--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: calc(768px - 1px)) {
  .benef-topic--reverse .benef-topic__media,
  .benef-topic--reverse .benef-topic__content {
    order: unset;
  }
}
.profesionales {
  background-color: #eeefea;
}

.prof-market {
  padding-block: 5rem;
}
.prof-market__header {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.prof-market__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.prof-market__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}
.prof-market__intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}
.prof-market__stats {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 clamp(3rem, 5vw, 5rem);
  padding: 0;
}
@media (min-width: 768px) {
  .prof-market__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.prof-market__stat {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background-color: #e7e3d9;
  border: 1px solid rgba(216, 214, 207, 0.6);
  border-top: 3px solid #156eb2;
}
.prof-market__stat-num {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: #156eb2;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}
.prof-market__stat-label {
  font-size: 1rem;
  line-height: 1.35;
  color: #303031;
  margin: 0 0 0.75rem;
  font-weight: 500;
}
.prof-market__stat-source {
  font-size: 0.75rem;
  color: #586269;
  margin: 0;
  font-style: italic;
}
.prof-market__body {
  max-width: 54rem;
}
.prof-market__body p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
}
.prof-market__body p:last-child {
  margin-bottom: 0;
}

.prof-conditions {
  padding-block: 5rem;
  background-color: #e7e3d9;
  border-block: 1px solid rgba(216, 214, 207, 0.5);
}
.prof-conditions__header {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.prof-conditions__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.prof-conditions__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.prof-conditions__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #586269;
  padding: 1rem 1.25rem;
  border-left: 3px solid rgba(21, 110, 178, 0.4);
  background-color: rgba(21, 110, 178, 0.06);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 0;
}

.prof-cond-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .prof-cond-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .prof-cond-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.prof-cond-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #eeefea;
  border: 1px solid rgba(216, 214, 207, 0.65);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prof-cond-card__name {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #303031;
  margin: 0;
  line-height: 1.35;
}
.prof-cond-card__desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
  flex-grow: 1;
}
.prof-cond-card__ref {
  font-size: 0.75rem;
  color: #a6a69a;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(216, 214, 207, 0.6);
  line-height: 1.35;
}
.prof-cond-card__ref a {
  color: #156eb2;
  text-decoration: none;
}
.prof-cond-card__ref a:hover {
  text-decoration: underline;
}
.prof-cond-card__ref em {
  font-style: italic;
}

.prof-equipo {
  padding-block: 5rem;
}
.prof-equipo__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .prof-equipo__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}
.prof-equipo__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.prof-equipo__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.prof-equipo__intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  margin: 0 0 2rem;
}
.prof-equipo__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prof-equipo__highlights li {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background-color: #e7e3d9;
  border: 1px solid rgba(216, 214, 207, 0.5);
  font-size: 1rem;
  line-height: 1.8;
  color: #586269;
}
.prof-equipo__highlights li strong {
  color: #303031;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
.prof-equipo__specs-wrap {
  position: sticky;
  top: 2rem;
}
.prof-equipo__specs-title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(21, 110, 178, 0.3);
}
.prof-equipo__specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.prof-equipo__specs tr {
  border-bottom: 1px solid rgba(216, 214, 207, 0.5);
}
.prof-equipo__specs tr:last-child {
  border-bottom: none;
}
.prof-equipo__specs tr:nth-child(even) td, .prof-equipo__specs tr:nth-child(even) th {
  background-color: rgba(231, 227, 217, 0.6);
}
.prof-equipo__specs th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #303031;
  width: 45%;
  vertical-align: top;
}
.prof-equipo__specs td {
  padding: 0.75rem 1rem;
  color: #586269;
  line-height: 1.35;
}

.prof-soporte {
  padding-block: 5rem;
  background-color: #e7e3d9;
  border-block: 1px solid rgba(216, 214, 207, 0.5);
}
.prof-soporte__header {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.prof-soporte__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.prof-soporte__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.prof-soporte__intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}
.prof-soporte__grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .prof-soporte__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .prof-soporte__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.prof-soporte__item {
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 1rem;
  background-color: #eeefea;
  border: 1px solid rgba(216, 214, 207, 0.6);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.prof-soporte__item-title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(21, 110, 178, 0.25);
}
.prof-soporte__item-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}

.prof-roi {
  padding-block: 5rem;
}
.prof-roi__header {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.prof-roi__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.prof-roi__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.prof-roi__intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}
.prof-roi__pillars {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 clamp(3rem, 5vw, 4rem);
  padding: 0;
}
@media (min-width: 768px) {
  .prof-roi__pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}
.prof-roi__pillar {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background-color: #e7e3d9;
  border: 1px solid rgba(216, 214, 207, 0.5);
}
.prof-roi__pillar-icon {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #156eb2;
  margin: 0 0 1rem;
  line-height: 1;
}
.prof-roi__pillar-title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 0.75rem;
}
.prof-roi__pillar-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}
.prof-roi__scenarios {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background-color: #e7e3d9;
  border: 1px solid rgba(216, 214, 207, 0.6);
}
.prof-roi__scenarios-title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 0.75rem;
}
.prof-roi__scenarios-note {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #586269;
  margin: 0 0 2rem;
  max-width: 56rem;
}
.prof-roi__scenarios-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .prof-roi__scenarios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.prof-roi__disclaimer {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #586269;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(216, 214, 207, 0.6);
}

.prof-roi__scenario {
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #eeefea;
  border: 1px solid rgba(216, 214, 207, 0.6);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.prof-roi__scenario--highlight {
  border-color: #156eb2;
  box-shadow: 0 0 0 1px rgba(21, 110, 178, 0.3), 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
}
.prof-roi__scenario .prof-roi__scenario-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #156eb2;
  margin: 0 0 1rem;
}
.prof-roi__scenario .prof-roi__scenario-sessions {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 900;
  color: #303031;
  margin: 0 0 0.5rem;
  line-height: 1;
}
.prof-roi__scenario .prof-roi__scenario-monthly {
  font-size: 1.125rem;
  font-weight: 600;
  color: #586269;
  margin: 0 0 1rem;
}
.prof-roi__scenario .prof-roi__scenario-note {
  font-size: 0.75rem;
  line-height: 1.35;
  color: #a6a69a;
  margin: 0;
}

.prof-cta {
  padding-block: 6rem;
  background: linear-gradient(135deg, #586269 0%, rgb(53.1191709845, 59.1554404145, 63.3808290155) 100%);
  color: #ffffff;
}
.prof-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 44rem;
  margin-inline: auto;
}
.prof-cta__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}
.prof-cta__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.prof-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.prof-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.prof-cta .btn--outline:hover, .prof-cta .btn--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

.pacientes {
  background-color: #eeefea;
}

.pac-sesion {
  padding-block: 5rem;
}
.pac-sesion__header {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.pac-sesion__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.pac-sesion__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.pac-sesion__intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}

.pac-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .pac-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.pac-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(216, 214, 207, 0.5);
  position: relative;
}
.pac-step:last-child {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .pac-step {
    flex: 1;
    border-bottom: none;
    border-right: none;
    padding: 0 1.5rem;
    align-items: center;
    text-align: center;
  }
  .pac-step:first-child {
    padding-left: 0;
  }
  .pac-step:last-child {
    padding-right: 0;
  }
  .pac-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 2rem;
    width: 1px;
    height: calc(100% - 2rem);
    background: linear-gradient(to bottom, rgba(21, 110, 178, 0.3), rgba(216, 214, 207, 0.2));
  }
}
.pac-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #156eb2;
  color: #ffffff;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}
.pac-step__body {
  flex: 1;
}
@media (min-width: 1024px) {
  .pac-step__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.pac-step__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.pac-step__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}
@media (min-width: 1024px) {
  .pac-step__desc {
    font-size: 0.875rem;
  }
}

.pac-seguridad {
  padding-block: 5rem;
  background-color: #e7e3d9;
  border-block: 1px solid rgba(216, 214, 207, 0.5);
}
.pac-seguridad__header {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.pac-seguridad__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.pac-seguridad__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.pac-seguridad__intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}
.pac-seguridad__grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .pac-seguridad__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pac-seguridad__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pac-seg-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #eeefea;
  border: 1px solid rgba(216, 214, 207, 0.6);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.pac-seg-card__question {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(21, 110, 178, 0.25);
  line-height: 1.35;
}
.pac-seg-card__answer {
  font-size: 1rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}

.pac-resultados {
  padding-block: 5rem;
}
.pac-resultados__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .pac-resultados__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.pac-resultados__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.pac-resultados__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}
.pac-resultados__body p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
}
.pac-resultados__body p:last-child {
  margin-bottom: 0;
}
.pac-resultados__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #a6a69a;
  font-style: italic;
}

.pac-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pac-timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(to bottom, #156eb2, rgba(21, 110, 178, 0.2));
}
@media (min-width: 1024px) {
  .pac-timeline::before {
    left: 1.25rem;
  }
}
.pac-timeline__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  position: relative;
}
@media (min-width: 1024px) {
  .pac-timeline__item {
    grid-template-columns: 2.75rem 1fr;
  }
}
.pac-timeline__marker {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #eeefea;
  border: 2px solid #156eb2;
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.pac-timeline__marker--end {
  background-color: #156eb2;
}
.pac-timeline__content {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(216, 214, 207, 0.4);
}
.pac-timeline__item:last-child .pac-timeline__content {
  border-bottom: none;
}
.pac-timeline__label {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 0.5rem;
}
.pac-timeline__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}

.pac-faq {
  padding-block: 5rem;
  background-color: #e7e3d9;
  border-block: 1px solid rgba(216, 214, 207, 0.5);
}
.pac-faq__header {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.pac-faq__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.pac-faq__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 480px) / (1280px - 480px), 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0;
  letter-spacing: -0.02em;
}
.pac-faq__list {
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pac-faq__item {
  border-bottom: 1px solid rgba(216, 214, 207, 0.5);
}
.pac-faq__item:first-child {
  border-top: 1px solid rgba(216, 214, 207, 0.5);
}

.pac-faq__details {
  width: 100%;
}

.pac-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #303031;
  line-height: 1.35;
  list-style: none;
  transition: color 0.15s ease;
}
.pac-faq__question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 100;
  color: #156eb2;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.15s ease;
}
.pac-faq__question::-webkit-details-marker {
  display: none;
}
.pac-faq__details[open] .pac-faq__question::after {
  content: "−";
}
.pac-faq__question:hover {
  color: #156eb2;
}

.pac-faq__answer {
  padding: 0 0 1.5rem;
  margin: 0;
}
.pac-faq__answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: #586269;
  margin: 0 0 1rem;
  max-width: 46rem;
}
.pac-faq__answer p:last-child {
  margin-bottom: 0;
}

.pac-cta {
  padding-block: 6rem;
  background: linear-gradient(135deg, #586269 0%, rgb(53.1191709845, 59.1554404145, 63.3808290155) 100%);
  color: #ffffff;
}
.pac-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 44rem;
  margin-inline: auto;
}
.pac-cta__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.875rem, 1.875rem + (3rem - 1.875rem) * (100vw - 480px) / (1280px - 480px), 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}
.pac-cta__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.pac-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.pac-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.pac-cta .btn--outline:hover, .pac-cta .btn--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: calc(1024px - 1px)) {
  .pac-step {
    flex-direction: row;
    align-items: flex-start;
  }
  .pac-step__num {
    margin-top: 0.25rem;
  }
}
.contacto {
  background-color: #eeefea;
}

.cont-hero {
  background: linear-gradient(135deg, #e7e3d9 0%, #eeefea 60%, rgba(21, 110, 178, 0.05) 100%);
  border-bottom: 1px solid rgba(216, 214, 207, 0.5);
  padding-block: 4rem;
}
.cont-hero__inner {
  max-width: 44rem;
}
.cont-hero__kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #156eb2;
  margin-bottom: 0.75rem;
}
.cont-hero__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.875rem, 1.875rem + (3rem - 1.875rem) * (100vw - 480px) / (1280px - 480px), 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #303031;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.cont-hero__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  margin: 0;
}

.cont-main {
  padding-block: 5rem;
}
.cont-main__inner {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .cont-main__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.cont-form-wrap__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #303031;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.cont-form-wrap__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #586269;
  margin: 0 0 2rem;
}

.cont-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cont-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cont-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #303031;
}
.cont-form__optional {
  font-weight: 400;
  color: #586269;
  font-size: 0.75rem;
}
.cont-form__input, .cont-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d8d6cf;
  border-radius: 0.75rem;
  background-color: #eeefea;
  color: #303031;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.cont-form__input::-moz-placeholder, .cont-form__textarea::-moz-placeholder {
  color: rgba(88, 98, 105, 0.5);
}
.cont-form__input::placeholder, .cont-form__textarea::placeholder {
  color: rgba(88, 98, 105, 0.5);
}
.cont-form__input:hover, .cont-form__textarea:hover {
  border-color: #c9c5bc;
}
.cont-form__input:focus, .cont-form__textarea:focus {
  outline: none;
  border-color: #156eb2;
  box-shadow: 0 0 0 3px rgba(21, 110, 178, 0.12);
}
.cont-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.cont-form__actions {
  padding-top: 0.5rem;
}
.cont-form__submit {
  cursor: pointer;
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  background-color: #586269;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.cont-form__submit:hover, .cont-form__submit:focus-visible {
  background-color: #4b545b;
  transform: translateY(-1px);
  outline: none;
}
.cont-form__submit:active {
  transform: translateY(0);
}

.cont-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .cont-info {
    position: sticky;
    top: 2rem;
  }
}
.cont-info__block {
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 1.5rem;
  background-color: #e7e3d9;
  border: 1px solid rgba(216, 214, 207, 0.6);
}
.cont-info__title {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(21, 110, 178, 0.25);
}
.cont-info__subtitle {
  font-family: "system-ui", -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #303031;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}
.cont-info__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cont-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.cont-info__item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #156eb2;
}
.cont-info__item p, .cont-info__item a {
  font-size: 1rem;
  line-height: 1.35;
  color: #586269;
  margin: 0;
}
.cont-info__item a {
  text-decoration: none;
  transition: color 0.15s ease;
}
.cont-info__item a:hover {
  color: #156eb2;
}
.cont-info__item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cont-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cont-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cont-social__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #eeefea;
  border: 1px solid rgba(216, 214, 207, 0.7);
  color: #586269;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.cont-social__link:hover, .cont-social__link:focus-visible {
  color: #156eb2;
  border-color: rgba(21, 110, 178, 0.4);
  background-color: rgba(21, 110, 178, 0.06);
  outline: none;
}
.cont-social__link svg {
  flex-shrink: 0;
}

.cont-cierre {
  padding-block: 4rem;
  background-color: #e7e3d9;
  border-top: 1px solid rgba(216, 214, 207, 0.5);
}
.cont-cierre__inner {
  max-width: 44rem;
}
.cont-cierre__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #586269;
  font-style: italic;
  margin: 0;
  position: relative;
  padding-left: 1.5rem;
}
.cont-cierre__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 9999px;
  background-color: rgba(21, 110, 178, 0.35);
}

.error-page {
  padding-block: 6rem;
  text-align: center;
}
.error-page__content {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.error-page__code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-page__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}
.error-page__message {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 440px;
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

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

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}
/*# sourceMappingURL=app.css.map */
