html {
  scroll-behavior: smooth;
}

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

.desktop-home__hero,
.desktop-home__sobre,
.desktop-home__cta-banner,
.desktop-home__servicios,
.desktop-home__experiencia,
.desktop-home__intl,
.desktop-home__testimonios,
.desktop-home__videos,
.desktop-home__galeria,
.desktop-home__articulos,
.desktop-home__hablemos {
  scroll-margin-top: 120px;
}

:root {
  --color-negro: #211f21;
  --color-gris-panel: #2a282a;
  --color-gris-card: #2d2d2d;
  --color-gris-soft: #121112;
  --color-rosado: #d73e74;
  --color-amarillo: #f8d541;
  --color-blanco: #ffffff;
  --color-blanco-suave: #ededed;
  --color-texto-muted: rgba(255, 255, 255, 0.8);
  --color-texto-soft: rgba(255, 255, 255, 0.7);
  --color-texto-faint: rgba(255, 255, 255, 0.5);
  --color-texto-dim: rgba(255, 255, 255, 0.4);
  --color-border-light: rgba(255, 255, 255, 0.05);
  --color-border-ui: rgba(255, 255, 255, 0.1);
  --color-border-card: rgba(255, 255, 255, 0.2);
  --color-hero-cream: #fffdfc;
  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
  --gradient-brand: linear-gradient(
    180deg,
    rgba(255, 63, 164, 0.9) 0%,
    rgba(255, 47, 109, 0.9) 54.533%,
    rgba(255, 31, 61, 0.8) 84.344%,
    rgba(255, 42, 26, 0.8) 100%
  );
  --gradient-hero-overlay: linear-gradient(
    180deg,
    rgba(255, 63, 164, 0.54) 0%,
    rgba(255, 47, 109, 0.54) 54.533%,
    rgba(255, 31, 61, 0.48) 84.344%,
    rgba(255, 42, 26, 0.48) 100%
  );
  /* Hero variante slide 2 (844:1513): capas con opacidad distinta al slide 1 */
  --gradient-hero-overlay-2: linear-gradient(
    180deg,
    rgba(255, 63, 164, 0.45) 0%,
    rgba(255, 47, 109, 0.45) 54.533%,
    rgba(255, 31, 61, 0.4) 84.344%,
    rgba(255, 42, 26, 0.4) 100%
  );
  --gradient-hero-overlay-2-muted: linear-gradient(
    180deg,
    rgba(255, 63, 164, 0.36) 0%,
    rgba(255, 47, 109, 0.36) 54.533%,
    rgba(255, 31, 61, 0.32) 84.344%,
    rgba(255, 42, 26, 0.32) 100%
  );
  --gradient-cta-text: linear-gradient(180deg, #f8d541 0%, #d73e74 100%);
  --gradient-cta-navbar-hover: linear-gradient(
    180deg,
    #f8d541 0%,
    #f8d541 13.422%,
    #e7875b 44.38%,
    #d73e74 100%
  );
  /* Timeline «Sobre mí»: mismo degradado que nodos (#FF3FA4/#FF2F6D 90 %, #FF1F3D/#FF2A1A 80 %) */
  --gradient-sobre-timeline-track: var(--gradient-brand);
  --gradient-sobre-dot-top: linear-gradient(
    205deg,
    rgb(255, 63, 164) 0%,
    rgb(255, 47, 109) 100%
  );
  --gradient-sobre-dot-mid: linear-gradient(
    205deg,
    rgb(255, 47, 109) 0%,
    rgb(255, 31, 61) 100%
  );
  --gradient-sobre-dot-bottom: linear-gradient(
    205deg,
    rgb(255, 31, 61) 0%,
    rgb(255, 42, 26) 100%
  );

  --gradient-cta-btn: linear-gradient(
    180deg,
    #ec699b 0%,
    #ea6698 7.14%,
    #e86294 14.29%,
    #e65f91 21.43%,
    #e45c8d 28.57%,
    #e2588a 35.71%,
    #e05587 42.86%,
    #de5183 50%,
    #dc4d80 57.14%,
    #da4a7d 64.29%,
    #d84679 71.43%,
    #d64276 78.57%,
    #d43e72 85.71%,
    #d23a6f 92.86%,
    #d0366c 100%
  );
  --shadow-card: 0 8px 32px rgba(31, 38, 135, 0.2);
  --shadow-elevated: 0 20px 40px rgba(215, 62, 116, 0.5);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-xxl: 32px;
  --radius-pill: 9999px;
  /* Contenedor home: tope mayor que el frame Figma 1440; gutter para alinear con navbar/pie. */
  --layout-max: 1680px;
  --layout-gutter: clamp(16px, 4vw, 48px);
  --space-frame: var(--layout-max);
  --home-section-inner-max: 1235px;
  --home-section-inner-pad-x: clamp(28px, 5vw, 64px);
  --radius-servicios-section: calc(var(--radius-xxl) + 10px);
  --home-viewport-track: min(var(--layout-max), 100vw);
  --home-main-edge-inset: calc((100vw - var(--home-viewport-track)) / 2 + var(--layout-gutter));
}

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

body {
  margin: 0;
  background: var(--color-negro);
  font-family: var(--font-poppins);
}

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

.desktop-home {
  position: relative;
  width: 100%;
  max-width: min(var(--layout-max), 100%);
  min-height: 0;
  margin: 0 auto;
  padding-inline: var(--layout-gutter);
  background: var(--color-negro);
  overflow: hidden;
}

/* --- Navbar (762:1948) --- */
.desktop-home__navbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  width: min(1219.75px, calc(100% - 2 * var(--layout-gutter)));
  max-width: 1219.75px;
  height: 81px;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  margin: 16px auto 0;
  border: 1px solid var(--color-border-ui);
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(46, 46, 46, 0.9) 100%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.desktop-home--nav-open .desktop-home__navbar {
  z-index: 20;
}

html.desktop-home-page--nav-open .desktop-home__navbar {
  z-index: 20;
}

.desktop-home__navbar-menu {
  display: flex;
  width: 28.75px;
  height: 20px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.desktop-home__navbar-menu img {
  width: 28.75px;
  height: 20px;
}

.desktop-home__navbar-logo {
  position: absolute;
  top: 29.09px;
  left: 50%;
  width: 229px;
  height: 20.825px;
  transform: translateX(-50%);
  pointer-events: none;
}

.desktop-home__navbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-home__navbar-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 24px;
}

.desktop-home__lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 50px;
  padding: 4px;
  box-sizing: border-box;
  border: 1px solid var(--color-border-ui);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.desktop-home__lang:hover {
  border-color: rgba(236, 105, 155, 0.55);
  box-shadow: 0 0 12px rgba(215, 62, 116, 0.25);
}

.desktop-home__lang-active,
.desktop-home__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 52px;
  height: 100%;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}

.desktop-home__lang-active {
  background: var(--gradient-cta-btn);
  color: var(--color-blanco);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.35);
}

.desktop-home__lang-btn {
  background: transparent;
  color: var(--color-blanco-suave);
  cursor: pointer;
  transition: color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}

.desktop-home__lang-btn:visited {
  color: var(--color-blanco-suave);
}

.desktop-home__lang-btn:hover,
.desktop-home__lang-btn:focus-visible {
  color: var(--color-blanco);
  background: rgba(255, 255, 255, 0.08);
}

.desktop-home__lang-btn:active {
  transform: scale(0.96);
}

.desktop-home__navbar-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 128px;
  height: 50px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 30px;
  background: var(--gradient-cta-btn);
  box-shadow: none;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--color-blanco);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.4s ease, border-radius 0.4s ease;
}

.desktop-home__navbar-cta:hover,
.desktop-home__navbar-cta:focus-visible {
  border-radius: 31px;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.4), 0 0 10px rgba(215, 62, 116, 0.6);
  color: var(--color-blanco);
}

.desktop-home__navbar-cta:visited {
  color: var(--color-blanco);
}

.desktop-home__navbar-menu:focus-visible,
.desktop-home__navbar-cta:focus-visible,
.desktop-home__lang-btn:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

/* Portada escritorio: hero a ancho de viewport desde el borde superior y barra flotante encima (Figma hero). */
@media (min-width: 1025px) {
  body.rcd-front-hero-layout {
    overflow-x: clip;
  }

  /* El hero a 100vw sobresale del marco 1440 px; sin esto overflow:hidden recorta y deja franjas. */
  body.rcd-front-hero-layout .desktop-home {
    overflow: visible;
  }

  body.rcd-front-hero-layout .desktop-home__navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    right: auto;
    margin: 0;
    transform: translateX(-50%);
    z-index: 30;
  }

  body.rcd-front-hero-layout .desktop-home__hero {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    height: min(48.82vw, 703px);
    min-height: 520px;
  }

  /* El fondo ocupa solo el espacio adyacente al retrato (no detrás de él) para que la imagen
     se recorte menos y se refleje correctamente; el retrato opaco cubre el resto sin dejar costura. */
  body.rcd-front-hero-layout .desktop-home__hero-bg {
    left: 0;
    right: min(42.29167vw, 609px);
    width: auto;
    height: 100%;
  }

  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-layout="even"] .desktop-home__hero-bg {
    left: min(42.29167vw, 609px);
    right: 0;
  }

  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-active-bg="video"] .desktop-home__hero-bg,
  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-active-bg="video"][data-hero-layout="even"] .desktop-home__hero-bg {
    left: 0;
    right: 0;
    width: auto;
  }

  body.rcd-front-hero-layout .desktop-home__hero-bg-layer {
    width: 100%;
    height: 100%;
  }

  body.rcd-front-hero-layout .desktop-home__hero-portrait {
    left: auto;
    right: 0;
    width: min(42.29167vw, 609px);
    height: 100%;
  }

  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-layout="even"] .desktop-home__hero-portrait {
    right: auto;
    left: 0;
  }

  body.rcd-front-hero-layout .desktop-home__hero-nav {
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  body.rcd-front-hero-layout .desktop-home__hero-nav--prev {
    left: clamp(24px, 6.32vw, 91px);
    transform: translateY(-50%);
  }

  body.rcd-front-hero-layout .desktop-home__hero-nav--next {
    left: auto;
    right: clamp(24px, 6.94vw, 100px);
    transform: translateY(-50%);
  }

  body.rcd-front-hero-layout .desktop-home__hero-copy {
    left: clamp(32px, 13.194vw, 190px);
    right: auto;
    top: clamp(140px, 16.8vw, 242px);
    width: min(40vw, 576px);
    z-index: 1;
  }

  /* Layout par (slide 2): el retrato va a la izquierda, así que el texto se centra
     horizontalmente dentro de la zona libre a la derecha del retrato en lugar de anclarse al borde. */
  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-layout="even"] .desktop-home__hero-copy {
    left: calc(
      min(42.29167vw, 609px) +
        (100vw - min(42.29167vw, 609px) - min(40vw, 576px)) / 2
    );
    right: auto;
  }

  /* Todos los slides ocupan la misma altura (la del más alto) y el botón se ancla al fondo,
     así los CTA quedan a la misma altura sin depender de la extensión del texto. */
  body.rcd-front-hero-layout .desktop-home__hero-copy {
    align-self: stretch;
  }

  body.rcd-front-hero-layout .desktop-home__hero-copy > .desktop-home__hero-cta-btn,
  body.rcd-front-hero-layout .desktop-home__hero-copy > .desktop-home__hero-cta {
    margin-top: auto;
  }

  body.rcd-front-hero-layout .desktop-home__hero-dots {
    z-index: 2;
  }

  body.rcd-front-hero-layout .desktop-home__servicios {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  body.rcd-front-hero-layout .desktop-home__servicios-header,
  body.rcd-front-hero-layout .desktop-home__servicios-grid-wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: var(--home-main-edge-inset);
    padding-right: var(--home-main-edge-inset);
  }

  body.rcd-front-hero-layout .desktop-home__intl {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  body.rcd-front-hero-layout .desktop-home__testimonios {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  body.rcd-front-hero-layout .desktop-home__testimonios-header {
    padding-left: var(--home-main-edge-inset);
    padding-right: var(--home-main-edge-inset);
  }

  body.rcd-front-hero-layout .desktop-home__testimonios-carousel {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: var(--home-main-edge-inset);
    padding-right: var(--home-main-edge-inset);
    justify-content: flex-start;
    position: relative;
    gap: 0;
  }

  body.rcd-front-hero-layout .desktop-home__testimonios-viewport {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }

  body.rcd-front-hero-layout .desktop-home__test-nav--prev {
    position: absolute;
    top: 50%;
    left: clamp(24px, 6.94vw, 100px);
    right: auto;
    transform: translateY(-50%);
    flex: none;
  }

  body.rcd-front-hero-layout .desktop-home__test-nav--next {
    position: absolute;
    top: 50%;
    right: clamp(24px, 6.94vw, 100px);
    left: auto;
    transform: translateY(-50%);
    flex: none;
  }

  body.rcd-front-hero-layout .desktop-home__videos {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 0;
    padding-right: 0;
  }

  body.rcd-front-hero-layout .desktop-home__videos-header,
  body.rcd-front-hero-layout .desktop-home__videos-viewport {
    width: 100%;
    max-width: none;
    padding-left: var(--home-main-edge-inset);
    padding-right: var(--home-main-edge-inset);
    box-sizing: border-box;
  }

  body.rcd-front-hero-layout .desktop-home__videos-navs {
    margin-right: var(--home-main-edge-inset);
  }

  body.rcd-front-hero-layout .desktop-home__galeria {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 0;
    padding-right: 0;
  }

  body.rcd-front-hero-layout .desktop-home__galeria-header,
  body.rcd-front-hero-layout .desktop-home__galeria-carousel {
    width: 100%;
    max-width: none;
    padding-left: var(--home-main-edge-inset);
    padding-right: var(--home-main-edge-inset);
    box-sizing: border-box;
  }

  body.rcd-front-hero-layout .desktop-home__articulos {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 0;
    padding-right: 0;
  }

  body.rcd-front-hero-layout .desktop-home__articulos-header,
  body.rcd-front-hero-layout .desktop-home__articulos-viewport {
    width: 100%;
    max-width: none;
    padding-left: var(--home-main-edge-inset);
    padding-right: var(--home-main-edge-inset);
    box-sizing: border-box;
  }

  body.rcd-front-hero-layout .desktop-home__articulos-navs {
    margin-right: var(--home-main-edge-inset);
  }

  body.rcd-front-hero-layout .desktop-home__hablemos {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: var(--home-main-edge-inset);
    padding-right: var(--home-main-edge-inset);
    box-sizing: border-box;
  }

  body.rcd-front-hero-layout .desktop-home__hablemos-card {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

}

/* --- Hero --- */
.desktop-home__hero {
  position: relative;
  height: 703px;
  width: 100%;
  left: 0;
  overflow: hidden;
}

.desktop-home__hero-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.desktop-home__hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.desktop-home__hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
}

.desktop-home__hero-slide--clone {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__hero-track {
    transition: none;
  }
}

.desktop-home__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 703px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.desktop-home__hero-bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 703px;
  transform: scaleY(-1) rotate(180deg);
  transform-origin: center;
}

.desktop-home__hero-bg-layer--muted {
  opacity: 0.3;
}

.desktop-home__hero-bg-img,
.desktop-home__hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.desktop-home__hero-bg-video {
  transform: scaleX(-1);
}

.desktop-home__hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.desktop-home__hero-slide[data-hero-active-bg="video"] .desktop-home__hero-bg-gradient {
  display: none;
}

.desktop-home__hero-slide[data-hero-active-bg="video"] .desktop-home__hero-portrait {
  display: none;
}

.desktop-home__hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.desktop-home__hero-bg-layer--muted .desktop-home__hero-bg-img,
.desktop-home__hero-bg-layer--muted .desktop-home__hero-bg-video {
  opacity: 0.6;
}

.desktop-home__hero-slide--2 .desktop-home__hero-bg-layer--base .desktop-home__hero-bg-gradient {
  background: var(--gradient-hero-overlay-2);
}

.desktop-home__hero-slide--2 .desktop-home__hero-bg-layer--muted .desktop-home__hero-bg-gradient {
  background: var(--gradient-hero-overlay-2-muted);
}

.desktop-home__hero-slide--3 .desktop-home__hero-bg-layer--base .desktop-home__hero-bg-gradient {
  background: var(--gradient-brand);
}

.desktop-home__hero-slide--3 .desktop-home__hero-bg-layer--muted .desktop-home__hero-bg-img {
  opacity: 1;
}

.desktop-home__hero-portrait {
  position: absolute;
  left: 834px;
  right: auto;
  top: 0;
  width: 609px;
  height: 703px;
  overflow: hidden;
  pointer-events: none;
}

.desktop-home__hero-slide[data-hero-layout="even"] .desktop-home__hero-portrait {
  right: 834px;
  left: auto;
}

.desktop-home__hero-portrait-inner {
  position: absolute;
  inset: 0;
}

.desktop-home__hero-portrait-picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.desktop-home__hero-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.desktop-home__hero-slide--1 .desktop-home__hero-portrait-img {
  object-position: 60% 22%;
}

.desktop-home__hero-slide--2 .desktop-home__hero-portrait-img {
  object-position: 60% 30%;
}

.desktop-home__hero-slide--3 .desktop-home__hero-portrait-img {
  object-position: 30% center;
}

