/* =========================================================
   MITEPUY — ¿QUÉ ES MITEPUY?
   BASE + NAVBAR + MODALES + FOOTER
========================================================= */

:root {
  --home-navy-night: #061426;
  --home-navy-deep: #0a2038;
  --home-navy-card: #0d2844;

  --home-copper-primary: #c77a45;
  --home-copper-light: #e0a06c;

  --home-white: #f7f3ed;
  --home-background: #ffffff;
  --home-text: #152235;
  --home-text-secondary: #66717f;
  --home-border: #dce1e6;

  --home-radius-small: 8px;
  --home-radius-medium: 14px;
  --home-radius-large: 20px;
  --home-radius-pill: 999px;

  --home-shadow-header: 0 10px 30px rgba(0, 0, 0, 0.18);
  --home-shadow-dialog: 0 28px 80px rgba(0, 0, 0, 0.38);

  --home-header-height: 68px;
  --home-max-width: 1440px;

  --home-transition-fast: 160ms ease;
  --home-transition-normal: 260ms ease;
}

/* =========================================================
   BASE
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--home-header-height) + 20px);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;

  background: #ffffff;
  color: var(--home-text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
  overflow-x: hidden;
}

body.home-scroll-locked {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

.home-skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 3000;

  padding: 12px 18px;
  border-radius: var(--home-radius-medium);

  background: var(--home-copper-primary);
  color: var(--home-white);

  transform: translateY(-160%);
  transition: transform var(--home-transition-fast);
}

.home-skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--home-copper-light);
  outline-offset: 3px;
}

/* =========================================================
   NAVBAR
========================================================= */

.home-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  min-height: var(--home-header-height);

  background: var(--home-navy-night);
  color: var(--home-white);

  box-shadow: var(--home-shadow-header);
}

.home-header-container {
  width: min(calc(100% - 40px), var(--home-max-width));
  min-height: var(--home-header-height);

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;

  margin-inline: auto;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.home-brand-logo {
  width: auto;
  height: 44px;
  max-width: 165px;
  object-fit: contain;
}

.home-navigation {
  min-width: 0;
}

.home-navigation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.home-navigation-link {
  position: relative;

  min-height: 36px;

  display: inline-flex;
  align-items: center;

  color: rgba(247, 243, 237, 0.76);

  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;

  transition:
    color var(--home-transition-fast),
    opacity var(--home-transition-fast);
}

.home-navigation-link:hover {
  color: var(--home-copper-light);
}

.home-navigation-link.is-active {
  color: var(--home-copper-light);
}

.home-navigation-link.is-disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.home-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.home-language-selector {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-language-button {
  min-width: 30px;
  min-height: 34px;

  padding: 0;
  border: 0;
  border-radius: var(--home-radius-small);

  background: transparent;
  color: rgba(247, 243, 237, 0.58);

  font-size: 0.75rem;
  font-weight: 800;

  transition:
    color var(--home-transition-fast),
    background-color var(--home-transition-fast);
}

.home-language-button:hover {
  background: rgba(224, 160, 108, 0.08);
  color: var(--home-copper-light);
}

.home-language-button.is-active,
.home-language-button[aria-pressed="true"] {
  color: var(--home-copper-light);
}

.home-access-cta,
.home-profile-cta {
  min-height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.home-access-cta {
  padding-inline: 16px;

  border: 1px solid rgba(224, 160, 108, 0.7);
  border-radius: var(--home-radius-medium);

  background: rgba(255, 255, 255, 0.035);
  color: var(--home-white);

  transition:
    transform var(--home-transition-normal),
    background-color var(--home-transition-normal),
    border-color var(--home-transition-normal),
    color var(--home-transition-normal);
}

.home-access-cta:hover {
  transform: translateY(-2px);
  border-color: var(--home-copper-light);
  background: rgba(224, 160, 108, 0.12);
  color: var(--home-copper-light);
}

.home-profile-cta {
  padding-inline: 18px;

  border: 0;
  border-radius: var(--home-radius-medium);

  background:
    linear-gradient(
      135deg,
      var(--home-copper-light),
      var(--home-copper-primary)
    );

  color: var(--home-white);

  transition:
    transform var(--home-transition-normal),
    filter var(--home-transition-normal);
}

.home-profile-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.home-mobile-menu-toggle,
.home-mobile-navigation-dialog {
  display: none;
}

/* =========================================================
   MODALES — SOLICITUD Y ACCESO
========================================================= */

.home-profile-request-dialog {
  width: min(720px, calc(100vw - 28px));
  max-width: none;
  max-height: calc(100dvh - 28px);

  padding: 0;
  overflow: hidden;

  border: 0;
  border-radius: var(--home-radius-large);

  background: #ffffff;
  color: var(--home-text);

  box-shadow: var(--home-shadow-dialog);
}

.home-profile-request-dialog::backdrop {
  background: rgba(3, 10, 18, 0.78);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.home-profile-request-surface {
  position: relative;

  max-height: calc(100dvh - 28px);

  padding: 34px;

  overflow-x: hidden;
  overflow-y: auto;

  scrollbar-width: none;
}

.home-profile-request-surface::-webkit-scrollbar {
  display: none;
}

.home-profile-request-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: var(--home-navy-night);
  color: #ffffff;

  font-size: 1.6rem;
  line-height: 1;

  transition:
    transform var(--home-transition-fast),
    background-color var(--home-transition-fast);
}

.home-profile-request-close:hover {
  transform: rotate(4deg);
  background: var(--home-navy-deep);
}

.home-profile-request-header {
  padding-right: 54px;
}

.home-profile-request-eyebrow {
  margin: 0 0 8px;

  color: var(--home-copper-primary);

  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.home-profile-request-title {
  margin: 0;

  color: var(--home-text);

  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.home-profile-request-description {
  max-width: 560px;

  margin: 14px 0 0;

  color: var(--home-text-secondary);

  font-size: 0.88rem;
  line-height: 1.6;
}

.home-profile-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  margin-top: 28px;
}

.home-profile-request-field {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 7px;
}

.home-profile-request-field-message {
  grid-column: 1 / -1;
}

.home-profile-request-field label {
  color: var(--home-text);
  font-size: 0.72rem;
  font-weight: 800;
}

.home-profile-request-field input,
.home-profile-request-field textarea {
  width: 100%;

  border: 1px solid var(--home-border);
  border-radius: 11px;

  background: #ffffff;
  color: var(--home-text);

  font: inherit;

  transition:
    border-color var(--home-transition-fast),
    box-shadow var(--home-transition-fast);
}

.home-profile-request-field input {
  min-height: 46px;
  padding: 0 13px;
}

.home-profile-request-field textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.home-profile-request-field input:focus,
.home-profile-request-field textarea:focus {
  border-color: var(--home-copper-primary);
  outline: 0;

  box-shadow: 0 0 0 3px rgba(199, 122, 69, 0.12);
}

.home-profile-request-status {
  grid-column: 1 / -1;

  min-height: 20px;

  margin: 0;

  color: var(--home-text-secondary);

  font-size: 0.76rem;
}

.home-profile-request-actions {
  grid-column: 1 / -1;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home-profile-request-submit,
.home-profile-request-cancel {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;

  border-radius: var(--home-radius-medium);

  font-size: 0.8rem;
  font-weight: 850;
}

.home-profile-request-submit {
  border: 1px solid var(--home-navy-night);
  background: var(--home-navy-night);
  color: #ffffff;
}

.home-profile-request-cancel {
  border: 1px solid var(--home-border);
  background: #ffffff;
  color: var(--home-text);
}

.home-portal-access-dialog {
  width: min(520px, calc(100vw - 28px));
}

.home-portal-access-form {
  grid-template-columns: 1fr;
}

.home-portal-access-status {
  grid-column: auto;
}

.home-portal-access-status[data-state="error"] {
  color: #a22323;
  font-weight: 700;
}

.home-portal-access-status[data-state="loading"] {
  color: var(--home-copper-primary);
}

.home-portal-access-security {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: -4px 0 0;

  color: var(--home-text-secondary);

  font-size: 0.72rem;
  line-height: 1.45;
}

.home-portal-access-security > span:first-child {
  color: var(--home-copper-primary);
}

.home-portal-access-form .home-profile-request-actions {
  grid-column: auto;
}

/* =========================================================
   FOOTER
========================================================= */

.home-footer {
  margin-top: 0;

  background: var(--home-navy-night);
  color: var(--home-white);
}

.home-footer-main {
  padding: 64px 24px 54px;

  background:
    radial-gradient(
      circle at top right,
      rgba(199, 122, 69, 0.12),
      transparent 34%
    ),
    var(--home-navy-night);
}

.home-footer-container {
  width: min(100%, var(--home-max-width));

  display: grid;
  grid-template-columns:
    minmax(240px, 1.2fr)
    minmax(180px, 0.8fr)
    minmax(210px, 0.8fr)
    minmax(280px, 1fr);

  align-items: start;
  gap: 48px;

  margin-inline: auto;
}

.home-footer-brand {
  min-width: 0;
}

.home-footer-brand-link {
  display: inline-flex;
  align-items: center;

  margin-bottom: 18px;
}

.home-footer-brand-logo {
  width: auto;
  height: 68px;
  max-width: 220px;

  object-fit: contain;
}

.home-footer-brand-description {
  max-width: 330px;

  margin: 0;

  color: rgba(247, 243, 237, 0.7);

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

.home-footer-social {
  margin-top: 26px;
}

.home-footer-social-title {
  margin: 0 0 12px;

  color: rgba(247, 243, 237, 0.62);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-footer-social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home-footer-social-item {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(247, 243, 237, 0.16);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 243, 237, 0.72);

  cursor: default;

  transition:
    color var(--home-transition-fast),
    border-color var(--home-transition-fast),
    background-color var(--home-transition-fast),
    transform var(--home-transition-fast);
}

.home-footer-social-item:hover {
  transform: translateY(-2px);

  border-color: rgba(224, 160, 108, 0.52);

  background: rgba(224, 160, 108, 0.08);
  color: var(--home-copper-light);
}

.home-footer-navigation,
.home-footer-contact {
  min-width: 0;
}

.home-footer-column-title {
  margin: 0 0 20px;

  color: var(--home-white);

  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-footer-navigation-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-footer-navigation-list a,
.home-footer-navigation-list span {
  color: rgba(247, 243, 237, 0.68);

  font-size: 0.8rem;
  line-height: 1.4;

  transition: color var(--home-transition-fast);
}

.home-footer-navigation-list a:hover {
  color: var(--home-copper-light);
}

.home-footer-navigation-list span[aria-disabled="true"] {
  opacity: 0.5;
  cursor: default;
}

.home-footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: rgba(247, 243, 237, 0.76);

  font-size: 0.82rem;
  font-weight: 700;

  word-break: break-word;

  transition: color var(--home-transition-fast);
}

.home-footer-email:hover {
  color: var(--home-copper-light);
}

.home-footer-email-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(247, 243, 237, 0.16);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);
  color: var(--home-copper-light);
}

.home-footer-profile-cta {
  position: relative;

  min-width: 0;
  overflow: hidden;

  padding: 28px;

  border: 1px solid rgba(224, 160, 108, 0.24);
  border-radius: var(--home-radius-large);

  background:
    linear-gradient(
      145deg,
      rgba(13, 40, 68, 0.98),
      rgba(6, 20, 38, 0.98)
    );

  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.home-footer-profile-decoration {
  position: absolute;
  top: -50px;
  right: -50px;

  width: 140px;
  height: 140px;

  border: 1px solid rgba(224, 160, 108, 0.16);
  border-radius: 50%;

  pointer-events: none;
}

.home-footer-profile-decoration::after {
  content: "";

  position: absolute;
  inset: 24px;

  border: 1px solid rgba(224, 160, 108, 0.12);
  border-radius: inherit;
}

.home-footer-profile-eyebrow {
  position: relative;
  z-index: 1;

  margin: 0 0 10px;

  color: var(--home-copper-light);

  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.home-footer-profile-title {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--home-white);

  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.home-footer-profile-description {
  position: relative;
  z-index: 1;

  margin: 14px 0 0;

  color: rgba(247, 243, 237, 0.66);

  font-size: 0.78rem;
  line-height: 1.55;
}

.home-footer-profile-button {
  position: relative;
  z-index: 1;

  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 22px;
  padding: 0 18px;

  border: 0;
  border-radius: var(--home-radius-medium);

  background:
    linear-gradient(
      135deg,
      var(--home-copper-light),
      var(--home-copper-primary)
    );

  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 850;

  transition:
    transform var(--home-transition-fast),
    filter var(--home-transition-fast);
}

.home-footer-profile-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.home-footer-bottom {
  border-top: 1px solid rgba(247, 243, 237, 0.1);
  background: #04101e;
}

.home-footer-bottom-container {
  width: min(calc(100% - 48px), var(--home-max-width));
  min-height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  margin-inline: auto;
}

.home-footer-bottom-information {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.home-footer-copyright,
.home-footer-attribution,
.home-footer-signature {
  margin: 0;

  color: rgba(247, 243, 237, 0.5);

  font-size: 0.7rem;
  line-height: 1.45;
}

.home-footer-signature {
  max-width: 360px;

  color: rgba(247, 243, 237, 0.42);
  text-align: right;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .home-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --home-header-height: 64px;
  }

  .home-header-container {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .home-navigation {
    display: none;
  }

  .home-brand-logo {
    height: 42px;
    max-width: 156px;
  }

  .home-header-actions {
    gap: 8px;
  }

  .home-language-selector {
    gap: 4px;
  }

  .home-language-button {
    min-width: 25px;
    min-height: 36px;
    font-size: 0.66rem;
  }

  .home-header-actions > .home-access-cta,
  .home-header-actions > .home-profile-cta {
    display: none;
  }

  .home-mobile-menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(247, 243, 237, 0.18);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);
    color: var(--home-white);
  }

  .home-mobile-menu-toggle-icon {
    position: relative;
    width: 19px;
    height: 14px;
    display: block;
  }

  .home-mobile-menu-toggle-icon::before,
  .home-mobile-menu-toggle-icon::after,
  .home-mobile-menu-toggle-icon span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .home-mobile-menu-toggle-icon::before {
    top: 0;
  }

  .home-mobile-menu-toggle-icon span {
    top: 6px;
  }

  .home-mobile-menu-toggle-icon::after {
    bottom: 0;
  }

  .home-mobile-navigation-dialog {
    width: min(430px, calc(100vw - 16px));
    height: calc(100dvh - 16px);
    max-width: none;
    max-height: none;

    margin: auto;
    padding: 0;

    overflow: hidden;

    border: 0;
    border-radius: 18px;

    background:
      linear-gradient(
        180deg,
        var(--home-navy-deep),
        var(--home-navy-night)
      );

    color: var(--home-white);

    box-shadow: var(--home-shadow-dialog);
  }

  .home-mobile-navigation-dialog[open] {
    display: block;
  }

  .home-mobile-navigation-dialog::backdrop {
    background: rgba(3, 10, 18, 0.82);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .home-mobile-navigation-surface {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    padding:
      max(20px, env(safe-area-inset-top))
      20px
      max(24px, env(safe-area-inset-bottom));

    overflow-y: auto;

    scrollbar-width: none;
  }

  .home-mobile-navigation-surface::-webkit-scrollbar {
    display: none;
  }

  .home-mobile-navigation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(247, 243, 237, 0.1);
  }

  .home-mobile-navigation-logo {
    width: auto;
    height: 40px;
    max-width: 150px;
    object-fit: contain;
  }

  .home-mobile-navigation-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(247, 243, 237, 0.18);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);
    color: var(--home-white);

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

  .home-mobile-navigation-language {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 14px;
    padding: 8px 10px;

    border: 1px solid rgba(247, 243, 237, 0.12);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);
  }

  .home-mobile-navigation-list {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin-top: 18px;
  }

  .home-mobile-navigation-link {
    min-height: 50px;

    display: flex;
    align-items: center;

    padding: 0 14px;

    border-left: 3px solid transparent;
    border-radius: 11px;

    color: rgba(247, 243, 237, 0.76);

    font-size: 0.82rem;
    font-weight: 720;
  }

  .home-mobile-navigation-link.is-disabled {
    opacity: 0.46;
  }

  .home-mobile-navigation-access {
    width: 100%;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: auto;
    padding: 0 18px;

    border: 1px solid rgba(224, 160, 108, 0.72);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.045);
    color: var(--home-white);

    font-size: 0.8rem;
    font-weight: 850;
  }

  .home-mobile-navigation-cta {
    width: 100%;
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 10px;
    padding: 0 18px;

    border: 0;
    border-radius: 12px;

    background:
      linear-gradient(
        135deg,
        var(--home-copper-light),
        var(--home-copper-primary)
      );

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 850;
  }

  .home-footer-main {
    padding: 50px 20px 42px;
  }

  .home-footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-footer-brand-description {
    max-width: 520px;
  }

  .home-footer-profile-cta {
    width: 100%;
  }

  .home-footer-bottom-container {
    width: calc(100% - 40px);
    min-height: 0;

    align-items: flex-start;
    flex-direction: column;
    gap: 12px;

    padding-block: 24px;
  }

  .home-footer-bottom-information {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-footer-signature {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .home-profile-request-surface {
    padding: 28px 22px;
  }

  .home-profile-request-form {
    grid-template-columns: 1fr;
  }

  .home-profile-request-field-message,
  .home-profile-request-status,
  .home-profile-request-actions {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --home-header-height: 60px;
  }

  .home-header-container {
    width: calc(100% - 20px);
  }

  .home-brand-logo {
    height: 37px;
    max-width: 136px;
  }

  .home-language-selector {
    display: none;
  }

  .home-mobile-menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .home-footer-main {
    padding: 42px 16px 36px;
  }

  .home-footer-brand-logo {
    height: 58px;
    max-width: 188px;
  }

  .home-footer-profile-cta {
    padding: 24px 20px;
  }

  .home-footer-profile-button {
    width: 100%;
  }

  .home-footer-bottom-container {
    width: calc(100% - 32px);
  }
}

@media (max-width: 520px) {
  .home-portal-access-dialog {
    width: calc(100vw - 12px);
  }

  .home-profile-request-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 12px);
    border-radius: 14px;
  }

  .home-profile-request-surface {
    max-height: calc(100dvh - 12px);
    padding: 24px 18px 26px;
  }

  .home-profile-request-header {
    padding-right: 44px;
  }

  .home-profile-request-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .home-profile-request-title {
    font-size: clamp(1.65rem, 9vw, 2.15rem);
  }

  .home-profile-request-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-profile-request-submit,
  .home-profile-request-cancel {
    width: 100%;
  }
}

/* =========================================================
   SECCIÓN 01 — HERO · ¿QUÉ ES MITEPUY?
   Solo afecta al contenido dentro de <main>.
========================================================= */

.about-hero {
  --about-hero-image-desktop: none;
  --about-hero-image-mobile: none;
  --about-hero-orange: #f39a55;
  --about-hero-orange-soft: #efb47e;
  --about-hero-cream: #f7f3ed;
  --about-hero-muted: rgba(247, 243, 237, 0.73);
  --about-hero-border: rgba(224, 160, 108, 0.52);

  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--home-header-height));
  overflow: hidden;

  background-color: #031326;
  background-image: var(--about-hero-image-desktop);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;

  color: var(--about-hero-cream);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(1, 15, 31, 0.22) 0%,
      rgba(1, 15, 31, 0.08) 37%,
      rgba(1, 15, 31, 0) 58%
    );
}

.about-hero-inner {
  width: min(calc(100% - 76px), 1840px);
  min-height: calc(100svh - var(--home-header-height));

  display: flex;
  align-items: center;

  margin-inline: auto;
  padding: clamp(44px, 4.7vh, 66px) 0 clamp(38px, 4.4vh, 60px);
}

/*
  El límite de 37vw mantiene TODO el copy dentro del campo azul
  de la imagen desktop y evita que invada la fotografía.
*/
.about-hero-copy {
  width: min(37vw, 660px);
  min-width: 0;
}

.about-hero-eyebrow {
  margin: 0 0 18px;

  color: var(--about-hero-orange);

  font-size: clamp(0.76rem, 0.8vw, 0.94rem);
  font-weight: 760;
  letter-spacing: 0.22em;
  line-height: 1.2;
}

.about-hero-title {
  width: min(46vw, 880px);
  max-width: none;
  margin: 0;

  color: var(--about-hero-cream);

  font-size: clamp(3rem, 3.45vw, 4.35rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.about-hero-title-first-line,
.about-hero-title-second-line {
  display: block;
}

.about-hero-title-first-line {
  white-space: nowrap;
}

.about-hero-title-second-line {
  margin-top: 8px;
}

.about-hero-title-line {
  margin-top: 8px;
}

.about-hero-title-accent {
  color: var(--about-hero-orange);
}

.about-hero-desktop-copy {
  display: block;
}

.about-hero-mobile-copy,
.about-hero-mobile-actions {
  display: none;
}

.about-hero-lead {
  width: 100%;
  max-width: 590px;
  margin: 24px 0 0;

  color: var(--about-hero-cream);

  font-size: clamp(1.08rem, 1.26vw, 1.48rem);
  font-weight: 690;
  line-height: 1.3;
}

.about-hero-description {
  width: 100%;
  max-width: 575px;
  margin: 18px 0 0;

  color: var(--about-hero-muted);

  font-size: clamp(0.86rem, 0.93vw, 1.06rem);
  font-weight: 430;
  line-height: 1.5;
}

.about-hero-journey {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 0.85vw, 14px);

  margin: clamp(30px, 3.5vh, 38px) 0 0;
  padding: 0;

  list-style: none;
}

.about-hero-journey-item {
  position: relative;

  min-width: 0;

  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;

  text-align: center;
}

.about-hero-journey-item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 32px;
  left: calc(50% + 34px);

  width: calc(100% - 50px);
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(224, 160, 108, 0.5),
    rgba(224, 160, 108, 0.22)
  );
}

.about-hero-journey-icon {
  position: relative;
  z-index: 1;

  width: 54px;
  height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 0;

  background: transparent;
}