.desktop-home__hero-nav {
  position: absolute;
  top: 315px;
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-home__hero-nav-img {
  display: block;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
}

.desktop-home__hero-nav-img--default {
  transition: opacity 0.2s ease;
}

.desktop-home__hero-nav-img--hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.desktop-home__hero-nav--prev .desktop-home__hero-nav-img--hover {
  transform: translate(-50%, -50%) rotate(180deg);
}

.desktop-home__hero-nav--prev:hover .desktop-home__hero-nav-img--default,
.desktop-home__hero-nav--prev:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__hero-nav--next:hover .desktop-home__hero-nav-img--default,
.desktop-home__hero-nav--next:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__test-nav--prev:hover .desktop-home__hero-nav-img--default,
.desktop-home__test-nav--prev:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__test-nav--next:hover .desktop-home__hero-nav-img--default,
.desktop-home__test-nav--next:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__videos-nav--prev:hover .desktop-home__hero-nav-img--default,
.desktop-home__videos-nav--prev:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__videos-nav--next:hover .desktop-home__hero-nav-img--default,
.desktop-home__videos-nav--next:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__articulos-nav--prev:hover .desktop-home__hero-nav-img--default,
.desktop-home__articulos-nav--prev:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__articulos-nav--next:hover .desktop-home__hero-nav-img--default,
.desktop-home__articulos-nav--next:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__galeria-nav:hover .desktop-home__hero-nav-img--default,
.desktop-home__galeria-nav:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__galeria-nav--prev:hover .desktop-home__hero-nav-img--default,
.desktop-home__galeria-nav--prev:focus-visible .desktop-home__hero-nav-img--default,
.desktop-home__galeria-nav--next:hover .desktop-home__hero-nav-img--default,
.desktop-home__galeria-nav--next:focus-visible .desktop-home__hero-nav-img--default {
  opacity: 0;
}

.desktop-home__hero-nav--prev:hover .desktop-home__hero-nav-img--hover,
.desktop-home__hero-nav--prev:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__hero-nav--next:hover .desktop-home__hero-nav-img--hover,
.desktop-home__hero-nav--next:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__test-nav--prev:hover .desktop-home__hero-nav-img--hover,
.desktop-home__test-nav--prev:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__test-nav--next:hover .desktop-home__hero-nav-img--hover,
.desktop-home__test-nav--next:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__videos-nav--prev:hover .desktop-home__hero-nav-img--hover,
.desktop-home__videos-nav--prev:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__videos-nav--next:hover .desktop-home__hero-nav-img--hover,
.desktop-home__videos-nav--next:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__articulos-nav--prev:hover .desktop-home__hero-nav-img--hover,
.desktop-home__articulos-nav--prev:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__articulos-nav--next:hover .desktop-home__hero-nav-img--hover,
.desktop-home__articulos-nav--next:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__galeria-nav:hover .desktop-home__hero-nav-img--hover,
.desktop-home__galeria-nav:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__galeria-nav--prev:hover .desktop-home__hero-nav-img--hover,
.desktop-home__galeria-nav--prev:focus-visible .desktop-home__hero-nav-img--hover,
.desktop-home__galeria-nav--next:hover .desktop-home__hero-nav-img--hover,
.desktop-home__galeria-nav--next:focus-visible .desktop-home__hero-nav-img--hover {
  opacity: 1;
}

.desktop-home__hero-nav:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

.desktop-home__hero-nav--prev {
  left: 91px;
}

.desktop-home__hero-nav--next {
  left: 1294px;
}

.desktop-home__hero-dots {
  position: absolute;
  left: 50%;
  bottom: 5.83%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 3.43px;
  width: 67px;
}

.desktop-home__hero-dot {
  display: block;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1.143px solid var(--color-blanco);
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.desktop-home__hero-dot:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 2px;
}

.desktop-home__hero[data-hero-slide="1"] .desktop-home__hero-dot:nth-child(1),
.desktop-home__hero[data-hero-slide="2"] .desktop-home__hero-dot:nth-child(2),
.desktop-home__hero[data-hero-slide="3"] .desktop-home__hero-dot:nth-child(3),
.desktop-home__hero[data-hero-slide="4"] .desktop-home__hero-dot:nth-child(4) {
  width: 43.429px;
  background: var(--color-rosado);
}

.desktop-home__hero-copy {
  position: absolute;
  left: 190px;
  right: auto;
  top: 242px;
  width: 576px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.desktop-home__hero-slide[data-hero-layout="even"] .desktop-home__hero-copy {
  right: 190px;
  left: auto;
}

.desktop-home__hero-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: var(--color-hero-cream);
}

.desktop-home__hero-title--h1 {
  font-size: 48px;
  line-height: 58px;
}

.desktop-home__hero-slide--2 .desktop-home__hero-title--h1 {
  max-width: 613px;
}

.desktop-home__hero-title--italic {
  font-style: italic;
}

.desktop-home__hero-lead {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: var(--color-hero-cream);
}

.desktop-home__hero-em {
  font-weight: 700;
}

.desktop-home__hero-cta {
  width: 161px;
  height: 50px;
}

.desktop-home__hero-cta--placeholder {
  flex-shrink: 0;
}

.desktop-home__hero-cta-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 161px;
  min-height: 50px;
  padding: 10px 16px;
  border-radius: 30px;
  border: none;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  color: var(--color-blanco);
  background: var(--gradient-cta-btn);
  box-shadow: none;
  cursor: pointer;
  transition: box-shadow 0.4s ease, border-radius 0.4s ease;
}

.desktop-home__hero-cta-btn:hover,
.desktop-home__hero-cta-btn:focus-visible {
  border-radius: 31px;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.4), 0 0 10px rgba(215, 62, 116, 0.6);
  color: var(--color-blanco);
}

.desktop-home__hero-cta-btn:visited {
  color: var(--color-blanco);
}

.desktop-home__hero-cta-btn:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

/* --- Sobre mí --- */
.desktop-home__sobre {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 941px;
  padding: 96px 0 88px;
  background: var(--color-negro);
  border-top: 1px solid var(--color-border-light);
  z-index: 2;
}

.desktop-home__sobre-inner {
  position: relative;
  width: 100%;
  max-width: 1312px;
  margin-left: auto;
  margin-right: auto;
  min-height: 811px;
}

.desktop-home__sobre-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 640px);
  align-items: start;
  gap: clamp(28px, 4vw, 80px);
  padding: 0 clamp(8px, 2vw, 32px);
  min-height: 0;
}

.desktop-home__sobre-intro {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  max-width: none;
}

.desktop-home__sobre-kicker {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: var(--color-rosado);
}

.desktop-home__sobre-heading {
  margin: 8px 0 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: var(--color-blanco);
}

.desktop-home__sobre-text {
  margin: 32px 0 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  text-align: justify;
  color: var(--color-texto-muted);
  max-width: none;
}

.desktop-home__sobre-text + .desktop-home__sobre-text {
  margin-top: 24px;
  max-width: none;
}

.desktop-home__sobre-timeline {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  height: auto;
  min-height: calc((var(--rcd-timeline-count, 1) - 1) * 154px + 183px);
}

.desktop-home__sobre-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 14px;
  z-index: 0;
  width: 1px;
  height: calc((var(--rcd-timeline-count, 1) - 1) * 154px);
  border-radius: 1px;
  background: var(--gradient-sobre-timeline-track);
  pointer-events: none;
}

/* Línea continua con el mismo degradado vertical que en Figma (escritorio). */
@media (min-width: 1025px) {
  .desktop-home__sobre-timeline-line {
    display: none;
  }
}

.desktop-home__sobre-timeline-line {
  display: none;
}

.desktop-home__sobre-node {
  position: absolute;
  left: 15px;
  z-index: 1;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-pill);
}

.desktop-home__sobre-node--pink {
  background: var(--gradient-sobre-dot-top);
  box-shadow: 0 0 0 1px rgba(33, 31, 33, 0.28);
}

.desktop-home__sobre-node--mid {
  background: var(--gradient-sobre-dot-mid);
  box-shadow: 0 0 0 1px rgba(33, 31, 33, 0.32);
}

.desktop-home__sobre-node--last {
  background: var(--gradient-sobre-dot-bottom);
  box-shadow: 0 0 0 1px rgba(33, 31, 33, 0.4);
}

.desktop-home__sobre-timeline-items {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.desktop-home__sobre-item {
  position: absolute;
  left: 10.5%;
  width: 88%;
  max-width: 544px;
}

.desktop-home__sobre-item:first-child .desktop-home__sobre-item-text,
.desktop-home__sobre-item:last-child .desktop-home__sobre-item-text {
  max-width: 485px;
}

.desktop-home__sobre-item-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-blanco);
}

.desktop-home__sobre-item-text {
  margin: 8px 0 0;
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-texto-soft);
  max-width: 544px;
}

.desktop-home__sobre-cards {
  display: grid;
  grid-template-columns: repeat(var(--rcd-sobre-card-count, 4), minmax(0, 1fr));
  gap: clamp(14px, 2vw, 21px);
  margin-top: 56px;
  width: 100%;
  max-width: 100%;
  perspective: 1100px;
  align-items: start;
}

.desktop-home__sobre-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 243px;
  flex-shrink: 0;
  overflow: hidden;
  transition:
    min-height 0.48s cubic-bezier(0.33, 1, 0.68, 1) 0.14s,
    max-height 0.48s cubic-bezier(0.33, 1, 0.68, 1) 0.14s,
    box-shadow 0.4s ease 0.14s;
  transform-style: preserve-3d;
}

.desktop-home__sobre-card:nth-child(3),
.desktop-home__sobre-card:nth-child(4) {
  width: 100%;
  max-width: 100%;
}

.desktop-home__sobre-card-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 63, 164, 0.9);
  background: var(--gradient-brand);
  box-shadow: 0 0 30px rgba(215, 62, 116, 0.15);
}

.desktop-home__sobre-card-glow {
  position: absolute;
  left: 193px;
  top: 0;
  width: 102px;
  height: 93px;
  opacity: 0.2;
  filter: blur(70px);
  border-radius: var(--radius-pill);
  background: linear-gradient(
    137.64deg,
    #f8d541 0%,
    #f7cb4a 7.14%,
    #f5c251 14.29%,
    #f4b857 21.43%,
    #f2ae5c 28.57%,
    #f0a461 35.71%,
    #ee9a64 42.86%,
    #eb9068 50%,
    #e9866a 57.14%,
    #e67b6d 64.29%,
    #e4706f 71.43%,
    #e16571 78.57%,
    #de5972 85.71%,
    #da4c73 92.86%,
    #d73e74 100%
  );
}

.desktop-home__sobre-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px 24px 0 24px;
}

.desktop-home__sobre-card-link {
  position: relative;
  width: 41px;
  height: 41px;
  display: block;
}

.desktop-home__sobre-card-link img {
  display: block;
  width: 41px;
  height: 41px;
}

.desktop-home__sobre-card-title {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  top: 88px;
  bottom: 56px;
  width: auto;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.24;
  color: var(--color-blanco-suave);
}

.desktop-home__sobre-card-bar {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 47.99px;
  width: 47.971px;
  height: 4.007px;
  border-radius: var(--radius-pill);
  background: var(--color-blanco-suave);
  transform: scaleY(-1) rotate(180deg);
}

/* Panel hover tarjetas trayectoria (patrón 882:696): capa única por <article> */
.desktop-home__sobre-card-detail {
  position: relative;
  z-index: 4;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(var(--color-negro), var(--color-negro)) padding-box,
    var(--gradient-cta-text) border-box;
  box-shadow: 0 0 60px rgba(215, 62, 116, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease,
    max-height 0.48s cubic-bezier(0.33, 1, 0.68, 1),
    padding 0.36s cubic-bezier(0.33, 1, 0.68, 1);
}

.desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-bg,
.desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-glow,
.desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-head,
.desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-title,
.desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-bar {
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.desktop-home__sobre-card--has-hover-detail {
  display: grid;
  grid-template-areas: "stack";
  max-height: 243px;
}

.desktop-home__sobre-card--has-hover-detail > * {
  grid-area: stack;
}

.desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-detail {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  width: 100%;
  max-height: min(320px, 70vh);
  padding: 24px;
  overflow: hidden;
  box-shadow: none;
}

.desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-bg,
.desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-glow {
  display: none;
}

.desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-head,
.desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-title,
.desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-bar {
  opacity: 0;
  visibility: hidden;
}

.desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-head {
  display: none;
}

.desktop-home__sobre-card-detail-title {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  background: var(--gradient-cta-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-home__sobre-card-detail-text {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-blanco-suave);
}

/* --- CTA banner --- */
.desktop-home__cta-banner {
  position: relative;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 366px;
  margin-top: -63px;
  padding: 70px 0;
  background: var(--color-negro);
  border: none;
  border-radius: var(--radius-sm);
  z-index: 3;
  box-sizing: border-box;
}

.desktop-home__cta-banner-panel {
  position: relative;
  width: 100%;
  height: 216px;
  margin: 0;
  background: var(--color-gris-panel);
}

.desktop-home__cta-banner-inner {
  position: relative;
  left: auto;
  top: auto;
  display: flex;
  align-items: center;
  gap: clamp(32px, 7vw, 101px);
  padding: 39px var(--home-section-inner-pad-x) 35px;
  width: 100%;
  max-width: var(--home-section-inner-max);
  margin: -216px auto 0;
  min-height: 176px;
  box-sizing: border-box;
}

.desktop-home__cta-banner-left {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 546px;
}

.desktop-home__cta-banner-heading {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 42px;
  line-height: 50.4px;
  color: var(--color-blanco);
}

.desktop-home__cta-banner-line {
  display: block;
}

.desktop-home__cta-banner-line--gradient {
  max-width: fit-content;
  background: var(--gradient-cta-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.desktop-home__cta-banner-right {
  flex: 0 1 450px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.desktop-home__cta-banner-text {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: rgba(255, 255, 255, 0.9);
}

.desktop-home__cta-banner-text :where(p, ul, ol) {
  margin: 0;
}

.desktop-home__cta-banner-text :where(p, ul, ol):not(:last-child) {
  margin-bottom: 0.75em;
}

.desktop-home__cta-banner-btn {
  position: relative;
  isolation: isolate;
  align-self: flex-start;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 161px;
  min-height: 50px;
  padding: 10px 16px;
  border: none;
  border-radius: 30px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--color-blanco);
  text-align: center;
  text-decoration: none;
  background: var(--gradient-cta-btn);
  box-shadow: none;
  cursor: pointer;
  transition: box-shadow 0.4s ease, border-radius 0.4s ease;
}

.desktop-home__cta-banner-btn:hover,
.desktop-home__cta-banner-btn:focus-visible {
  border-radius: 31px;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.4), 0 0 10px rgba(215, 62, 116, 0.6);
  color: var(--color-blanco);
}

.desktop-home__cta-banner-btn:visited {
  color: var(--color-blanco);
}

.desktop-home__cta-banner-btn:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

/* Crossfade de degradado en hover de los CTA (referencia figma-make): capa superior
   con --gradient-cta-navbar-hover que aparece por opacidad sobre la base rosa. */
.desktop-home__hero-cta-btn::after,
.desktop-home__navbar-cta::after,
.desktop-home__cta-banner-btn::after,
.desktop-home__dialog-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--gradient-cta-navbar-hover);
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.desktop-home__hero-cta-btn:hover::after,
.desktop-home__hero-cta-btn:focus-visible::after,
.desktop-home__navbar-cta:hover::after,
.desktop-home__navbar-cta:focus-visible::after,
.desktop-home__cta-banner-btn:hover::after,
.desktop-home__cta-banner-btn:focus-visible::after,
.desktop-home__dialog-btn:hover::after,
.desktop-home__dialog-btn:focus-visible::after {
  opacity: 1;
}

/* --- Main column --- */
.desktop-home__main {
  position: relative;
  left: 0;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin-top: 23px;
  z-index: 5;
}

/* --- Servicios --- */
.desktop-home__servicios {
  position: relative;
  min-height: 862px;
  padding-block: 75px;
  border-radius: var(--radius-servicios-section);
  background: var(--gradient-brand);
  overflow: hidden;
  box-sizing: border-box;
}

.desktop-home__servicios--height-animating {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .desktop-home__servicios.desktop-home__servicios--height-animating {
    transition: height 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.desktop-home__servicios-header {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-inline: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  height: auto;
  min-height: 138px;
  box-sizing: border-box;
}

.desktop-home__servicios-kicker {
  margin: 0;
  padding-top: 0;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.4395px;
  color: var(--color-negro);
}

.desktop-home__servicios-heading-wrap {
  position: relative;
  margin-top: 0;
}

.desktop-home__servicios-heading {
  position: relative;
  margin: 0;
  height: 105.594px;
  font-size: 48px;
  line-height: 52.8px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--color-blanco);
}

.desktop-home__servicios-heading-strong {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
}

.desktop-home__servicios-heading-light {
  position: absolute;
  left: 170px;
  top: 2px;
  width: 450px;
  max-width: 450px;
  white-space: nowrap;
  font-family: var(--font-poppins);
  font-weight: 300;
}

.desktop-home__servicios-rule {
  display: block;
  margin-top: 4.59px;
  width: 48px;
  height: 2px;
  background: var(--color-blanco-suave);
}

.desktop-home__servicios-grid-wrap {
  position: relative;
  left: auto;
  top: auto;
  margin-top: clamp(28px, 4vw, 48px);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0;
  height: auto;
  min-height: 632px;
  box-sizing: border-box;
}

.desktop-home__servicios-grid {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 627px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(300px, auto);
  gap: clamp(20px, 2.5vw, 32px);
  justify-items: stretch;
  align-items: start;
}

.desktop-home__svc-card {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  max-width: 100%;
  height: 300px;
  transition:
    height 0.38s ease,
    min-height 0.38s ease;
}

.desktop-home__svc-card:nth-child(1),
.desktop-home__svc-card:nth-child(2),
.desktop-home__svc-card:nth-child(3),
.desktop-home__svc-card:nth-child(4),
.desktop-home__svc-card:nth-child(5),
.desktop-home__svc-card:nth-child(6) {
  left: auto;
  top: auto;
}

.desktop-home__svc-flip {
  width: 100%;
  height: 100%;
  perspective: 900px;
}

.desktop-home__svc-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
}

.desktop-home__svc-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.desktop-home__svc-face--back {
  transform: rotateY(180deg);
}

.desktop-home__svc-back {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: auto;
  min-height: 100%;
  padding: 32px;
  border-radius: var(--radius-sm);
  background: var(--color-negro);
  box-shadow: var(--shadow-elevated);
}

.desktop-home__svc-card-inner {
  height: 100%;
  padding: 33px 33px 33px 33px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-card);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.desktop-home__svc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.desktop-home__svc-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-card);
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5496px;
}

.desktop-home__svc-num--dark {
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-blanco);
  flex-shrink: 0;
}