.about-hero-journey-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-hero-journey-label {
  color: var(--about-hero-cream);

  font-size: clamp(0.68rem, 0.73vw, 0.84rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.about-hero-needs {
  width: 100%;
  margin-top: clamp(30px, 3.7vh, 40px);
}

.about-hero-needs-title {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 14px;

  color: var(--about-hero-orange);

  font-size: clamp(0.94rem, 1vw, 1.14rem);
  font-weight: 560;
  line-height: 1.25;
}

.about-hero-needs-title-icon {
  display: none;
}

/* Segunda fila compactada para conservar la proporción de la referencia. */
.about-hero-categories {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(9px, 0.95vw, 14px);
}

.about-hero-category {
  min-width: 0;
  min-height: 108px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;

  padding: 11px 8px 9px;

  border: 1px solid var(--about-hero-border);
  border-radius: 10px;

  background: rgba(14, 42, 70, 0.68);

  text-align: center;
}

.about-hero-category-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  object-fit: contain;
}

.about-hero-category-label {
  color: var(--about-hero-cream);

  font-size: clamp(0.66rem, 0.69vw, 0.78rem);
  font-weight: 520;
  line-height: 1.17;
}

.about-hero-category-label-mobile {
  display: none;
}

.about-hero-primary-action,
.about-hero-secondary-action {
  width: 100%;
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  padding: 0 62px 0 24px;

  border-radius: 12px;

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

.about-hero-primary-action {
  border: 1px solid rgba(255, 204, 157, 0.96);

  background: linear-gradient(
    90deg,
    #ef9856 0%,
    #f5a65d 52%,
    #f09a52 100%
  );

  color: #051527;
  font-weight: 820;

  box-shadow:
    0 0 0 1px rgba(244, 168, 99, 0.18),
    0 0 26px rgba(240, 145, 75, 0.27);
}

.about-hero-secondary-action {
  border: 1px solid rgba(235, 143, 75, 0.92);

  background: rgba(2, 17, 34, 0.54);
  color: var(--about-hero-cream);

  font-weight: 470;
}

.about-hero-action-arrow {
  position: absolute;
  right: 25px;
  top: 50%;

  transform: translateY(-53%);

  color: #061426;

  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.about-hero-secondary-action .about-hero-action-arrow {
  color: var(--about-hero-orange);
}

/* Desktop grande */
@media (min-width: 1501px) {
  .about-hero-copy {
    width: min(38vw, 660px);
  }

  .about-hero-category {
    min-height: 112px;
  }

  .about-hero-category-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
}

/* Desktop estándar: 1201–1500 px */
@media (max-width: 1500px) and (min-width: 1201px) {
  .about-hero-inner {
    width: calc(100% - 72px);
  }

  .about-hero-copy {
    width: 37vw;
  }

  .about-hero-title {
    font-size: clamp(2.95rem, 3.55vw, 3.45rem);
  }

  .about-hero-lead {
    font-size: clamp(1.02rem, 1.28vw, 1.22rem);
  }

  .about-hero-description {
    font-size: clamp(0.82rem, 0.94vw, 0.94rem);
  }

  .about-hero-category {
    min-height: 102px;
    padding: 10px 6px 8px;
  }

  .about-hero-category-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

/* Desktop compacto / tablet horizontal */
@media (max-width: 1200px) and (min-width: 821px) {
  .about-hero-inner {
    width: calc(100% - 54px);
    padding-top: 38px;
    padding-bottom: 36px;
  }

  .about-hero-copy {
    width: 40vw;
  }

  .about-hero-eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .about-hero-title {
    font-size: clamp(2.55rem, 4vw, 3rem);
  }

  .about-hero-lead {
    margin-top: 20px;
    font-size: clamp(0.96rem, 1.55vw, 1.08rem);
  }

  .about-hero-description {
    margin-top: 14px;
    font-size: clamp(0.78rem, 1.15vw, 0.88rem);
    line-height: 1.45;
  }

  .about-hero-journey {
    margin-top: 26px;
    gap: 6px;
  }

  .about-hero-journey-icon {
    width: 48px;
    height: 48px;
  }

  .about-hero-journey-icon img {
    width: 44px;
    height: 44px;
  }

  .about-hero-journey-item:not(:last-child)::after {
    top: 28px;
    left: calc(50% + 30px);
    width: calc(100% - 44px);
  }

  .about-hero-journey-label {
    font-size: 0.64rem;
  }

  .about-hero-needs {
    margin-top: 26px;
  }

  .about-hero-needs-title {
    margin-bottom: 12px;
    font-size: 0.88rem;
  }

  .about-hero-categories {
    gap: 7px;
  }

  .about-hero-category {
    min-height: 94px;
    gap: 6px;
    padding: 9px 4px 7px;
  }

  .about-hero-category-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .about-hero-category-label {
    font-size: clamp(0.56rem, 0.9vw, 0.66rem);
  }
}

/* Móvil / tablet vertical */
@media (max-width: 820px) {
  .about-hero {
    min-height: auto;

    background-image: var(--about-hero-image-mobile);
    background-position: center -52px;
    background-size: 100% auto;

    color: var(--about-hero-cream);
  }

  .about-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(2, 17, 34, 0) 0%,
        rgba(2, 17, 34, 0.02) 25%,
        rgba(2, 17, 34, 0.78) 39%,
        rgba(2, 17, 34, 0.97) 49%,
        #031326 61%,
        #031326 100%
      );
  }

  .about-hero-inner {
    width: 100%;
    min-height: 0;

    display: block;

    padding:
      clamp(270px, 37svh, 455px)
      clamp(22px, 5.4vw, 42px)
      56px;
  }

  .about-hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 760px;
    margin-inline: auto;
  }

  .about-hero-eyebrow {
    margin-bottom: 20px;

    font-size: clamp(0.8rem, 3.2vw, 1rem);
    letter-spacing: 0.2em;
  }

  .about-hero-title {
    width: 100%;
    max-width: 100%;

    font-size: clamp(2.5rem, 8.4vw, 4rem);
    line-height: 1.05;
  }

  /*
    En móvil anulamos el salto forzado de desktop.
    El título vuelve a fluir naturalmente según el ancho.
  */
  .about-hero-title-first-line,
  .about-hero-title-second-line {
    display: inline;
    margin-top: 0;
    white-space: normal;
  }

  .about-hero-desktop-copy {
    display: none;
  }

  .about-hero-mobile-copy {
    display: block;
  }

  .about-hero-mobile-lead {
    margin: 24px 0 0;

    color: var(--about-hero-cream);

    font-size: clamp(1.05rem, 4.4vw, 1.5rem);
    font-weight: 520;
    line-height: 1.36;
  }

  .about-hero-mobile-description {
    margin: 18px 0 0;

    color: rgba(247, 243, 237, 0.68);

    font-size: clamp(0.92rem, 3.7vw, 1.22rem);
    font-weight: 430;
    line-height: 1.42;
  }

  .about-hero-mobile-actions {
    display: grid;
    gap: 12px;

    margin-top: 30px;
  }

  .about-hero-primary-action,
  .about-hero-secondary-action {
    min-height: 62px;

    border-radius: 12px;

    font-size: clamp(1rem, 4.1vw, 1.25rem);
  }

  .about-hero-journey {
    display: none;
  }

  .about-hero-needs {
    width: 100%;
    margin-top: 34px;
  }

  .about-hero-needs-title {
    gap: 10px;

    margin-bottom: 18px;

    font-size: clamp(1.05rem, 4.5vw, 1.35rem);
    font-weight: 520;
  }

  .about-hero-needs-title-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;

    display: block;
    object-fit: contain;
  }

  .about-hero-categories {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(7px, 2vw, 14px);
  }

  .about-hero-category {
    min-height: 96px;
    gap: 7px;

    padding: 4px 2px 2px;

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;
  }

  .about-hero-category-icon {
    width: clamp(50px, 12vw, 66px);
    height: clamp(50px, 12vw, 66px);
    flex-basis: auto;

    object-fit: contain;
  }

  .about-hero-category-label {
    font-size: clamp(0.65rem, 2.65vw, 0.9rem);
    line-height: 1.08;
  }

  .about-hero-category-label-desktop {
    display: none;
  }

  .about-hero-category-label-mobile {
    display: inline;
  }
}

/* Teléfonos estándar */
@media (max-width: 560px) {
  .about-hero {
    background-position: center -66px;
  }

  .about-hero-inner {
    padding:
      clamp(235px, 34svh, 350px)
      20px
      44px;
  }

  .about-hero-eyebrow {
    margin-bottom: 17px;
  }

  .about-hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .about-hero-title-first-line,
  .about-hero-title-second-line {
    display: inline;
    margin-top: 0;
    white-space: normal;
  }

  .about-hero-mobile-lead {
    margin-top: 20px;
  }

  .about-hero-mobile-description {
    margin-top: 14px;
  }

  .about-hero-mobile-actions {
    margin-top: 26px;
  }

  .about-hero-primary-action,
  .about-hero-secondary-action {
    min-height: 58px;
    padding-right: 54px;
  }

  .about-hero-action-arrow {
    right: 19px;
    font-size: 1.75rem;
  }

  .about-hero-needs {
    margin-top: 30px;
  }

  .about-hero-categories {
    gap: 6px;
  }

  .about-hero-category {
    min-height: 90px;
    padding: 9px 3px 7px;
  }

  .about-hero-category-label {
    font-size: clamp(0.58rem, 2.55vw, 0.72rem);
  }
}

/* Teléfonos estrechos */
@media (max-width: 390px) {
  .about-hero {
    background-position: center -72px;
  }

  .about-hero-inner {
    padding-top: clamp(220px, 32svh, 300px);
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.05rem, 10.5vw, 2.55rem);
  }

  .about-hero-title-first-line,
  .about-hero-title-second-line {
    display: inline;
    margin-top: 0;
    white-space: normal;
  }

  .about-hero-primary-action,
  .about-hero-secondary-action {
    min-height: 55px;
  }

  .about-hero-category {
    min-height: 84px;
  }

  .about-hero-category-icon {
    width: 38px;
    height: 38px;
  }

  .about-hero-category-label {
    font-size: 0.56rem;
  }
}

/* =========================================================
   SECCIÓN 02 — QUÉ SOMOS
   Integrada desde el preview aprobado.
========================================================= */

:root {
  --who-navy: #071b46;
  --who-navy-deep: #04183d;
  --who-orange: #ff6b00;
  --who-text: #0c1f49;
  --who-muted: #263654;
  --who-border: #e8ebf0;
  --who-shadow: 0 16px 34px rgba(13, 32, 65, 0.09);
  --who-radius: 18px;
}

.who-section {
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 107, 0, 0.025), transparent 24%),
    #ffffff;
}

/* =========================================================
   TOP · DESKTOP
========================================================= */

.who-top {
  display: grid;
  grid-template-columns: minmax(500px, 39%) minmax(0, 61%);
  min-height: 510px;
}

.who-copy {
  position: relative;
  z-index: 2;
  padding: clamp(50px, 4vw, 78px) clamp(38px, 4.2vw, 78px) 42px;
  background: #ffffff;
}