.desktop-home__svc-back .desktop-home__svc-num--dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.desktop-home__svc-arrow {
  position: relative;
  width: 41px;
  height: 41px;
  flex-shrink: 0;
  display: block;
}

.desktop-home__svc-arrow img {
  display: block;
  width: 41px;
  height: 41px;
}

.desktop-home__svc-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 30px;
  line-height: 37.5px;
  letter-spacing: 0.3955px;
  color: var(--color-blanco);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.desktop-home__svc-title--inter {
  font-family: var(--font-inter);
  font-weight: 800;
}

.desktop-home__svc-meta {
  min-height: 20px;
  width: 91.68px;
}

.desktop-home__svc-meta--icon {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
}

.desktop-home__svc-title-dark {
  margin: 18px 0 0;
  width: 100%;
  max-width: none;
  font-family: var(--font-poppins);
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.0703px;
  color: var(--color-blanco-suave);
}

.desktop-home__svc-desc {
  width: 100%;
  max-width: none;
  margin: 14px 0 0;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.3125px;
  color: var(--color-blanco-suave);
}

.desktop-home__svc-desc :where(p, ul, ol) {
  margin: 0;
}

.desktop-home__svc-desc :where(p, ul, ol):not(:last-child) {
  margin-bottom: 0.75em;
}

.desktop-home__svc-cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  margin-top: auto;
  width: 100%;
  max-width: none;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.desktop-home__svc-cta-row:hover .desktop-home__svc-cta,
a.desktop-home__svc-cta-row:focus-visible .desktop-home__svc-cta,
a.desktop-home__svc-cta-row:hover .desktop-home__svc-cta-icon,
a.desktop-home__svc-cta-row:focus-visible .desktop-home__svc-cta-icon {
  color: var(--color-blanco);
}

a.desktop-home__svc-cta-row:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 2px;
}

.desktop-home__svc-cta {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.2496px;
  text-transform: uppercase;
  color: var(--color-rosado);
}

.desktop-home__svc-cta-icon {
  display: inline-flex;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--color-rosado);
}

.desktop-home__svc-cta-icon-svg {
  display: block;
  width: 16px;
  height: 16px;
}

/* --- Experiencia --- */
.desktop-home__experiencia {
  position: relative;
  min-height: 612px;
  padding: 9px 0 0;
  background: var(--color-negro);
}

.desktop-home__experiencia-header {
  padding: 0;
  height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.desktop-home__experiencia-kicker {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.4395px;
  color: var(--color-rosado);
}

.desktop-home__experiencia-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 45px;
  line-height: 75px;
  letter-spacing: -1.2363px;
  color: var(--color-blanco);
}

.desktop-home__experiencia-panel {
  position: relative;
  left: auto;
  transform: none;
  margin-inline: auto;
  width: 80%;
  max-width: none;
  height: auto;
  min-height: 390px;
  background: var(--color-gris-panel);
  border: 1px solid var(--color-border-light);
  border-radius: 40px;
}

.desktop-home__experiencia-copy {
  position: absolute;
  left: clamp(24px, 4.6vw, 48px);
  top: clamp(100px, 12vw, 140.5px);
  width: min(618px, calc(100% - 400px));
  max-width: 55%;
}

.desktop-home__experiencia-sub {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 25px;
  line-height: 36px;
  letter-spacing: 0.3955px;
  color: var(--color-blanco-suave);
  max-width: 295px;
}

.desktop-home__experiencia-grid {
  position: absolute;
  right: clamp(20px, 3.5vw, 40px);
  top: 37px;
  left: auto;
  width: min(650px, 60%);
  max-width: 60%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 147px 147px;
  gap: 19px;
}

.desktop-home__exp-card {
  background: var(--color-negro);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.desktop-home__exp-logo-wrap {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: flex-start;
  min-height: 26.457px;
  max-width: 100px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.desktop-home__exp-logo-wrap--static {
  cursor: default;
}

.desktop-home__exp-logo-wrap:hover,
.desktop-home__exp-logo-wrap:focus-visible {
  transform: scale(1.05);
}

.desktop-home__exp-logo-wrap:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 4px;
  border-radius: 2px;
}

.desktop-home__exp-logo {
  display: block;
  height: 26.457px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  object-position: left center;
}

.desktop-home__exp-logo-wrap--cba {
  min-height: 37px;
  max-width: 98px;
}

.desktop-home__exp-logo-wrap--cba .desktop-home__exp-logo {
  height: 37px;
  max-width: 98px;
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__exp-logo-wrap {
    transition: none;
  }

  .desktop-home__exp-logo-wrap:hover,
  .desktop-home__exp-logo-wrap:focus-visible {
    transform: none;
  }
}

.desktop-home__exp-logo--cba {
  height: 37px;
  max-width: 98px;
}

.desktop-home__exp-role {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-rosado);
}

.desktop-home__exp-desc {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #99a1af;
  letter-spacing: -0.1504px;
}

.desktop-home__exp-desc :where(p, ul, ol) {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.desktop-home__exp-desc :where(p, ul, ol):not(:last-child) {
  margin-bottom: 0.25em;
}

/* --- Internacional --- */
.desktop-home__intl {
  position: relative;
  display: flex;
  min-height: 589px;
  border-top: 1px solid var(--color-border-light);
}

.desktop-home__intl-left {
  position: relative;
  flex: 1 1 min(400px, 50%);
  max-width: 50%;
  min-width: 0;
  min-height: 588px;
  background: var(--color-negro);
}

.desktop-home__intl-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  overflow: hidden;
}

.desktop-home__intl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-home__intl-copy {
  position: absolute;
  left: clamp(40px, 5vw, 80px);
  top: 135.08px;
  width: min(608px, calc(100% - 64px));
}

.desktop-home__intl-kicker {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: var(--color-rosado);
}

.desktop-home__intl-title {
  margin: 8px 0 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 48px;
  line-height: 52.8px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--color-blanco);
}

.desktop-home__intl-lead {
  margin: 58px 0 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 535px;
}

.desktop-home__intl-lead :where(p, ul, ol) {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.desktop-home__intl-lead :where(p, ul, ol):not(:last-child) {
  margin-bottom: 0.75em;
}

.desktop-home__intl-quote {
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--color-rosado);
  max-width: 448px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
  color: #d73e74;
}

.desktop-home__intl-quote :where(p, ul, ol) {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: #d73e74;
}

.desktop-home__intl-quote :where(p, ul, ol):not(:last-child) {
  margin-bottom: 0.75em;
}

.desktop-home__intl-logos {
  flex: 1;
  background: var(--color-gris-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 52px) clamp(36px, 7vw, 80px);
  align-items: center;
  justify-items: center;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 6vw, 96px);
  box-sizing: border-box;
}

.desktop-home__intl-logos-viewport,
.desktop-home__intl-logos-track {
  display: contents;
}

.desktop-home__intl-logo.desktop-home__intl-logo--marquee-clone {
  display: none;
}

.desktop-home__intl-logo {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 200px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.25s ease;
}

.desktop-home__intl-logo--static {
  cursor: default;
}

.desktop-home__intl-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-cta-navbar-hover);
  -webkit-mask-image: var(--intl-logo-mask);
  mask-image: var(--intl-logo-mask);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.desktop-home__intl-logo:hover,
.desktop-home__intl-logo:focus-visible {
  transform: scale(1.05);
}

.desktop-home__intl-logo:hover::before,
.desktop-home__intl-logo:focus-visible::before {
  opacity: 1;
}

.desktop-home__intl-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  transition: opacity 1s ease;
}

.desktop-home__intl-logo:hover img,
.desktop-home__intl-logo:focus-visible img {
  opacity: 0;
}

.desktop-home__intl-logo:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__intl-logo {
    transition: none;
  }

  .desktop-home__intl-logo::before,
  .desktop-home__intl-logo img {
    transition: none;
  }

  .desktop-home__intl-logo:hover,
  .desktop-home__intl-logo:focus-visible {
    transform: none;
  }

  .desktop-home__intl-logo:hover::before,
  .desktop-home__intl-logo:focus-visible::before {
    opacity: 0;
  }

  .desktop-home__intl-logo:hover img,
  .desktop-home__intl-logo:focus-visible img {
    opacity: 1;
  }

  .desktop-home__intl-logos-track {
    animation: none;
  }
}

/* Último logo (fila incompleta): 13 en grid 3 → sola celda, centrada */
.desktop-home__intl-logo--grid-solo {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: min(200px, 90%);
}

.desktop-home__intl-logo:last-child:nth-child(3n + 1):not(.desktop-home__intl-logo--marquee-clone) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: min(200px, 90%);
}

@keyframes desktop-home-intl-logos-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --- Testimonios --- */
.desktop-home__testimonios {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 644px;
  padding: 0 0 48px;
  background: var(--color-gris-panel);
}

.desktop-home__testimonios-header {
  padding: 0;
  height: 203px;
  display: flex;
  align-items: flex-start;
}

.desktop-home__testimonios-title {
  margin: 0;
  padding-top: 75px;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 45px;
  line-height: 75px;
  letter-spacing: -1.2363px;
  color: var(--color-blanco);
}

.desktop-home__testimonios-carousel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.desktop-home__testimonios-viewport {
  --test-gap: 32px;
  /* Figma 779:6130 — 3 cards × ~384px + 2 gaps = 1215px; JS sincroniza --test-slide-px al ancho útil. */
  --test-slide-px: 384px;
  flex: 1 1 1215px;
  width: min(1215px, 100%);
  max-width: 1215px;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.desktop-home__testimonios-viewport.desktop-home__testimonios-viewport--dragging {
  cursor: grabbing;
  touch-action: none;
}

.desktop-home__testimonios--static .desktop-home__testimonios-viewport {
  cursor: default;
  -webkit-user-select: auto;
  user-select: auto;
}

.desktop-home__testimonios--static .desktop-home__testimonios-track {
  transform: none;
}

.desktop-home__testimonios-track {
  display: flex;
  gap: var(--test-gap);
  width: max-content;
  max-width: none;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.desktop-home__testimonios-slide {
  flex: 0 0 var(--test-slide-px);
  width: var(--test-slide-px);
  min-width: 0;
  max-width: var(--test-slide-px);
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
}

.desktop-home__testimonios-slide--clone {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__testimonios-track {
    transition-duration: 0.01ms;
  }
}

.desktop-home__test-card {
  position: relative;
  top: 0;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: 405px;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid var(--color-border-light);
  cursor: auto;
  -webkit-user-select: text;
  user-select: text;
  background: linear-gradient(
    133.48deg,
    #262626 0%,
    #242424 20%,
    #212121 40%,
    #1f1f1f 60%,
    #1c1c1c 80%,
    #1a1a1a 100%
  );
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}

.desktop-home__test-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
}

/* ~200 caracteres visibles antes de scroll (PHP: rcd_jo_testimonial_text_visible_chars) */
.desktop-home__test-text-scroll {
  --test-text-visible-max: calc(29.25px * 14);
  flex: 1 1 auto;
  min-height: 0;
  max-height: var(--test-text-visible-max);
  margin-top: 26px;
  overflow-y: hidden;
  padding-right: 4px;
  box-sizing: border-box;
}

.desktop-home__test-text-scroll--overflow {
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-rosado) rgba(255, 255, 255, 0.08);
}

.desktop-home__test-text-scroll--overflow::-webkit-scrollbar {
  width: 6px;
}

.desktop-home__test-text-scroll--overflow::-webkit-scrollbar-track {
  margin: 4px 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
}

.desktop-home__test-text-scroll--overflow::-webkit-scrollbar-thumb {
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #ec699b 0%, var(--color-rosado) 100%);
}

.desktop-home__test-text-scroll--overflow::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f07cab 0%, #e04a82 100%);
}

.desktop-home__test-text-scroll--overflow:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 8px;
}

.desktop-home__test-text-scroll--empty {
  margin-top: 26px;
  min-height: 0;
  max-height: var(--test-text-visible-max);
}

.desktop-home__test-text {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 18px;
  line-height: 29.25px;
  color: var(--color-texto-muted);
  overflow-wrap: break-word;
}

.desktop-home__test-text :where(p, ul, ol) {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.desktop-home__test-text :where(p, ul, ol):not(:last-child) {
  margin-bottom: 0.75em;
}

.desktop-home__test-footer {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 26px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 40px;
  align-items: center;
  column-gap: 16px;
  width: 100%;
}

.desktop-home__test-avatar-slot,
.desktop-home__test-link-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.desktop-home__test-link-slot {
  width: 40px;
  height: 40px;
}

.desktop-home__test-footer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  min-height: 44px;
}

.desktop-home__test-name {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-blanco);
}

.desktop-home__test-name--placeholder,
.desktop-home__test-role--placeholder {
  visibility: hidden;
  pointer-events: none;
}

.desktop-home__test-role {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-texto-faint);
  overflow-wrap: break-word;
}

.desktop-home__test-avatar-placeholder {
  display: block;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.desktop-home__test-link-placeholder {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  pointer-events: none;
}

.desktop-home__test-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.desktop-home__test-link .fa-brands {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
}

.desktop-home__test-link:hover .fa-brands,
.desktop-home__test-link:focus-visible .fa-brands {
  color: var(--color-blanco);
}

.desktop-home__test-link:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

.desktop-home__test-avatar {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

.desktop-home__test-nav {
  flex: 0 0 46px;
  position: relative;
  right: auto;
  top: auto;
  left: auto;
  align-self: center;
  margin: 0;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-home__test-nav--prev .desktop-home__hero-nav-img--hover {
  transform: translate(-50%, -50%) rotate(180deg);
}

.desktop-home__test-nav:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 8px;
}

.desktop-home__dots {
  position: relative;
  left: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.43px;
  margin: 24px auto 0;
}

.desktop-home__dots--testimonios {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .desktop-home__testimonios:not(.desktop-home__testimonios--carousel-desktop) .desktop-home__test-nav,
  .desktop-home__testimonios:not(.desktop-home__testimonios--carousel-desktop) .desktop-home__dots--testimonios,
  .desktop-home__testimonios:not(.desktop-home__testimonios--carousel-desktop) .desktop-home__testimonios-slide--clone,
  .desktop-home__videos:not(.desktop-home__videos--carousel-desktop) .desktop-home__videos-nav,
  .desktop-home__videos:not(.desktop-home__videos--carousel-desktop) .desktop-home__dots--videos,
  .desktop-home__videos:not(.desktop-home__videos--carousel-desktop) .desktop-home__videos-slide--clone,
  .desktop-home__articulos:not(.desktop-home__articulos--carousel-desktop) .desktop-home__articulos-navs,
  .desktop-home__articulos:not(.desktop-home__articulos--carousel-desktop) .desktop-home__dots--articulos,
  .desktop-home__articulos:not(.desktop-home__articulos--carousel-desktop) .desktop-home__articulos-slide--clone {
    display: none;
  }
}

.desktop-home__test-dot {
  display: block;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1.143px solid var(--color-blanco);
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.desktop-home__test-dot:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 2px;
}

.desktop-home__test-dot[aria-current="true"] {
  width: 43.429px;
  background: var(--color-rosado);
}

.desktop-home__testimonios[data-test-slide="1"] .desktop-home__test-dot:nth-child(1),
.desktop-home__testimonios[data-test-slide="2"] .desktop-home__test-dot:nth-child(2),
.desktop-home__testimonios[data-test-slide="3"] .desktop-home__test-dot:nth-child(3),
.desktop-home__testimonios[data-test-slide="4"] .desktop-home__test-dot:nth-child(4) {
  width: 43.429px;
  background: var(--color-rosado);
}

.desktop-home__videos-dot {
  display: block;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1.143px solid var(--color-blanco);
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.desktop-home__videos-dot:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 2px;
}

.desktop-home__videos-dot[aria-current="true"] {
  width: 43.429px;
  background: var(--color-rosado);
}

.desktop-home__videos[data-videos-slide="1"] .desktop-home__videos-dot:nth-child(1),
.desktop-home__videos[data-videos-slide="2"] .desktop-home__videos-dot:nth-child(2),
.desktop-home__videos[data-videos-slide="3"] .desktop-home__videos-dot:nth-child(3),
.desktop-home__videos[data-videos-slide="4"] .desktop-home__videos-dot:nth-child(4) {
  width: 43.429px;
  background: var(--color-rosado);
}

.desktop-home__articulos-dot {
  display: block;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1.143px solid var(--color-blanco);
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.desktop-home__articulos-dot:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 2px;
}

.desktop-home__articulos-dot[aria-current="true"] {
  width: 43.429px;
  background: var(--color-rosado);
}

.desktop-home__articulos[data-art-slide="1"] .desktop-home__articulos-dot:nth-child(1),
.desktop-home__articulos[data-art-slide="2"] .desktop-home__articulos-dot:nth-child(2),
.desktop-home__articulos[data-art-slide="3"] .desktop-home__articulos-dot:nth-child(3),
.desktop-home__articulos[data-art-slide="4"] .desktop-home__articulos-dot:nth-child(4) {
  width: 43.429px;
  background: var(--color-rosado);
}

.desktop-home__dots--videos,
.desktop-home__dots--articulos,
.desktop-home__dots--galeria {
  left: auto;
  bottom: auto;
  margin: 16px auto 0;
  justify-content: center;
}

.desktop-home__dots-bar {
  width: 43.429px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--color-rosado);
  border: 1.143px solid var(--color-blanco);
}

.desktop-home__dots-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  border: 1.143px solid var(--color-blanco);
}

/* --- Videos --- */
.desktop-home__videos {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 716px;
  padding: 40px clamp(24px, 7.8vw, 113px) 80px;
  border-top: 1px solid var(--color-border-light);
  background: rgba(0, 0, 0, 0.2);
}

.desktop-home__videos-header {
  max-width: 1200px;
  margin-bottom: 0;
}

.desktop-home__videos-kicker {
  margin: 60px 0 0;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.4395px;
  color: var(--color-rosado);
  text-transform: capitalize;
}

.desktop-home__videos-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 45px;
  line-height: 75px;
  letter-spacing: -1.2363px;
  text-transform: capitalize;
  color: var(--color-blanco);
}

.desktop-home__videos-viewport {
  --videos-gap: clamp(24px, 3.5vw, 44px);
  --videos-slide-px: min(29vw, 383px);
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.desktop-home__videos-viewport.desktop-home__videos-viewport--dragging {
  cursor: grabbing;
  touch-action: none;
}

.desktop-home__videos-carousel-track {
  display: flex;
  gap: var(--videos-gap);
  width: max-content;
  max-width: none;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__videos-carousel-track {
    transition-duration: 0.01ms;
  }
}

.desktop-home__videos-slide {
  flex: 0 0 var(--videos-slide-px);
  width: var(--videos-slide-px);
  min-width: 0;
  max-width: var(--videos-slide-px);
  box-sizing: border-box;
}

.desktop-home__videos-slide--clone {
  pointer-events: none;
}

.desktop-home__video-card {
  width: 100%;
  flex-shrink: 0;
  cursor: auto;
  -webkit-user-select: text;
  user-select: text;
}

.desktop-home__video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-ui);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.desktop-home__video-thumb img:first-child,
.desktop-home__video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-home__video-file {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  background: #000;
}

.desktop-home__video-thumb--hosted.desktop-home__video-thumb--playing .desktop-home__video-file {
  display: block;
}

.desktop-home__video-thumb--hosted.desktop-home__video-thumb--playing .desktop-home__video-poster,
.desktop-home__video-thumb--hosted.desktop-home__video-thumb--playing .desktop-home__video-thumb-over,
.desktop-home__video-thumb--hosted.desktop-home__video-thumb--playing .desktop-home__video-dim,
.desktop-home__video-thumb--hosted.desktop-home__video-thumb--playing .desktop-home__video-play,
.desktop-home__video-thumb--hosted.desktop-home__video-thumb--playing .desktop-home__video-time {
  display: none;
}

.desktop-home__video-thumb-over {
  position: absolute;
  inset: 0;
  width: 138.78%;
  height: 99.97%;
  left: -19.16%;
  top: 0.01%;
  max-width: none;
}

.desktop-home__video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
}

.desktop-home__video-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.desktop-home__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.desktop-home__video-play:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 4px;
  border-radius: var(--radius-pill);
}

.desktop-home__video-thumb--youtube .desktop-home__video-play {
  display: none;
}

.desktop-home__video-play-icons {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
}

.desktop-home__video-play-icons img {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  display: block;
}

.desktop-home__video-play-default {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.desktop-home__video-play-hover {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.desktop-home__video-play:hover .desktop-home__video-play-hover,
.desktop-home__video-play:focus-visible .desktop-home__video-play-hover {
  opacity: 1;
}

.desktop-home__video-play:hover .desktop-home__video-play-default,
.desktop-home__video-play:focus-visible .desktop-home__video-play-default {
  opacity: 0;
}

.desktop-home__video-yt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-home__video-yt img {
  width: 90px;
  height: auto;
}

.desktop-home__video-time {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-ui);
  background: rgba(0, 0, 0, 0.6);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-blanco);
}

.desktop-home__video-tag {
  margin: 10px 0 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-amarillo);
}

.desktop-home__video-title {
  margin: 10px 0 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 20px;
  line-height: 27.5px;
  color: var(--color-blanco-suave);
}

.desktop-home__strip-navs {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-end;
  margin: 24px clamp(24px, 6vw, 87px) 0 auto;
}

.desktop-home__videos-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.desktop-home__videos-nav,
.desktop-home__articulos-nav {
  position: relative;
  left: auto;
  top: auto;
  margin: 0;
  width: 46px;
  height: 46px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-home__videos-nav--prev .desktop-home__hero-nav-img--hover,
.desktop-home__articulos-nav--prev .desktop-home__hero-nav-img--hover {
  transform: translate(-50%, -50%) rotate(180deg);
}

.desktop-home__videos--static .desktop-home__videos-viewport {
  cursor: default;
  -webkit-user-select: auto;
  user-select: auto;
}

.desktop-home__videos--static .desktop-home__videos-carousel-track {
  transform: none;
}

.desktop-home__videos-nav:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (min-width: 1025px) {
  .desktop-home__videos-carousel {
    margin-top: 24px;
  }

  .desktop-home__videos-carousel .desktop-home__videos-viewport {
    margin-top: 0;
  }

  .desktop-home__videos-carousel .desktop-home__videos-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    left: auto;
    right: auto;
    margin: 0;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
  }

  .desktop-home__videos-carousel .desktop-home__videos-nav--prev {
    left: clamp(12px, 2.5vw, 32px);
  }

  .desktop-home__videos-carousel .desktop-home__videos-nav--next {
    right: clamp(12px, 2.5vw, 32px);
  }

  .desktop-home__dots--galeria-mobile {
    display: none;
  }
}

/* --- Galería --- */
.desktop-home__galeria {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  padding: 51px clamp(24px, 6.6vw, 95px) 80px;
  background: var(--color-gris-panel);
}

.desktop-home__galeria-header {
  display: flex;
  flex-direction: column;
  max-width: 1122px;
}

.desktop-home__galeria-kicker {
  margin: 60px 0 0;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.4395px;
  color: var(--color-rosado);
  text-transform: capitalize;
}

.desktop-home__galeria-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 45px;
  letter-spacing: -1.2363px;
  text-transform: capitalize;
  color: var(--color-blanco);
}

.desktop-home__galeria-carousel {
  position: relative;
  margin-top: 41px;
  width: 100%;
  max-width: 100%;
}

.desktop-home__galeria-viewport {
  width: 100%;
  overflow: hidden;
}

.desktop-home__galeria-viewport--mobile {
  display: none;
}

.desktop-home__dots--galeria-mobile {
  display: none;
}

.desktop-home__galeria-viewport.desktop-home__galeria-viewport--dragging {
  cursor: grabbing;
  touch-action: none;
}

.desktop-home__galeria-viewport--mobile {
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.desktop-home__galeria-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.desktop-home__galeria-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.desktop-home__galeria--static .desktop-home__galeria-track {
  transform: none;
}

.desktop-home__galeria-slide--clone {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__galeria-track {
    transition: none;
  }
}

.desktop-home__galeria-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.desktop-home__galeria-nav--prev {
  left: clamp(12px, 2.5vw, 32px);
}

.desktop-home__galeria-nav--prev .desktop-home__hero-nav-img--hover {
  transform: translate(-50%, -50%) rotate(180deg);
}

.desktop-home__galeria-nav--next {
  right: clamp(12px, 2.5vw, 32px);
  left: auto;
}

.desktop-home__galeria-nav:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 8px;
}

.desktop-home__dots--galeria {
  margin-bottom: 0;
}

.desktop-home__galeria-dot {
  display: block;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1.143px solid var(--color-blanco);
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.desktop-home__galeria-dot:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 2px;
}

.desktop-home__galeria-dot[aria-current="true"] {
  width: 43.429px;
  background: var(--color-rosado);
}

.desktop-home__galeria[data-gal-slide="1"] .desktop-home__dots--galeria-desktop .desktop-home__galeria-dot:nth-child(1),
.desktop-home__galeria[data-gal-slide="2"] .desktop-home__dots--galeria-desktop .desktop-home__galeria-dot:nth-child(2),
.desktop-home__galeria[data-gal-slide="3"] .desktop-home__dots--galeria-desktop .desktop-home__galeria-dot:nth-child(3),
.desktop-home__galeria[data-gal-slide="4"] .desktop-home__dots--galeria-desktop .desktop-home__galeria-dot:nth-child(4),
.desktop-home__galeria[data-gal-slide="5"] .desktop-home__dots--galeria-desktop .desktop-home__galeria-dot:nth-child(5),
.desktop-home__galeria[data-gal-slide="6"] .desktop-home__dots--galeria-desktop .desktop-home__galeria-dot:nth-child(6) {
  width: 43.429px;
  background: var(--color-rosado);
}

@media (max-width: 1024px) {
  .desktop-home__galeria[data-gal-slide-mobile="1"] .desktop-home__dots--galeria-mobile .desktop-home__galeria-dot:nth-child(1),
  .desktop-home__galeria[data-gal-slide-mobile="2"] .desktop-home__dots--galeria-mobile .desktop-home__galeria-dot:nth-child(2),
  .desktop-home__galeria[data-gal-slide-mobile="3"] .desktop-home__dots--galeria-mobile .desktop-home__galeria-dot:nth-child(3),
  .desktop-home__galeria[data-gal-slide-mobile="4"] .desktop-home__dots--galeria-mobile .desktop-home__galeria-dot:nth-child(4),
  .desktop-home__galeria[data-gal-slide-mobile="5"] .desktop-home__dots--galeria-mobile .desktop-home__galeria-dot:nth-child(5),
  .desktop-home__galeria[data-gal-slide-mobile="6"] .desktop-home__dots--galeria-mobile .desktop-home__galeria-dot:nth-child(6) {
    width: 43.429px;
    background: var(--color-rosado);
  }
}

.desktop-home__galeria-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.105fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.84fr);
  gap: clamp(12px, 1.8vw, 24px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  --gal-row-h: clamp(200px, 23vw, 326px);
  grid-template-rows: var(--gal-row-h);
  min-height: var(--gal-row-h);
}

/* Diapositivas incompletas (<6 imágenes): el número de columnas coincide con el
   de elementos renderizados para no dejar pistas vacías (espacios negros). */
.desktop-home__galeria-layout--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.desktop-home__galeria-layout--count-2 {
  grid-template-columns: minmax(0, 2.105fr) minmax(0, 1.84fr);
}

.desktop-home__galeria-layout--count-3 {
  grid-template-columns: minmax(0, 2.105fr) minmax(0, 1fr);
}

.desktop-home__galeria-layout--count-4 {
  grid-template-columns: minmax(0, 2.105fr) minmax(0, 1fr) minmax(0, 1.84fr);
}

.desktop-home__galeria-layout--count-5 {
  grid-template-columns: minmax(0, 2.105fr) minmax(0, 1fr) minmax(0, 1fr);
}

.desktop-home__gal-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-ui);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.desktop-home__gal-open {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 0;
  line-height: 0;
}

.desktop-home__gal-open:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

.desktop-home__gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.45s ease;
}

.desktop-home__gal-card:hover .desktop-home__gal-open img,
.desktop-home__gal-card:focus-within .desktop-home__gal-open img {
  transform: scale(1.04);
  filter: brightness(1.07) saturate(1.02);
}

.desktop-home__gal-card figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 20px;
  line-height: 27.5px;
  color: var(--color-blanco);
  pointer-events: none;
}

.desktop-home__gal-card--large {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.desktop-home__gal-card--large figcaption {
  font-size: 20px;
}

.desktop-home__gal-col {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 24px);
  min-height: 0;
  height: 100%;
}

.desktop-home__gal-card--small {
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
}

.desktop-home__gal-card--small figcaption {
  left: 9px;
  bottom: 12px;
  font-size: 14px;
  line-height: 20px;
}

.desktop-home__gal-card--wide {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.desktop-home__gal-card--wide::before,
.desktop-home__gal-card--large::before,
.desktop-home__gal-card--small::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  pointer-events: none;
}

/* Lightbox galería (<dialog>) */
.desktop-home__gal-lightbox {
  padding: 0;
  border: none;
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background: transparent;
  overflow: visible;
}

.desktop-home__gal-lightbox::backdrop {
  background: rgba(5, 8, 12, 0.88);
  backdrop-filter: blur(4px);
}

.desktop-home__gal-lightbox-scrim {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.desktop-home__gal-lightbox-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  padding: 48px 12px 56px;
  box-sizing: border-box;
  min-height: 100vh;
}

.desktop-home__gal-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-blanco);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 1s ease, color 1s ease;
}

.desktop-home__gal-lightbox-close:hover,
.desktop-home__gal-lightbox-close:focus-visible {
  background: var(--color-rosado);
  color: var(--color-blanco);
}

.desktop-home__gal-lightbox-close:focus-visible {
  outline: 2px solid var(--color-blanco);
  outline-offset: 2px;
}

.desktop-home__gal-lightbox-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.desktop-home__gal-lightbox-nav:hover,
.desktop-home__gal-lightbox-nav:focus-visible {
  background: transparent;
}

.desktop-home__gal-lightbox-nav:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 4px;
}

.desktop-home__gal-lightbox-nav:hover .desktop-home__hero-nav-img,
.desktop-home__gal-lightbox-nav:focus-visible .desktop-home__hero-nav-img {
  opacity: 0.92;
}

.desktop-home__gal-lightbox-nav .desktop-home__hero-nav-img {
  transition: opacity 0.2s ease;
}

.desktop-home__gal-lightbox-stage {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-height: min(85vh, 760px);
}

.desktop-home__gal-lightbox-img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(78vh, 680px);
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.55);
}

.desktop-home__gal-lightbox-caption {
  margin: 0;
  max-width: 52ch;
  text-align: center;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.4;
  color: var(--color-blanco-suave);
}

.desktop-home__gal-lightbox-caption:empty {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__gal-card img {
    transition-duration: 0.01ms;
  }

  .desktop-home__gal-card:hover .desktop-home__gal-open img,
  .desktop-home__gal-card:focus-within .desktop-home__gal-open img {
    transform: none;
    filter: brightness(1.05);
  }
}

/* --- Artículos --- */
.desktop-home__articulos {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 716px;
  padding: 40px clamp(24px, 7.8vw, 113px) 80px;
  border-top: 1px solid var(--color-border-light);
}

.desktop-home__articulos-header {
  max-width: 1200px;
}

.desktop-home__articulos-kicker {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: var(--color-rosado);
  text-transform: capitalize;
}

.desktop-home__articulos-title {
  margin: 12px 0 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 45px;
  line-height: 75px;
  letter-spacing: -1.2363px;
  color: var(--color-blanco);
  text-transform: capitalize;
}

.desktop-home__articulos-viewport {
  --art-gap: clamp(24px, 3.5vw, 44px);
  /* Sin JS: aprox. 4 columnas; el ancho real lo escribe initTripleStripCarousel (--art-slide-px). */
  --art-slide-px: min(21vw, 280px);
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.desktop-home__articulos-viewport.desktop-home__articulos-viewport--dragging {
  cursor: grabbing;
  touch-action: none;
}

.desktop-home__articulos-carousel-track {
  display: flex;
  gap: var(--art-gap);
  width: max-content;
  max-width: none;
  transition: transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.desktop-home__articulos-slide {
  flex: 0 0 var(--art-slide-px);
  width: var(--art-slide-px);
  min-width: 0;
  max-width: var(--art-slide-px);
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
}

.desktop-home__articulos-slide--clone {
  pointer-events: none;
}

.desktop-home__art-card {
  width: 100%;
  height: 393px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--color-gris-card);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.5s ease;
  cursor: auto;
  -webkit-user-select: text;
  user-select: text;
}

.desktop-home__art-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px -12px rgba(0, 0, 0, 0.35);
}

.desktop-home__art-cover {
  height: 243px;
  background: #1e2939;
  overflow: hidden;
}

.desktop-home__art-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.desktop-home__art-card:hover .desktop-home__art-cover img {
  opacity: 0.88;
  transform: scale(1.04);
}