.who-eyebrow {
  margin: 0;
  color: var(--who-orange);
  font-size: clamp(0.84rem, 1vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.who-eyebrow-rule {
  width: 64px;
  height: 3px;
  display: block;
  margin-top: 15px;
  background: var(--who-orange);
}

.who-title {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--who-navy);
  font-size: clamp(2.3rem, 2.75vw, 3.45rem);
  font-weight: 840;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.who-paragraph {
  max-width: 680px;
  margin: 24px 0 0;
  color: #2a3855;
  font-size: clamp(0.98rem, 1.03vw, 1.16rem);
  line-height: 1.63;
}

.who-highlight {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--who-navy);
  font-size: clamp(1.12rem, 1.25vw, 1.4rem);
  font-weight: 800;
  line-height: 1.32;
}

.who-paragraph-last {
  margin-top: 10px;
}

.who-copy-mobile,
.who-services-mobile,
.benefit-title-mobile,
.benefit-text-mobile {
  display: none;
}

/* =========================================================
   VISUAL / PROFESIONALES
========================================================= */

.who-visual {
  position: relative;
  isolation: isolate;
  min-height: 510px;
  overflow: hidden;
  background: #d7e8f8;
}

.who-background {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.who-background,
.who-background img {
  width: 100%;
  height: 100%;
}

.who-background img {
  object-fit: cover;
  object-position: center;
}

.who-connectors {
  display: none !important;
}


.who-professional-card {
  position: absolute;
  z-index: 3;
  width: clamp(165px, 13.4vw, 235px);

  opacity: 0;
  transform:
    translate3d(var(--enter-x, 0), var(--enter-y, 38px), 0)
    scale(0.88)
    rotate(var(--enter-r, 0deg));

  filter: drop-shadow(0 14px 22px rgba(10, 30, 62, 0.18));
  transition:
    transform 850ms cubic-bezier(.18, .8, .2, 1) var(--delay),
    opacity 620ms ease var(--delay),
    filter 240ms ease;
  will-change: transform;
}

.who-professional-card img {
  width: 100%;
  height: auto;
}

.who-section.is-visible .who-professional-card {
  opacity: 1;
  transform:
    translate3d(var(--shift-x, 0), var(--shift-y, 0), 0)
    scale(1)
    rotate(var(--shift-r, 0deg));
}

.who-professional-card:hover {
  z-index: 9;
  filter: drop-shadow(0 18px 30px rgba(10, 30, 62, 0.28));
}

/* Disposición 2–3–2 alrededor de la vivienda · desktop */
.card-agent {
  top: 4%;
  left: 28%;
  --enter-y: -60px;
}

.card-architect {
  top: 4%;
  right: 13%;
  --enter-x: 70px;
  --enter-y: -20px;
}

.card-engineer {
  top: 34%;
  left: 7%;
  --enter-x: -80px;
}

.card-maintenance {
  top: 35%;
  left: 39%;
  --enter-y: 60px;
}

.card-finishes {
  top: 34%;
  right: 6%;
  --enter-x: 90px;
}

.card-gardener {
  bottom: 5%;
  left: 19%;
  --enter-x: -70px;
  --enter-y: 40px;
}

.card-interiors {
  bottom: 5%;
  right: 17%;
  --enter-x: 70px;
  --enter-y: 45px;
}

/* Movimiento periódico suave; conserva la composición visual */
.who-section.layout-alt-1 .card-agent { --shift-x: -10px; --shift-y: 7px; --shift-r: -0.5deg; }
.who-section.layout-alt-1 .card-architect { --shift-x: 8px; --shift-y: 13px; --shift-r: 0.5deg; }
.who-section.layout-alt-1 .card-engineer { --shift-x: 10px; --shift-y: -8px; --shift-r: 0.6deg; }
.who-section.layout-alt-1 .card-finishes { --shift-x: -10px; --shift-y: 5px; --shift-r: -0.4deg; }
.who-section.layout-alt-1 .card-gardener { --shift-x: 8px; --shift-y: -10px; --shift-r: -0.5deg; }
.who-section.layout-alt-1 .card-maintenance { --shift-x: 4px; --shift-y: -12px; --shift-r: 0.4deg; }
.who-section.layout-alt-1 .card-interiors { --shift-x: -9px; --shift-y: -4px; --shift-r: 0.45deg; }

.who-section.layout-alt-2 .card-agent { --shift-x: 10px; --shift-y: -7px; --shift-r: 0.5deg; }
.who-section.layout-alt-2 .card-architect { --shift-x: -8px; --shift-y: -6px; --shift-r: -0.5deg; }
.who-section.layout-alt-2 .card-engineer { --shift-x: 4px; --shift-y: 10px; --shift-r: -0.5deg; }
.who-section.layout-alt-2 .card-finishes { --shift-x: -4px; --shift-y: -9px; --shift-r: 0.45deg; }
.who-section.layout-alt-2 .card-gardener { --shift-x: -8px; --shift-y: 7px; --shift-r: 0.45deg; }
.who-section.layout-alt-2 .card-maintenance { --shift-x: -6px; --shift-y: 8px; --shift-r: -0.45deg; }
.who-section.layout-alt-2 .card-interiors { --shift-x: 8px; --shift-y: 7px; --shift-r: -0.5deg; }


/* =========================================================
   TARJETAS DEL ECOSISTEMA · DESKTOP
========================================================= */

.who-services {
  width: min(calc(100% - 70px), 1880px);
  margin: 24px auto 0;
}

.who-services-desktop {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.who-service-card {
  min-width: 0;
  min-height: 188px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 24px 16px 20px;
  border: 1px solid var(--who-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--who-shadow);
}

.who-service-card > img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.who-service-card h2 {
  margin: 2px 0 0;
  color: var(--who-navy);
  font-size: clamp(0.92rem, 0.95vw, 1.08rem);
  font-weight: 820;
  line-height: 1.15;
}

.who-service-card p {
  margin: 15px 0 0;
  color: #263655;
  font-size: clamp(0.74rem, 0.76vw, 0.86rem);
  line-height: 1.45;
}

.who-service-rule {
  width: 38px;
  height: 2px;
  display: block;
  margin-top: 24px;
  background: var(--who-orange);
}

.who-card-arrow {
  display: none;
}

/* =========================================================
   BENEFICIOS
========================================================= */

.who-benefits {
  width: min(calc(100% - 70px), 1880px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px auto 40px;
  padding: 24px 14px;
  border: 1px solid var(--who-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--who-shadow);
}

.who-benefit {
  min-width: 0;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 4px 28px;
}

.who-benefit + .who-benefit {
  border-left: 1px solid #d7dce4;
}

.who-benefit img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.who-benefit h2 {
  margin: 0;
  color: var(--who-navy);
  font-size: clamp(0.95rem, 1vw, 1.16rem);
  font-weight: 820;
  line-height: 1.2;
}

.who-benefit p {
  margin: 8px 0 0;
  color: #2b3a58;
  font-size: clamp(0.76rem, 0.8vw, 0.9rem);
  line-height: 1.45;
}

/* =========================================================
   DESKTOP COMPACTO
========================================================= */

@media (max-width: 1360px) and (min-width: 901px) {
  .who-top {
    grid-template-columns: 40% 60%;
    min-height: 470px;
  }

  .who-copy {
    padding: 44px 36px 32px;
  }

  .who-title {
    font-size: clamp(2rem, 2.6vw, 2.7rem);
  }

  .who-paragraph {
    font-size: 0.91rem;
  }

  .who-highlight {
    font-size: 1.08rem;
  }

  .who-visual {
    min-height: 470px;
  }

  .who-professional-card {
    width: clamp(145px, 12.8vw, 195px);
  }

  .who-services {
    width: calc(100% - 44px);
  }

  .who-service-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 9px;
    min-height: 166px;
    padding: 18px 12px 16px;
  }

  .who-service-card > img {
    width: 52px;
    height: 52px;
  }

  .who-benefits {
    width: calc(100% - 44px);
  }

  .who-benefit {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 4px 18px;
  }

  .who-benefit img {
    width: 56px;
    height: 56px;
  }
}

/* =========================================================
   MÓVIL / TABLET VERTICAL
========================================================= */

@media (max-width: 900px) {
  .who-top {
    display: block;
    min-height: 0;
  }

  .who-copy {
    padding: 44px clamp(26px, 5vw, 48px) 24px;
  }

  .who-copy-desktop,
  .who-services-desktop,
  .benefit-title-desktop,
  .benefit-text-desktop {
    display: none;
  }

  .who-copy-mobile,
  .who-services-mobile,
  .benefit-title-mobile,
  .benefit-text-mobile {
    display: block;
  }

  .who-eyebrow {
    font-size: clamp(0.88rem, 2.7vw, 1.2rem);
  }

  .who-eyebrow-rule {
    width: 72px;
    margin-top: 13px;
  }

  .who-title {
    max-width: 760px;
    margin-top: 26px;
    font-size: clamp(2.2rem, 6vw, 3.7rem);
    line-height: 1.07;
  }

  .who-mobile-subtitle {
    max-width: 760px;
    margin: 18px 0 0;
    color: #1d2c4b;
    font-size: clamp(1.05rem, 3vw, 1.65rem);
    line-height: 1.45;
  }

  .who-visual {
    width: min(calc(100% - clamp(34px, 6vw, 62px)), 860px);
    aspect-ratio: 1.42;
    min-height: 0;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
  }

  .who-background img {
    object-position: center 54%;
  }

  .who-professional-card {
    width: clamp(104px, 22vw, 168px);
  }

  /* Fila 1 · 2 tarjetas */
  .card-agent {
    top: 3%;
    left: 25%;
  }

  .card-architect {
    top: 3%;
    right: 8%;
  }

  /* Fila 2 · 3 tarjetas */
  .card-engineer {
    top: 35%;
    left: 4%;
  }

  .card-maintenance {
    top: 36%;
    left: 38%;
  }

  .card-finishes {
    top: 35%;
    right: 3%;
  }

  /* Fila 3 · 2 tarjetas */
  .card-gardener {
    bottom: 4%;
    left: 18%;
  }

  .card-interiors {
    display: block;
    bottom: 4%;
    right: 16%;
  }

  .who-services {
    width: calc(100% - clamp(34px, 6vw, 62px));
    margin-top: 22px;
  }

  .who-services-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .who-service-card {
    position: relative;
    min-height: 166px;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 20px 24px 20px 18px;
    border-radius: 20px;
  }

  .who-service-card > img {
    width: 72px;
    height: 72px;
  }

  .who-service-card h2 {
    font-size: clamp(1.15rem, 3vw, 1.55rem);
  }

  .who-service-card p {
    max-width: 280px;
    margin-top: 12px;
    font-size: clamp(0.92rem, 2.3vw, 1.15rem);
    line-height: 1.45;
  }

  .who-card-arrow {
    position: absolute;
    right: 22px;
    bottom: 18px;
    display: block;
    color: var(--who-orange);
    font-size: 2rem;
    line-height: 1;
  }

  .who-benefits {
    width: calc(100% - clamp(34px, 6vw, 62px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
    margin-bottom: 34px;
    padding: 24px 8px;
    border-radius: 20px;
  }

  .who-benefit {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
    text-align: center;
  }

  .who-benefit img {
    width: clamp(62px, 10vw, 82px);
    height: clamp(62px, 10vw, 82px);
  }

  .who-benefit h2 {
    font-size: clamp(0.98rem, 2.45vw, 1.28rem);
  }

  .who-benefit p {
    margin-top: 9px;
    font-size: clamp(0.82rem, 2.1vw, 1.03rem);
  }
}

/* =========================================================
   TELÉFONOS
========================================================= */

@media (max-width: 620px) {
  .who-copy {
    padding: 34px 22px 20px;
  }

  .who-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .who-mobile-subtitle {
    font-size: clamp(1rem, 4.8vw, 1.28rem);
  }

  .who-visual {
    width: calc(100% - 30px);
    aspect-ratio: 1.34;
    border-radius: 18px;
  }

  .who-professional-card {
    width: clamp(72px, 23vw, 94px);
  }

  /* Fila 1 · 2 tarjetas */
  .card-agent {
    top: 3%;
    left: 23%;
  }

  .card-architect {
    top: 3%;
    right: 6%;
  }

  /* Fila 2 · 3 tarjetas */
  .card-engineer {
    top: 35%;
    left: 2%;
  }

  .card-maintenance {
    top: 36%;
    left: 37%;
  }

  .card-finishes {
    top: 35%;
    right: 2%;
  }

  /* Fila 3 · 2 tarjetas */
  .card-gardener {
    bottom: 3%;
    left: 16%;
  }

  .card-interiors {
    display: block;
    bottom: 3%;
    right: 14%;
  }

  .who-services {
    width: calc(100% - 30px);
  }

  .who-services-mobile {
    gap: 12px;
  }

  .who-service-card {
    min-height: 132px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 9px;
    padding: 14px 11px;
    border-radius: 15px;
  }

  .who-service-card > img {
    width: 48px;
    height: 48px;
  }

  .who-service-card h2 {
    font-size: 0.92rem;
  }

  .who-service-card p {
    margin-top: 7px;
    font-size: 0.73rem;
  }

  .who-card-arrow {
    right: 10px;
    bottom: 9px;
    font-size: 1.45rem;
  }

  .who-benefits {
    width: calc(100% - 30px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
  }

  .who-benefit {
    min-height: 180px;
    padding: 18px 14px;
    border: 0 !important;
  }

  .who-benefit:nth-child(2n) {
    border-left: 1px solid #d7dce4 !important;
  }

  .who-benefit:nth-child(n + 3) {
    border-top: 1px solid #d7dce4 !important;
  }

  .who-benefit img {
    width: 58px;
    height: 58px;
  }

  .who-benefit h2 {
    font-size: 0.9rem;
  }

  .who-benefit p {
    font-size: 0.72rem;
  }
}

@media (max-width: 390px) {
  .who-title {
    font-size: 1.95rem;
  }

  .who-professional-card {
    width: 72px;
  }

  .who-service-card {
    min-height: 132px;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .who-service-card > img {
    width: 48px;
    height: 48px;
  }

  .who-service-card h2 {
    font-size: 0.82rem;
  }

  .who-service-card p {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .who-professional-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .who-connectors path {
    animation: none !important;
  }
}

/* =========================================================
   AJUSTE DESKTOP FINAL · QUÉ SOMOS
   - Tarjetas profesionales +10% y más centradas
   - Copy principal mejor balanceado / párrafos justificados
   - Tarjetas del ecosistema más compactas y con icono solapado
   - No afecta móvil (<= 900px)
========================================================= */

@media (min-width: 901px) {

  /* ---------- COPY PRINCIPAL ---------- */

  .who-copy {
    padding-right: clamp(34px, 3.6vw, 64px);
  }

  .who-title {
    width: 100%;
    max-width: 660px;
    text-wrap: balance;
  }

  .who-paragraph {
    width: 100%;
    max-width: 660px;
    text-align: justify;
    text-justify: inter-word;
  }

  .who-highlight {
    width: 100%;
    max-width: 650px;
    text-wrap: balance;
  }

  /* ---------- TARJETAS PROFESIONALES · 2–3–2 ---------- */

  .who-professional-card {
    width: clamp(182px, 14.7vw, 258px);
  }

  /* Fila 1 */
  .card-agent {
    top: 4%;
    left: 31%;
  }

  .card-architect {
    top: 4%;
    right: 14%;
  }

  /* Fila 2 */
  .card-engineer {
    top: 34%;
    left: 11%;
  }

  .card-maintenance {
    top: 35%;
    left: 40%;
  }

  .card-finishes {
    top: 34%;
    right: 10%;
  }

  /* Fila 3 */
  .card-gardener {
    bottom: 6%;
    left: 22%;
  }

  .card-interiors {
    bottom: 6%;
    right: 20%;
  }

  /* ---------- TARJETAS DEL ECOSISTEMA ---------- */

  .who-services-desktop {
    gap: 14px;
  }

  .who-services-desktop .who-service-card {
    position: relative;

    min-height: 146px;

    display: block;

    padding:
      18px
      14px
      16px
      42px;

    overflow: visible;
  }

  .who-services-desktop .who-service-card > img {
    position: absolute;
    top: 18px;
    left: -18px;
    z-index: 2;

    width: 54px;
    height: 54px;

    object-fit: contain;
  }

  .who-services-desktop .who-service-card h2 {
    width: 100%;
    min-height: 38px;

    margin: 0;

    color: var(--who-navy);

    font-size: clamp(0.88rem, 0.88vw, 1.02rem);
    font-weight: 820;
    line-height: 1.12;

    text-wrap: balance;
  }

  .who-services-desktop .who-service-card p {
    width: 100%;

    margin: 9px 0 0;

    color: #263655;

    font-size: clamp(0.72rem, 0.72vw, 0.82rem);
    line-height: 1.34;

    text-align: left;
  }

  .who-services-desktop .who-service-rule {
    width: 34px;
    height: 2px;

    margin-top: 14px;
  }
}

/* Desktop compacto */
@media (min-width: 901px) and (max-width: 1360px) {

  .who-professional-card {
    width: clamp(160px, 14vw, 214px);
  }

  .card-agent {
    left: 29%;
  }

  .card-architect {
    right: 11%;
  }

  .card-engineer {
    left: 8%;
  }

  .card-maintenance {
    left: 39%;
  }

  .card-finishes {
    right: 7%;
  }

  .card-gardener {
    left: 18%;
  }

  .card-interiors {
    right: 16%;
  }

  .who-services-desktop .who-service-card {
    min-height: 138px;
    padding: 16px 11px 14px 38px;
  }

  .who-services-desktop .who-service-card > img {
    top: 16px;
    left: -15px;

    width: 48px;
    height: 48px;
  }

  .who-services-desktop .who-service-card h2 {
    min-height: 36px;
    font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  }

  .who-services-desktop .who-service-card p {
    margin-top: 7px;
    font-size: clamp(0.68rem, 0.72vw, 0.78rem);
    line-height: 1.3;
  }
}


/* =========================================================
   SECCIÓN 03 · POR QUÉ EXISTE MITEPUY
   Integración aislada desde por-que-existe-preview
========================================================= */

.why-section {
  --why-navy: #061a49;
  --why-blue: #075fe8;
  --why-orange: #ff6b00;
  --why-green: #00bd3d;
  --why-red: #f10d14;
  --why-text: #071843;
  --why-muted: #263655;
  --why-border: #e5eaf1;
  --why-shadow: 0 13px 32px rgba(10, 33, 67, 0.09);
  width: 100%;
  padding: 42px 42px 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(71, 158, 255, 0.035), transparent 24%),
    #fff;
}

/* =========================================================
   DESKTOP · COMPOSICIÓN GENERAL
========================================================= */

.why-layout {
  width: min(100%, 1770px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(430px, 1fr) 80px minmax(480px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.why-intro {
  min-width: 0;
  padding: 17px 14px 10px 0;
}

.why-eyebrow {
  margin: 0 0 20px;
  color: var(--why-orange);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.why-title {
  margin: 0;
  max-width: 520px;
  color: var(--why-navy);
  font-size: clamp(2.15rem, 2.3vw, 3.1rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.why-title > span {
  display: block;
}

.why-title-line {
  margin-top: 8px;
}

.why-title-line strong {
  color: var(--why-orange);
}

.why-intro-body {
  max-width: 500px;
  margin: 30px 0 0;
  color: #172747;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.58;
  text-align: justify;
  text-justify: inter-word;
}

.why-intro-closing {
  margin: 28px 0 0;
  font-size: clamp(1.02rem, 1.05vw, 1.18rem);
  font-weight: 750;
  line-height: 1.4;
}

.why-intro-closing strong {
  color: var(--why-orange);
}

.why-quote {
  position: relative;
  max-width: 500px;
  margin: 94px 0 0;
  padding: 48px 34px 42px 58px;
  border: 1px solid #e8ecf2;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--why-shadow);
}

.why-quote-mark {
  position: absolute;
  top: 18px;
  left: 22px;
  color: var(--why-orange);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
}

.why-quote p {
  margin: 0;
  color: var(--why-navy);
  font-size: clamp(1rem, 1.04vw, 1.15rem);
  font-weight: 680;
  line-height: 1.55;
}

.why-whatsapp {
  color: var(--why-green);
}

.why-brand-orange {
  color: var(--why-orange);
}

/* =========================================================
   PANELS · ANTES / CON MITEPUY
========================================================= */

.why-panel {
  position: relative;
  min-width: 0;
  padding: 46px 18px 18px;
  border-radius: 20px;
  overflow: hidden;
}

.why-panel-before {
  background: linear-gradient(180deg, #f6f6f6 0%, #f4f4f4 100%);
}

.why-panel-after {
  background: linear-gradient(180deg, #edf7ff 0%, #edf6ff 100%);
}

.why-panel-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 122px;
  padding: 7px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.why-panel-badge-before {
  background: linear-gradient(180deg, #5a5a5a, #2c2c2c);
}

.why-panel-badge-after {
  background: var(--why-navy);
}

.why-panel-title {
  max-width: 90%;
  margin: 13px auto 22px;
  color: var(--why-navy);
  font-size: clamp(1.38rem, 1.45vw, 1.7rem);
  font-weight: 850;
  line-height: 1.18;
  text-align: center;
  text-wrap: balance;
}

.why-panel-list {
  display: grid;
  gap: 10px;
}

.why-row {
  position: relative;
  min-height: 130px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 14px;
}

.why-row::before {
  content: "";
  position: absolute;
  left: 40px;
  top: calc(50% + 34px);
  bottom: -16px;
  border-left: 1px dashed #c7ced9;
}

.why-row:last-child::before {
  display: none;
}

.why-panel-after .why-row::before {
  border-color: #86bfff;
}

.why-row-icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.why-row-copy {
  min-width: 0;
}

.why-row-copy h3 {
  margin: 0;
  color: var(--why-navy);
  font-size: clamp(0.96rem, 1vw, 1.14rem);
  font-weight: 850;
  line-height: 1.2;
}

.why-row-copy p {
  margin: 8px 0 0;
  color: #1f3155;
  font-size: clamp(0.76rem, 0.79vw, 0.9rem);
  line-height: 1.42;
}

.why-row-media {
  width: 100%;
  max-height: 126px;
  object-fit: contain;
  object-position: center;
  justify-self: stretch;
  filter: drop-shadow(0 7px 10px rgba(14, 36, 72, 0.11));
}

.why-transition {
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 4;
}

.why-transition img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

/* =========================================================
   BRAND STRIP
========================================================= */

.why-brand-strip {
  width: min(100%, 1770px);
  min-height: 103px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 76px 1.1fr 1.3fr;
  align-items: center;
  gap: 22px;
  padding: 16px 32px;
  border: 1px solid #f6eadf;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff9f2, #fffaf5);
  box-shadow: 0 8px 20px rgba(85, 47, 10, 0.04);
}

.why-brand-symbol {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
}

.why-brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-brand-headline {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  color: var(--why-navy);
  font-size: clamp(1.38rem, 1.7vw, 2rem);
  font-weight: 850;
  line-height: 1.2;
}

.why-brand-strip > p {
  margin: 0;
  color: #172747;
  font-size: clamp(0.88rem, 0.92vw, 1rem);
  line-height: 1.55;
}

/* =========================================================
   BENEFICIOS
========================================================= */

.why-benefits {
  width: min(100%, 1770px);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid #e6ebf1;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--why-shadow);
  overflow: hidden;
}

.why-benefit {
  position: relative;
  min-width: 0;
  min-height: 142px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.why-benefit + .why-benefit {
  border-left: 1px solid #dbe1e9;
}

.why-benefit-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
}

.why-benefit-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.why-benefit h3 {
  margin: 0;
  color: var(--why-navy);
  font-size: clamp(0.9rem, 0.95vw, 1.06rem);
  font-weight: 850;
  line-height: 1.25;
}

.why-benefit p {
  margin: 8px 0 0;
  color: #253758;
  font-size: clamp(0.74rem, 0.77vw, 0.87rem);
  line-height: 1.42;
}

/* =========================================================
   DESKTOP COMPACTO
========================================================= */

@media (max-width: 1450px) and (min-width: 901px) {
  .why-section {
    padding-inline: 28px;
  }

  .why-layout {
    grid-template-columns: minmax(310px, 0.78fr) minmax(390px, 1fr) 68px minmax(420px, 1.06fr);
    gap: 12px;
  }

  .why-intro {
    padding-right: 6px;
  }

  .why-quote {
    margin-top: 62px;
  }

  .why-row {
    min-height: 118px;
    grid-template-columns: 70px minmax(0, 1fr) 145px;
    gap: 10px;
  }

  .why-row-icon {
    width: 66px;
    height: 66px;
  }

  .why-row-media {
    max-height: 112px;
  }

  .why-transition img {
    width: 66px;
    height: 66px;
  }

  .why-benefit {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
    padding-inline: 14px;
  }

  .why-benefit-icon,
  .why-benefit-icon img {
    width: 54px;
    height: 54px;
  }
}

/* =========================================================
   MÓVIL / TABLET VERTICAL
========================================================= */

@media (max-width: 900px) {
  .why-section {
    padding: 28px clamp(18px, 5vw, 38px) 28px;
  }

  .why-layout {
    display: block;
    width: 100%;
  }

  .why-intro {
    padding: 0;
  }

  .why-eyebrow {
    margin-bottom: 15px;
    font-size: clamp(0.88rem, 3.4vw, 1.08rem);
  }

  .why-title {
    max-width: 720px;
    font-size: clamp(2rem, 7vw, 3.1rem);
    line-height: 1.03;
  }

  .why-intro-body {
    max-width: 720px;
    margin-top: 16px;
    font-size: clamp(0.96rem, 3.55vw, 1.18rem);
    line-height: 1.47;
    text-align: left;
  }

  .why-intro-closing {
    margin-top: 16px;
    font-size: clamp(1rem, 3.7vw, 1.22rem);
  }

  .why-quote {
    display: none;
  }

  .why-panel {
    margin-top: 22px;
    padding: 42px 18px 18px;
    border-radius: 18px;
  }

  .why-panel-title {
    max-width: 94%;
    margin-top: 4px;
    margin-bottom: 18px;
    font-size: clamp(1.18rem, 4.4vw, 1.55rem);
  }

  .why-row {
    min-height: 0;
    grid-template-columns: 68px minmax(0, 1fr) minmax(120px, 37%);
    gap: 10px;
    padding: 6px 0;
  }

  .why-row::before {
    left: 33px;
    top: 65px;
    bottom: -10px;
  }

  .why-row-icon {
    width: 64px;
    height: 64px;
  }

  .why-row-copy h3 {
    font-size: clamp(0.87rem, 3.15vw, 1.05rem);
  }

  .why-row-copy p {
    margin-top: 5px;
    font-size: clamp(0.7rem, 2.55vw, 0.86rem);
    line-height: 1.38;
  }

  .why-row-media {
    max-height: 112px;
  }

  .why-transition {
    width: 100%;
    display: grid;
    place-items: center;
    margin: -7px 0 -10px;
  }

  .why-transition img {
    width: 64px;
    height: 64px;
    transform: rotate(90deg);
  }

  .why-panel-after {
    margin-top: 0;
  }

  .why-brand-strip {
    width: 100%;
    min-height: 0;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    margin-top: 22px;
    padding: 16px 18px;
  }

  .why-brand-symbol {
    width: 58px;
    height: 58px;
  }

  .why-brand-symbol img {
    width: 100%;
    height: 100%;
  }

  .why-brand-headline {
    font-size: clamp(1.18rem, 4.6vw, 1.6rem);
  }

  .why-brand-strip > p {
    grid-column: 1 / -1;
    font-size: clamp(0.84rem, 3vw, 1rem);
  }

  .why-benefits {
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 14px;
  }

  .why-benefit {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 8px;
    text-align: center;
  }

  .why-benefit-icon,
  .why-benefit-icon img {
    width: 48px;
    height: 48px;
  }

  .why-benefit h3 {
    font-size: clamp(0.72rem, 2.4vw, 0.9rem);
  }

  .why-benefit p {
    font-size: clamp(0.62rem, 2.05vw, 0.78rem);
  }
}

/* =========================================================
   TELÉFONOS
========================================================= */

@media (max-width: 560px) {
  .why-section {
    padding-inline: 14px;
  }

  .why-title {
    font-size: clamp(1.9rem, 8.8vw, 2.6rem);
  }

  .why-panel {
    padding-inline: 12px;
  }

  .why-row {
    grid-template-columns: 56px minmax(0, 1fr) 112px;
    gap: 7px;
  }

  .why-row::before {
    left: 27px;
    top: 55px;
  }

  .why-row-icon {
    width: 52px;
    height: 52px;
  }

  .why-row-copy h3 {
    font-size: clamp(0.78rem, 3vw, 0.92rem);
  }

  .why-row-copy p {
    font-size: clamp(0.63rem, 2.35vw, 0.76rem);
  }

  .why-row-media {
    max-height: 92px;
  }

  .why-panel-badge {
    font-size: 0.8rem;
    min-width: 102px;
  }

  .why-brand-strip {
    grid-template-columns: 52px minmax(0, 1fr);
    padding-inline: 12px;
  }

  .why-brand-symbol {
    width: 48px;
    height: 48px;
  }

  .why-benefits {
    grid-template-columns: repeat(5, minmax(105px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .why-benefit {
    min-width: 105px;
    scroll-snap-align: start;
  }
}

@media (max-width: 390px) {
  .why-row {
    grid-template-columns: 48px minmax(0, 1fr) 96px;
  }

  .why-row-icon {
    width: 46px;
    height: 46px;
  }

  .why-row-media {
    max-height: 84px;
  }
}

/* =========================================================
   SECCIÓN 04 · QUÉ HACEMOS
========================================================= */

.what-section {
  --what-navy: #061a49;
  --what-navy-deep: #03172f;
  --what-orange: #ff6500;
  --what-text: #071843;
  --what-muted: #253655;
  --what-border: #e5eaf1;
  --what-shadow: 0 12px 28px rgba(10, 34, 70, 0.07);
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 101, 0, 0.025), transparent 25%),
    #fff;
}

.what-shell {
  width: min(calc(100% - 72px), 1880px);
  margin-inline: auto;
  padding: 28px 0 26px;
}

/* =========================================================
   CABECERA
========================================================= */

.what-header {
  display: grid;
  grid-template-columns: 1.33fr 0.92fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: end;
}

.what-eyebrow {
  margin: 0 0 8px;
  color: var(--what-orange);
  font-size: clamp(0.86rem, 1.05vw, 1.12rem);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.what-title {
  max-width: 880px;
  margin: 0;
  color: var(--what-navy);
  font-size: clamp(2rem, 2.45vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.what-intro {
  max-width: 650px;
  margin: 0 0 5px;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--what-orange);
  color: #172746;
  font-size: clamp(0.96rem, 1.05vw, 1.16rem);
  line-height: 1.55;
}

/* =========================================================
   PROCESO · DESKTOP
========================================================= */

.what-process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(205px, .88fr) minmax(205px, .88fr) minmax(420px, 1.85fr) minmax(215px, .9fr) minmax(215px, .94fr);
  gap: 28px;
  align-items: start;
  margin-top: 48px;
}

.what-process-line {
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  border-top: 3px dotted var(--what-orange);
  z-index: 0;
}

.what-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 76px;
}

.what-step-icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 78px;
  height: 78px;
  object-fit: contain;
  transform: translateX(-50%);
}

.what-step-card {
  min-height: 355px;
  padding: 18px 16px 20px;
  border: 1px solid var(--what-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--what-shadow);
}

.what-step-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 54px;
}

.what-step-number {
  color: var(--what-orange);
  font-size: clamp(1.8rem, 2.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
}

.what-step-card h2,
.what-visibility-copy h2 {
  margin: 0;
  color: var(--what-navy);
  font-size: clamp(0.9rem, 0.92vw, 1.06rem);
  font-weight: 850;
  line-height: 1.22;
}

.what-step-photo {
  width: 100%;
  aspect-ratio: 1.48;
  margin-top: 10px;
  border-radius: 7px;
  object-fit: cover;
}

.what-step-card > p,
.what-visibility-copy p {
  margin: 12px 0 0;
  color: #253655;
  font-size: clamp(0.75rem, 0.76vw, 0.87rem);
  line-height: 1.45;
}

.what-step-visibility {
  padding-top: 38px;
}

.what-step-visibility .what-step-icon {
  top: -38px;
}

.what-visibility-desktop {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.what-visibility-device {
  width: 100%;
  max-height: 285px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(8, 30, 65, 0.11));
}

.what-visibility-copy {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-top: 3px;
  padding: 4px 44px 14px;
  border: 1px solid var(--what-border);
  border-top: 0;
  border-radius: 0 0 13px 13px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(10, 34, 70, 0.04);
}

.what-visibility-copy .what-step-number {
  font-size: 2.2rem;
}

.what-visibility-mobile { display: none; }

/* =========================================================
   DESCUBRIMIENTO
========================================================= */

.what-discovery {
  display: grid;
  grid-template-columns: minmax(370px, 1.08fr) minmax(690px, 2fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid var(--what-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 34, 70, 0.04);
}

.what-discovery-copy {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.what-search-icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.what-discovery h2 {
  margin: 0;
  color: var(--what-navy);
  font-size: clamp(1rem, 1.12vw, 1.28rem);
  font-weight: 850;
}

.what-discovery p {
  margin: 7px 0 0;
  color: #263655;
  font-size: clamp(0.77rem, 0.82vw, 0.92rem);
  line-height: 1.48;
}

.what-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.what-category {
  min-height: 104px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid #d9e1ec;
  border-radius: 11px;
  background: #fff;
}

.what-category img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.what-category h3 {
  margin: 0;
  color: var(--what-navy);
  font-size: clamp(0.72rem, 0.75vw, 0.86rem);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

/* =========================================================
   BENEFICIOS
========================================================= */

.what-benefits {
  margin-top: 16px;
  border: 1px solid var(--what-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--what-shadow);
  overflow: hidden;
}

.what-benefit-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.what-benefit {
  min-width: 0;
  min-height: 95px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 22px;
}

.what-benefit + .what-benefit {
  border-left: 1px solid #dce2ea;
}

.what-benefit img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.what-benefit h3 {
  margin: 0;
  color: var(--what-navy);
  font-size: clamp(0.78rem, 0.83vw, 0.95rem);
  font-weight: 850;
  line-height: 1.24;
}

.what-benefit p {
  margin: 5px 0 0;
  color: #263655;
  font-size: clamp(0.68rem, 0.7vw, 0.8rem);
  line-height: 1.35;
}

.what-carousel-controls { display: none; }

/* =========================================================
   CIERRE
========================================================= */

.what-closing {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 7px;
  margin-top: 22px;
  color: var(--what-navy);
  font-size: clamp(1rem, 1.15vw, 1.3rem);
  text-align: center;
}

.what-closing strong {
  color: var(--what-orange);
}

/* =========================================================
   DESKTOP COMPACTO
========================================================= */

@media (max-width: 1450px) and (min-width: 901px) {
  .what-shell { width: calc(100% - 48px); }

  .what-process {
    grid-template-columns: minmax(180px, .9fr) minmax(180px, .9fr) minmax(360px, 1.7fr) minmax(185px, .9fr) minmax(185px, .94fr);
    gap: 18px;
  }

  .what-step-card { min-height: 330px; }

  .what-step-icon {
    width: 70px;
    height: 70px;
  }

  .what-discovery {
    grid-template-columns: minmax(320px, .95fr) minmax(620px, 2fr);
  }

  .what-category {
    grid-template-columns: 44px minmax(0,1fr);
    gap: 8px;
    padding-inline: 10px;
  }

  .what-category img {
    width: 42px;
    height: 42px;
  }

  .what-benefit {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
    padding-inline: 14px;
  }

  .what-benefit img {
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   MÓVIL / TABLET VERTICAL
========================================================= */

@media (max-width: 900px) {
  .what-shell {
    width: min(calc(100% - 32px), 760px);
    padding: 24px 0 30px;
  }

  .what-header {
    display: block;
  }

  .what-eyebrow {
    font-size: clamp(0.9rem, 3vw, 1.12rem);
  }

  .what-title {
    max-width: 680px;
    font-size: clamp(2rem, 6.8vw, 3.2rem);
  }

  .what-intro {
    max-width: 680px;
    margin-top: 24px;
    padding-left: 16px;
    font-size: clamp(1rem, 3.25vw, 1.3rem);
  }

  .what-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .what-process-line {
    top: 34px;
    bottom: 34px;
    left: 45px;
    right: auto;
    width: 0;
    border-top: 0;
    border-left: 3px dotted var(--what-orange);
  }

  .what-step,
  .what-step-visibility {
    min-height: 0;
    padding: 0;
  }

  .what-step-icon,
  .what-step-visibility .what-step-icon {
    top: 20px;
    left: 16px;
    width: 70px;
    height: 70px;
    transform: none;
  }

  .what-step-card,
  .what-visibility-mobile {
    min-height: 0;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(170px, 31%);
    grid-template-areas:
      ". heading photo"
      ". text photo";
    column-gap: 15px;
    row-gap: 5px;
    align-items: center;
    padding: 18px 18px 18px 14px;
    border-radius: 17px;
  }

  .what-step-heading {
    grid-area: heading;
    min-height: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .what-step-number {
    font-size: clamp(1.8rem, 5.8vw, 2.35rem);
  }

  .what-step-card h2 {
    font-size: clamp(1rem, 3vw, 1.32rem);
  }

  .what-step-photo {
    grid-area: photo;
    width: 100%;
    aspect-ratio: 1.38;
    margin: 0;
    border-radius: 9px;
  }

  .what-step-card > p {
    grid-area: text;
    margin: 0;
    align-self: start;
    font-size: clamp(0.82rem, 2.55vw, 1.05rem);
  }

  .what-visibility-desktop { display: none; }
  .what-visibility-mobile { display: grid; }

  .what-discovery {
    display: block;
    margin-top: 28px;
    padding: 22px 16px 14px;
    border-radius: 18px;
  }

  .what-discovery-copy {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 14px;
    padding: 0 4px 16px;
  }

  .what-search-icon {
    width: 60px;
    height: 60px;
  }

  .what-discovery h2 {
    font-size: clamp(1.04rem, 3.2vw, 1.35rem);
  }

  .what-discovery p {
    font-size: clamp(0.82rem, 2.45vw, 1rem);
  }

  .what-categories {
    gap: 8px;
  }

  .what-category {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px 5px;
  }

  .what-category img {
    width: clamp(48px, 9vw, 62px);
    height: clamp(48px, 9vw, 62px);
  }

  .what-category h3 {
    font-size: clamp(0.68rem, 2.05vw, 0.9rem);
  }

  /* CARRUSEL SOLICITADO */
  .what-benefits {
    position: relative;
    margin-top: 16px;
    padding: 10px 10px 8px;
    overflow: hidden;
  }

  .what-benefit-track {
    display: flex;
    width: 100%;
    transition: transform 520ms cubic-bezier(.22,.75,.25,1);
    will-change: transform;
  }

  .what-benefit {
    flex: 0 0 100%;
    min-height: 118px;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 54px 16px 20px;
    border: 0 !important;
  }

  .what-benefit img {
    width: 58px;
    height: 58px;
  }

  .what-benefit h3 {
    font-size: clamp(0.96rem, 3vw, 1.18rem);
  }

  .what-benefit p {
    font-size: clamp(0.78rem, 2.45vw, 0.96rem);
  }

  .what-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 42px;
    margin-top: -3px;
  }

  .what-carousel-arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid #d9e1eb;
    border-radius: 50%;
    background: #fff;
    color: var(--what-navy);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
  }

  .what-carousel-dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .what-carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd4e1;
    cursor: pointer;
    transition: width 220ms ease, background 220ms ease;
  }

  .what-carousel-dot.is-active {
    width: 22px;
    background: var(--what-orange);
  }

  .what-closing {
    display: block;
    margin-top: 20px;
    font-size: clamp(1rem, 3.5vw, 1.28rem);
  }

  .what-closing strong {
    display: block;
    margin-top: 5px;
  }
}

/* =========================================================
   TELÉFONOS
========================================================= */

@media (max-width: 560px) {
  .what-shell {
    width: calc(100% - 24px);
  }

  .what-title {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .what-intro {
    font-size: clamp(0.96rem, 4.2vw, 1.15rem);
  }

  .what-process-line {
    left: 37px;
  }

  .what-step-icon,
  .what-step-visibility .what-step-icon {
    left: 8px;
    width: 58px;
    height: 58px;
  }

  .what-step-card,
  .what-visibility-mobile {
    grid-template-columns: 62px minmax(0, 1fr) minmax(116px, 31%);
    column-gap: 10px;
    padding: 12px 10px;
  }

  .what-step-heading {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 6px;
  }

  .what-step-number {
    font-size: 1.7rem;
  }

  .what-step-card h2 {
    font-size: clamp(0.86rem, 3.6vw, 1rem);
  }

  .what-step-card > p {
    font-size: clamp(0.7rem, 3vw, 0.82rem);
    line-height: 1.38;
  }

  .what-step-photo {
    min-height: 90px;
  }

  .what-discovery-copy {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .what-search-icon {
    width: 50px;
    height: 50px;
  }

  .what-categories {
    gap: 5px;
  }

  .what-category {
    min-height: 112px;
    padding-inline: 3px;
  }

  .what-category img {
    width: 44px;
    height: 44px;
  }

  .what-category h3 {
    font-size: clamp(0.56rem, 2.6vw, 0.72rem);
    line-height: 1.2;
  }

  .what-benefit {
    min-height: 110px;
    grid-template-columns: 56px minmax(0, 1fr);
    padding-left: 12px;
    padding-right: 42px;
  }

  .what-benefit img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 390px) {
  .what-step-card,
  .what-visibility-mobile {
    grid-template-columns: 54px minmax(0, 1fr) 102px;
    column-gap: 7px;
  }

  .what-step-icon,
  .what-step-visibility .what-step-icon {
    width: 50px;
    height: 50px;
  }

  .what-process-line {
    left: 33px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .what-benefit-track {
    transition: none !important;
  }
}

/* =========================================================
   STORYTELLING · RESPONSIVE
   Desktop = 3 escenas visibles · Mobile = 1 escena
========================================================= */

.what-story {
  width: 100%;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--what-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 101, 0, 0.045), transparent 25%),
    #fff;
  box-shadow: 0 12px 30px rgba(9, 32, 67, 0.06);
}

.what-story-header {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  grid-template-areas:
    "eyebrow intro"
    "title intro";
  gap: 5px 48px;
  align-items: end;
  margin-bottom: 20px;
}

.what-story-eyebrow {
  grid-area: eyebrow;
  margin: 0;
  color: var(--what-orange);
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  font-weight: 850;
  letter-spacing: 0.09em;
}

.what-story-title {
  grid-area: title;
  max-width: 760px;
  margin: 0;
  color: var(--what-navy);
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

.what-story-intro {
  grid-area: intro;
  max-width: 720px;
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid var(--what-orange);
  color: #263655;
  font-size: clamp(0.82rem, 0.86vw, 0.98rem);
  line-height: 1.48;
}

.what-story-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  touch-action: pan-y;
}

.what-story-track {
  display: flex;
  gap: 16px;
  width: 100%;
  transition: transform 620ms cubic-bezier(.22,.78,.24,1);
  will-change: transform;
}

.what-story-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}

.what-story-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  border-radius: 14px;
  background: var(--what-navy-deep);
}

.what-story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.what-story-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 14, 35, 0.01) 28%,
      rgba(2, 14, 35, 0.26) 53%,
      rgba(2, 14, 35, 0.94) 100%
    );
  pointer-events: none;
}

.what-story-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 19px 18px;
  color: #fff;
}

.what-story-step {
  width: fit-content;
  min-width: 36px;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 7px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 999px;
  background: rgba(4, 24, 58, .58);
  color: #ff8a35;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: .08em;
  backdrop-filter: blur(7px);
}

.what-story-copy h3 {
  max-width: 96%;
  margin: 0;
  color: #fff;
  font-size: clamp(0.94rem, 1.05vw, 1.22rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.16;
  text-shadow: 0 2px 8px rgba(0,0,0,.34);
}

.what-story-copy p {
  max-width: 96%;
  margin: 6px 0 0;
  color: rgba(255,255,255,.91);
  font-size: clamp(0.7rem, 0.72vw, 0.82rem);
  font-weight: 500;
  line-height: 1.38;
  text-shadow: 0 2px 7px rgba(0,0,0,.34);
}

.what-story-navigation {
  min-height: 48px;
  display: grid;
  grid-template-columns: 38px minmax(100px, 1fr) auto 38px;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.what-story-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  border: 1px solid #d9e1eb;
  border-radius: 50%;
  background: #fff;
  color: var(--what-navy);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.what-story-arrow:hover {
  border-color: #c1cad8;
  background: #f7f9fc;
}

.what-story-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e7ef;
}

.what-story-progress-fill {
  width: 30%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--what-orange);
  transition: width 500ms ease;
}

.what-story-counter {
  min-width: 82px;
  color: #778398;
  font-size: .76rem;
  white-space: nowrap;
  text-align: center;
}

.what-story-counter strong {
  color: var(--what-navy);
  font-size: .88rem;
}

.what-story-dots {
  display: none;
}

@media (max-width: 900px) {
  .what-story {
    margin-top: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .what-story-header {
    display: block;
    margin-bottom: 17px;
    padding: 0 4px;
  }

  .what-story-eyebrow {
    margin: 0 0 7px;
    font-size: clamp(0.78rem, 2.75vw, 0.98rem);
  }

  .what-story-title {
    max-width: 660px;
    font-size: clamp(1.55rem, 5.2vw, 2.3rem);
  }

  .what-story-intro {
    max-width: 670px;
    margin: 11px 0 0;
    padding: 0;
    border-left: 0;
    font-size: clamp(0.86rem, 2.75vw, 1.04rem);
  }

  .what-story-viewport {
    border: 1px solid var(--what-border);
    border-radius: 19px;
    background: var(--what-navy-deep);
    box-shadow: 0 15px 32px rgba(9, 32, 67, 0.12);
  }

  .what-story-track {
    gap: 0;
  }

  .what-story-slide {
    flex-basis: 100%;
  }

  .what-story-image-wrap {
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

  .what-story-copy {
    padding: 22px 22px 20px;
  }

  .what-story-copy h3 {
    max-width: 92%;
    font-size: clamp(1.12rem, 4.2vw, 1.55rem);
  }

  .what-story-copy p {
    max-width: 92%;
    font-size: clamp(0.82rem, 2.8vw, 1rem);
  }

  .what-story-navigation {
    grid-template-columns: 38px minmax(70px, 1fr) auto 38px;
    gap: 11px;
    padding: 0 4px;
  }

  .what-story-counter {
    min-width: 52px;
  }

  .what-story-dots {
    min-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
  }

  .what-story-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c8d1de;
    cursor: pointer;
    transition:
      width 220ms ease,
      background-color 220ms ease;
  }

  .what-story-dot.is-active {
    width: 20px;
    background: var(--what-orange);
  }
}

@media (max-width: 560px) {
  .what-story-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .what-story-copy {
    padding: 18px 16px 16px;
  }

  .what-story-copy h3,
  .what-story-copy p {
    max-width: 96%;
  }

  .what-story-navigation {
    grid-template-columns: 36px minmax(55px, 1fr) auto 36px;
    gap: 8px;
  }

  .what-story-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .what-story-track,
  .what-story-progress-fill {
    transition: none !important;
  }
}

/* =========================================================
   SECCIÓN 05 · CÓMO FUNCIONA
========================================================= */

.how-section {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --stroke: #d9e2f0;
  --text: #0d1b4c;
  --muted: #47516d;
  --orange: #ff6a13;
  --image-frame-bg: #f7f3ed;
  --image-frame-border: #e2dbd1;
  --shadow: 0 24px 60px rgba(13, 27, 76, 0.08);

  max-width: 1520px;
  margin: 0 auto;
}

.how-shell {
  background: var(--surface);

  border:
    1px solid
    rgba(16, 37, 86, 0.08);

  border-radius: 36px;

  box-shadow: var(--shadow);

  overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.how-hero {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(420px, 0.95fr);

  gap: 36px;

  padding:
    44px
    48px
    24px;

  align-items: center;
}

.how-eyebrow {
  margin:
    0
    0
    10px;

  font-size: 1.05rem;
  font-weight: 800;

  letter-spacing: 0.12em;

  color: var(--orange);
}

.how-title {
  margin: 0;

  max-width: 780px;

  font-size:
    clamp(
      2.35rem,
      4vw,
      4rem
    );

  line-height: 1.04;

  letter-spacing: -0.04em;
}

.how-intro {
  margin:
    24px
    0
    0;

  max-width: 720px;

  font-size: 1.45rem;

  line-height: 1.6;

  color: var(--muted);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.how-visual {
  position: relative;

  min-height: 340px;

  display: flex;

  align-items: center;
  justify-content: flex-end;
}

.how-hero-visual {
  position: relative;

  width: 100%;
  max-width: 640px;

  margin-left: auto;

  border-radius: 28px;

  overflow: hidden;
}

.how-hero-image {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.how-dots {
  position: absolute;

  right: 0;
  top: 40px;

  width: 120px;
  height: 120px;

  opacity: 0.6;

  background-image:
    radial-gradient(
      circle,
      rgba(255, 106, 19, 0.5) 1.5px,
      transparent 1.6px
    );

  background-size:
    14px
    14px;

  pointer-events: none;
}


/* =========================================================
   PROCESO
========================================================= */

.how-process {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(
      5,
      minmax(0, 1fr)
    );

  gap: 18px;

  padding:
    8px
    24px
    24px;
}

.how-process-line {
  position: absolute;

  left: 86px;
  right: 86px;
  top: 42px;

  height: 0;

  border-top:
    3px dotted
    rgba(255, 106, 19, 0.9);
}

.how-step {
  position: relative;
}

.how-step:not(:last-child)::after {
  content: "›";

  position: absolute;

  top: 78px;
  right: -6px;

  transform:
    translateX(50%);

  color: #97a4c3;

  font-size: 2.25rem;
  font-weight: 300;

  z-index: 2;
}


/* =========================================================
   NÚMEROS + ICONOS
========================================================= */

.how-step-marker {
  position: relative;

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 10px;

  margin-bottom: 14px;

  z-index: 1;
}

.how-step-number {
  display: grid;

  place-items: center;

  width: 54px;
  height: 54px;

  border-radius: 999px;

  font-size: 1.7rem;
  font-weight: 800;

  color: #fff;

  box-shadow:
    0
    10px
    18px
    rgba(0, 0, 0, 0.12);
}


/* Los iconos ya incluyen su composición visual */

.how-step-icon-wrap {
  display: grid;
  place-items: center;

  width: 96px;
  height: 96px;

  background: transparent;

  border: 0;

  border-radius: 0;

  box-shadow: none;
}

.how-step-icon {
  display: block;

  width: 90px;
  height: 90px;

  object-fit: contain;

  background: transparent;
}


/* =========================================================
   TARJETAS
========================================================= */

.how-step-card {
  height: 590px;

  padding:
    20px
    18px
    8px;

  display: flex;
  flex-direction: column;

  background: var(--surface);

  border:
    1px solid
    var(--stroke);

  border-radius: 22px;

  box-shadow:
    0
    12px
    28px
    rgba(13, 27, 76, 0.06);

  overflow: hidden;
}


/* =========================================================
   TÍTULOS
========================================================= */

.how-step-title {
  margin: 0;

  min-height: 64px;

  display: flex;
  align-items: flex-start;

  font-size: 1.32rem;
  font-weight: 800;

  line-height: 1.2;

  text-align: left;

  text-wrap: balance;
}


/* =========================================================
   DESCRIPCIONES
========================================================= */

.how-step-text {
  margin:
    8px
    0
    12px;

  min-height: 166px;

  font-size: 1rem;

  line-height: 1.56;

  color: var(--muted);

  text-align: justify;
  text-justify: inter-word;

  hyphens: auto;
}


/* =========================================================
   ÁREA DE IMAGEN
========================================================= */

.how-mini-surface {
  border: 0;
  background: transparent;
  box-shadow: none;
}


/*
  Todas las imágenes utilizan exactamente
  la misma zona visual.

  El marco queda muy cerca de los bordes
  laterales de la tarjeta.
*/

.how-mini-photo {
  width:
    calc(
      100% + 24px
    );

  height: 292px;
  flex: 0 0 292px;

  margin-top: auto;

  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 0;

  padding: 6px;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    var(--image-frame-bg);

  border:
    1px solid
    var(--image-frame-border);

  border-radius: 16px;

  box-shadow:
    0
    5px
    15px
    rgba(13, 27, 76, 0.035);

  overflow: hidden;
}


/* =========================================================
   IMÁGENES GENERALES
========================================================= */

.how-mini-photo img {
  display: block;

  width: 100%;
  height: 100%;

  margin: 0;

  border: 0;

  border-radius: 11px;

  box-shadow: none;

  background: transparent;
}


/* =========================================================
   IMÁGENES 1, 2 Y 3
   Interfaces gráficas
========================================================= */

.how-step[data-step="1"]
.how-mini-photo img,

.how-step[data-step="2"]
.how-mini-photo img,

.how-step[data-step="3"]
.how-mini-photo img {
  object-fit: contain;

  object-position:
    center
    center;
}


/* =========================================================
   IMÁGENES 4 Y 5
   Fotografías
========================================================= */

.how-step[data-step="4"]
.how-mini-photo img,

.how-step[data-step="5"]
.how-mini-photo img {
  object-fit: cover;

  object-position:
    center
    center;
}


/* =========================================================
   COLORES
========================================================= */

.how-step[data-step="1"] {
  color: #0b255d;
}

.how-step[data-step="1"]
.how-step-number {
  background: #071b4e;
}


.how-step[data-step="2"] {
  color: #ff7a13;
}

.how-step[data-step="2"]
.how-step-number {
  background: #ff7a13;
}


.how-step[data-step="3"] {
  color: #2d69a6;
}

.how-step[data-step="3"]
.how-step-number {
  background: #2d69a6;
}


.how-step[data-step="4"] {
  color: #1d8b43;
}

.how-step[data-step="4"]
.how-step-number {
  background: #1d8b43;
}


.how-step[data-step="5"] {
  color: #7b52c3;
}

.how-step[data-step="5"]
.how-step-number {
  background: #7b52c3;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1240px) {

  .how-hero {
    grid-template-columns: 1fr;
  }

  .how-visual {
    min-height: 380px;
  }

  .how-process {
    grid-template-columns:
      repeat(
        3,
        minmax(0, 1fr)
      );
  }

  .how-process-line,
  .how-step:not(:last-child)::after {
    display: none;
  }

  .how-step-card {
    height: 590px;
  }

  .how-step-title {
    min-height: 64px;
  }

  .how-step-text {
    min-height: 166px;
  }

  .how-mini-photo {
    height: 292px;
    flex-basis: 292px;
  }

  .how-footer {
    grid-template-columns: 1fr;
  }

  .how-footer-benefit {
    border-top:
      1px solid
      var(--stroke);
  }

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


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 900px) {

  .how-preview-page {
    padding: 14px;
  }

  .how-shell {
    border-radius: 26px;
  }


  /* HERO */

  .how-hero {
    gap: 24px;

    padding:
      26px
      22px
      16px;
  }

  .how-title {
    font-size:
      clamp(
        2.1rem,
        7vw,
        3rem
      );
  }

  .how-intro {
    margin-top: 18px;

    font-size: 1.08rem;
  }

  .how-visual {
    min-height: auto;
  }

  .how-hero-visual {
    max-width: 100%;
  }

  .how-dots {
    top: 16px;

    width: 96px;
    height: 96px;
  }


  /* PROCESO */

  .how-process {
    grid-template-columns: 1fr;

    gap: 14px;

    padding:
      10px
      18px
      18px;
  }

  .how-step {
    display: grid;

    grid-template-columns:
      72px
      1fr;

    gap: 14px;

    align-items: start;
  }

  .how-step-marker {
    margin-bottom: 0;

    gap: 8px;
  }

  .how-step-number {
    width: 42px;
    height: 42px;

    font-size: 1.15rem;
  }


  /* ICONOS */

  .how-step-icon-wrap {
    width: 62px;
    height: 62px;
  }

  .how-step-icon {
    width: 60px;
    height: 60px;
  }


  /* TARJETAS */

  .how-step-card {
    height: auto;

    min-height: 0;

    padding:
      16px
      14px
      8px;
  }

  .how-step-title {
    min-height: 0;

    font-size: 1.15rem;
  }

  .how-step-text {
    min-height: 0;

    margin:
      10px
      0
      12px;

    font-size: 0.96rem;

    text-align: left;

    hyphens: none;
  }


  /* IMÁGENES */

  .how-mini-photo {
    width:
      calc(
        100% + 16px
      );

    height: 220px;
    flex-basis: 220px;

    margin:
      10px
      -8px
      0;

    padding: 5px;

    border-radius: 14px;
  }

  .how-mini-photo img {
    border-radius: 9px;
  }


  /* Interfaces */

  .how-step[data-step="1"]
  .how-mini-photo img,

  .how-step[data-step="2"]
  .how-mini-photo img,

  .how-step[data-step="3"]
  .how-mini-photo img {
    object-fit: contain;
  }


  /* Fotografías */

  .how-step[data-step="4"]
  .how-mini-photo img,

  .how-step[data-step="5"]
  .how-mini-photo img {
    object-fit: cover;
  }


  /* FOOTER */

  .how-footer {
    margin:
      6px
      18px
      20px;
  }

  .how-footer-lead {
    grid-template-columns:
      64px
      1fr;

    gap: 14px;

    padding: 18px;
  }

  .how-footer-lead-icon {
    width: 56px;
    height: 56px;
  }

  .how-footer-lead-icon img {
    width: 30px;
    height: 30px;
  }

  .how-footer-benefits {
    grid-template-columns: 1fr;
  }

  .how-footer-benefit {
    border-left: 0;
  }
}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 560px) {

  .how-preview-page {
    padding: 8px;
  }

  .how-hero {
    padding:
      22px
      16px
      14px;
  }

  .how-process {
    padding:
      8px
      12px
      16px;
  }

  .how-step {
    grid-template-columns:
      58px
      minmax(0, 1fr);

    gap: 10px;
  }

  .how-step-number {
    width: 36px;
    height: 36px;

    font-size: 1rem;
  }

  .how-step-icon-wrap {
    width: 52px;
    height: 52px;
  }

  .how-step-icon {
    width: 50px;
    height: 50px;
  }

  .how-step-card {
    padding:
      15px
      12px
      7px;
  }

  .how-mini-photo {
    width:
      calc(
        100% + 12px
      );

    height: 200px;
    flex-basis: 200px;

    margin-left: -6px;
    margin-right: -6px;

    padding: 4px;
  }

  .how-footer {
    margin:
      4px
      12px
      16px;
  }
}

/* =========================================================
   INTEGRACIÓN · CÓMO FUNCIONA
========================================================= */

.how-title-line {
  display: block;
}

.how-title-accent {
  color: var(--orange);
}

.what-story-section .what-shell {
  padding-top: 0;
}

.what-story-section .what-story {
  margin-top: 0;
}

/* =========================================================
   CÓMO FUNCIONA · TÍTULO EN 3 LÍNEAS EXACTAS (DESKTOP)
========================================================= */
@media (min-width: 901px) {
  .how-hero {
    grid-template-columns: minmax(650px, 1.18fr) minmax(390px, 0.82fr);
  }

  .how-title {
    max-width: none;
    font-size: clamp(2.35rem, 3.25vw, 3.45rem);
    line-height: 1.06;
  }

  .how-title-line {
    display: block;
    white-space: nowrap;
  }
}


/* =========================================================
   CÓMO FUNCIONA · CARRUSEL SOLO MÓVIL
   Desktop conserva exactamente la composición de 5 columnas.
========================================================= */

.how-mobile-carousel-controls {
  display: none;
}

@media (max-width: 900px) {

  .how-process {
    display: flex;
    grid-template-columns: none;

    gap: 0;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    padding:
      10px
      18px
      8px;
  }

  .how-process::-webkit-scrollbar {
    display: none;
  }

  .how-process-line {
    display: none;
  }

  .how-step {
    flex:
      0
      0
      100%;

    min-width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .how-step:not(:last-child)::after {
    display: none;
  }

  .how-mobile-carousel-controls {
    display: grid;

    grid-template-columns:
      38px
      minmax(80px, 1fr)
      auto
      38px;

    align-items: center;

    gap: 10px;

    margin:
      2px
      18px
      20px;

    padding:
      0
      2px;
  }

  .how-mobile-carousel-arrow {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    padding:
      0
      0
      2px;

    border:
      1px solid
      #d9e2f0;

    border-radius: 999px;

    background: #fff;

    color: #0d1b4c;

    font-size: 1.55rem;
    line-height: 1;

    box-shadow:
      0
      5px
      14px
      rgba(13, 27, 76, 0.06);

    cursor: pointer;
  }

  .how-mobile-carousel-arrow:active {
    transform: scale(0.96);
  }

  .how-mobile-carousel-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    min-width: 0;
  }

  .how-mobile-carousel-dot {
    width: 7px;
    height: 7px;

    flex:
      0
      0
      auto;

    border: 0;

    border-radius: 999px;

    background: #cbd5e4;

    transition:
      width 220ms ease,
      background-color 220ms ease;
  }

  .how-mobile-carousel-dot.is-active {
    width: 24px;

    background: var(--orange);
  }

  .how-mobile-carousel-counter {
    min-width: 52px;

    color: #8390a8;

    font-size: 0.76rem;

    text-align: center;
    white-space: nowrap;
  }

  .how-mobile-carousel-counter strong {
    color: #0d1b4c;

    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {

  .how-process {
    padding:
      8px
      12px
      8px;
  }

  .how-mobile-carousel-controls {
    grid-template-columns:
      36px
      minmax(62px, 1fr)
      auto
      36px;

    gap: 8px;

    margin:
      2px
      12px
      16px;
  }

  .how-mobile-carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .how-process {
    scroll-behavior: auto;
  }

  .how-mobile-carousel-dot {
    transition: none;
  }
}

/* =========================================================
   SECCIÓN · QUÉ NO SOMOS / QUÉ SÍ SOMOS
   Integrada desde preview aprobado
========================================================= */

.not-section {
  --not-navy: #071a48;
  --not-text: #071843;
  --not-muted: #283755;
  --not-orange: #ff6500;

  --not-red: #e20d17;
  --not-red-border: #f4b7b9;
  --not-red-soft: #fff9f9;

  --not-green: #0b982f;
  --not-green-border: #b9dfc4;
  --not-green-soft: #fbfffc;

  --not-border: #e5eaf1;

  --not-shadow:
    0 14px 34px
    rgba(8, 29, 68, 0.08);
}


/* =========================================================
   GLOBAL
========================================================= */

/* =========================================================
   PREVIEW
========================================================= */

.not-section {
  padding: 22px;
}

.not-section {
  width: 100%;
}

.not-shell {
  width: min(100%, 1500px);

  margin: 0 auto;

  padding:
    22px
    24px
    20px;

  background: #fff;

  border:
    1px solid
    rgba(7, 26, 72, 0.06);

  border-radius: 28px;

  box-shadow: var(--not-shadow);
}


/* =========================================================
   INTRO
========================================================= */

.not-intro {
  display: grid;

  grid-template-columns:
    minmax(560px, 1.08fr)
    minmax(440px, 0.92fr);

  gap: 64px;

  align-items: center;

  padding:
    0
    0
    18px;
}

.not-eyebrow {
  margin:
    0
    0
    8px;

  color: var(--not-orange);

  font-size:
    clamp(
      0.78rem,
      0.82vw,
      0.92rem
    );

  font-weight: 850;

  letter-spacing: 0.09em;
}

.not-title {
  margin: 0;

  color: var(--not-navy);

  font-size:
    clamp(
      2rem,
      2.6vw,
      3rem
    );

  font-weight: 850;

  line-height: 1.03;

  letter-spacing: -0.04em;

  white-space: nowrap;
}

.not-title-rule {
  display: block;

  width: 76px;
  height: 3px;

  margin-top: 14px;

  border-radius: 999px;

  background: var(--not-orange);
}

.not-intro-copy {
  max-width: 600px;

  margin: 14px 0 0;

  color: var(--not-text);

  font-size:
    clamp(
      0.85rem,
      0.92vw,
      1rem
    );

  line-height: 1.5;
}


/* =========================================================
   COMPARISON
========================================================= */

.not-comparison {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 62px;

  align-items: stretch;
}


/* =========================================================
   PANELS
========================================================= */

.not-panel {
  min-width: 0;

  padding:
    16px
    28px
    12px;

  border-radius: 18px;
}

.not-panel-negative {
  border:
    1.5px solid
    var(--not-red-border);

  background:
    linear-gradient(
      180deg,
      #fffefe 0%,
      var(--not-red-soft) 100%
    );
}

.not-panel-positive {
  border:
    1.5px solid
    var(--not-green-border);

  background:
    linear-gradient(
      180deg,
      #fefffe 0%,
      var(--not-green-soft) 100%
    );
}


/* =========================================================
   PANEL HEADER
========================================================= */

.not-panel-header {
  min-height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 16px;

  padding-bottom: 7px;
}

.not-panel-header h2 {
  margin: 0;

  font-size:
    clamp(
      1.15rem,
      1.32vw,
      1.48rem
    );

  font-weight: 850;
}

.not-panel-negative
.not-panel-header h2 {
  color: var(--not-red);
}

.not-panel-positive
.not-panel-header h2 {
  color: var(--not-green);
}


/* =========================================================
   STATUS X / CHECK
========================================================= */

.not-status {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  flex:
    0
    0
    auto;

  border-radius: 999px;

  color: #fff;

  font-size: 1.85rem;

  font-weight: 700;

  line-height: 1;

  box-shadow:
    0
    7px
    14px
    rgba(8, 29, 68, 0.10);
}

.not-status-negative {
  background: var(--not-red);
}

.not-status-positive {
  background: var(--not-green);
}


/* =========================================================
   LIST
========================================================= */

.not-list {
  display: grid;
}

.not-item {
  display: grid;

  grid-template-columns:
    70px
    minmax(0, 1fr);

  gap: 14px;

  align-items: center;

  min-height: 76px;

  padding:
    7px
    0;
}

.not-item + .not-item {
  border-top:
    1px solid
    rgba(7, 26, 72, 0.11);
}

.not-panel-negative
.not-item + .not-item {
  border-top-color:
    rgba(226, 13, 23, 0.18);
}

.not-panel-positive
.not-item + .not-item {
  border-top-color:
    rgba(11, 152, 47, 0.17);
}


/* =========================================================
   ITEM ICONS
========================================================= */

.not-item-icon {
  width: 62px;
  height: 62px;

  display: grid;

  place-items: center;

  border-radius: 999px;

  background: #fff;

  box-shadow:
    0
    7px
    14px
    rgba(8, 29, 68, 0.07);
}

.not-item-icon-negative {
  border:
    1px solid
    rgba(226, 13, 23, 0.22);

  background: #fffafa;
}

.not-item-icon-positive {
  border:
    1px solid
    rgba(11, 152, 47, 0.20);

  background: #f8fff9;
}

.not-item-icon img {
  width: 38px;
  height: 38px;

  object-fit: contain;
}


/* =========================================================
   ITEM COPY
========================================================= */

.not-item-copy h3 {
  margin: 0;

  color: var(--not-navy);

  font-size:
    clamp(
      0.88rem,
      0.92vw,
      1rem
    );

  font-weight: 850;

  line-height: 1.16;
}

.not-item-copy p {
  margin:
    4px
    0
    0;

  color: var(--not-text);

  font-size:
    clamp(
      0.72rem,
      0.77vw,
      0.84rem
    );

  line-height: 1.36;
}


/* =========================================================
   CENTER BRAND BRIDGE
   SE CONSERVA EL TAMAÑO ACTUAL
========================================================= */

.not-brand-bridge {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 3;

  transform:
    translate(
      -50%,
      -50%
    );

  width: 180px;
  height: 180px;

  display: grid;

  place-items: center;

  pointer-events: none;
}

.not-brand-halo {
  position: absolute;

  inset: 0;

  border-radius: 999px;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0) 38%,
      rgba(255,101,0,.13) 39%,
      rgba(255,101,0,0) 56%
    ),
    radial-gradient(
      circle,
      rgba(255,255,255,0) 45%,
      rgba(11,152,47,.10) 46%,
      rgba(11,152,47,0) 68%
    );
}

.not-brand-medallion {
  position: relative;

  width: 128px;
  height: 128px;

  display: grid;

  place-items: center;

  border:
    10px solid
    #fff;

  border-radius: 999px;

  background: #041d41;

  box-shadow:
    0
    10px
    24px
    rgba(7, 26, 72, 0.22);
}

.not-brand-medallion img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: inherit;
}


/* =========================================================
   VALUES
========================================================= */

.not-values {
  display: grid;

  grid-template-columns:
    minmax(330px, 1.28fr)
    minmax(0, 3fr);

  gap: 0;

  margin-top: 16px;

  border:
    1px solid
    var(--not-border);

  border-radius: 18px;

  background: #fff;

  box-shadow:
    0
    9px
    22px
    rgba(8, 29, 68, 0.055);

  overflow: hidden;
}


/* =========================================================
   VALUES LEAD
========================================================= */

.not-values-lead {
  display: grid;

  grid-template-columns:
    110px
    minmax(0, 1fr);

  gap: 18px;

  align-items: center;

  padding:
    14px
    18px;
}

.not-values-logo {
  width: 104px;
  height: 104px;

  display: grid;

  place-items: center;

  border-radius: 999px;

  background: #061d43;

  overflow: hidden;
}

.not-values-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.not-values-statement {
  margin: 0;

  color: var(--not-navy);

  font-size:
    clamp(
      1rem,
      1.18vw,
      1.32rem
    );

  font-weight: 820;

  line-height: 1.3;
}

.not-values-statement span,
.not-values-statement strong {
  display: inline;
}

.not-values-statement strong {
  color: var(--not-orange);
}


/* =========================================================
   VALUES GRID
========================================================= */

.not-values-grid {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );
}

.not-value {
  min-width: 0;

  padding:
    14px
    12px;

  text-align: center;
}

.not-value + .not-value {
  border-left:
    1px solid
    var(--not-border);
}

.not-value img {
  width: 48px;
  height: 48px;

  margin:
    0
    auto
    7px;

  object-fit: contain;
}

.not-value h3 {
  margin: 0;

  color: var(--not-navy);

  font-size:
    clamp(
      0.82rem,
      0.87vw,
      0.94rem
    );

  font-weight: 850;
}

.not-value p {
  margin:
    6px
    auto
    0;

  max-width: 170px;

  color: var(--not-text);

  font-size:
    clamp(
      0.68rem,
      0.7vw,
      0.76rem
    );

  line-height: 1.34;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1121px) {

  .not-title {
    white-space: nowrap;
  }

  .not-intro-copy {
    align-self: center;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1120px) {

  .not-intro {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .not-title {
    white-space: normal;
  }

  .not-intro-copy {
    max-width: 760px;

    margin-top: 0;
  }

  .not-comparison {
    gap: 36px;
  }

  .not-panel {
    padding-left: 20px;
    padding-right: 20px;
  }


  /* Center logo stays visually strong */

  .not-brand-bridge {
    width: 142px;
    height: 142px;
  }

  .not-brand-medallion {
    width: 104px;
    height: 104px;

    border-width: 8px;
  }


  /* ITEMS */

  .not-item {
    grid-template-columns:
      66px
      minmax(0, 1fr);

    gap: 12px;
  }

  .not-item-icon {
    width: 60px;
    height: 60px;
  }

  .not-item-icon img {
    width: 36px;
    height: 36px;
  }


  /* VALUES */

  .not-values {
    grid-template-columns: 1fr;
  }

  .not-values-lead {
    border-bottom:
      1px solid
      var(--not-border);
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .not-section {
    padding: 0;
  }

  .not-shell {
    width: 100%;

    padding:
      24px
      16px
      22px;

    border: 0;

    border-radius: 0;

    box-shadow: none;
  }


  /* INTRO */

  .not-intro {
    display: block;

    padding-bottom: 16px;
  }

  .not-eyebrow {
    margin-bottom: 8px;

    font-size: 0.92rem;
  }

  .not-title {
    font-size:
      clamp(
        2rem,
        7.5vw,
        2.8rem
      );

    line-height: 1.02;

    white-space: normal;
  }

  .not-title-rule {
    display: none;
  }

  .not-intro-copy {
    margin-top: 12px;

    max-width: none;

    font-size: 0.96rem;

    line-height: 1.48;
  }


  /* COMPARISON */

  .not-comparison {
    display: block;
  }


  /* PANELS */

  .not-panel {
    padding:
      14px
      16px
      9px;

    border-radius: 18px;
  }

  .not-panel-header {
    justify-content: flex-start;

    gap: 13px;

    min-height: 48px;

    padding-bottom: 4px;
  }

  .not-panel-header h2 {
    font-size: 1.3rem;
  }

  .not-status {
    width: 42px;
    height: 42px;

    font-size: 1.9rem;
  }


  /* ITEMS */

  .not-item {
    grid-template-columns:
      70px
      minmax(0, 1fr);

    gap: 12px;

    min-height: 92px;

    padding:
      8px
      0;
  }

  .not-item-icon {
    width: 64px;
    height: 64px;
  }

  .not-item-icon img {
    width: 38px;
    height: 38px;
  }

  .not-item-copy h3 {
    font-size: 0.97rem;

    line-height: 1.16;
  }

  .not-item-copy p {
    margin-top: 4px;

    font-size: 0.86rem;

    line-height: 1.37;
  }


  /* POSITIVE PANEL */

  .not-panel-positive {
    margin-top: 46px;
  }


  /* CENTER LOGO */

  .not-brand-bridge {
    left: 50%;

    top: auto;

    bottom: auto;

    width: 116px;
    height: 116px;

    transform:
      translate(
        -50%,
        -50%
      );

    margin-top: -2px;
  }

  .not-brand-halo {
    display: none;
  }

  .not-brand-medallion {
    width: 94px;
    height: 94px;

    border-width: 7px;
  }

  .not-comparison
  .not-brand-bridge {
    top:
      calc(
        50% + 8px
      );
  }


  /* VALUES */

  .not-values {
    display: block;

    margin-top: 18px;

    border-radius: 18px;
  }

  .not-values-lead {
    grid-template-columns:
      96px
      minmax(0, 1fr);

    gap: 14px;

    padding:
      15px
      17px
      13px;

    border-bottom: 0;
  }

  .not-values-logo {
    width: 88px;
    height: 88px;
  }

  .not-values-statement {
    font-size: 1.15rem;

    line-height: 1.32;
  }

  .not-values-grid {
    grid-template-columns:
      repeat(
        4,
        minmax(0, 1fr)
      );

    padding:
      4px
      8px
      14px;
  }

  .not-value {
    padding:
      10px
      6px;
  }

  .not-value + .not-value {
    border-left:
      1px solid
      var(--not-border);
  }

  .not-value img {
    width: 42px;
    height: 42px;

    margin-bottom: 7px;
  }

  .not-value h3 {
    font-size: 0.74rem;

    line-height: 1.14;
  }

  .not-value p {
    margin-top: 5px;

    font-size: 0.64rem;

    line-height: 1.3;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 460px) {

  .not-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .not-panel {
    padding-left: 13px;
    padding-right: 13px;
  }

  .not-item {
    grid-template-columns:
      60px
      minmax(0, 1fr);

    gap: 9px;
  }

  .not-item-icon {
    width: 55px;
    height: 55px;
  }

  .not-item-icon img {
    width: 32px;
    height: 32px;
  }

  .not-item-copy h3 {
    font-size: 0.91rem;
  }

  .not-item-copy p {
    font-size: 0.81rem;
  }


  /* VALUES */

  .not-values-lead {
    grid-template-columns:
      78px
      minmax(0, 1fr);

    padding-left: 13px;
    padding-right: 13px;
  }

  .not-values-logo {
    width: 72px;
    height: 72px;
  }

  .not-values-statement {
    font-size: 0.98rem;
  }

  .not-values-grid {
    padding-left: 4px;
    padding-right: 4px;
  }

  .not-value {
    padding-left: 3px;
    padding-right: 3px;
  }

  .not-value img {
    width: 36px;
    height: 36px;
  }

  .not-value h3 {
    font-size: 0.66rem;
  }

  .not-value p {
    font-size: 0.58rem;
  }
}

/* =========================================================
   AJUSTE FINAL DE MEDIA · ICONOS CON BORDE PROPIO
   - X / check usan imágenes reales.
   - Los iconos NO ES / SÍ ES ya incluyen su círculo.
   - Logo central sin borde CSS adicional.
   - Logo inferior independiente y sin borde artificial.
========================================================= */

/* X / CHECK: la imagen ya contiene el badge completo */
.not-status,
.not-status-negative,
.not-status-positive {
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.not-status img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*
  Iconos internos: eliminamos el círculo generado por CSS.
  Cada archivo ya trae su propio borde/círculo, así que la
  imagen ocupa directamente el tamaño reservado al icono.
*/
.not-item-icon,
.not-item-icon-negative,
.not-item-icon-positive {
  width: 62px;
  height: 62px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.not-item-icon img {
  width: 62px;
  height: 62px;
  max-width: none;
  object-fit: contain;
}

/* Logo central: el archivo ya incluye su propio borde y acabado */
.not-brand-halo {
  display: none;
}

.not-brand-medallion {
  width: 128px;
  height: 128px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.not-brand-medallion img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
}

/* Logo inferior: imagen independiente, sin círculo CSS añadido */
.not-values-logo {
  width: 104px;
  height: 104px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.not-values-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
}

/* Tablet: conservar legibilidad y tamaño del logo central */
@media (max-width: 1120px) and (min-width: 761px) {
  .not-brand-bridge {
    width: 160px;
    height: 160px;
  }

  .not-brand-medallion {
    width: 128px;
    height: 128px;
  }

  .not-item-icon,
  .not-item-icon-negative,
  .not-item-icon-positive,
  .not-item-icon img {
    width: 60px;
    height: 60px;
  }
}

/*
  Móvil: el logo central deja de calcular su posición con el 50%
  de una comparación de alturas variables. Se ancla exactamente
  entre NO ES y SÍ ES, evitando que desaparezca según el viewport.
*/
@media (max-width: 760px) {
  .not-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .not-panel-negative {
    grid-row: 1;
  }

  .not-brand-bridge,
  .not-comparison .not-brand-bridge {
    position: relative;
    grid-row: 2;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 0;
    margin: 0;
    transform: none;
    z-index: 5;
    overflow: visible;
  }

  .not-brand-medallion {
    position: absolute;
    left: 50%;
    top: 0;
    width: 94px;
    height: 94px;
    transform: translate(-50%, -50%);
  }

  .not-panel-positive {
    grid-row: 3;
    margin-top: 0;
    padding-top: 58px;
  }

  .not-status,
  .not-status-negative,
  .not-status-positive {
    width: 42px;
    height: 42px;
  }

  .not-item-icon,
  .not-item-icon-negative,
  .not-item-icon-positive,
  .not-item-icon img {
    width: 64px;
    height: 64px;
  }

  .not-values-logo {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 460px) {
  .not-item-icon,
  .not-item-icon-negative,
  .not-item-icon-positive,
  .not-item-icon img {
    width: 55px;
    height: 55px;
  }

  .not-values-logo {
    width: 72px;
    height: 72px;
  }
}


/* =========================================================
   AJUSTE FINAL · LOGO CENTRAL
   - Desktop: logo central más grande.
   - Móvil: separación real entre ambas tarjetas y logo
     centrado en el espacio intermedio.
========================================================= */

/* Desktop */
@media (min-width: 1121px) {
  .not-brand-bridge {
    width: 210px;
    height: 210px;
  }

  .not-brand-medallion {
    width: 158px;
    height: 158px;
  }
}

/* Tablet */
@media (max-width: 1120px) and (min-width: 761px) {
  .not-brand-bridge {
    width: 184px;
    height: 184px;
  }

  .not-brand-medallion {
    width: 146px;
    height: 146px;
  }
}

/* Móvil */
@media (max-width: 760px) {
  .not-comparison {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 86px auto;
    gap: 0;
  }

  .not-panel-negative {
    grid-row: 1;
  }

  .not-brand-bridge,
  .not-comparison .not-brand-bridge {
    position: relative;
    grid-row: 2;

    left: auto;
    top: auto;
    bottom: auto;

    width: 100%;
    height: 86px;

    margin: 0;
    transform: none;

    display: block;

    z-index: 5;
    overflow: visible;
    pointer-events: none;
  }

  .not-brand-medallion {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 116px;
    height: 116px;

    transform: translate(-50%, -50%);
  }

  .not-panel-positive {
    grid-row: 3;

    margin-top: 0;

    /* recupera el padding normal del panel;
       la separación ahora la crea la fila intermedia */
    padding-top: 14px;
  }
}

/* Móvil pequeño */
@media (max-width: 460px) {
  .not-comparison {
    grid-template-rows: auto 80px auto;
  }

  .not-brand-bridge,
  .not-comparison .not-brand-bridge {
    height: 80px;
  }

  .not-brand-medallion {
    width: 108px;
    height: 108px;
  }
}

/* =========================================================
   SECCIÓN · ECOSISTEMA MITEPUY
========================================================= */

.eco-section {
--eco-navy: #071a48;
  --eco-text: #0b1c46;
  --eco-muted: #52617a;
  --eco-orange: #ff6500;
  --eco-border: #e4e9f1;
  --eco-shadow: 0 18px 42px rgba(8, 29, 68, 0.08);
  --eco-cyan: #08798b;
  --eco-green: #2d8b25;
  --eco-pink: #c72d68;
  width: 100%;
  padding: 22px;
}

.eco-section,
.eco-section * {
  box-sizing: border-box;
}

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

.eco-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 22px 18px 20px;
  background: #fff;
  border: 1px solid rgba(7, 26, 72, 0.06);
  border-radius: 30px;
  box-shadow: var(--eco-shadow);
}

/* =========================================================
   INTRO
========================================================= */

.eco-intro {
  max-width: 520px;
  padding: 18px 24px 8px;
}

.eco-eyebrow {
  margin: 0 0 12px;
  color: var(--eco-orange);
  font-size: 0.93rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.eco-title {
  margin: 0;
  color: var(--eco-navy);
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.eco-title-rule {
  display: block;
  width: 62px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--eco-orange);
}

.eco-intro-copy {
  margin: 20px 0 0;
  color: var(--eco-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* =========================================================
   CINEMA / CARRUSEL PRINCIPAL
========================================================= */

.eco-cinema {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--eco-navy);
  isolation: isolate;
}

.eco-scene-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center 40%;
  background-size: cover;
  transform: scale(1.015);
  transition: opacity 1200ms ease, transform 6800ms ease;
  will-change: opacity, transform;
}

.eco-scene-layer.is-visible {
  opacity: 1;
  transform: scale(1.055);
}

.eco-scene-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 18, 45, 0.68), rgba(5, 18, 45, 0.18) 40%, rgba(5, 18, 45, 0) 72%);
  transition: background 0.5s ease;
}

.eco-cinema[data-copy-side="right"] .eco-scene-shade {
  background: linear-gradient(270deg, rgba(5, 18, 45, 0.7), rgba(5, 18, 45, 0.18) 40%, rgba(5, 18, 45, 0) 72%);
}

.eco-scene-copy {
  position: absolute;
  top: 50%;
  left: 34px;
  z-index: 4;
  width: min(42%, 470px);
  pointer-events: none;
  transform: translateY(-50%);
}

.eco-cinema[data-copy-side="right"] .eco-scene-copy {
  right: 34px;
  left: auto;
  text-align: right;
}

.eco-cinema[data-copy-vertical="top"] .eco-scene-copy {
  top: 34px;
  transform: none;
}

.eco-cinema[data-copy-vertical="lower"] .eco-scene-copy {
  top: 61%;
}

.eco-cinema[data-copy-vertical="bottom"] .eco-scene-copy {
  top: auto;
  bottom: 34px;
  transform: none;
}

.eco-scene-kicker,
.eco-scene-message {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.48s ease, transform 0.48s ease;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.eco-scene-kicker.is-visible,
.eco-scene-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eco-scene-kicker {
  margin: 0;
  color: var(--eco-orange);
  font-size: clamp(1.4rem, 2.1vw, 2.25rem);
  font-weight: 900;
  line-height: 1.02;
}

.eco-scene-message {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  font-weight: 750;
  line-height: 1.35;
}

.eco-cinema[data-copy-size="hero"] .eco-scene-copy {
  width: min(48%, 560px);
}

.eco-cinema[data-copy-size="hero"] .eco-scene-kicker {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1;
}

.eco-cinema[data-copy-size="hero"] .eco-scene-message {
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  line-height: 1.28;
}

.eco-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 0;
  height: 3px;
  background: var(--eco-orange);
}

/* =========================================================
   TARJETAS DE CATEGORÍAS · DESKTOP
========================================================= */

.eco-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 18px;
}

.eco-category {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--eco-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(8, 29, 68, 0.035);
}

.eco-category-media {
  height: 132px;
  overflow: hidden;
  background: #edf2f8;
}

.eco-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eco-category-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 14px 16px;
}

.eco-category-icon {
  position: absolute;
  top: -31px;
  left: 12px;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.eco-category h2 {
  margin: 0 0 14px;
  color: var(--eco-navy);
  font-size: 1.02rem;
  line-height: 1.15;
}

.eco-category ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-category li {
  position: relative;
  padding-left: 18px;
  color: var(--eco-text);
  font-size: 0.74rem;
  line-height: 1.22;
}

.eco-category li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

.eco-category-architecture h2 {
  color: var(--eco-cyan);
}

.eco-category-construction h2 {
  color: var(--eco-orange);
}

.eco-category-maintenance h2 {
  color: var(--eco-green);
}

.eco-category-home h2 {
  color: var(--eco-pink);
}

/* =========================================================
   CONTROLES DEL CARRUSEL DE CATEGORÍAS
========================================================= */

.eco-category-carousel-controls {
  display: none;
}

/* =========================================================
   CTA · DESKTOP
========================================================= */

.eco-cta {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #061b40;
  color: #fff;
}

.eco-cta > img {
  width: 102px;
  height: 70px;
  object-fit: contain;
}

.eco-cta strong,
.eco-cta span {
  display: block;
}

.eco-cta strong {
  font-size: 1.15rem;
}

.eco-cta span {
  margin-top: 4px;
  font-size: 0.88rem;
}

.eco-cta button {
  border: 0;
  border-radius: 10px;
  padding: 13px 22px;
  background: var(--eco-orange);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* =========================================================
   DESKTOP LAYOUT
========================================================= */

@media (min-width: 901px) {
  .eco-shell {
    display: grid;
    grid-template-columns: 410px minmax(0, 1fr);
    column-gap: 18px;
  }

  .eco-intro {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .eco-hero {
    grid-column: 2;
    grid-row: 1;
  }

  .eco-categories,
  .eco-cta {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {
  .eco-section {
    padding: 0;
  }

  .eco-shell {
    width: 100%;
    padding: 28px 14px 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .eco-intro {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 8px 18px;
    text-align: center;
  }

  .eco-title {
    font-size: clamp(2.25rem, 7.8vw, 3.8rem);
  }

  .eco-title-rule {
    display: none;
  }

  .eco-intro-copy {
    margin-top: 12px;
    font-size: 1rem;
  }

  .eco-cinema {
    min-height: 560px;
    border-radius: 18px;
  }

  .eco-scene-copy,
  .eco-cinema[data-copy-side="right"] .eco-scene-copy {
    top: auto;
    right: auto;
    bottom: 24px;
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
    text-align: left;
  }

  .eco-scene-kicker {
    font-size: 1.55rem;
  }

  .eco-scene-message {
    max-width: 94%;
    font-size: 0.96rem;
  }

  .eco-cinema[data-copy-size="hero"] .eco-scene-kicker {
    font-size: 1.82rem;
  }

  .eco-cinema[data-copy-size="hero"] .eco-scene-message {
    font-size: 1.02rem;
  }

  .eco-scene-shade,
  .eco-cinema[data-copy-side="right"] .eco-scene-shade {
    background: linear-gradient(180deg, rgba(5, 18, 45, 0) 25%, rgba(5, 18, 45, 0.78) 100%);
  }

  /* Carrusel horizontal de categorías */
  .eco-categories {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding: 2px 8px 8px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .eco-categories::-webkit-scrollbar {
    display: none;
  }

  .eco-category,
  .eco-category-home {
    display: flex;
    flex: 0 0 calc(100% - 18px);
    min-width: calc(100% - 18px);
    min-height: 500px;
    height: auto;
    flex-direction: column;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .eco-category-media {
    display: block;
    height: 190px;
    flex: 0 0 auto;
  }

  .eco-category-body {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    padding: 34px 18px 20px;
  }

  .eco-category-icon {
    position: absolute;
    top: -34px;
    left: 16px;
    width: 68px;
    height: 68px;
    object-fit: contain;
  }

  .eco-category h2 {
    display: block;
    margin: 0 0 16px;
    padding-right: 8px;
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .eco-category ul {
    display: grid;
    gap: 9px;
    margin: 0;
  }

  .eco-category li,
  .eco-category li:first-child {
    display: block;
    padding-left: 19px;
    color: var(--eco-text);
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .eco-category li::before,
  .eco-category li:first-child::before {
    display: block;
  }

  /* Navegación del carrusel */
  .eco-category-carousel-controls {
    display: grid;
    grid-template-columns: 38px minmax(80px, 1fr) 38px;
    gap: 10px;
    align-items: center;
    margin: 2px 10px 16px;
  }

  .eco-category-carousel-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0 0 2px;
    border: 1px solid var(--eco-border);
    border-radius: 999px;
    background: #fff;
    color: var(--eco-navy);
    font-size: 1.55rem;
    line-height: 1;
    box-shadow: 0 5px 14px rgba(8, 29, 68, 0.07);
    cursor: pointer;
  }

  .eco-category-carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
  }

  .eco-category-carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #cbd5e4;
    transition: width 220ms ease, background-color 220ms ease;
  }

  .eco-category-carousel-dot.is-active {
    width: 24px;
    background: var(--eco-orange);
  }

  /* CTA móvil: solo botón naranja */
  .eco-cta {
    display: block;
    margin-top: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .eco-cta > img,
  .eco-cta > div {
    display: none;
  }

  .eco-cta button {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    border: 0;
    border-radius: 10px;
    background: var(--eco-orange);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .eco-categories {
    padding-right: 4px;
    padding-left: 4px;
  }

  .eco-category,
  .eco-category-home {
    flex-basis: calc(100% - 12px);
    min-width: calc(100% - 12px);
  }

  .eco-category-media {
    height: 176px;
  }

  .eco-category-carousel-controls {
    grid-template-columns: 36px minmax(64px, 1fr) 36px;
    gap: 8px;
    margin-right: 6px;
    margin-left: 6px;
  }

  .eco-category-carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .eco-cta button {
    padding: 13px 12px;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-scene-layer,
  .eco-scene-kicker,
  .eco-scene-message,
  .eco-category-carousel-dot {
    transition: none;
  }

  .eco-categories {
    scroll-behavior: auto;
  }
}

/* =========================================================
   SECCIÓN · PERFILES PROFESIONALES
========================================================= */

.pp-section {
  --pp-navy: #071a48;
  --pp-navy-2: #0f214e;
  --pp-text: #22304d;
  --pp-muted: #596887;
  --pp-orange: #ff6500;
  --pp-border: #e7ebf3;
  --pp-soft: #f7f9fc;
  --pp-shadow: 0 18px 40px rgba(8, 29, 68, 0.08);
  --pp-radius-xl: 28px;
  --pp-radius-lg: 22px;
  --pp-radius-md: 18px;
  width: 100%;
  padding: 22px;
  background: #f6f8fb;
}

.pp-section,
.pp-section * {
  box-sizing: border-box;
}

.pp-section img {
  display: block;
  max-width: 100%;
}
.pp-shell {
  width: min(100%, 1520px);
  margin: 0 auto;
  padding: 26px 28px 26px;
  background: #fff;
  border-radius: 34px;
  border: 1px solid rgba(7, 26, 72, 0.06);
  box-shadow: var(--pp-shadow);
}

.pp-mobile-layout { display: none; }

.pp-top-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.74fr) minmax(0, 1.26fr);
  gap: 14px;
  align-items: stretch;
}

.pp-intro { min-width: 0; }

/* En desktop, la columna editorial ocupa la misma altura que la imagen. */
.pp-intro-desktop {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pp-eyebrow {
  margin: 0;
  color: var(--pp-orange);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.pp-rule {
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--pp-orange);
  margin: 12px 0 18px;
}
.pp-title {
  margin: 0;
  max-width: 560px;
  color: var(--pp-navy);
  font-size: clamp(2.35rem, 3vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.pp-intro-copy {
  margin: 18px 0 0;
  max-width: 540px;
  color: var(--pp-muted);
  font-size: 1.05rem;
  line-height: 1.56;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.pp-feature-list {
  margin-top: 18px;
  border-top: 1px solid var(--pp-border);
}

/* Reparte las 8 filas hasta alcanzar el borde inferior del mockup. */
.pp-intro-desktop .pp-feature-list {
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: repeat(8, minmax(54px, 1fr));
  align-content: stretch;
}
.pp-feature-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--pp-border);
  align-items: center;
  min-height: 0;
}
.pp-feature-item img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.pp-feature-item h3 {
  margin: 0 0 2px;
  color: var(--pp-navy);
  font-size: 0.91rem;
  line-height: 1.12;
}
.pp-feature-item p {
  margin: 0;
  color: var(--pp-muted);
  font-size: 0.8rem;
  line-height: 1.28;
}

.pp-showcase-desktop {
  min-width: 0;
  padding-top: 6px;
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  justify-content: flex-end;
  overflow: visible;
}

/* Imagen principal: mayor protagonismo y alineación con las tarjetas inferiores. */
.pp-hero-composite {
  width: 97%;
  max-width: 900px;
  height: auto;
  margin: 0 0 0 auto;
  object-fit: contain;
  border-radius: 24px;
}

.pp-pro-carousel-section {
  margin-top: 22px;
}
.pp-pro-carousel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
}

.pp-pro-card {
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(8, 29, 68, 0.04);
}
.pp-pro-card-image {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}
.pp-pro-card-body {
  padding: 10px 14px 14px;
}
.pp-pro-card-name {
  margin: 0;
  color: var(--pp-navy);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}
.pp-pro-card-role {
  margin: 2px 0 0;
  color: var(--pp-text);
  font-size: 0.84rem;
}
.pp-pro-card-rating {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pp-orange);
  font-size: 0.74rem;
  line-height: 1;
}
.pp-pro-card-stars { letter-spacing: 0.08em; }
.pp-pro-card-rating strong {
  color: var(--pp-text);
  font-weight: 700;
}
.pp-pro-card-location {
  margin-top: 8px;
  color: var(--pp-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}
.pp-pro-card-chip {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f3f5f9;
  color: var(--pp-text);
  font-size: 0.72rem;
  line-height: 1;
}


.pp-benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
  border: 1px solid rgba(255, 101, 0, 0.16);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfa, #fffaf6);
}
.pp-benefit {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 22px;
  align-items: start;
}
.pp-benefit + .pp-benefit {
  border-left: 1px solid rgba(7, 26, 72, 0.08);
}
.pp-benefit img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.pp-benefit h3 {
  margin: 0 0 6px;
  color: var(--pp-navy);
  font-size: 1rem;
  line-height: 1.18;
}
.pp-benefit p {
  margin: 0;
  color: var(--pp-text);
  font-size: 0.92rem;
  line-height: 1.42;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .pp-top-grid {
    grid-template-columns: minmax(390px, 0.78fr) minmax(0, 1.22fr);
    gap: 12px;
  }

  .pp-title {
    max-width: 500px;
    font-size: clamp(2.25rem, 3.25vw, 3.05rem);
  }

  .pp-intro-copy {
    max-width: 500px;
  }

  .pp-hero-composite {
    width: 98%;
    max-width: 760px;
  }

  .pp-intro-desktop .pp-feature-list {
    grid-template-rows: repeat(8, minmax(50px, 1fr));
  }

  .pp-feature-item {
    padding: 8px 0;
  }

  .pp-feature-item p {
    font-size: 0.76rem;
  }

  .pp-pro-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media (min-width: 1281px) {
  .pp-intro-desktop .pp-title {
    width: 100%;
    max-width: 545px;
  }

  .pp-intro-desktop .pp-intro-copy {
    width: 100%;
    max-width: 535px;
  }

  .pp-showcase-desktop {
    margin-right: -2px;
  }
}
/* MOBILE */
@media (max-width: 980px) {
  .pp-preview-page { padding: 0; }
  .pp-shell {
    width: 100%;
    padding: 26px 14px 18px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .pp-desktop-layout { display: none; }
  .pp-mobile-layout { display: block; }

  .pp-intro-desktop {
    display: block;
    min-height: 0;
  }

  .pp-intro-mobile {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
  }
  .pp-intro-mobile .pp-title {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 1.05;
  }
  .pp-intro-mobile .pp-intro-copy {
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
  }

  .pp-mobile-phone-stage {
    max-width: 620px;
    margin: 26px auto 0;
  }
  .pp-mobile-phone {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .pp-mobile-highlights {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
    margin: -28px auto 0;
  }
  .pp-highlight-card {
    padding: 16px 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--pp-border);
    background: rgba(255,255,255,0.98);
    box-shadow: 0 12px 28px rgba(8, 29, 68, 0.08);
    min-height: 148px;
  }
  .pp-highlight-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 12px;
  }
  .pp-highlight-card h3 {
    margin: 0 0 8px;
    color: var(--pp-navy);
    font-size: 1rem;
    line-height: 1.14;
  }
  .pp-highlight-card p {
    margin: 0;
    color: var(--pp-text);
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .pp-mobile-discover {
    max-width: 760px;
    margin: 24px auto 0;
    border: 1px solid var(--pp-border);
    border-radius: 18px;
    padding: 16px 14px 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 29, 68, 0.05);
  }
  .pp-mobile-discover-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }
  .pp-mobile-discover-head h2 {
    margin: 0;
    color: var(--pp-navy);
    font-size: 1.55rem;
    line-height: 1.1;
  }
  .pp-mobile-discover-head a {
    color: var(--pp-orange);
    font-weight: 700;
    font-size: 1rem;
  }
  .pp-mobile-discover-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 0;
    align-items: center;
  }
  .pp-mobile-discover-item + .pp-mobile-discover-item {
    border-top: 1px solid var(--pp-border);
  }
  .pp-mobile-discover-thumb {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
  }
  .pp-mobile-discover-meta h3 {
    margin: 0;
    color: var(--pp-navy);
    font-size: 1rem;
    line-height: 1.16;
  }
  .pp-mobile-discover-meta p {
    margin: 3px 0 0;
    color: var(--pp-text);
    font-size: 0.92rem;
    line-height: 1.28;
  }
  .pp-mobile-discover-meta span {
    display: block;
    margin-top: 4px;
    color: var(--pp-muted);
    font-size: 0.84rem;
    line-height: 1.25;
  }
  .pp-mobile-discover-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f4f6fa;
    color: var(--pp-muted);
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .pp-mobile-discover-btn {
    grid-column: 1 / -1;
    margin-top: 6px;
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: var(--pp-navy);
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
  }

  .pp-benefits-strip-mobile {
    max-width: 760px;
    margin: 16px auto 0;
    grid-template-columns: 1fr 1fr;
  }
  .pp-benefits-strip-mobile .pp-benefit {
    padding: 18px 16px;
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .pp-benefits-strip-mobile .pp-benefit:nth-child(2n+1) {
    border-left: 0;
  }
  .pp-benefits-strip-mobile .pp-benefit:nth-child(n+3) {
    border-top: 1px solid rgba(7, 26, 72, 0.08);
  }
}

@media (max-width: 640px) {
  .pp-shell { padding-left: 12px; padding-right: 12px; }
  .pp-intro-mobile .pp-title { font-size: clamp(2rem, 10.5vw, 3rem); }
  .pp-intro-mobile .pp-intro-copy { font-size: 0.98rem; }
  .pp-mobile-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: -12px;
  }
  .pp-highlight-card {
    min-height: 140px;
    padding: 14px 12px 16px;
  }
  .pp-highlight-card h3 { font-size: 0.95rem; }
  .pp-highlight-card p { font-size: 0.86rem; }
  .pp-mobile-discover-head h2 { font-size: 1.35rem; }
  .pp-mobile-discover-item {
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
  }
  .pp-mobile-discover-pill {
    grid-column: 2;
    justify-self: start;
  }
  .pp-mobile-discover-btn {
    grid-column: 2;
    width: auto;
    justify-self: end;
    padding-inline: 18px;
  }
  .pp-benefits-strip-mobile { grid-template-columns: 1fr; }
  .pp-benefits-strip-mobile .pp-benefit + .pp-benefit {
    border-left: 0;
    border-top: 1px solid rgba(7, 26, 72, 0.08);
  }
}

@media (max-width: 430px) {
  .pp-mobile-highlights { grid-template-columns: 1fr; }
  .pp-highlight-card { min-height: auto; }
  .pp-mobile-discover-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }
}

/* =========================================================
   MOBILE · COMPOSICIÓN VISUAL FINAL
   Solo modifica <= 980px. Desktop permanece intacto.
========================================================= */
@media (max-width: 980px) {
  .pp-mobile-layout {
    display: block;
    overflow: hidden;
  }

  .pp-intro-mobile {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .pp-intro-mobile .pp-eyebrow {
    margin-bottom: 10px;
  }

  .pp-intro-mobile .pp-title {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(2.2rem, 8vw, 3.65rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: initial;
  }

  .pp-mobile-title-line {
    display: block;
    white-space: nowrap;
  }

  .pp-title-accent {
    color: var(--pp-orange);
  }

  .pp-intro-mobile .pp-intro-copy {
    max-width: 650px;
    margin: 18px auto 0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  /* El teléfono y el carrusel forman una sola composición. */
  .pp-mobile-profile-stage {
    position: relative;
    width: min(100%, 780px);
    margin: 18px auto 0;
    padding-bottom: 150px;
  }

  .pp-mobile-phone-stage {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .pp-mobile-phone {
    width: min(94vw, 630px);
    max-width: 630px;
    margin: 0 auto;
  }

  /* Carrusel flotando sobre la parte inferior del teléfono. */
  .pp-mobile-discover {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 760px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pp-mobile-discover-head {
    margin: 0 0 10px;
    padding: 0 14px;
    justify-content: flex-start;
  }

  .pp-mobile-discover-head h2 {
    margin: 0;
    color: var(--pp-navy);
    font-size: 1.3rem;
    line-height: 1.08;
  }

  .pp-mobile-pro-carousel {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 2px 14px 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pp-mobile-pro-carousel::-webkit-scrollbar {
    display: none;
  }

  .pp-mobile-pro-carousel .pp-pro-card {
    flex: 0 0 min(72vw, 270px);
    width: min(72vw, 270px);
    scroll-snap-align: start;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 32px rgba(7, 26, 72, 0.15);
  }

  .pp-mobile-pro-carousel .pp-pro-card-image {
    aspect-ratio: 1.55 / 1;
  }

  .pp-mobile-pro-carousel .pp-pro-card-body {
    padding: 10px 12px 13px;
  }

  .pp-mobile-pro-carousel .pp-pro-card-name {
    font-size: 0.94rem;
  }

  .pp-mobile-pro-carousel .pp-pro-card-role {
    font-size: 0.82rem;
  }

  .pp-mobile-pro-carousel .pp-pro-card-rating {
    gap: 6px;
    font-size: 0.72rem;
  }

  .pp-mobile-pro-carousel .pp-pro-card-location {
    font-size: 0.76rem;
  }

  .pp-mobile-pro-carousel .pp-pro-card-chip {
    margin-top: 8px;
    font-size: 0.7rem;
  }

  /* Elementos descartados en la versión móvil. */
  .pp-mobile-highlights,
  .pp-benefits-strip-mobile,
  .pp-mobile-discover-btn,
  .pp-mobile-discover-pill,
  .pp-mobile-discover-head a {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .pp-shell {
    padding: 24px 10px 16px;
  }

  .pp-intro-mobile .pp-title {
    font-size: clamp(1.82rem, 8.2vw, 2.55rem);
  }

  .pp-mobile-title-line {
    white-space: nowrap;
  }

  .pp-intro-mobile .pp-intro-copy {
    max-width: 92vw;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .pp-mobile-profile-stage {
    margin-top: 12px;
    padding-bottom: 138px;
  }

  .pp-mobile-phone {
    width: min(108vw, 520px);
    max-width: 520px;
  }

  .pp-mobile-discover {
    width: calc(100% + 8px);
  }

  .pp-mobile-discover-head {
    padding-inline: 10px;
  }

  .pp-mobile-discover-head h2 {
    font-size: 1.15rem;
  }

  .pp-mobile-pro-carousel {
    gap: 10px;
    padding: 2px 10px 10px;
    scroll-padding-inline: 10px;
  }

  .pp-mobile-pro-carousel .pp-pro-card {
    flex-basis: min(72vw, 250px);
    width: min(72vw, 250px);
  }
}

@media (max-width: 430px) {
  .pp-intro-mobile .pp-title {
    font-size: clamp(1.68rem, 7.7vw, 2.12rem);
  }

  .pp-intro-mobile .pp-intro-copy {
    font-size: 0.9rem;
  }

  .pp-mobile-profile-stage {
    padding-bottom: 128px;
  }

  .pp-mobile-phone {
    width: 112vw;
    max-width: 480px;
  }

  .pp-mobile-discover-head h2 {
    font-size: 1.08rem;
  }

  .pp-mobile-pro-carousel .pp-pro-card {
    flex-basis: 74vw;
    width: 74vw;
    max-width: 245px;
  }
}

/* Integración: la sección ocupa todo el ancho en móvil. */
@media (max-width: 980px) {
  .pp-section {
    padding: 0;
  }
}


/* =========================================================
   SECCIÓN · MÉTRICAS Y ANALÍTICA
========================================================= */

.ma-section {
  --ma-navy: #071a48;
  --ma-text: #1f2e4f;
  --ma-muted: #566582;
  --ma-orange: #ff6500;
  --ma-green: #15933a;
  --ma-border: #e4eaf3;
  --ma-soft: #f7f9fc;
  --ma-shadow: 0 18px 46px rgba(8, 29, 68, 0.08);
  width: 100%;
  padding: 22px;
  background: #f6f8fb;
}

.ma-section,
.ma-section * {
  box-sizing: border-box;
}

.ma-section img {
  display: block;
  max-width: 100%;
}
.ma-shell {
  width: min(100%, 1530px);
  margin: 0 auto;
  padding: 30px 28px 28px;
  background: #fff;
  border: 1px solid rgba(7, 26, 72, 0.05);
  border-radius: 32px;
  box-shadow: var(--ma-shadow);
}

.ma-mobile-layout { display: none; }

.ma-main-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(720px, 1.18fr);
  gap: 34px;
  align-items: start;
}

.ma-intro { min-width: 0; }
.ma-eyebrow {
  margin: 0 0 18px;
  color: var(--ma-orange);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.ma-title {
  margin: 0;
  width: 100%;
  max-width: none;

  color: var(--ma-navy);

  font-size: clamp(2.4rem, 3.05vw, 3.45rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.ma-copy {
  margin: 22px 0 0;
  max-width: 560px;
  color: var(--ma-text);
  font-size: 1.07rem;
  line-height: 1.58;
}

.ma-feature-list {
  margin-top: 28px;
  border-top: 1px solid var(--ma-border);
}
.ma-feature-row {
  display: grid;
  grid-template-columns: 86px 34px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--ma-border);
}
.ma-feature-icon-wrap {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
}
.ma-feature-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.ma-feature-check {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.ma-feature-row h3 {
  margin: 0 0 8px;
  color: var(--ma-navy);
  font-size: 1.08rem;
  line-height: 1.18;
}
.ma-feature-row p {
  margin: 0;
  color: var(--ma-text);
  font-size: 0.94rem;
  line-height: 1.5;
}

.ma-dashboard-column { min-width: 0; }
.ma-hero-desktop {
  width: 100%;
  max-height: 610px;
  object-fit: contain;
}

.ma-capabilities-panel {
  margin-top: 14px;
  padding: 20px 28px 22px;
  border: 1px solid var(--ma-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(8, 29, 68, 0.06);
}
.ma-capabilities-panel h2 {
  margin: 0 0 16px;
  color: var(--ma-navy);
  font-size: 1.15rem;
}
.ma-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.ma-capability {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}
.ma-capability img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.ma-capability h3 {
  margin: 0 0 5px;
  color: var(--ma-navy);
  font-size: 0.9rem;
  line-height: 1.18;
}
.ma-capability p {
  margin: 0;
  color: var(--ma-text);
  font-size: 0.78rem;
  line-height: 1.38;
}

.ma-benefits-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
  border: 1px solid var(--ma-border);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}
.ma-benefit {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 20px;
  align-items: start;
}
.ma-benefit + .ma-benefit {
  border-left: 1px solid var(--ma-border);
}
.ma-benefit img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.ma-benefit h3 {
  margin: 0 0 7px;
  color: var(--ma-navy);
  font-size: 0.96rem;
  line-height: 1.16;
}
.ma-benefit p {
  margin: 0;
  color: var(--ma-text);
  font-size: 0.83rem;
  line-height: 1.4;
}

@media (min-width: 981px) and (max-width: 1300px) {
  .ma-main-grid {
    grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
    gap: 24px;
  }
  .ma-feature-row {
    grid-template-columns: 74px 30px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
  }
  .ma-feature-icon-wrap,
  .ma-feature-icon {
    width: 66px;
    height: 66px;
  }
  .ma-capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ma-benefits-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ma-benefit {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 12px;
  }
  .ma-benefit img {
    width: 40px;
    height: 40px;
  }
  .ma-title {
    font-size: clamp(2.25rem, 3.2vw, 2.85rem);
    letter-spacing: -0.045em;
  }
}

/* ============================= MOBILE ============================= */

@media (max-width: 980px) {
.ma-shell {
    width: 100%;
    padding: 26px 18px 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .ma-desktop-layout {
    display: none;
  }

  .ma-mobile-layout {
    display: block;
  }

  /* =========================================================
     INTRO MOBILE
  ========================================================= */

  .ma-intro-mobile {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .ma-intro-mobile .ma-eyebrow {
    margin-bottom: 14px;
    font-size: 0.95rem;
  }

  .ma-intro-mobile .ma-title {
    width: 100%;
    max-width: none;

    margin: 0;

    font-size: clamp(2rem, 7.8vw, 3.15rem);
    line-height: 1.03;
    letter-spacing: -0.045em;

    text-wrap: balance;
  }

  .ma-intro-mobile .ma-copy {
    width: 100%;
    max-width: none;

    margin-top: 18px;

    font-size: 0.98rem;
    line-height: 1.5;

    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  /* =========================================================
     DASHBOARD MOBILE
  ========================================================= */

  .ma-mobile-dashboard-card {
    width: 100%;
    max-width: 760px;

    margin: 20px auto 0;
  }

  .ma-hero-mobile {
    width: 100%;
    height: auto;

    border-radius: 20px;
  }

  /* =========================================================
     FEATURE CARDS
  ========================================================= */

  .ma-mobile-feature-list {
    display: grid;
    gap: 12px;

    width: 100%;
    max-width: 760px;

    margin: 18px auto 0;
  }

  .ma-mobile-feature-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 28px;
    gap: 18px;

    align-items: center;

    padding: 16px 18px;

    border: 1px solid var(--ma-border);
    border-radius: 18px;

    background: #fff;

    box-shadow: 0 8px 22px rgba(8, 29, 68, 0.04);
  }

  .ma-mobile-feature-card > img {
    width: 62px;
    height: 62px;

    object-fit: contain;
  }

  .ma-mobile-feature-card h3 {
    margin: 0 0 6px;

    color: var(--ma-navy);

    font-size: 1.06rem;
    line-height: 1.16;
  }

  .ma-mobile-feature-card p {
    margin: 0;

    color: var(--ma-text);

    font-size: 0.94rem;
    line-height: 1.42;
  }

  .ma-mobile-feature-arrow {
    color: var(--ma-navy);

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

  /* =========================================================
     BENEFICIOS MOBILE
  ========================================================= */

  .ma-mobile-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    width: 100%;
    max-width: 760px;

    margin: 18px auto 0;

    border: 1px solid rgba(255, 101, 0, 0.16);
    border-radius: 18px;

    background: linear-gradient(
      180deg,
      #fffdfa,
      #fffaf6
    );

    overflow: hidden;
  }

  .ma-mobile-benefit {
    padding: 16px 14px;

    text-align: center;
  }

  .ma-mobile-benefit + .ma-mobile-benefit {
    border-left: 1px solid rgba(255, 101, 0, 0.14);
  }

  .ma-mobile-benefit img {
    width: 48px;
    height: 48px;

    margin: 0 auto 10px;

    object-fit: contain;
  }

  .ma-mobile-benefit h3 {
    margin: 0 0 6px;

    color: var(--ma-navy);

    font-size: 0.92rem;
    line-height: 1.14;
  }

  .ma-mobile-benefit p {
    margin: 0;

    color: var(--ma-text);

    font-size: 0.78rem;
    line-height: 1.38;
  }
}


/* ============================= SMALL MOBILE ============================= */

@media (max-width: 560px) {

  .ma-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  /*
   * Más compacto para intentar mantener:
   *
   * Analítica para entender
   * tu presencia
   */
  .ma-intro-mobile .ma-title {
    font-size: clamp(1.9rem, 7.7vw, 2.55rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
  }

  .ma-intro-mobile .ma-copy {
    margin-top: 16px;

    font-size: 0.94rem;
    line-height: 1.48;
  }

  .ma-mobile-dashboard-card {
    margin-top: 18px;
  }

  .ma-mobile-feature-card {
    grid-template-columns: 62px minmax(0, 1fr) 22px;

    gap: 12px;

    padding: 14px;
  }

  .ma-mobile-feature-card > img {
    width: 54px;
    height: 54px;
  }

  .ma-mobile-feature-card h3 {
    font-size: 1rem;
  }

  .ma-mobile-feature-card p {
    font-size: 0.86rem;
  }

  .ma-mobile-benefits {
    grid-template-columns: 1fr;
  }

  .ma-mobile-benefit {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);

    gap: 14px;

    align-items: center;

    text-align: left;
  }

  .ma-mobile-benefit + .ma-mobile-benefit {
    border-left: 0;
    border-top: 1px solid rgba(255, 101, 0, 0.14);
  }

  .ma-mobile-benefit img {
    width: 48px;
    height: 48px;

    margin: 0;
  }
}

/* Integración: la sección ocupa todo el ancho en móvil. */
@media (max-width: 980px) {
  .ma-section {
    padding: 0;
  }
}


/* =========================================================
   SECCIÓN · LA CONFIANZA
========================================================= */

.trust-section {
  --trust-navy: #061b40;
  --trust-navy-2: #0a2554;
  --trust-text: #172544;
  --trust-muted: #53627f;
  --trust-orange: #ff6500;
  --trust-border: #e5eaf2;
  --trust-soft: #f8fafd;
  --trust-shadow: 0 18px 46px rgba(8, 29, 68, 0.08);
  width: 100%;
  padding: 22px;
  background: #f5f7fb;
}

.trust-section,
.trust-section * {
  box-sizing: border-box;
}

.trust-section img {
  display: block;
  max-width: 100%;
}
.trust-shell {
  width: min(100%, 1530px);
  margin: 0 auto;
  padding: 32px 34px 28px;
  background: #fff;
  border: 1px solid rgba(6, 27, 64, 0.05);
  border-radius: 32px;
  box-shadow: var(--trust-shadow);
}

.trust-mobile-layout { display: none; }

/* ============================= DESKTOP ============================= */

.trust-desktop-main {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(760px, 1.2fr);
  gap: 38px;
  align-items: start;
}

.trust-intro-desktop { min-width: 0; }

.trust-eyebrow {
  margin: 0 0 16px;
  color: var(--trust-orange);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.trust-title {
  margin: 0;
  color: var(--trust-navy);
  font-weight: 850;
  letter-spacing: -0.045em;
}

.trust-title-desktop {
  max-width: 520px;
  font-size: clamp(2.55rem, 3.4vw, 4rem);
  line-height: 1.05;
}

.trust-rule {
  display: block;
  width: 66px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--trust-orange);
}

.trust-copy {
  margin: 24px 0 0;
  max-width: 530px;
  color: var(--trust-text);
  font-size: 1.06rem;
  line-height: 1.64;
}

.trust-reasons {
  margin-top: 30px;
}

.trust-reason {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}

.trust-reason + .trust-reason {
  border-top: 1px solid var(--trust-border);
}

.trust-reason img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.trust-reason h3 {
  margin: 0 0 7px;
  color: var(--trust-navy);
  font-size: 1.06rem;
  line-height: 1.18;
}

.trust-reason p {
  margin: 0;
  color: var(--trust-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--trust-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 29, 68, 0.07);
}

.trust-card-photo {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.trust-card-icon-wrap {
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  z-index: 2;
}

.trust-card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-card-body {
  padding: 46px 24px 22px;
  text-align: center;
}

.trust-card h3 {
  margin: 0;
  color: var(--trust-navy);
  font-size: 1.05rem;
  line-height: 1.18;
}

.trust-card p {
  margin: 14px 0 0;
  color: var(--trust-text);
  font-size: 0.92rem;
  line-height: 1.52;
}

/* ============================= FOOTER DESKTOP ============================= */

.trust-footer-desktop {
  display: grid;
  grid-template-columns: minmax(430px, 1.05fr) minmax(0, 1.95fr);
  margin-top: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #051735 0%, #071f45 100%);
  overflow: hidden;
}

.trust-footer-brand {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
}

.trust-footer-logo {
  width: 126px;
  height: 126px;
  object-fit: contain;
}

.trust-footer-statement {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 1.5vw, 1.65rem);
  font-weight: 760;
  line-height: 1.3;
}

.trust-footer-statement span,
.trust-footer-statement strong {
  display: block;
}

.trust-footer-statement strong {
  margin-top: 3px;
  color: var(--trust-orange);
}

.trust-footer-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-footer-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 22px 26px;
  color: #fff;
}

.trust-footer-item + .trust-footer-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-footer-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.trust-footer-item h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
  line-height: 1.2;
}

.trust-footer-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (min-width: 981px) and (max-width: 1300px) {
  .trust-desktop-main {
    grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
    gap: 26px;
  }

  .trust-card-grid { gap: 14px; }
  .trust-card-body { padding: 42px 16px 18px; }
  .trust-card h3 { font-size: 0.98rem; }
  .trust-card p { font-size: 0.85rem; }

  .trust-footer-desktop {
    grid-template-columns: minmax(360px, 1fr) minmax(0, 2fr);
  }

  .trust-footer-brand {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 22px;
  }

  .trust-footer-logo { width: 78px; height: 78px; }
  .trust-footer-item { padding: 18px 16px; }
}

/* ============================== MOBILE ============================== */

@media (max-width: 980px) {
  .trust-shell {
    width: 100%;
    padding: 28px 16px 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .trust-desktop-layout { display: none; }
  .trust-mobile-layout { display: block; }

  .trust-mobile-intro {
    max-width: 760px;
    margin: 0 auto;
  }

  .trust-mobile-intro .trust-eyebrow {
    margin-bottom: 14px;
    font-size: 0.94rem;
  }

  .trust-title-mobile {
    max-width: 710px;
    font-size: clamp(2.15rem, 8.2vw, 3.6rem);
    line-height: 1.03;
  }

  .trust-copy-mobile {
    max-width: 720px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .trust-mobile-hero {
    position: relative;
    max-width: 760px;
    margin: 26px auto 0;
    overflow: hidden;
    border-radius: 22px;
    background: var(--trust-navy);
  }

  .trust-mobile-hero-image {
    width: 100%;
    height: auto;
  }

  .trust-mobile-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 19, 43, 0.92) 0%, rgba(4, 19, 43, 0.74) 36%, rgba(4, 19, 43, 0.10) 70%, rgba(4, 19, 43, 0) 100%);
    pointer-events: none;
  }

  .trust-mobile-hero-copy {
    position: absolute;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: min(44%, 320px);
    color: #fff;
  }

  .trust-mobile-hero-copy h2,
  .trust-mobile-hero-copy p {
    opacity: 0;
    transform: translateY(16px);
  }

  .trust-mobile-hero-copy h2 {
    margin: 0;
    font-size: clamp(1.55rem, 4.6vw, 2.5rem);
    line-height: 1.12;
  }

  .trust-mobile-hero-copy p {
    margin: 10px 0 0;
    font-size: clamp(1.05rem, 3.2vw, 1.6rem);
    line-height: 1.25;
  }

  .trust-mobile-hero-copy strong {
    color: var(--trust-orange);
    font-weight: 800;
  }

  .trust-mobile-hero.is-visible .trust-mobile-hero-copy h2 {
    animation: trustTextIn 0.55s ease forwards 0.22s;
  }

  .trust-mobile-hero.is-visible .trust-mobile-hero-copy p {
    animation: trustTextIn 0.55s ease forwards 0.62s;
  }

  /* ================= MOBILE CAROUSEL: FULL DESKTOP CARDS ================= */

  .trust-mobile-benefit-list {
    width: 100%;
    max-width: 760px;
    margin: 18px auto 0;
  }

  .trust-mobile-carousel {
    width: 100%;
    touch-action: pan-y;
  }

  .trust-mobile-carousel-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
  }

  .trust-mobile-carousel-track {
    display: flex;
    width: 100%;
    will-change: transform;
  }

  .trust-mobile-carousel-card {
    position: relative;
    flex: 0 0 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--trust-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(8, 29, 68, 0.07);
  }

  .trust-mobile-carousel-media {
    position: relative;
  }

  .trust-mobile-carousel-photo {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
  }

  .trust-mobile-carousel-icon-wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 78px;
    height: 78px;
    z-index: 2;
  }

  .trust-mobile-carousel-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .trust-mobile-carousel-body {
    padding: 48px 24px 24px;
    text-align: center;
  }

  .trust-mobile-carousel-body h3 {
    margin: 0;
    color: var(--trust-navy);
    font-size: 1.12rem;
    line-height: 1.18;
  }

  .trust-mobile-carousel-body p {
    margin: 14px auto 0;
    max-width: 520px;
    color: var(--trust-text);
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .trust-mobile-carousel-controls {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
  }

  .trust-mobile-carousel-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--trust-border);
    border-radius: 999px;
    background: #fff;
    color: var(--trust-navy);
    font-size: 1.75rem;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(8, 29, 68, 0.06);
    cursor: pointer;
  }

  .trust-mobile-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
  }

  .trust-mobile-carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cfd7e6;
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .trust-mobile-carousel-dot.is-active {
    width: 22px;
    background: var(--trust-orange);
  }

  .trust-footer-mobile {
    max-width: 760px;
    margin: 16px auto 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #051735 0%, #071f45 100%);
    overflow: hidden;
  }

  .trust-footer-mobile-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-footer-mobile-item {
    padding: 18px 14px;
    text-align: center;
    color: #fff;
  }

  .trust-footer-mobile-item + .trust-footer-mobile-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-footer-mobile-item img {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    object-fit: contain;
  }

  .trust-footer-mobile-item h3 {
    margin: 0 0 7px;
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .trust-footer-mobile-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    line-height: 1.36;
  }
}

@media (max-width: 560px) {
  .trust-shell { padding-left: 12px; padding-right: 12px; }

  .trust-title-mobile {
    font-size: clamp(2rem, 9.1vw, 2.85rem);
  }

  .trust-copy-mobile {
    font-size: 0.94rem;
  }

  .trust-mobile-hero {
    margin-top: 22px;
    border-radius: 18px;
  }

  .trust-mobile-hero-copy {
    left: 20px;
    width: 42%;
  }

  .trust-mobile-hero-copy h2 {
    font-size: clamp(1.35rem, 5.6vw, 1.8rem);
  }

  .trust-mobile-hero-copy p {
    font-size: clamp(0.98rem, 4.1vw, 1.25rem);
  }

  .trust-mobile-carousel-icon-wrap {
    width: 70px;
    height: 70px;
  }

  .trust-mobile-carousel-body {
    padding: 44px 18px 20px;
  }

  .trust-mobile-carousel-body h3 {
    font-size: 1.04rem;
  }

  .trust-mobile-carousel-body p {
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .trust-mobile-carousel-controls {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .trust-mobile-carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.55rem;
  }

  .trust-footer-mobile-item {
    padding: 16px 8px;
  }

  .trust-footer-mobile-item img {
    width: 48px;
    height: 48px;
  }

  .trust-footer-mobile-item h3 {
    font-size: 0.82rem;
  }

  .trust-footer-mobile-item p {
    font-size: 0.68rem;
  }
}

@keyframes trustTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-mobile-hero-copy h2,
  .trust-mobile-hero-copy p {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}


/* Integración: la sección ocupa todo el ancho en móvil. */
@media (max-width: 980px) {
  .trust-section {
    padding: 0;
  }
}


/* =========================================================
   ÚNETE AL ECOSISTEMA
   ========================================================= */
:root {
  --join-bg: #f6f8fb;
  --join-navy: #041533;
  --join-navy-2: #061b46;
  --join-navy-3: #091f52;
  --join-blue-line: rgba(176, 205, 255, 0.14);
  --join-card-line: rgba(255, 255, 255, 0.08);
  --join-white: #ffffff;
  --join-orange: #ff8a14;
  --join-orange-2: #ff6a00;
  --join-text-soft: rgba(255, 255, 255, 0.86);
  --join-shadow: 0 28px 64px rgba(4, 21, 51, 0.22);
}

.join-section { padding: 24px; background: var(--join-bg); }
.join-shell {
  width: min(100%, 1530px);
  margin: 0 auto;
}
.join-mobile-layout { display: none; }

.join-fusion-card {
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #02122f 0%, #04183d 100%);
  box-shadow: var(--join-shadow);
}

.join-hero {
  position: relative;
  min-height: 660px;
}

.join-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 17, 47, 0.96) 0%, rgba(2, 17, 47, 0.94) 24%, rgba(2, 17, 47, 0.72) 46%, rgba(2, 17, 47, 0.24) 72%, rgba(2, 17, 47, 0.06) 100%),
    radial-gradient(circle at 16% 18%, rgba(255, 138, 20, 0.14) 0%, rgba(255, 138, 20, 0) 28%);
}

.join-content {
  position: relative;
  z-index: 2;
  width: min(48%, 660px);
  min-height: 660px;
  padding: 72px 76px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-eyebrow {
  margin: 0;
  color: var(--join-orange);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.join-rule {
  display: block;
  width: 76px;
  height: 4px;
  margin: 18px 0 28px;
  border-radius: 999px;
  background: var(--join-orange);
}

.join-title {
  margin: 0;
  color: var(--join-white);
}

.join-title-line {
  display: block;
  font-size: clamp(3.4rem, 3.8vw, 5rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.join-title-line + .join-title-line { margin-top: 8px; }
.join-accent { color: var(--join-orange); }

.join-tagline {
  margin: 28px 0 0;
  color: var(--join-white);
  font-size: 1.72rem;
  font-weight: 500;
  line-height: 1.2;
}

.join-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 640px;
}

.join-proof-item {
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--join-white);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}
.join-proof-item:last-child { border-right: 0; }

.join-proof-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(9, 31, 82, 0.48);
  font-size: 1.45rem;
}

.join-cta-row { display: flex; }
.join-cta-row { margin-top: 26px; }

.join-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 382px;
  min-height: 70px;
  padding: 18px 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff9a2e 0%, #ff6b00 100%);
  color: var(--join-white);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 22px 46px rgba(255, 106, 0, 0.28);
}
.join-cta-button::after {
  content: "→";
  margin-left: 12px;
  font-size: 1.25em;
}

.join-support-copy {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  line-height: 1.3;
  max-width: 560px;
}

.join-footer-fusion {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(1, 14, 36, 0.86) 0%, rgba(2, 14, 34, 0.94) 100%);
}

.join-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr 0.84fr 0.96fr;
  gap: 38px;
  padding: 34px 32px 28px;
  align-items: start;
}

.join-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.join-brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}
.join-brand-mark span {
  display: block;
  width: 12px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #d7e2f7 0%, #74839f 100%);
}
.join-brand-mark span:nth-child(1) { height: 22px; }
.join-brand-mark span:nth-child(2) { height: 34px; background: linear-gradient(180deg, #ffffff 0%, #9cabca 100%); }
.join-brand-mark span:nth-child(3) { height: 46px; background: linear-gradient(180deg, #ffab4c 0%, #ff6b00 100%); }
.join-brand-mark span:nth-child(4) { height: 30px; background: linear-gradient(180deg, #87a9df 0%, #365d97 100%); }

.join-brand-name {
  color: var(--join-white);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.join-brand-name span { color: #f1a65d; }

.join-footer-brand p,
.join-footer-contact p,
.join-footer-cta p {
  margin: 18px 0 0;
  color: var(--join-text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.join-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.join-social {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--join-white);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  font-weight: 700;
}

.join-footer-menu h2,
.join-footer-contact h2,
.join-footer-cta h2 {
  margin: 0;
  color: var(--join-white);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.join-footer-menu ul,
.join-mobile-menu {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.join-footer-menu li,
.join-mobile-menu li {
  margin: 0 0 15px;
  color: var(--join-text-soft);
  font-size: 1rem;
}

.join-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--join-white);
  font-weight: 600;
}
.join-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 138, 20, 0.34);
  color: var(--join-orange);
}

.join-footer-cta {
  padding: 28px 28px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(8, 35, 77, 0.88) 0%, rgba(5, 24, 61, 0.92) 100%);
}
.join-mini-eyebrow {
  margin: 0;
  color: var(--join-orange);
  font-size: 0.88rem !important;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.join-footer-cta h2 {
  margin-top: 16px;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.join-footer-cta p { margin-top: 14px; font-size: 0.95rem; }
.join-footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0a45f 0%, #d98848 100%);
  color: var(--join-white);
  font-size: 1rem;
  font-weight: 800;
}
.join-footer-cta-button::after { content: "→"; margin-left: 10px; }

.join-footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 32px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.join-footer-bottom p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.4;
}
.join-footer-bottom p:last-child { text-align: right; }

.join-reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.join-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.join-delay-1 { transition-delay: 0.12s; }
.join-delay-2 { transition-delay: 0.24s; }
.join-delay-3 { transition-delay: 0.42s; }
.join-delay-4 { transition-delay: 0.64s; }

@media (min-width: 981px) and (max-width: 1340px) {
  .join-content {
    width: min(50%, 620px);
    padding: 60px 52px 48px;
  }
  .join-title-line { font-size: clamp(3rem, 3.15vw, 4rem); }
  .join-tagline { font-size: 1.45rem; }
  .join-proof-row { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 18px; }
  .join-proof-item:nth-child(2) { border-right: 0; }
  .join-cta-button { min-width: 320px; }
  .join-footer-grid {
    grid-template-columns: 1.15fr 0.95fr 0.82fr;
  }
  .join-footer-cta {
    grid-column: 1 / -1;
    max-width: 460px;
  }
}

/* ============================= MOBILE ============================= */
@media (max-width: 980px) {
  .join-section { padding: 0; }
  .join-desktop-layout { display: none; }
  .join-mobile-layout { display: block; }
  .join-shell { width: 100%; }
  .join-section {
    background: linear-gradient(180deg, #02122f 0%, #061b46 54%, #02112b 100%);
  }
  .join-mobile-layout {
    padding: 30px 18px 24px;
    color: var(--join-white);
  }
  .join-mobile-copy,
  .join-mobile-benefits,
  .join-cta-row-mobile,
  .join-mobile-footer {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .join-title-mobile .join-title-line {
    font-size: clamp(2.45rem, 8.4vw, 4rem);
    line-height: 1.02;
  }
  .join-tagline {
    margin-top: 18px;
    font-size: 1.18rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.96);
  }
  .join-mobile-hero {
    position: relative;
    max-width: 820px;
    margin: 24px auto 0;
    border-radius: 24px;
    overflow: hidden;
    background: #081b45;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  }
  .join-mobile-image { width: 100%; }
  .join-mobile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 21, 51, 0.02) 0%, rgba(4, 21, 51, 0.14) 100%);
    pointer-events: none;
  }
  .join-mobile-benefits {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }
  .join-mobile-benefit {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
  }
  .join-mobile-benefit-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 138, 20, 0.38);
    color: var(--join-orange);
    background: rgba(9, 31, 82, 0.72);
    font-size: 1.35rem;
  }
  .join-mobile-benefit h2 {
    margin: 0 0 6px;
    color: var(--join-white);
    font-size: 1.08rem;
    line-height: 1.18;
  }
  .join-mobile-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .join-cta-row-mobile {
    margin-top: 18px;
  }
  .join-cta-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    border-radius: 18px;
    font-size: 1.18rem;
  }
  .join-mobile-footer {
    margin-top: 24px;
    padding: 22px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .join-mobile-footer-copy {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
    line-height: 1.55;
  }
  .join-mobile-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--join-white);
    font-weight: 600;
  }
  .join-mobile-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin-top: 22px;
  }
  .join-mobile-menu li {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .join-mobile-footer-bottom {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .join-mobile-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  .join-mobile-layout { padding: 28px 14px 20px; }
  .join-eyebrow {
    font-size: 0.96rem;
    letter-spacing: 0.11em;
  }
  .join-rule {
    width: 56px;
    height: 3px;
    margin: 14px 0 18px;
  }
  .join-title-mobile .join-title-line {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }
  .join-title-line + .join-title-line { margin-top: 4px; }
  .join-tagline {
    font-size: 1rem;
    margin-top: 14px;
  }
  .join-mobile-hero {
    margin-top: 20px;
    border-radius: 20px;
  }
  .join-mobile-benefit {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .join-mobile-benefit-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .join-mobile-benefit h2 { font-size: 1rem; }
  .join-mobile-benefit p { font-size: 0.86rem; }
  .join-cta-button {
    min-height: 56px;
    font-size: 1.08rem;
  }
  .join-brand-name { font-size: 1.6rem; }
  .join-brand-mark { height: 40px; }
  .join-brand-mark span { width: 10px; }
  .join-mobile-menu {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Media JSON: desktop proof icons */
.join-proof-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================================================================
   FINAL ADJUSTMENTS
   Desktop: same composition, larger borderless icons.
   Mobile: headline over the upper part of the image, 3 title lines,
   same Cloudinary icons as desktop, no CTA.
   ================================================================ */

/* Desktop icon refinement only */
@media (min-width: 981px) {
  .join-proof-icon {
    width: 66px;
    height: 66px;
    border: 0;
    background: transparent;
  }

  .join-proof-icon img {
    width: 66px;
    height: 66px;
    object-fit: contain;
  }
}

@media (max-width: 980px) {
  .join-mobile-layout {
    padding: 0 18px 24px;
  }

  .join-mobile-hero-wrap {
    max-width: 820px;
    margin: 0 auto;
  }

  .join-mobile-hero {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: #081b45;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  }

  .join-mobile-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .join-mobile-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg,
        rgba(2, 14, 38, 0.93) 0%,
        rgba(2, 14, 38, 0.88) 20%,
        rgba(2, 14, 38, 0.68) 37%,
        rgba(2, 14, 38, 0.28) 53%,
        rgba(2, 14, 38, 0.04) 68%,
        rgba(2, 14, 38, 0.00) 100%),
      linear-gradient(90deg,
        rgba(2, 14, 38, 0.28) 0%,
        rgba(2, 14, 38, 0.08) 72%,
        rgba(2, 14, 38, 0.02) 100%);
    pointer-events: none;
  }

  .join-mobile-copy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 30px 26px 0;
  }

  .join-mobile-copy .join-eyebrow {
    font-size: 0.94rem;
    letter-spacing: 0.115em;
  }

  .join-mobile-copy .join-rule {
    width: 56px;
    height: 3px;
    margin: 13px 0 17px;
  }

  .join-title-mobile .join-title-line {
    font-size: clamp(2.22rem, 7.6vw, 3.45rem);
    line-height: 0.98;
    letter-spacing: -0.052em;
    white-space: nowrap;
  }

  .join-title-mobile .join-title-line + .join-title-line {
    margin-top: 4px;
  }

  .join-mobile-copy .join-tagline {
    margin-top: 15px;
    max-width: 92%;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    line-height: 1.28;
  }

  .join-mobile-benefits {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin: 16px auto 0;
  }

  .join-mobile-benefit {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 15px 16px;
  }

  .join-mobile-benefit-icon {
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .join-mobile-benefit-icon img {
    display: block;
    width: 62px;
    height: 62px;
    object-fit: contain;
  }
}

@media (max-width: 560px) {
  .join-mobile-layout {
    padding: 0 14px 20px;
  }

  .join-mobile-hero {
    border-radius: 20px;
  }

  .join-mobile-copy {
    padding: 24px 18px 0;
  }

  .join-mobile-copy .join-eyebrow {
    font-size: 0.86rem;
  }

  .join-mobile-copy .join-rule {
    width: 50px;
    margin: 12px 0 15px;
  }

  .join-title-mobile .join-title-line {
    font-size: clamp(2rem, 8.85vw, 2.88rem);
    line-height: 0.99;
  }

  .join-mobile-copy .join-tagline {
    margin-top: 13px;
    font-size: 0.9rem;
  }

  .join-mobile-benefit {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .join-mobile-benefit-icon,
  .join-mobile-benefit-icon img {
    width: 56px;
    height: 56px;
  }
}


.join-mobile-benefit h3 {
  margin: 0 0 6px;
  color: var(--join-white);
  font-size: 1.08rem;
  line-height: 1.18;
}
@media (max-width: 560px) {
  .join-mobile-benefit h3 { font-size: 1rem; }
}


/* =========================================================
   NAVBAR + FOOTER · REFINAMIENTO FINAL
   - CTA naranja consistente con Ecosistema MiTepuy (#ff6500)
   - Navbar más compacto, sin botón Acceder
   - Entrada progresiva del navbar y footer
========================================================= */

:root {
  --home-ecosystem-orange: #ff6500;
  --home-ecosystem-orange-hover: #ff741a;
}

@media (min-width: 821px) {
  .home-header-container {
    width: min(calc(100% - 32px), var(--home-max-width));
    grid-template-columns: minmax(150px, 182px) minmax(0, 1fr) auto;
    gap: 18px;
  }

  .home-brand-logo {
    height: 42px;
    max-width: 158px;
  }

  .home-navigation-list {
    gap: clamp(12px, 1.5vw, 24px);
  }

  .home-navigation-link {
    min-height: 34px;
    font-size: 0.74rem;
  }

  .home-header-actions {
    gap: 12px;
  }

  .home-profile-cta {
    min-height: 42px;
    padding-inline: 20px;
    border-radius: 12px;
    background: var(--home-ecosystem-orange);
    box-shadow: 0 8px 18px rgba(255, 101, 0, 0.16);
  }

  .home-profile-cta:hover {
    background: var(--home-ecosystem-orange-hover);
    filter: none;
  }
}

.home-mobile-navigation-cta,
.home-footer-profile-button {
  background: var(--home-ecosystem-orange);
}

.home-mobile-navigation-cta:hover,
.home-footer-profile-button:hover {
  background: var(--home-ecosystem-orange-hover);
  filter: none;
}

/* Navbar intro: logo -> links -> language -> CTA */
.home-nav-reveal {
  opacity: 0;
  transform: translateY(-10px);
  filter: blur(3px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 520ms ease;
  will-change: opacity, transform, filter;
}

.home-nav-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Footer proportions */
.home-footer-container {
  gap: 42px;
}

.home-footer-profile-cta {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 26px;
}

.home-footer-profile-title {
  max-width: 250px;
  font-size: clamp(1.28rem, 1.8vw, 1.58rem);
  line-height: 1.12;
}

.home-footer-profile-description {
  max-width: 280px;
  margin-top: 16px;
  font-size: 0.8rem;
  line-height: 1.58;
}

.home-footer-profile-reminder {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 12px 0 0;
  color: rgba(247, 243, 237, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
}

.home-footer-profile-button {
  margin-top: auto;
  align-self: flex-start;
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(255, 101, 0, 0.16);
}

/* Footer reveal: progressively when it enters the viewport */
.home-footer-reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 640ms ease;
  will-change: opacity, transform, filter;
}

.home-footer-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1100px) {
  .home-footer-profile-cta {
    min-height: 270px;
  }
}

@media (max-width: 820px) {
  .home-footer-profile-cta {
    min-height: 0;
  }

  .home-footer-profile-button {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-nav-reveal,
  .home-footer-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   CONFIRMACIÓN — SOLICITUD DE PERFIL PROFESIONAL
========================================================== */

.home-profile-request-success-message {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;

  width: min(92vw, 520px);
  padding: 28px 30px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  border: 1px solid rgba(224, 160, 108, 0.34);
  border-radius: 20px;

  background:
    radial-gradient(
      circle at top,
      rgba(224, 160, 108, 0.14),
      transparent 44%
    ),
    #061426;

  color: #f7f3ed;

  box-shadow:
    0 28px 80px rgba(3, 10, 18, 0.28),
    0 8px 24px rgba(3, 10, 18, 0.12);

  text-align: center;

  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% + 18px)) scale(0.985);

  transition:
    opacity 320ms ease,
    visibility 320ms ease,
    transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.home-profile-request-success-message.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.home-profile-request-success-logo {
  width: min(210px, 62%);
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

.home-profile-request-success-title {
  display: block;
  margin-top: 2px;

  color: #f7f3ed;

  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.home-profile-request-success-description {
  max-width: 420px;
  margin: 0;

  color: rgba(247, 243, 237, 0.78);

  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .home-profile-request-success-message {
    width: calc(100vw - 32px);
    padding: 24px 22px 26px;
    border-radius: 18px;
  }

  .home-profile-request-success-logo {
    width: min(190px, 68%);
  }

  .home-profile-request-success-description {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-profile-request-success-message {
    transition: none;
  }
}

/* =========================================================
   MEDIA DINÁMICA · EVITAR PLACEHOLDERS VACÍOS AL CARGAR
========================================================= */

img[data-media-key] {
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease;
}

img[data-media-key].is-media-ready {
  opacity: 1;
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  img[data-media-key] {
    transition: none;
  }
}

/* =========================================================
   HERO · AJUSTE FINAL DESKTOP
   - ¿Qué necesitas?: sin tarjetas, iconos premium más grandes.
   - Separación visual entre Hero y Qué somos.
   Mobile (<= 820px) permanece sin cambios de layout.
========================================================= */
@media (min-width: 821px) {
  .about-hero {
    margin-bottom: 44px;
  }

  .about-hero-category {
    min-height: 96px;
    gap: 9px;
    padding: 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-hero-category-icon {
    width: clamp(48px, 3.6vw, 60px);
    height: clamp(48px, 3.6vw, 60px);
    flex: 0 0 auto;
    object-fit: contain;
  }
}