.desktop-home__art-body {
  height: 147px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.desktop-home__art-title {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 22.5px;
  letter-spacing: -0.4395px;
  color: var(--color-blanco);
}

.desktop-home__art-btn.desktop-home__hero-cta-btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: 10px;
}

.desktop-home__art-btn.desktop-home__hero-cta-btn img {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.desktop-home__articulos-navs {
  margin: 24px clamp(24px, 5vw, 75px) 0 auto;
}

.desktop-home__articulos--static .desktop-home__articulos-viewport {
  cursor: default;
  -webkit-user-select: auto;
  user-select: auto;
}

.desktop-home__articulos--static .desktop-home__articulos-carousel-track {
  transform: none;
}

.desktop-home__articulos-nav:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__articulos-carousel-track {
    transition-duration: 0.01ms;
  }

  .desktop-home__art-card {
    transition-duration: 0.01ms;
  }

  .desktop-home__art-card:hover {
    transform: none;
  }

  .desktop-home__art-cover img {
    transition-duration: 0.01ms;
  }

  .desktop-home__art-card:hover .desktop-home__art-cover img {
    transform: none;
  }
}

/* --- Hablemos (Figma 779:5793) --- */
.desktop-home__hablemos {
  position: relative;
  min-height: 808px;
  padding: 12px clamp(24px, 7.9vw, 114px) 40px;
  background: var(--color-negro);
}

.desktop-home__hablemos-card {
  --hablemos-card-pad-x: 128px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(32px, 5vw, 80px);
  width: 100%;
  max-width: min(1200px, 100%);
  min-height: 741px;
  margin-inline: auto;
  padding-left: var(--hablemos-card-pad-x);
  padding-right: var(--hablemos-card-pad-x);
  border-radius: var(--radius-xxl);
  background: var(--gradient-brand);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  align-items: stretch;
  box-sizing: border-box;
}

.desktop-home__hablemos-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.desktop-home__hablemos-form-wrap {
  justify-self: end;
  margin-top: 64px;
  margin-bottom: 64px;
  margin-right: 0;
  width: 600px;
  max-width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
  /* Figma 779:5794: formulario sobre el degradado; campos y textos claros */
  background: transparent;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.desktop-home__hablemos-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-blanco);
}

.desktop-home__hablemos-lead {
  margin: 24px 0 0;
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 24px;
  line-height: 33.6px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
}

.desktop-home__hablemos-lead-accent {
  font-weight: 700;
  color: #ededed;
}

.desktop-home__hablemos-social {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.desktop-home__hablemos-social-btn {
  display: flex;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: background 1s ease, border-color 1s ease;
}

.desktop-home__hablemos-social-btn .fa-brands {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  transition: color 1s ease;
}

.desktop-home__hablemos-social-btn:hover,
.desktop-home__hablemos-social-btn:focus-visible {
  background: var(--gradient-cta-btn);
  border-color: transparent;
}

.desktop-home__hablemos-social-btn:hover .fa-brands,
.desktop-home__hablemos-social-btn:focus-visible .fa-brands {
  color: var(--color-blanco);
}

.desktop-home__hablemos-social-btn:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

.desktop-home__form,
.desktop-home__hablemos-form-wrap .wpcf7-form {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-bottom: 80px;
}

.desktop-home__hablemos-form-wrap .wpcf7 {
  width: 100%;
}

.desktop-home__hablemos-form-wrap .wpcf7-spinner {
  position: absolute;
  left: 0;
  bottom: 28px;
  margin: 0;
}

.desktop-home__hablemos-form-wrap .wpcf7-response-output {
  display: none;
}

.desktop-home__hablemos-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.desktop-home__field > label > .wpcf7-form-control-wrap,
.desktop-home__field > label > .desktop-home__select {
  margin-top: 8px;
}

.desktop-home__hablemos-form-wrap .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-family: var(--font-poppins);
  font-size: 12px;
  line-height: 1.4;
  color: #ffb4b4;
}

.desktop-home__form-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.desktop-home__form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  width: 100%;
  max-width: 600px;
}

.desktop-home__field {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

.desktop-home__field--grow {
  flex: 1 1 0;
  width: auto;
}

.desktop-home__field--block {
  width: 100%;
  max-width: 600px;
  margin-bottom: 0;
}

.desktop-home__field label {
  display: block;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: #ededed;
}

.desktop-home__field input,
.desktop-home__field textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(33, 31, 33, 0.16);
  border-radius: var(--radius-md);
  background: rgba(245, 245, 245, 0.9);
  font-family: var(--font-poppins);
  font-size: 15px;
  padding: 14px 16px;
  color: var(--color-negro);
  caret-color: var(--color-negro);
}

.desktop-home__field textarea {
  min-height: 93px;
  resize: vertical;
}

.desktop-home__field input::placeholder,
.desktop-home__field textarea::placeholder {
  color: rgba(33, 31, 33, 0.3);
}

.desktop-home__hablemos-form-wrap .desktop-home__field input:-webkit-autofill,
.desktop-home__hablemos-form-wrap .desktop-home__field textarea:-webkit-autofill,
.desktop-home__hablemos-form-wrap .desktop-home__select select:-webkit-autofill {
  -webkit-text-fill-color: var(--color-negro);
  transition: background-color 9999s ease-out;
  box-shadow: 0 0 0 1000px rgba(245, 245, 245, 0.9) inset;
}

.desktop-home__field input:focus-visible,
.desktop-home__field textarea:focus-visible {
  outline: none;
  border-color: rgba(33, 31, 33, 0.45);
  background: rgba(245, 245, 245, 0.9);
}

.desktop-home__select {
  position: relative;
  width: 100%;
}

/* Fallback nativo (sin JS): el select se ve como los demás campos. */
.desktop-home__select select {
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  margin: 0;
  border: 1px solid rgba(33, 31, 33, 0.16);
  border-radius: var(--radius-md);
  background: rgba(245, 245, 245, 0.9);
  font-family: var(--font-poppins);
  font-size: 15px;
  padding: 14px 40px 14px 16px;
  color: var(--color-negro);
  appearance: none;
}

.desktop-home__select select:required:invalid {
  color: rgba(33, 31, 33, 0.3);
}

.desktop-home__select select:focus-visible {
  outline: none;
  border-color: rgba(33, 31, 33, 0.45);
}

.desktop-home__select > .desktop-home__select-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* --- Select realzado por JS: trigger + panel (Figma 817:1261 / 900:710) --- */
.desktop-home__select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.desktop-home__select-trigger {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(33, 31, 33, 0.16);
  border-radius: var(--radius-md);
  background: rgba(245, 245, 245, 0.9);
  font-family: var(--font-poppins);
  font-size: 15px;
  color: var(--color-negro);
  text-align: left;
  cursor: pointer;
}

.desktop-home__select-value {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-home__select--custom.is-placeholder .desktop-home__select-value {
  color: rgba(33, 31, 33, 0.3);
}

.desktop-home__select-trigger .desktop-home__select-chevron {
  position: static;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: rgba(33, 31, 33, 0.3);
  transform: none;
  transition: transform 0.2s ease;
}

.desktop-home__select--custom.is-open .desktop-home__select-chevron {
  transform: rotate(180deg);
}

.desktop-home__select-trigger:focus-visible {
  outline: none;
  border-color: rgba(215, 62, 116, 0.55);
  box-shadow: 0 0 0 2px rgba(215, 62, 116, 0.2);
}

.desktop-home__select-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 244px;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  list-style: none;
  background: rgba(245, 245, 245, 0.98);
  border: 1px solid rgba(33, 31, 33, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.desktop-home__select-list[hidden] {
  display: none;
}

.desktop-home__select-option {
  padding: 8px 11px;
  border-radius: 8px;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(33, 31, 33, 0.55);
  cursor: pointer;
}

.desktop-home__select-option:hover,
.desktop-home__select-option.is-active,
.desktop-home__select-option.is-selected {
  background: #211f21;
  color: #ededed;
}

.desktop-home__form-submit.desktop-home__hero-cta-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 204.961px;
  max-width: 100%;
  min-height: 56px;
  height: auto;
  padding: 10px 18px;
  border-radius: 20px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-blanco);
  cursor: pointer;
  border: none;
  background: var(--gradient-cta-btn);
  box-sizing: border-box;
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
}

.desktop-home__form-submit.desktop-home__hero-cta-btn:hover,
.desktop-home__form-submit.desktop-home__hero-cta-btn:focus-visible {
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.4), 0 0 10px rgba(215, 62, 116, 0.6);
}

@media (max-width: 1180px) {
  .desktop-home__hablemos-card {
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: stretch;
    --hablemos-card-pad-x: clamp(24px, 5vw, 64px);
    padding-left: var(--hablemos-card-pad-x);
    padding-right: var(--hablemos-card-pad-x);
  }

  .desktop-home__hablemos-left {
    justify-content: flex-start;
    padding: clamp(48px, 12vw, 80px) 0 32px;
  }

  .desktop-home__hablemos-form-wrap {
    justify-self: stretch;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: 0 0 var(--radius-xxl) var(--radius-xxl);
  }
}

/* --- Footer --- */
.desktop-home__footer {
  padding: 49px 0 40px;
  background: var(--color-negro);
  border-top: 1px solid var(--color-border-light);
}

.desktop-home__footer-inner {
  width: min(1219.75px, calc(100% - 2 * var(--layout-gutter)));
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.desktop-home__footer-main {
  display: flex;
  gap: 32px;
  padding: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

.desktop-home__footer-brand {
  max-width: 320px;
}

.desktop-home__footer-name {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 2.5605px;
  text-transform: uppercase;
  color: var(--color-blanco);
}

.desktop-home__footer-name-accent {
  color: var(--color-rosado);
}

.desktop-home__footer-tagline {
  margin: 16px 0 0;
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: var(--color-texto-faint);
}

.desktop-home__footer-mark {
  margin-top: 26px;
  width: 81px;
  height: 54px;
  object-fit: contain;
}

.desktop-home__footer-nav-title {
  margin: 0 0 16px;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: var(--color-rosado);
}

.desktop-home__footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.desktop-home__footer-links a {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 1s ease;
}

.desktop-home__footer-links a:hover,
.desktop-home__footer-links a:focus-visible {
  color: var(--color-rosado);
}

.desktop-home__footer-links a:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 2px;
}

.desktop-home__footer-email {
  margin: 28px 0 0;
}

.desktop-home__footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.desktop-home__footer-email-link:hover {
  color: var(--color-blanco);
}

.desktop-home__footer-email-link:focus-visible {
  color: var(--color-blanco);
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 4px;
}

.desktop-home__footer-email-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.desktop-home__footer-email-icon .fa-solid,
.desktop-home__footer-email-icon .fa-regular {
  font-size: 14px;
  line-height: 1;
  color: var(--color-rosado);
}

.desktop-home__footer-email-link:hover .desktop-home__footer-email-icon .fa-solid,
.desktop-home__footer-email-link:focus-visible .desktop-home__footer-email-icon .fa-solid,
.desktop-home__footer-email-link:hover .desktop-home__footer-email-icon .fa-regular,
.desktop-home__footer-email-link:focus-visible .desktop-home__footer-email-icon .fa-regular {
  color: #e85a87;
}

.desktop-home__footer-bottom {
  margin-top: 83px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-home__footer-copy {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 12px;
  line-height: 16px;
  color: var(--color-texto-dim);
}

.desktop-home__footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-home__footer-rule {
  width: 1px;
  height: 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-ui);
}

.desktop-home__footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30.591px;
  height: 30.591px;
  border-radius: 9.179px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: background 1s ease, border-color 1s ease;
}

.desktop-home__footer-social a .fa-brands {
  display: block;
  font-size: 15px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  transition: color 1s ease;
}

.desktop-home__footer-social a:hover,
.desktop-home__footer-social a:focus-visible {
  background: var(--gradient-cta-btn);
  border-color: transparent;
}

.desktop-home__footer-social a:hover .fa-brands,
.desktop-home__footer-social a:focus-visible .fa-brands {
  color: var(--color-blanco);
}

.desktop-home__footer-social a:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
  border-radius: 10px;
}

/* --- Menú overlay pantalla completa (Figma 642:1233 escritorio / móvil ≤1024) --- */
html.desktop-home-page--nav-open,
html.desktop-home-page--nav-open body {
  overflow: hidden;
}

.desktop-home__nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 320;
  overflow: hidden;
}

.desktop-home__nav-slide {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.48s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}

.desktop-home__nav-overlay.is-open .desktop-home__nav-slide {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__nav-slide {
    transition-duration: 0.01ms;
    transition-timing-function: linear;
  }
}

.desktop-home__nav-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background: rgba(26, 24, 26, 0.985);
}

.desktop-home__nav-drawer {
  position: relative;
  z-index: 1;
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 56px 48px;
  padding-bottom: max(48px, env(safe-area-inset-bottom));
  background: transparent;
  pointer-events: auto;
}

.desktop-home__nav-drawer::before {
  content: "";
  position: absolute;
  top: min(454.8px, 52vh);
  left: max(-131px, -12vw);
  z-index: 0;
  width: min(600px, 120vw);
  height: min(600px, 120vw);
  border-radius: 50%;
  background: rgba(236, 105, 155, 0.05);
  filter: blur(100px);
  pointer-events: none;
}

.desktop-home__nav-panel-head {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 1333px;
  height: 50px;
  align-items: center;
  justify-content: space-between;
}

.desktop-home__nav-panel-logo {
  display: flex;
  max-width: 330px;
  align-items: center;
}

.desktop-home__nav-panel-logo img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 330px;
  object-fit: contain;
}

.desktop-home__nav-body {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 48px;
  margin-top: 96px;
  min-height: 0;
}

.desktop-home__nav-main {
  flex: 1 1 672px;
  box-sizing: border-box;
  min-width: 0;
  padding-bottom: 78.5px;
}

.desktop-home__nav-aside {
  position: relative;
  z-index: 1;
  display: flex;
  box-sizing: border-box;
  width: 480px;
  height: 468px;
  flex: 0 0 480px;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0;
  padding-left: 48px;
}

.desktop-home__nav-kicker {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2.8px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.desktop-home__nav-contact-block .desktop-home__nav-kicker {
  margin-bottom: 16px;
}

.desktop-home__nav-follow-block .desktop-home__nav-kicker {
  margin-bottom: 16px;
}

.desktop-home__nav-contact-block {
  margin-bottom: 48px;
}

.desktop-home__nav-mail {
  display: block;
  max-width: 100%;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-blanco);
  text-decoration: none;
}

.desktop-home__nav-mail:hover,
.desktop-home__nav-mail:focus-visible {
  color: var(--color-rosado);
}

.desktop-home__nav-mail-icon {
  display: none;
}

.desktop-home__nav-mail-text {
  white-space: nowrap;
}

.desktop-home__nav-follow-block {
  display: flex;
  flex-direction: column;
}

.desktop-home__nav-social-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.desktop-home__nav-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  text-decoration: none;
}

.desktop-home__nav-social-link:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 4px;
}

.desktop-home__nav-social-icon-wrap {
  display: inline-flex;
  width: 30.591px;
  height: 30.591px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 2px 0 0;
  border-radius: 9.179px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  transition: background 1s ease, border-color 1s ease;
}

.desktop-home__nav-social-icon-wrap .fa-brands {
  display: block;
  font-size: 15px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  transition: color 1s ease;
}

.desktop-home__nav-social-link:hover .desktop-home__nav-social-icon-wrap,
.desktop-home__nav-social-link:focus-visible .desktop-home__nav-social-icon-wrap {
  background: var(--gradient-cta-btn);
  border-color: transparent;
}

.desktop-home__nav-social-link:hover .desktop-home__nav-social-icon-wrap .fa-brands,
.desktop-home__nav-social-link:focus-visible .desktop-home__nav-social-icon-wrap .fa-brands {
  color: var(--color-blanco);
}

.desktop-home__nav-social-label {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 1s ease;
}

.desktop-home__nav-social-link:hover .desktop-home__nav-social-label,
.desktop-home__nav-social-link:focus-visible .desktop-home__nav-social-label {
  color: rgba(255, 255, 255, 0.95);
}

.desktop-home__nav-close {
  position: static;
  z-index: 2;
  display: flex;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-blanco);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 1s ease, border-color 1s ease, color 1s ease;
}

.desktop-home__nav-close:hover,
.desktop-home__nav-close:focus-visible {
  background: var(--gradient-cta-btn);
  border-color: var(--color-blanco-suave);
  color: var(--color-blanco);
}

.desktop-home__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 47px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-home__nav-list a {
  display: inline-block;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -1.8px;
  color: var(--color-blanco);
  text-decoration: none;
  white-space: nowrap;
  transform-origin: left center;
  transition:
    color 1s ease,
    transform 0.25s ease;
}

.desktop-home__nav-list a:hover,
.desktop-home__nav-list a:focus-visible {
  color: var(--color-rosado);
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__nav-list a {
    transition: color 1s ease;
  }

  .desktop-home__nav-list a:hover,
  .desktop-home__nav-list a:focus-visible {
    transform: none;
  }
}

.desktop-home__nav-close:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

/* Pantallas anchas: centra ligero el bloque del menú (tope para no alejar demasiado en ultra-wide) */
@media (min-width: 1320px) {
  .desktop-home__nav-drawer {
    padding-right: max(56px, min(200px, calc((100vw - var(--layout-max)) / 2)));
    padding-left: max(56px, min(200px, calc((100vw - var(--layout-max)) / 2)));
  }
}

/* Escritorio intermedio: evita desborde por ancho fijo 672+480+48 (Figma 1440px) */
@media (max-width: 1319px) and (min-width: 1025px) {
  .desktop-home__nav-drawer {
    padding-right: clamp(32px, 4.2vw, 56px);
    padding-left: clamp(32px, 4.2vw, 56px);
  }

  .desktop-home__nav-panel-head {
    max-width: none;
  }

  .desktop-home__nav-body {
    gap: clamp(28px, 3.5vw, 48px);
    margin-top: clamp(56px, 7vw, 96px);
    max-width: none;
  }

  .desktop-home__nav-main {
    flex: 1 1 54%;
    padding-bottom: clamp(32px, 5vw, 78.5px);
  }

  .desktop-home__nav-aside {
    flex: 0 1 42%;
    width: auto;
    min-width: 380px;
    height: auto;
    min-height: 420px;
    padding-left: clamp(32px, 4vw, 48px);
  }

  .desktop-home__nav-list {
    gap: clamp(32px, 3.6vw, 47px);
  }

  .desktop-home__nav-list a {
    font-size: clamp(40px, 4.6vw, 60px);
    line-height: clamp(48px, 5.3vw, 72px);
    letter-spacing: clamp(-1.35px, -0.14vw, -1.8px);
    white-space: normal;
  }

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

  .desktop-home__sobre-top {
    grid-template-columns: minmax(240px, 1fr) minmax(0, 1.15fr);
  }

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

@media (max-width: 1180px) and (min-width: 1025px) {
  .desktop-home__experiencia-panel {
    min-height: 720px;
  }

  .desktop-home__experiencia-copy {
    position: relative;
    left: auto;
    top: auto;
    max-width: 100%;
    width: 100%;
    padding: 32px clamp(24px, 4vw, 48px) 0;
  }

  .desktop-home__experiencia-grid {
    position: relative;
    right: auto;
    top: auto;
    width: min(650px, 60%);
    max-width: 60%;
    margin: 24px 0 40px;
  }
}

@media (max-width: 1024px) {
  .desktop-home__nav-drawer {
    align-items: stretch;
    padding: 24px 24px max(40px, env(safe-area-inset-bottom));
  }

  .desktop-home__nav-drawer::before {
    top: auto;
    bottom: -80px;
    left: -100px;
    width: min(400px, 90vw);
    height: min(400px, 90vw);
  }

  .desktop-home__nav-panel-head {
    max-width: none;
    height: auto;
    min-height: 44px;
    gap: 12px;
  }

  .desktop-home__nav-panel-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .desktop-home__nav-panel-logo img {
    height: 18px;
    max-width: 100%;
    width: auto;
  }

  .desktop-home__nav-body {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    margin-top: 48px;
    max-width: none;
  }

  .desktop-home__nav-main {
    flex: none;
    width: 100%;
    padding-bottom: 0;
  }

  .desktop-home__nav-aside {
    width: 100%;
    height: auto;
    flex: none;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    padding-top: 32px;
    padding-left: 0;
  }

  .desktop-home__nav-contact-block {
    margin-bottom: 36px;
  }

  .desktop-home__nav-mail-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }

  .desktop-home__nav-mail-icon .fa-regular {
    font-size: 14px;
    line-height: 1;
    color: var(--color-rosado);
  }

  .desktop-home__nav-mail {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 26px;
  }

  .desktop-home__nav-list {
    align-items: flex-start;
    gap: 28px;
  }

  .desktop-home__nav-list a {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.2px;
    white-space: normal;
  }

  .desktop-home__nav-close {
    width: 44px;
    height: 44px;
    padding: 8px;
    font-size: 26px;
  }

  /* --- Layout fluido (variante móvil vs frame 762:1322; alineado a ≤1024 con drawer) --- */

  body {
    overflow-x: hidden;
  }

  .desktop-home {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    overflow-x: hidden;
    padding-inline: 0;
  }

  .desktop-home__navbar {
    --navbar-mobile-menu-w: 24px;
    --navbar-mobile-actions-w: 88px;
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    max-width: none;
    min-height: 58px;
    padding: 0 0 14px;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.92) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .desktop-home__navbar-menu {
    position: absolute;
    left: 20px;
    top: 17px;
    display: flex;
    width: var(--navbar-mobile-menu-w);
    height: 24px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .desktop-home__navbar-menu img {
    display: block;
    width: 24px;
    height: auto;
    max-height: 20px;
    object-fit: contain;
  }

  .desktop-home__navbar-logo {
    position: absolute;
    top: 23px;
    left: calc(50% + (var(--navbar-mobile-menu-w) - var(--navbar-mobile-actions-w)) / 2);
    width: min(136px, 38vw);
    height: 12.39px;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .desktop-home__navbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .desktop-home__navbar-logo a {
    pointer-events: auto;
  }

  .desktop-home__navbar-actions {
    position: absolute;
    top: 16px;
    right: 20px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    width: var(--navbar-mobile-actions-w);
    gap: 3px;
  }

  .desktop-home__navbar-cta {
    display: none;
  }

  .desktop-home__lang {
    width: 100%;
    max-width: var(--navbar-mobile-actions-w);
    height: 32px;
    padding: 3px;
    gap: 2px;
    box-sizing: border-box;
  }

  .desktop-home__lang-active,
  .desktop-home__lang-btn {
    min-width: 40px;
    height: 100%;
    padding: 0 10px;
    font-size: 12px;
  }

  /* Portada: barra encima del hero a ancho completo (Figma 843:620), sin reservar hueco en el flujo. */
  body.rcd-front-hero-layout .desktop-home__navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 30;
    padding-top: env(safe-area-inset-top, 0px);
  }

  body.rcd-front-hero-layout .desktop-home__navbar-menu {
    top: calc(17px + env(safe-area-inset-top, 0px));
  }

  body.rcd-front-hero-layout .desktop-home__navbar-actions {
    top: calc(16px + env(safe-area-inset-top, 0px));
  }

  body.rcd-front-hero-layout .desktop-home__navbar-logo {
    top: calc(23px + env(safe-area-inset-top, 0px));
  }

  body.rcd-front-hero-layout .desktop-home__hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    left: 0;
    margin: 0;
    height: min(151.4vw, 545px);
    min-height: min(151.4vw, 545px);
    overflow: hidden;
  }

  body.rcd-front-hero-layout .desktop-home__hero-viewport {
    position: relative;
    z-index: 3;
    isolation: isolate;
  }

  body.rcd-front-hero-layout .desktop-home__hero-track,
  body.rcd-front-hero-layout .desktop-home__hero-slide {
    height: 100%;
  }

  body.rcd-front-hero-layout .desktop-home__hero-slide {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
    isolation: isolate;
  }

  /* Lavado radial: detrás del contenido (z-index 1), no encima de textos/CTA. */
  body.rcd-front-hero-layout .desktop-home__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
      ellipse 130% 95% at 25% 42%,
      rgba(255, 233, 197, 0.94) 0%,
      rgba(235, 147, 157, 0.9) 12%,
      rgba(215, 62, 116, 0.88) 28%,
      rgba(109, 25, 95, 0.86) 48%,
      rgba(33, 31, 33, 0.92) 72%,
      rgba(33, 31, 33, 0.96) 100%
    );
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 50%, rgba(0, 0, 0, 0.4) 66%, transparent 84%);
    mask-image: linear-gradient(90deg, #000 0%, #000 50%, rgba(0, 0, 0, 0.4) 66%, transparent 84%);
  }

  body.rcd-front-hero-layout .desktop-home__hero-bg,
  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-layout="even"] .desktop-home__hero-bg,
  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-active-bg="video"] .desktop-home__hero-bg {
    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  body.rcd-front-hero-layout .desktop-home__hero-bg-layer {
    position: absolute;
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  body.rcd-front-hero-layout .desktop-home__hero-bg-layer--muted {
    opacity: 0.14;
  }

  body.rcd-front-hero-layout .desktop-home__hero-bg-img,
  body.rcd-front-hero-layout .desktop-home__hero-bg-video {
    position: absolute;
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }

  body.rcd-front-hero-layout .desktop-home__hero-bg-overlay {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  body.rcd-front-hero-layout .desktop-home__hero-copy,
  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-layout="even"] .desktop-home__hero-copy {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 50vw;
    min-width: 0;
    flex: none;
    order: unset;
    align-self: stretch;
    justify-self: start;
    z-index: 2;
    padding:
      clamp(40px, 14.17vw, 51px)
      clamp(10px, 4.44vw, 16px)
      clamp(48px, 15.56vw, 56px)
      clamp(14px, 5vw, 18px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 4.44vw, 22px);
    justify-content: flex-start;
    box-sizing: border-box;
    color: var(--color-hero-cream);
    pointer-events: auto;
  }

  body.rcd-front-hero-layout .desktop-home__hero-copy > .desktop-home__hero-cta-btn,
  body.rcd-front-hero-layout .desktop-home__hero-copy > .desktop-home__hero-cta,
  body.rcd-front-hero-layout .desktop-home__hero-title,
  body.rcd-front-hero-layout .desktop-home__hero-title--h1,
  body.rcd-front-hero-layout .desktop-home__hero-lead {
    position: relative;
    z-index: 1;
  }

  body.rcd-front-hero-layout .desktop-home__hero-copy > .desktop-home__hero-cta-btn,
  body.rcd-front-hero-layout .desktop-home__hero-copy > .desktop-home__hero-cta {
    margin-top: auto;
    align-self: center;
  }

  body.rcd-front-hero-layout .desktop-home__hero-portrait,
  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-layout="even"] .desktop-home__hero-portrait {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 0;
    flex: none;
    order: unset;
    margin: 0;
    align-self: stretch;
    justify-self: stretch;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }

  body.rcd-front-hero-layout .desktop-home__hero-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }

  body.rcd-front-hero-layout .desktop-home__hero-portrait-picture,
  body.rcd-front-hero-layout .desktop-home__hero-portrait-picture .desktop-home__hero-portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 0;
  }

  body.rcd-front-hero-layout .desktop-home__hero-portrait-picture .desktop-home__hero-portrait-img {
    object-fit: cover;
    object-position: center top;
  }

  body.rcd-front-hero-layout .desktop-home__hero-portrait-inner {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    z-index: 0;
  }

  body.rcd-front-hero-layout .desktop-home__hero-portrait-img {
    position: absolute;
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 0;
    object-fit: cover;
    object-position: 72% 26%;
  }

  #desktop-home-hero > .desktop-home__hero-nav {
    position: absolute;
    top: 50%;
    bottom: auto;
    z-index: 5;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    transform: translateY(-50%);
  }

  #desktop-home-hero > .desktop-home__hero-nav .desktop-home__hero-nav-img,
  #desktop-home-hero > .desktop-home__hero-nav .desktop-home__hero-nav-img--default,
  #desktop-home-hero > .desktop-home__hero-nav .desktop-home__hero-nav-img--hover {
    width: 46px;
    height: 46px;
    max-width: none;
    max-height: none;
    flex-shrink: 0;
  }

  #desktop-home-hero > .desktop-home__hero-nav--prev {
    display: none;
  }

  #desktop-home-hero > .desktop-home__hero-nav--next {
    left: auto;
    right: 16px;
  }

  #desktop-home-hero > .desktop-home__hero-dots {
    bottom: 5%;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }

  body.rcd-front-hero-layout .desktop-home__hero-title,
  body.rcd-front-hero-layout .desktop-home__hero-title--h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(16px, 5.56vw, 20px);
    line-height: clamp(22px, 7.78vw, 28px);
    letter-spacing: -0.02em;
  }

  body.rcd-front-hero-layout .desktop-home__hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: clamp(13px, 4.44vw, 16px);
    line-height: 1.35;
  }

  body.rcd-front-hero-layout .desktop-home__hero-cta-btn {
    box-sizing: border-box;
    width: min(161px, calc(50vw - clamp(28px, 9vw, 36px)));
    max-width: 100%;
    min-height: clamp(44px, 13.89vw, 50px);
    padding: clamp(8px, 2.5vw, 10px) clamp(12px, 4vw, 16px);
    font-size: clamp(14px, 4.44vw, 16px);
    margin-left: auto;
    margin-right: auto;
  }

  body.rcd-front-hero-layout .desktop-home__hero-cta {
    width: min(161px, calc(50vw - clamp(28px, 9vw, 36px)));
    max-width: 100%;
    height: clamp(44px, 13.89vw, 50px);
  }

  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-active-bg="video"] .desktop-home__hero-portrait {
    display: none;
  }

  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-active-bg="video"] .desktop-home__hero-copy,
  body.rcd-front-hero-layout .desktop-home__hero-slide[data-hero-active-bg="video"][data-hero-layout="even"] .desktop-home__hero-copy {
    grid-column: 1;
  }

  .desktop-home__sobre {
    width: 100%;
    left: 0;
    min-height: 0;
    padding: 48px 0 32px;
  }

  .desktop-home__sobre-inner {
    width: 100%;
    margin-left: 0;
    min-height: 0;
    padding: 0 20px;
  }

  /* Intro mobile (Figma 843:1068) */
  .desktop-home__sobre-top {
    display: flex;
    flex-direction: column;
    gap: 36px;
    min-height: 0;
    padding: 0;
  }

  .desktop-home__sobre-intro {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .desktop-home__sobre-kicker {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.44px;
    text-transform: capitalize;
  }

  .desktop-home__sobre-heading {
    margin: 0;
    font-size: 22px;
    line-height: 27.5px;
  }

  .desktop-home__sobre-text,
  .desktop-home__sobre-text + .desktop-home__sobre-text {
    margin: 0;
    max-width: none;
    text-align: left;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.07px;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Timeline mobile (Figma 843:1106) */
  .desktop-home__sobre-timeline {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 0;
    margin-top: 0;
    padding: 0 0 8px;
  }

  .desktop-home__sobre-timeline::before {
    display: none;
  }

  .desktop-home__sobre-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: -27px;
    top: 14px;
    bottom: -40px;
    z-index: 0;
    width: 1px;
    border-radius: 1px;
    background: var(--gradient-sobre-timeline-track);
    pointer-events: none;
  }

  .desktop-home__sobre-node {
    display: none;
  }

  .desktop-home__sobre-timeline-items {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-left: 51px;
    width: 100%;
    box-sizing: border-box;
  }

  .desktop-home__sobre-item,
  .desktop-home__sobre-item:first-child,
  .desktop-home__sobre-item:last-child {
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .desktop-home__sobre-item::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 6px;
    z-index: 1;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-pill);
    background: var(--gradient-sobre-dot-top);
    box-shadow: 0 0 0 1px rgba(33, 31, 33, 0.28);
  }

  .desktop-home__sobre-item:not(:first-child):not(:last-child)::before {
    background: var(--gradient-sobre-dot-mid);
    box-shadow: 0 0 0 1px rgba(33, 31, 33, 0.32);
  }

  .desktop-home__sobre-item:last-child:not(:only-child)::before {
    background: var(--gradient-sobre-dot-bottom);
    box-shadow: 0 0 0 1px rgba(33, 31, 33, 0.4);
  }

  .desktop-home__sobre-item:only-child::before {
    background: var(--gradient-sobre-dot-top);
    box-shadow: 0 0 0 1px rgba(33, 31, 33, 0.28);
  }

  .desktop-home__sobre-item-title {
    font-size: 20px;
    line-height: 28px;
  }

  .desktop-home__sobre-item-text {
    margin: 8px 0 0;
    max-width: none;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
  }

  .desktop-home__sobre-item:first-child .desktop-home__sobre-item-text,
  .desktop-home__sobre-item:last-child .desktop-home__sobre-item-text {
    max-width: none;
  }

  .desktop-home__sobre-cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    gap: 13px;
    perspective: none;
  }

  /* Tarjetas trayectoria mobile (Figma 844:1134); cerradas por defecto, expand al hover como escritorio. */
  .desktop-home__sobre-card {
    width: 100%;
    max-width: 100%;
    min-height: 112px;
    height: 112px;
    overflow: hidden;
    border-radius: 16px;
  }

  .desktop-home__sobre-card:nth-child(3),
  .desktop-home__sobre-card:nth-child(4) {
    width: 100%;
    max-width: 100%;
  }

  .desktop-home__sobre-card-bg {
    border: 2px solid rgba(255, 63, 164, 0.9);
    border-radius: 16px;
    background: var(--gradient-brand);
    box-shadow: 0 0 30px rgba(215, 62, 116, 0.15);
  }

  .desktop-home__sobre-card-glow {
    left: auto;
    right: 24px;
    top: 0;
    width: 80px;
    height: 72px;
    opacity: 0.2;
    filter: blur(70px);
  }

  .desktop-home__sobre-card-bar {
    display: none;
  }

  .desktop-home__sobre-card-head {
    position: absolute;
    z-index: 2;
    inset: auto 20px 22px auto;
    padding: 0;
  }

  .desktop-home__sobre-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }

  .desktop-home__sobre-card-link img {
    width: 32px;
    height: 32px;
    max-width: none;
  }

  .desktop-home__sobre-card-title {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 56px;
    top: 50%;
    bottom: auto;
    width: auto;
    max-width: none;
    margin: 0;
    transform: translateY(-50%);
    align-items: flex-start;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-blanco-suave);
  }

  .desktop-home__sobre-card--has-hover-detail {
    display: grid;
    grid-template-areas: "stack";
    max-height: 112px;
    min-height: 112px;
    height: 112px;
  }

  .desktop-home__sobre-card-detail {
    border: 2px solid transparent;
    border-radius: 16px;
    background:
      linear-gradient(var(--color-negro), var(--color-negro)) padding-box,
      var(--gradient-cta-text) border-box;
    box-shadow: 0 0 60px rgba(215, 62, 116, 0.25);
  }

  .desktop-home__sobre-card--has-hover-detail:hover {
    z-index: 2;
    height: auto;
    min-height: 112px;
    max-height: none;
    border-radius: 16px;
    box-shadow: none;
    transition:
      min-height 0.48s cubic-bezier(0.33, 1, 0.68, 1),
      max-height 0.48s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-detail {
    width: 100%;
    min-height: 190px;
    max-height: min(320px, 70vh);
    padding: 25px 20px 24px;
    gap: 16px;
    border: 2px solid transparent;
    border-radius: 16px;
    background:
      linear-gradient(var(--color-negro), var(--color-negro)) padding-box,
      var(--gradient-cta-text) border-box;
    box-shadow: 0 0 60px rgba(215, 62, 116, 0.25);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: hidden;
  }

  .desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-detail-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 19px;
  }

  .desktop-home__sobre-card--has-hover-detail:hover .desktop-home__sobre-card-detail-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: var(--color-blanco-suave);
  }

  /* CTA banner mobile (Figma 843:864) */
  .desktop-home__cta-banner {
    width: 100%;
    left: 0;
    height: auto;
    min-height: 0;
    margin-top: 0;
    padding: 32px 20px;
    border-radius: 0;
    background: var(--color-negro);
    box-sizing: border-box;
  }

  .desktop-home__cta-banner-panel {
    display: none;
  }

  .desktop-home__cta-banner-inner {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    min-height: 312px;
    height: auto;
    margin: 0;
    padding: 32px;
    gap: 24px;
    text-align: center;
    background: var(--color-gris-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-sizing: border-box;
  }

  .desktop-home__cta-banner-inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(215, 62, 116, 0.1);
    filter: blur(40px);
    transform: translate(25%, -35%);
    pointer-events: none;
  }

  .desktop-home__cta-banner-inner > * {
    position: relative;
    z-index: 1;
  }

  .desktop-home__cta-banner-left {
    width: 100%;
    max-width: none;
    flex: none;
  }

  .desktop-home__cta-banner-heading {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .desktop-home__cta-banner-line {
    display: block;
  }

  .desktop-home__cta-banner-line--gradient {
    margin-left: auto;
    margin-right: auto;
  }

  .desktop-home__cta-banner-right {
    width: 100%;
    max-width: 294px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .desktop-home__cta-banner-text {
    font-size: 16px;
    line-height: 28.8px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
  }

  .desktop-home__cta-banner-btn {
    align-self: center;
    width: 161px;
    min-height: 50px;
    margin-top: auto;
  }

  .desktop-home__main {
    width: 100%;
    left: 0;
    min-height: 0;
    margin-top: 0;
  }

  /* Servicios mobile (Figma 843:835); cerradas por defecto, expand al hover/focus como escritorio. */
  .desktop-home__servicios {
    min-height: 0;
    padding: 25px 20px 32px;
    border-radius: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
  }

  .desktop-home__servicios-header {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    min-height: 0;
    height: auto;
    margin: 0 auto;
    padding: 0;
    gap: 22px;
  }

  .desktop-home__servicios-kicker {
    padding-top: 0;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.44px;
    text-transform: capitalize;
  }

  .desktop-home__servicios-heading {
    height: auto;
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: 0;
  }

  .desktop-home__servicios-heading-strong,
  .desktop-home__servicios-heading-light {
    position: static;
    display: inline;
    width: auto;
    max-width: none;
    white-space: normal;
    font-size: inherit;
    line-height: inherit;
  }

  .desktop-home__servicios-heading-light {
    margin-left: 0.25em;
    font-weight: 300;
  }

  .desktop-home__servicios-rule {
    margin-top: 8px;
  }

  .desktop-home__servicios-grid-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 0;
    margin: 13px auto 0;
    padding: 0;
  }

  .desktop-home__servicios-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    min-height: 0;
    height: auto;
    margin: 0;
  }

  .desktop-home__svc-card,
  .desktop-home__svc-card:nth-child(1),
  .desktop-home__svc-card:nth-child(2),
  .desktop-home__svc-card:nth-child(3),
  .desktop-home__svc-card:nth-child(4),
  .desktop-home__svc-card:nth-child(5),
  .desktop-home__svc-card:nth-child(6) {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .desktop-home__svc-flip {
    perspective: none;
  }

  .desktop-home__svc-flip,
  .desktop-home__svc-flip-inner {
    height: auto;
    min-height: 0;
  }

  .desktop-home__svc-flip-inner {
    transform: none !important;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .desktop-home__svc-face {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 0;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    transform: none !important;
    border-radius: 16px;
  }

  .desktop-home__svc-face--back {
    display: none;
    min-height: 0;
  }

  .desktop-home__svc-card:hover .desktop-home__svc-face--front,
  .desktop-home__svc-card:focus-within .desktop-home__svc-face--front {
    display: none;
  }

  .desktop-home__svc-card:hover .desktop-home__svc-face--back,
  .desktop-home__svc-card:focus-within .desktop-home__svc-face--back {
    display: block;
  }

  .desktop-home__svc-face--front .desktop-home__svc-card-inner {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    grid-template-rows: auto;
    align-items: center;
    gap: 11px;
    min-height: 104px;
    height: auto;
    padding-block: 12px;
    padding-inline: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  }

  .desktop-home__svc-card-top {
    display: contents;
  }

  .desktop-home__svc-num {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.55px;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .desktop-home__svc-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    padding-block: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
  }

  .desktop-home__svc-arrow {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 32px;
    height: 32px;
  }

  .desktop-home__svc-arrow img {
    width: 32px;
    height: 32px;
    max-width: none;
  }

  .desktop-home__svc-meta {
    display: none;
  }

  .desktop-home__svc-back {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    height: auto;
    padding-block: max(24px, 5px);
    padding-inline: 20px;
    border-radius: 16px;
    border: none;
    background: var(--color-negro);
    box-shadow: var(--shadow-elevated);
  }

  .desktop-home__svc-num--dark {
    align-self: flex-start;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-blanco);
  }

  .desktop-home__svc-title-dark {
    margin: 18px 0 0;
    width: 100%;
    max-width: none;
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.07px;
    color: var(--color-blanco-suave);
  }

  .desktop-home__svc-desc {
    width: 100%;
    max-width: none;
    margin: 14px 0 0;
    padding-left: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.31px;
    color: var(--color-blanco-suave);
  }

  .desktop-home__svc-cta-row {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 20px;
    padding-left: 0;
    max-width: none;
  }

  .desktop-home__svc-cta {
    color: var(--color-rosado);
  }

  .desktop-home__svc-cta-icon {
    color: var(--color-rosado);
  }

  /* Experiencia mobile (Figma 844:1695 header + 843:702 panel) */
  .desktop-home__experiencia {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 0;
    padding: 37px 20px 32px;
    box-sizing: border-box;
  }

  .desktop-home__experiencia-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    width: min(320px, 100%);
    max-width: 320px;
    height: auto;
    min-height: 0;
    margin: 0 0 22px;
    padding: 0;
    align-self: center;
  }

  .desktop-home__experiencia-kicker {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.44px;
    text-transform: uppercase;
  }

  .desktop-home__experiencia-title {
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .desktop-home__experiencia-panel {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    width: min(320px, 100%);
    max-width: 320px;
    height: auto;
    min-height: 0;
    margin: 0 auto;
    padding: 16px 17px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--color-gris-panel);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
    box-sizing: border-box;
    align-self: center;
  }

  .desktop-home__experiencia-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .desktop-home__experiencia-sub {
    max-width: none;
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: 0;
    color: var(--color-blanco);
    white-space: normal;
  }

  .desktop-home__experiencia-grid {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .desktop-home__exp-card {
    width: min(265px, 100%);
    align-self: center;
    max-width: 265px;
    height: 147px;
    min-height: 147px;
    max-height: 147px;
    padding: 17px;
    display: grid;
    grid-template-rows: 37px minmax(0, 1fr);
    gap: 7px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--color-negro);
    box-sizing: border-box;
    overflow: hidden;
  }

  .desktop-home__exp-logo-wrap {
    align-self: start;
    display: flex;
    align-items: center;
    min-height: 37px;
    max-height: 37px;
    max-width: 120px;
  }

  .desktop-home__exp-logo-wrap--cba {
    min-height: 37px;
    max-height: 37px;
    max-width: 98px;
  }

  .desktop-home__exp-logo {
    height: auto;
    max-height: 37px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    object-position: left center;
  }

  .desktop-home__exp-logo-wrap--cba .desktop-home__exp-logo,
  .desktop-home__exp-logo--cba {
    height: 37px;
    max-width: 98px;
  }

  .desktop-home__exp-body {
    min-height: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .desktop-home__exp-role {
    flex-shrink: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }

  .desktop-home__exp-desc {
    flex: 1 1 auto;
    min-height: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: #99a1af;
    overflow: hidden;
  }

  .desktop-home__exp-desc :where(p, ul, ol) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .desktop-home__exp-desc :where(p, ul, ol):not(:last-child) {
    margin-bottom: 0;
  }

  .desktop-home__intl {
    flex-direction: column;
    min-height: 0;
    border-top: none;
  }

  .desktop-home__intl-left {
    position: relative;
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 0;
    overflow: hidden;
    background: var(--color-negro);
  }

  .desktop-home__intl-left::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(33, 31, 33, 0.45) 0%,
      rgba(33, 31, 33, 0.72) 55%,
      rgba(33, 31, 33, 0.9) 100%
    );
    pointer-events: none;
  }

  .desktop-home__intl-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    overflow: hidden;
  }

  .desktop-home__intl-photo img {
    object-position: 72% center;
  }

  .desktop-home__intl-copy {
    position: relative;
    z-index: 2;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 32px 20px 36px;
    box-sizing: border-box;
  }

  .desktop-home__intl-kicker {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.44px;
    text-transform: capitalize;
  }

  .desktop-home__intl-title {
    margin-top: 8px;
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .desktop-home__intl-lead {
    margin-top: 20px;
    max-width: none;
    font-weight: 300;
    font-size: 16px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.9);
  }

  .desktop-home__intl-quote {
    margin-top: 20px;
    padding-left: 16px;
    max-width: none;
    font-size: 16px;
    line-height: 26px;
  }

  .desktop-home__intl-logos {
    flex: none;
    display: block;
    width: 100%;
    padding: 28px 0 32px;
    background: var(--color-negro);
    overflow: hidden;
  }

  .desktop-home__intl-logos-viewport {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  .desktop-home__intl-logos-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: desktop-home-intl-logos-marquee 38s linear infinite;
    will-change: transform;
  }

  .desktop-home__intl-logo.desktop-home__intl-logo--marquee-clone {
    display: flex;
  }

  .desktop-home__intl-logo {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
    max-width: 140px;
    min-height: 44px;
    transform: none;
  }

  .desktop-home__intl-logo:hover,
  .desktop-home__intl-logo:focus-visible {
    transform: none;
  }

  .desktop-home__intl-logo:hover::before,
  .desktop-home__intl-logo:focus-visible::before {
    opacity: 0;
  }

  .desktop-home__intl-logo:hover img,
  .desktop-home__intl-logo:focus-visible img {
    opacity: 1;
  }

  .desktop-home__intl-logo img {
    max-height: 44px;
  }

  .desktop-home__intl-logo--grid-solo {
    grid-column: auto;
    justify-self: auto;
    max-width: 140px;
  }

  /* Testimonios mobile (Figma 843:874) */
  .desktop-home__testimonios {
    min-height: 0;
    gap: 32px;
    padding: 22px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .desktop-home__testimonios-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0 20px;
  }

  .desktop-home__testimonios-title {
    margin: 0;
    padding-top: 0;
    font-size: 22px;
    line-height: 42px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
  }

  .desktop-home__testimonios-carousel {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    padding: 0;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .desktop-home__testimonios-viewport {
    --test-gap: 16px;
    flex: none;
    width: 100%;
    max-width: none;
    padding: 0 0 0 20px;
  }

  .desktop-home__testimonios-track {
    gap: var(--test-gap);
  }

  .desktop-home__testimonios-slide {
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
    padding: 0;
    display: flex;
    align-items: stretch;
  }

  .desktop-home__test-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: 318.5px;
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    box-sizing: border-box;
  }

  .desktop-home__test-icon {
    width: 32px;
    height: 32px;
  }

  /* ~200 caracteres visibles: 14px / 22.75px lh en card ~232px útil */
  .desktop-home__test-text-scroll,
  .desktop-home__test-text-scroll--empty {
    --test-text-visible-max: calc(22.75px * 7);
    flex: 1 1 auto;
    min-height: 0;
    max-height: var(--test-text-visible-max);
    margin-top: 20px;
    overflow-y: hidden;
    padding-right: 4px;
    box-sizing: border-box;
  }

  .desktop-home__test-text-scroll--overflow {
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-rosado) rgba(255, 255, 255, 0.08);
  }

  .desktop-home__test-text {
    font-family: var(--font-poppins);
    font-weight: 300;
    font-size: 14px;
    line-height: 22.75px;
    color: rgba(255, 255, 255, 0.8);
  }

  .desktop-home__test-footer {
    margin-top: auto;
    padding-top: 16px;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
  }

  .desktop-home__test-avatar-slot {
    width: 48px;
    height: 48px;
  }

  .desktop-home__test-avatar,
  .desktop-home__test-avatar-placeholder {
    width: 48px;
    height: 48px;
  }

  .desktop-home__test-link-slot {
    display: none;
  }

  .desktop-home__test-name {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
  }

  .desktop-home__test-role {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.5);
  }

  .desktop-home__test-nav,
  .desktop-home__testimonios-carousel .desktop-home__test-nav--prev,
  .desktop-home__testimonios-carousel .desktop-home__test-nav--next,
  body.rcd-front-hero-layout .desktop-home__test-nav--prev,
  body.rcd-front-hero-layout .desktop-home__test-nav--next {
    display: none;
  }

  .desktop-home__dots--testimonios {
    display: flex;
    margin: 20px auto 0;
    padding: 0 20px;
  }

  .desktop-home__testimonios:not(.desktop-home__testimonios--carousel-mobile) .desktop-home__dots--testimonios {
    display: none;
  }

  .desktop-home__dots {
    position: static;
    justify-content: center;
    margin: 16px auto 0;
    transform: none;
  }

  .desktop-home__dots--videos,
  .desktop-home__dots--articulos,
  .desktop-home__dots--galeria {
    left: auto;
  }

  .desktop-home__videos {
    min-height: 0;
    padding: 28px 0 32px;
    background: rgba(0, 0, 0, 0.2);
  }

  .desktop-home__videos-header {
    max-width: 320px;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .desktop-home__videos-kicker {
    margin: 0;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.44px;
    text-transform: uppercase;
    color: var(--color-rosado);
  }

  .desktop-home__videos-title {
    margin: 0;
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
  }

  .desktop-home__videos-carousel {
    margin-top: 28px;
  }

  .desktop-home__videos-carousel .desktop-home__videos-viewport {
    margin-top: 0;
  }

  .desktop-home__videos-viewport {
    --videos-gap: 16px;
    margin-top: 0;
    padding: 0 20px;
    touch-action: pan-y;
  }

  .desktop-home__videos-slide {
    flex: 0 0 320px;
    width: 320px;
    max-width: 320px;
    padding: 0;
  }

  .desktop-home__video-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    background: var(--color-gris-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
  }

  .desktop-home__video-thumb {
    flex: 0 0 auto;
    width: 100%;
    height: 178.875px;
    aspect-ratio: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .desktop-home__video-play {
    width: 56px;
    height: 56px;
  }

  .desktop-home__video-play-icons img {
    width: 56px;
    height: 56px;
  }

  .desktop-home__video-time {
    right: 8px;
    bottom: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    border: none;
    background: rgba(0, 0, 0, 0.8);
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
  }

  .desktop-home__video-tag {
    margin: 0;
    padding: 20px 20px 0;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 1px;
    color: #f8d541;
  }

  .desktop-home__video-title {
    margin: 0;
    padding: 8px 20px 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: var(--color-blanco);
  }

  .desktop-home__videos-nav,
  .desktop-home__videos-carousel .desktop-home__videos-nav--prev,
  .desktop-home__videos-carousel .desktop-home__videos-nav--next,
  body.rcd-front-hero-layout .desktop-home__videos-navs {
    display: none;
  }

  .desktop-home__dots--videos {
    display: flex;
    margin: 20px auto 0;
    padding: 0 20px;
  }

  .desktop-home__videos:not(.desktop-home__videos--carousel-mobile) .desktop-home__dots--videos {
    display: none;
  }

  .desktop-home__articulos-navs {
    position: static;
    margin: 16px auto 0;
    transform: none;
    justify-content: center;
  }

  .desktop-home__articulos-nav {
    display: flex;
  }

  .desktop-home__galeria {
    min-height: 0;
    padding: 37px 0 32px;
    background: var(--color-gris-panel);
  }

  .desktop-home__galeria-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    max-width: 320px;
    margin: 0;
    padding: 0 20px;
  }

  .desktop-home__galeria-kicker {
    margin: 0;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.44px;
    text-transform: uppercase;
    color: var(--color-rosado);
  }

  .desktop-home__galeria-title {
    margin: 0;
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
  }

  .desktop-home__galeria .desktop-home__galeria-viewport--desktop,
  .desktop-home__galeria > .desktop-home__dots--galeria-desktop {
    display: none;
  }

  .desktop-home__galeria-viewport--mobile {
    display: block;
    margin-top: 32px;
    padding: 0 20px;
  }

  .desktop-home__galeria-carousel {
    margin-top: 0;
  }

  .desktop-home__galeria-layout--mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 320px;
    height: 268px;
    min-height: 268px;
    margin: 0 auto;
  }

  .desktop-home__galeria-layout--mobile-count-1 {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    height: 128px;
    min-height: 128px;
  }

  .desktop-home__galeria-layout--mobile-count-2 {
    grid-template-rows: minmax(0, 1fr);
    height: 128px;
    min-height: 128px;
  }

  .desktop-home__galeria-layout--mobile-count-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .desktop-home__gal-card--tile {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: none;
    border-radius: 16px;
    box-shadow: none;
  }

  .desktop-home__gal-card--tile::before {
    display: none;
  }

  .desktop-home__gal-card--tile figcaption {
    display: none;
  }

  .desktop-home__galeria-nav--prev,
  .desktop-home__galeria-nav--next {
    display: none;
  }

  .desktop-home__galeria > .desktop-home__dots--galeria-mobile {
    display: flex;
    margin: 20px auto 0;
    padding: 0 20px;
    pointer-events: none;
  }

  .desktop-home__galeria > .desktop-home__dots--galeria-mobile .desktop-home__galeria-dot {
    cursor: default;
    pointer-events: none;
  }

  .desktop-home__galeria-layout {
    display: grid;
  }

  .desktop-home__gal-col {
    display: contents;
  }

  .desktop-home__gal-card--small,
  .desktop-home__gal-card--large,
  .desktop-home__gal-card--wide {
    flex: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .desktop-home__gal-lightbox-shell {
    flex-wrap: wrap;
    justify-content: center;
    padding: 48px 12px 28px;
    gap: 12px;
  }

  .desktop-home__gal-lightbox-stage {
    flex: 1 1 100%;
    order: 1;
    max-width: 100%;
    max-height: none;
  }

  .desktop-home__gal-lightbox-img {
    max-height: min(58vh, 480px);
  }

  .desktop-home__gal-lightbox-prev {
    order: 2;
  }

  .desktop-home__gal-lightbox-next {
    order: 3;
  }

  .desktop-home__gal-lightbox-nav {
    width: 46px;
    height: 46px;
  }

  .desktop-home__articulos {
    min-height: 0;
    padding: 37px 0 32px;
    background: var(--color-negro);
    border-top: none;
  }

  .desktop-home__articulos-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    max-width: 320px;
    margin: 0;
    padding: 0 20px;
  }

  .desktop-home__articulos-kicker {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.44px;
    text-transform: uppercase;
    color: var(--color-rosado);
  }

  .desktop-home__articulos-title {
    margin: 0;
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
  }

  .desktop-home__articulos-viewport {
    --art-gap: 16px;
    margin-top: 28px;
    padding: 0 0 0 20px;
  }

  .desktop-home__articulos-slide {
    flex: 0 0 260px;
    width: 260px;
    max-width: 260px;
    padding: 0;
  }

  .desktop-home__art-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: 309px;
    min-height: 309px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    background: var(--color-gris-panel);
    box-shadow: none;
  }

  .desktop-home__art-card:hover {
    transform: none;
    box-shadow: none;
  }

  .desktop-home__art-cover {
    position: relative;
    flex: 0 0 160px;
    height: 160px;
    background: transparent;
    overflow: hidden;
  }

  .desktop-home__art-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      0deg,
      #2a282a 0%,
      rgba(42, 40, 42, 0.92) 8%,
      rgba(31, 29, 31, 0.83) 17%,
      rgba(20, 19, 20, 0.67) 33%,
      rgba(10, 9, 10, 0.5) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
  }

  .desktop-home__art-cover img {
    opacity: 0.7;
  }

  .desktop-home__art-card:hover .desktop-home__art-cover img {
    opacity: 0.7;
    transform: none;
  }

  .desktop-home__art-body {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    padding: 8px 24px 24px;
    gap: 24px;
    justify-content: flex-start;
  }

  .desktop-home__art-title {
    font-family: var(--font-poppins);
    font-size: 18px;
    line-height: 22.5px;
    letter-spacing: 0;
  }

  .desktop-home__art-btn.desktop-home__hero-cta-btn {
    width: 210px;
    max-width: 100%;
    height: 46px;
    min-height: 46px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .desktop-home__art-btn.desktop-home__hero-cta-btn img {
    width: 16px;
    height: 16px;
  }

  .desktop-home__articulos-navs {
    display: none;
  }

  .desktop-home__dots--articulos {
    display: flex;
    margin: 20px auto 0;
    padding: 0 20px;
  }

  .desktop-home__articulos:not(.desktop-home__articulos--carousel-mobile) .desktop-home__dots--articulos {
    display: none;
  }

  .desktop-home__hablemos {
    min-height: 0;
    padding: 37px 20px 40px;
    background: var(--color-negro);
  }

  .desktop-home__hablemos-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 320px;
    min-height: 0;
    margin-inline: auto;
    padding: 38px 20px 40px;
    border: none;
    border-radius: 20px;
    background: var(--gradient-brand);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .desktop-home__hablemos-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    padding: 0;
  }

  .desktop-home__hablemos-title {
    margin: 0;
    width: 100%;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -1.2px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-blanco-suave);
  }

  .desktop-home__hablemos-lead {
    margin: 0;
    width: 100%;
    max-width: 298px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    color: var(--color-blanco-suave);
  }

  .desktop-home__hablemos-lead-accent {
    font-weight: 700;
    color: var(--color-blanco-suave);
  }

  .desktop-home__hablemos-social {
    margin-top: 0;
    justify-content: center;
    gap: 19px;
  }

  .desktop-home__hablemos-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .desktop-home__hablemos-social-btn .fa-brands {
    font-size: 15px;
  }

  .desktop-home__hablemos-form-wrap {
    margin-top: 32px;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
  }

  .desktop-home__form,
  .desktop-home__hablemos-form-wrap .wpcf7-form {
    width: 100%;
    max-width: none;
    padding-bottom: 0;
  }

  .desktop-home__form-inner {
    gap: 4px;
  }

  .desktop-home__form-row {
    flex-direction: column;
    gap: 4px;
    max-width: none;
    margin-bottom: 0;
  }

  .desktop-home__field,
  .desktop-home__field--grow {
    width: 100%;
    flex: none;
  }

  .desktop-home__field--block {
    max-width: none;
  }

  .desktop-home__field input,
  .desktop-home__field textarea,
  .desktop-home__select select,
  .desktop-home__select-trigger {
    min-height: 48px;
    border-color: transparent;
    border-radius: 5px;
    padding: 12px 16px;
  }

  .desktop-home__field textarea {
    min-height: 93px;
  }

  .desktop-home__hablemos-form-wrap .wpcf7-form label .wpcf7-required {
    color: var(--color-rosado);
  }

  .desktop-home__form-submit.desktop-home__hero-cta-btn {
    position: static;
    display: inline-block;
    width: auto;
    min-width: 205px;
    max-width: 100%;
    min-height: 56px;
    height: 56px;
    margin-top: 16px;
    padding: 16px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    text-align: center;
  }

  /* Evita estados :hover pegajosos al tocar o inspeccionar en mobile (Mac/iOS). */
  .desktop-home__hablemos .desktop-home__form-submit.desktop-home__hero-cta-btn:hover:not(:focus-visible) {
    border-radius: 20px;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
    color: var(--color-blanco);
  }

  .desktop-home__hablemos .desktop-home__hero-cta-btn:hover:not(:focus-visible)::after {
    opacity: 0;
  }

  .desktop-home__hablemos-social-btn:hover:not(:focus-visible) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .desktop-home__hablemos-social-btn:hover:not(:focus-visible) .fa-brands {
    color: rgba(255, 255, 255, 0.95);
  }

  .desktop-home__hablemos .desktop-home__select-option:hover:not(.is-active):not(.is-selected) {
    background: transparent;
    color: rgba(33, 31, 33, 0.55);
  }

  .desktop-home__footer {
    padding: 36px 0 28px;
  }

  .desktop-home__footer-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 28px;
  }

  /* Figma móvil 843:1020 — RRSS arriba, separador + legal debajo (evita que los íconos queden sobre el texto legal) */
  .desktop-home__footer-bottom {
    margin-top: 40px;
    border-top: none;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .desktop-home__footer-social {
    order: 1;
  }

  .desktop-home__footer-copy {
    order: 2;
    align-self: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }
}

/* --- Popup éxito formulario (897:665) --- */
.desktop-home__dialog:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
}

.desktop-home__dialog-panel {
  position: relative;
  width: min(536px, 100%);
  padding: 38px 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: #2a282a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.desktop-home__dialog-dismiss {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-blanco);
  cursor: pointer;
  transition:
    background 1s ease,
    border-color 1s ease,
    color 1s ease;
}

.desktop-home__dialog-dismiss:hover,
.desktop-home__dialog-dismiss:focus-visible {
  background: var(--gradient-cta-btn);
  border-color: var(--color-blanco-suave);
  color: var(--color-blanco);
}

.desktop-home__dialog-dismiss:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

.desktop-home__dialog-dismiss-icon {
  display: block;
}

.desktop-home__dialog-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--color-rosado, #d73e74);
}

.desktop-home__dialog-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  color: var(--color-blanco);
}

.desktop-home__dialog-text {
  margin: 16px 0 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.desktop-home__dialog-btn {
  position: relative;
  isolation: isolate;
  margin-top: 24px;
  min-width: 161px;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 30px;
  background: var(--gradient-cta-btn);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-blanco);
  cursor: pointer;
  transition:
    box-shadow 0.4s ease,
    border-radius 0.4s ease;
}

.desktop-home__dialog-btn:hover,
.desktop-home__dialog-btn:focus-visible {
  border-radius: 31px;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.4), 0 0 10px rgba(215, 62, 116, 0.6);
  color: var(--color-blanco);
}

.desktop-home__dialog-btn:focus-visible {
  outline: 2px solid var(--color-rosado);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .desktop-home__dialog-panel {
    padding: 34px 24px 32px;
  }

  .desktop-home__dialog-title {
    font-size: 28px;
    line-height: 34px;
  }
}

/* --- Select desplegable: foco del fallback nativo --- */
.desktop-home__select select:focus {
  outline: none;
}

/* --- Tarjetas «Sobre mí»: hover con panel (882:696); sombra sin rotación 3D --- */
.desktop-home__sobre-card--has-hover-detail:hover {
  z-index: 2;
  max-height: none;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition:
    min-height 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0s,
    max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0s,
    box-shadow 0.35s ease 0s;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

/* --- Servicios: flip 3D (779:5907 → 779:5924), solo escritorio --- */
@media (min-width: 1025px) {
  .desktop-home__svc-card {
    transition: height 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .desktop-home__svc-card:hover {
    z-index: 2;
    height: auto;
  }

  .desktop-home__svc-card:hover .desktop-home__svc-flip {
    height: auto;
  }

  /* Grid superpuesto: la fila crece según el contenido del reverso sin romper el flip. */
  .desktop-home__svc-card:hover .desktop-home__svc-flip-inner {
    display: grid;
    grid-template-areas: "face";
    height: auto;
    min-height: 300px;
    transform: rotateY(180deg);
  }

  .desktop-home__svc-card:hover .desktop-home__svc-face {
    position: relative;
    inset: auto;
    grid-area: face;
    width: 100%;
    height: auto;
  }

  .desktop-home__svc-card:hover .desktop-home__svc-back {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desktop-home__sobre-card,
  .desktop-home__svc-card,
  .desktop-home__svc-card-inner,
  .desktop-home__svc-flip-inner,
  .desktop-home__select-chevron {
    transition: none;
  }

  .desktop-home__sobre-card-detail,
  .desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-bg,
  .desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-glow,
  .desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-head,
  .desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-title,
  .desktop-home__sobre-card--has-hover-detail .desktop-home__sobre-card-bar {
    transition: none;
  }

  .desktop-home__svc-card:hover .desktop-home__svc-flip-inner {
    transform: none;
  }
}

/* --- 404 (Figma 662:1079 desktop / 662:1874 móvil) --- */
.error-404 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(520px, 70vh, 760px);
  padding: clamp(64px, 12vh, 140px) var(--layout-gutter);
  background: var(--color-negro);
}

.error-404__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 44px);
  width: 100%;
  max-width: 660px;
  text-align: center;
}

.error-404__code {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: clamp(150px, 24vw, 340px);
  line-height: 0.9;
  letter-spacing: clamp(-17px, -1.2vw, -10px);
  --clouds-image:
    radial-gradient(
      62% 82% at 22% 28%,
      rgba(255, 63, 164, 1) 0%,
      rgba(255, 63, 164, 0) 52%
    ),
    radial-gradient(
      56% 76% at 82% 20%,
      rgba(248, 213, 65, 0.95) 0%,
      rgba(248, 213, 65, 0) 50%
    ),
    radial-gradient(
      74% 94% at 80% 84%,
      rgba(255, 31, 61, 1) 0%,
      rgba(255, 31, 61, 0) 52%
    ),
    radial-gradient(
      68% 88% at 26% 88%,
      rgba(255, 42, 26, 1) 0%,
      rgba(255, 42, 26, 0) 52%
    ),
    radial-gradient(
      50% 60% at 52% 52%,
      rgba(255, 138, 196, 0.95) 0%,
      rgba(255, 138, 196, 0) 50%
    ),
    var(--gradient-brand);
  --clouds-size: 240% 240%, 260% 250%, 270% 250%, 250% 260%, 210% 210%, 100% 100%;
  --clouds-pos-0: 0% 50%, 100% 0%, 100% 100%, 0% 100%, 50% 50%, 0 0;
}

.error-404__code-text {
  position: relative;
  display: inline-block;
  background-color: #ff2f6d;
  background-image: var(--clouds-image);
  background-repeat: no-repeat;
  background-size: var(--clouds-size);
  background-position: var(--clouds-pos-0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: error-404-clouds 6s ease-in-out infinite;
  will-change: background-position;
}

@keyframes error-404-clouds {
  0%,
  100% {
    background-position: 0% 50%, 100% 0%, 100% 100%, 0% 100%, 50% 50%, 0 0;
  }

  25% {
    background-position: 90% 20%, 10% 80%, 30% 10%, 100% 30%, 20% 90%, 0 0;
  }

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

  75% {
    background-position: 20% 80%, 80% 20%, 100% 40%, 0% 60%, 60% 60%, 0 0;
  }
}

.error-404__message {
  margin: 0;
  max-width: 320px;
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.07px;
  color: #d1d5dc;
}

.error-404__btn.desktop-home__hero-cta-btn {
  width: 161px;
  white-space: nowrap;
}

/* Destellos decorativos: cruces y puntos rosados */
.error-404__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.error-404__cross,
.error-404__dot {
  position: absolute;
  opacity: 0;
  animation: error-404-twinkle 2.2s ease-in-out infinite;
  will-change: opacity, transform;
}

.error-404__cross {
  width: clamp(18px, 2vw, 26px);
  height: clamp(18px, 2vw, 26px);
  color: var(--color-rosado);
}

.error-404__cross svg {
  display: block;
  width: 100%;
  height: 100%;
}

.error-404__cross svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
}

.error-404__dot {
  width: 13px;
  height: 13px;
  border-radius: var(--radius-pill);
  background: #ec699b;
}

.error-404__cross--1 {
  top: 28%;
  left: 20%;
  animation-delay: 0s;
}

.error-404__cross--2 {
  top: 24%;
  right: 16%;
  animation-delay: 0.8s;
}

.error-404__cross--3 {
  top: 60%;
  left: 14%;
  animation-delay: 1.3s;
}

.error-404__cross--4 {
  top: 72%;
  right: 8%;
  animation-delay: 0.45s;
}

.error-404__dot--1 {
  top: 66%;
  left: 24%;
  animation-delay: 1.7s;
}

.error-404__dot--2 {
  top: 58%;
  right: 26%;
  animation-delay: 1.05s;
}

@keyframes error-404-twinkle {
  0%,
  70%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }

  10%,
  25% {
    opacity: 0.92;
    transform: scale(1);
  }
}

@media (max-width: 782px) {
  .error-404 {
    min-height: clamp(420px, 60vh, 560px);
    padding: clamp(48px, 14vh, 96px) 24px;
  }

  .error-404__inner {
    max-width: 278px;
    gap: 44px;
  }

  .error-404__message {
    max-width: none;
    font-size: 16px;
  }

  .error-404__cross--1 {
    top: 12%;
    left: 7%;
  }

  .error-404__cross--2 {
    top: 19%;
    right: 4%;
  }

  .error-404__cross--3,
  .error-404__dot--2 {
    display: none;
  }

  .error-404__cross--4 {
    top: 30%;
    right: 10%;
  }

  .error-404__dot--1 {
    top: 46%;
    right: 16%;
    left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-404__cross,
  .error-404__dot {
    animation: none;
    opacity: 0.92;
  }

  .error-404__code-text {
    animation: none;
  }
}

