/* Home — Figma node 1858:29 */

.page-home {
  --home-hero-bg: linear-gradient(165deg, #060b14 0%, #0c1524 42%, #0a1628 100%);
  --home-hero-bg-fade: #060b14;
  --home-hero-min-h: min(640px, 82svh);
  --home-hero-pill-h: min(460px, calc(68svh - var(--header-h) - 110px));
  --home-products-top-pad: clamp(36px, 4vw, 52px);
  background: var(--color-bg);
  min-height: 100%;
}

/* Rejilla de puntos decorativa (referencia: textura sutil, mucho aire entre puntos) */
.home-texture-dots {
  position: relative;
  --home-texture-dot-step: 28px;
  --home-texture-dot-color: rgba(255, 255, 255, 0.1);
  --home-texture-dots-opacity: 0.42;
}

.home-texture-dots::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--home-texture-dots-opacity);
  background-image: radial-gradient(
    circle at center,
    var(--home-texture-dot-color) 1px,
    transparent 1.65px
  );
  background-size: var(--home-texture-dot-step) var(--home-texture-dot-step);
}

.home-texture-dots > .container {
  position: relative;
  z-index: 1;
}

/* Puntos claros sobre fondos oscuros */
.home-texture-dots--light-dots {
  --home-texture-dot-color: rgba(255, 255, 255, 0.1);
  --home-texture-dots-opacity: 0.4;
  --home-texture-dot-step: 28px;
}

/* Puntos oscuros sobre fondos claros */
.home-texture-dots--dark-dots {
  --home-texture-dot-color: rgba(15, 23, 42, 0.065);
  --home-texture-dots-opacity: 0.9;
  --home-texture-dot-step: 26px;
}

.home-products.home-texture-dots::after {
  display: block;
}

/* Rotated cuts between selected modules */
.home-cut {
  position: relative;
  isolation: isolate;
}

.home-cut::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: clamp(-26px, -2.2vw, -16px);
  height: clamp(42px, 4.2vw, 60px);
  background: inherit;
  transform-origin: center top;
  z-index: 1;
  pointer-events: none;
}

.home-cut > .container {
  position: relative;
  z-index: 2;
}

.home-cut--right::before {
  transform: rotate(1.2deg);
}

.home-cut--left::before {
  transform: rotate(-1.2deg);
}

/* Editorial section marker */
.home-section-meta {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
}

.home-section-meta--dark {
  color: rgba(19, 19, 19, 0.78);
}

.home-section-index {
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.home-section-rule {
  width: clamp(70px, 10vw, 130px);
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.home-section-total {
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* Hero — editorial oscuro: titular + prisma de imágenes */
.home-hero {
  position: relative;
  box-sizing: border-box;
  min-height: var(--home-hero-min-h);
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  /* visible: permite submenú del header; el contenido principal controla recorte abajo */
  overflow: visible;
}

.home-hero--editorial {
  --hero-accent: var(--color-accent);
  color: rgba(255, 255, 255, 0.92);
  background: var(--home-hero-bg);
}

.home-hero-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: clamp(20px, 3.5vh, 42px);
  padding-bottom: clamp(28px, 4.5vh, 56px);
  box-sizing: border-box;
  overflow: visible;
}

.page-home .home-hero-main.container {
  max-width: var(--container);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/*
 * Hero: columna de texto con techo 38rem (minmax(0,…) permite wrap sin invadir la otra pista);
 * align-items: start alinea bloques arriba.
 */
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 38rem) minmax(280px, 1fr);
  column-gap: clamp(28px, 4.5vw, 64px);
  row-gap: clamp(20px, 3vw, 34px);
  align-items: start;
  position: relative;
  min-width: 0;
}

@media (min-width: 1025px) {
  .home-hero-visual-stack {
    margin-left: 0;
    margin-right: auto;
  }

  .home-hero-pill {
    margin-left: 0;
    margin-right: auto;
  }
}

.home-hero-copy-col {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.home-hero-copy-inner {
  width: 100%;
  max-width: 38rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.home-hero-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-accent);
  max-width: 34rem;
  line-height: 1.45;
}

.home-hero-title {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #f4f4f1;
}

.home-hero-title-part {
  display: inline;
}

.home-hero-title-part--strong {
  font-weight: 600;
}

.home-hero-title-part--soft {
  font-weight: 400;
  color: rgba(244, 244, 241, 0.58);
}

.home-hero-title-part--accent {
  font-weight: 600;
  color: var(--hero-accent);
}

.home-hero-title-after-tu {
  display: block;
  margin-top: -0.04em;
  line-height: inherit;
}

/* "crece con" + palabra en una sola línea (salvo pantallas muy angostas) */
.home-hero-title-nowrap {
  display: inline;
  white-space: nowrap;
}

.home-hero-rotate-wrap {
  display: inline-block;
  min-width: 12.5ch;
  text-align: left;
  vertical-align: baseline;
}

.home-hero-rotate {
  display: inline-block;
  transition:
    opacity 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.48s ease;
}

.home-hero-rotate.is-out {
  opacity: 0;
  transform: translateY(-0.22em) scale(0.94);
  filter: blur(5px);
}

@keyframes home-hero-rotate-in {
  from {
    opacity: 0;
    transform: translateY(0.28em) scale(0.94);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.home-hero-rotate.is-in {
  animation: home-hero-rotate-in 0.6s cubic-bezier(0.22, 1, 0.32, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-rotate {
    transition: opacity 0.2s ease;
  }

  .home-hero-rotate.is-out {
    transform: none;
    filter: none;
  }

  .home-hero-rotate.is-in {
    animation: none;
  }
}

@media (max-width: 1180px) {
  /* Evita que “crece con …” en una sola línea desborde y se dibuje sobre la columna visual */
  .home-hero-title-nowrap {
    white-space: normal;
  }
}

.home-hero-visual-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* Composición: pastilla vertical + retrato + tarjetas (sin valores negativos → no invaden el copy) */
.home-hero-visual-stack {
  position: relative;
  width: 100%;
  max-width: min(380px, 100%);
  margin-left: auto;
  margin-right: auto;
  --hero-pill-h: var(--home-hero-pill-h);
  min-height: var(--hero-pill-h);
  pointer-events: none;
  /* espacio interno para sombras / anillos sin salirse hacia el texto */
  padding-inline: clamp(8px, 2vw, 20px);
  box-sizing: border-box;
}

.home-hero-pill {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 300px);
  height: var(--hero-pill-h);
  max-height: 500px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.48);
  isolation: isolate;
}

.home-hero--editorial .home-hero-pill {
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.55);
}

.home-hero-pill-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0d2844 url("../../assets/img/hero_home.jpg") center / cover no-repeat;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-hero-portrait-ring {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 20%;
  width: clamp(112px, 30%, 156px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  background: #122a40;
}

.home-hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% center;
  display: block;
}

.home-hero-floating {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.home-hero-floating--team {
  left: clamp(4px, 2%, 16px);
  bottom: 10%;
  min-width: min(100%, 220px);
}

.home-hero-floating--chat {
  right: clamp(4px, 2%, 12px);
  top: 6%;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(100%, 248px);
}

.home-hero-floating-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.home-hero-floating-avatars {
  display: flex;
  align-items: center;
  padding-left: 2px;
}

.home-hero-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: -9px;
  border-radius: 50%;
  border: 2px solid rgba(6, 11, 20, 0.92);
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.home-hero-avatar:first-child {
  margin-left: 0;
}

.home-hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  display: block;
}

.home-hero-avatar--more {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.home-hero-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.home-hero-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-hero-chat-copy {
  min-width: 0;
}

.home-hero-chat-name {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.home-hero-chat-msg {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 1100px) {
  .home-hero-pill {
    width: min(100%, 340px);
  }

  .home-hero-visual-stack {
    max-width: 440px;
  }
}

.home-hero-copy-inner .home-hero-lead {
  margin: clamp(14px, 2vw, 21px) 0 0;
  max-width: 38rem;
  text-align: left;
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.58);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 17px;
  margin-top: clamp(18px, 2.8vh, 28px);
  justify-content: flex-start;
}

.home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

/* Cristal sin blur: gradiente + borde + brillo interno */
.home-hero-btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: none;
}

.home-hero-btn--outline:hover {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.home-hero-btn--solid {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.26) 0%,
    rgba(42, 121, 195, 0.55) 22%,
    #0e5ba3 52%,
    #0a4680 100%
  );
  box-shadow: none;
}

.home-hero-btn--solid:hover {
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(42, 121, 195, 0.6) 22%,
    #0c4d8c 52%,
    #083a6b 100%
  );
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.home-hero-btn--solid:active {
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.12) 0%, #0a3f73 45%, #072d52 100%);
  box-shadow: none;
}

.home-hero-btn--solid .home-hero-btn-label {
  position: relative;
  z-index: 1;
}

.home-hero-btn--solid:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.home-hero-btn--solid:hover:focus-visible {
  outline-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-video {
    display: none;
  }
}

/* Trusted — hero oscuro (histórico) o módulo productos con .home-trusted--in-products */
.home-trusted {
  position: relative;
  z-index: 1;
  padding: 42px 0 54px;
  background: transparent;
  border: none;
}

.home-trusted--in-products {
  padding: 0 0 clamp(22px, 3.2vw, 32px);
  margin-top: 0;
  margin-bottom: clamp(22px, 3.2vw, 36px);
  border-bottom: none;
}

.home-trusted--in-products .home-trusted-label,
.home-trusted--in-products .home-logo-marquee,
.home-trusted[data-visible-on-load] {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.home-trusted--in-products .home-trusted-label {
  color: var(--color-muted);
}

.home-trusted--in-products .home-trusted-logo {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.1);
}

.home-trusted--in-products .home-logo-marquee::before {
  background: linear-gradient(90deg, #f4f7fb 0%, rgba(244, 247, 251, 0) 100%);
}

.home-trusted--in-products .home-logo-marquee::after {
  background: linear-gradient(270deg, #f4f7fb 0%, rgba(244, 247, 251, 0) 100%);
}

.home-trusted-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

.home-trusted-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.home-logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 4px 0;
}

.home-logo-marquee::before,
.home-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.home-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--home-hero-bg-fade) 0%, rgba(6, 11, 20, 0) 100%);
}

.home-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--home-hero-bg-fade) 0%, rgba(6, 11, 20, 0) 100%);
}

.home-logo-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  min-width: max-content;
  animation: logo-marquee 26s linear infinite;
}

.home-trusted-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 48px;
  padding: 7px 15px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-trusted-logo-img {
  display: block;
  width: auto;
  max-width: 190px;
  height: 33px;
  object-fit: contain;
  object-position: center;
}

@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-logo-marquee-track {
    animation: none;
  }
}

/* Products (commercial focus) */
.home-products {
  padding: var(--home-products-top-pad) 0 96px;
  background:
    radial-gradient(900px 300px at 12% 0%, rgba(14, 91, 163, 0.11), transparent 62%),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 55%);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}

/* Carrusel hasta el borde derecho del viewport: sin clip del padre */
.home-products.home-products--slider {
  overflow: visible;
  margin-top: -12px;
  padding-top: clamp(18px, 2vw, 32px);
  /* Menos aire antes de la marquesina de la banda editorial */
  padding-bottom: clamp(0px, 2vw, 20px);
}

.home-products--slider > .container {
  overflow: visible;
}

.home-products::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(900px 320px at 15% 20%, rgba(255, 255, 255, 0.14), transparent 60%),
    radial-gradient(800px 280px at 90% 0%, rgba(40, 167, 69, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(8, 46, 86, 0.25) 0%, rgba(8, 46, 86, 0.05) 100%);
  pointer-events: none;
  display: none;
}

.home-products::after {
  display: none;
}

.home-products-slider-layout {
  position: relative;
  z-index: 1;
  display: block;
}

/* Carrusel de propuestas — flush al borde derecho del viewport (padding del container + bandas laterales) */
.home-products-slider-shell {
  --products-slider-bleed: max(0px, calc((100vw - var(--container)) / 2));
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% + var(--container-pad) + var(--products-slider-bleed));
  max-width: none;
  margin-right: calc(-1 * (var(--container-pad) + var(--products-slider-bleed)));
  box-sizing: border-box;
}

.home-products-slider-viewport {
  width: 100%;
  margin-right: 0;
  padding-right: 0;
  overflow: visible;
}

.home-products-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  padding-right: max(0px, env(safe-area-inset-right, 0px));
  outline: none;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.home-products-track::-webkit-scrollbar {
  display: none;
}

.home-products--slider .product-card--proposal,
.home-products--slider .product-editorial-note--slide {
  flex: 0 0 auto;
  width: min(420px, calc(100vw - var(--container-pad) * 2));
  min-width: min(420px, calc(100vw - var(--container-pad) * 2));
  max-width: min(420px, calc(100vw - var(--container-pad) * 2));
  scroll-snap-align: start;
  min-height: 380px;
}

.home-products--slider .product-card--office,
.home-products--slider .product-card--meeting,
.home-products--slider .product-card--hourly,
.home-products--slider .product-card--fiscal,
.home-products--slider .product-card--services {
  grid-area: unset;
}

.home-products-slider-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding-right: max(16px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.home-products-slider-footer .home-products-nav {
  order: -1;
}

.home-products-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.home-products-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--color-accent);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.home-products-arrow:hover {
  background: rgba(var(--color-accent-rgb), 0.08);
  border-color: rgba(var(--color-accent-rgb), 0.35);
  color: var(--color-accent-deep);
}

.home-products-arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.home-products-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.home-products-progress {
  position: relative;
  height: 2px;
  width: 100%;
  background: rgba(15, 23, 42, 0.12);
  border-radius: 1px;
  overflow: hidden;
}

.home-products-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: 1px;
  transition: width 0.12s ease-out;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 206px;
  padding: 22px 22px 18px;
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.13);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.product-card--office {
  grid-area: office;
  min-height: 320px;
}

.product-card--meeting {
  grid-area: meeting;
  min-height: 320px;
}

.product-card--hourly {
  grid-area: hourly;
  min-height: 210px;
}

.product-card--fiscal {
  grid-area: fiscal;
  min-height: 210px;
}

.product-card--services {
  grid-area: services;
  min-height: 220px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 240px at 20% 0%, rgba(14, 91, 163, 0.10), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.product-card--accent::before {
  background: radial-gradient(800px 240px at 20% 0%, rgba(40, 167, 69, 0.14), transparent 55%);
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 91, 163, 0.45);
  box-shadow: 0 12px 30px rgba(14, 91, 163, 0.14);
}

.product-card-badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 0;
  background: rgba(14, 91, 163, 0.12);
  color: #0c4d8c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-card-badge--ok {
  background: rgba(40, 167, 69, 0.16);
  color: #166534;
}

.product-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  color: #131313;
  letter-spacing: -0.01em;
}

.product-card-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(19, 19, 19, 0.62);
}

.product-card-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0e5ba3;
  letter-spacing: -0.01em;
  text-transform: none;
}

.product-card-cta::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.product-card:hover .product-card-cta::after {
  transform: translateX(3px);
}

/* Propuestas — cards estilo referencia: foto + degradé claro + patrón geométrico + texto abajo */
.home-products .product-card--proposal {
  justify-content: flex-end;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background-color: #e8eef5;
  background-size: cover;
  background-position: center;
  /* La foto no se pinta bajo el borde ni “desborda” visualmente */
  background-clip: padding-box;
  background-origin: padding-box;
  isolation: isolate;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.home-products .product-card--proposal.product-card--office {
  background-image: url("../../assets/img/hero_home.jpg");
}

.home-products .product-card--proposal.product-card--meeting {
  background-image: url("../../assets/img/contact-hero-bg.jpg");
}

.home-products .product-card--proposal.product-card--hourly {
  background-image: url("../../assets/img/oficina01.png");
}

.home-products .product-card--proposal.product-card--fiscal {
  background-image: url("../../assets/img/world_bg.png");
  background-position: 50% 40%;
}

.home-products .product-card--proposal.product-card--services {
  background-image: url("../../assets/img/oficina02.png");
}

.home-products .product-card--proposal::before {
  background:
    repeating-linear-gradient(
      118deg,
      rgba(14, 91, 163, 0.07) 0px,
      rgba(14, 91, 163, 0.07) 1px,
      transparent 1px,
      transparent 22px
    ),
    repeating-linear-gradient(
      -118deg,
      rgba(14, 91, 163, 0.05) 0px,
      rgba(14, 91, 163, 0.05) 1px,
      transparent 1px,
      transparent 26px
    );
  opacity: 1;
  mix-blend-mode: multiply;
}

.home-products .product-card--proposal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.06) 42%,
    rgba(15, 23, 42, 0.48) 100%
  );
}

.home-products .product-card--proposal:hover {
  border-color: rgba(14, 91, 163, 0.35);
  box-shadow: 0 18px 44px rgba(14, 91, 163, 0.16);
  /* Sin translateY del .product-card genérico: el borde y la sombra no “se salen” del hueco */
  transform: none;
}

.home-products .product-card--proposal .product-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.home-products .product-card--proposal .product-card-badge--ok {
  background: rgba(236, 253, 245, 0.96);
  color: #14532d;
  border-color: rgba(20, 83, 45, 0.15);
}

.home-products .product-card--proposal .product-card-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  max-width: 100%;
}

.home-products .product-card--proposal .product-card-title {
  font-size: clamp(22px, 2vw, 30px);
  color: #fff;
  line-height: 1.12;
}

.home-products .product-card--proposal .product-card-desc {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.home-products .product-card--proposal .product-card-cta {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #bae6fd;
}

.home-products .product-card--proposal .product-card-cta::after {
  content: "↘";
  font-size: 14px;
  margin-left: 4px;
}

.home-products .product-card--proposal:hover .product-card-cta::after {
  transform: translate(2px, 2px);
}

.product-editorial-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
  min-height: 206px;
  padding: 22px 22px 20px;
  background: linear-gradient(160deg, #2a79c3 0%, #0e5ba3 58%, #094582 100%);
  color: #fff;
}

.product-editorial-note--slide {
  flex-shrink: 0;
  min-height: 400px;
}

.product-editorial-note-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.78);
}

.product-editorial-note-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  max-width: 34ch;
}

.product-editorial-note-link {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  text-decoration: none;
}

.product-editorial-note-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.product-editorial-note-link:hover::after {
  transform: translateX(3px);
}

.product-editorial-note-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.product-editorial-note-link--btn {
  margin-top: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.product-editorial-note-link--btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  border-radius: 4px;
}

.product-editorial-note-actions .product-editorial-note-link {
  margin-top: 0;
}

/* Editorial band — layout tipo revista: cabecera + foto con tarjeta superpuesta */
.home-band {
  padding: clamp(72px, 9vw, 112px) 0 clamp(80px, 10vw, 120px);
}

.home-band--editorial {
  background: #f4f4f2;
  color: #1a1a1a;
  /* Marquesina pegada al módulo de productos */
  padding-top: 0;
}

.home-band-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* Productos: titular «Oficinas. Sala. / Servicios.» */
.home-band-head.home-products-head {
  margin-bottom: 0;
  padding-bottom: 50px;
}

/* Indicadores debajo del titular en la banda editorial (Solución rápida…) */
.home-band--editorial .home-band-head {
  margin-bottom: clamp(16px, 2.5vw, 28px);
}

.home-band-title-stack {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.home-band-title-line {
  display: block;
}

.home-band-title-line--soft {
  font-weight: 400;
  color: #8a8a88;
}

.home-band-title-line--strong {
  font-weight: 700;
  color: #141414;
}

/* Nosotros: «Más que una oficina.» y «Tu socio estratégico.» — una línea por frase */
.home-about .home-band-title-stack {
  font-size: clamp(28px, 4.2vw, 56px);
}

.home-about .home-band-title-line {
  white-space: nowrap;
}

@media (max-width: 380px) {
  .home-about .home-band-title-stack {
    font-size: clamp(20px, 5.4vw, 28px);
  }
}

.home-band-intro {
  margin: 0;
  max-width: 42ch;
  justify-self: end;
  font-size: 16px;
  line-height: 1.65;
  color: #5c5c5a;
}

.home-band-intro strong {
  font-weight: 700;
  color: #2a2a28;
}

/* Marquesina — mismos diferenciales en loop horizontal (sin blur) */
.home-band-marquee {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw) clamp(20px, 3vw, 32px);
  padding: 14px 0;
  border-top: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.45);
  box-sizing: border-box;
}

.home-band-marquee-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.home-band-marquee-track {
  display: flex;
  width: max-content;
  /* Cuatro copias idénticas: un ciclo = -25% del ancho total = loop continuo */
  animation: home-band-marquee 36s linear infinite;
  will-change: transform;
}

.home-band-marquee:hover .home-band-marquee-track {
  animation-play-state: paused;
}

.home-band-marquee-chunk {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  padding-right: clamp(32px, 5vw, 56px);
}

.home-band-marquee-item {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.35vw, 15px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #353533;
  white-space: nowrap;
}

.home-band-marquee-sep {
  margin: 0 clamp(14px, 2vw, 22px);
  font-weight: 500;
  color: rgba(26, 26, 26, 0.28);
  user-select: none;
  pointer-events: none;
}

@keyframes home-band-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-25%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-band-marquee-track {
    animation: none;
    justify-content: center;
    width: 100%;
    max-width: min(920px, 100%);
    margin: 0 auto;
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .home-band-marquee-chunk:not(:first-child) {
    display: none;
  }

  .home-band-marquee-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .home-band-marquee-item {
    white-space: normal;
  }
}

.home-band-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: clamp(340px, 44vw, 520px);
  gap: 0;
}

.home-band-media {
  position: relative;
  flex: 1 1 56%;
  min-height: 280px;
  overflow: hidden;
  background: #e0e0de;
}

.home-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-band-panel {
  position: relative;
  z-index: 2;
  flex: 0 1 52%;
  max-width: min(540px, 100%);
  margin-left: clamp(-72px, -9vw, -40px);
  align-self: center;
  padding: clamp(32px, 4.5vw, 52px) clamp(28px, 4vw, 48px) clamp(32px, 4.5vw, 52px)
    clamp(40px, 5vw, 56px);
  background: #fff;
  overflow: visible;
}

/* Franja sobre la foto: transición tipo “vidrio” en el encuentro imagen / tarjeta */
.home-band-panel-edge {
  position: absolute;
  left: clamp(-64px, -7vw, -36px);
  top: 0;
  bottom: 0;
  width: clamp(52px, 7vw, 84px);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.72) 55%,
    #fff 100%
  );
  backdrop-filter: blur(16px) saturate(118%);
  -webkit-backdrop-filter: blur(16px) saturate(118%);
}

.home-band-panel > :not(.home-band-panel-edge) {
  position: relative;
  z-index: 1;
}

.home-band-panel-index {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #a3a3a0;
}

.home-band-panel-title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #141414;
}

.home-band-panel-text {
  font-size: 15px;
  line-height: 1.7;
  color: #5c5c5a;
}

.home-band-panel-text p {
  margin: 0 0 14px;
}

.home-band-panel-text p:last-child {
  margin-bottom: 0;
}

.home-band-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: 8px;
}

.home-band-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #0e5ba3;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 91, 163, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

button.home-band-link {
  display: inline;
  margin: 0;
  padding: 0 0 2px;
  border: none;
  border-bottom: 1px solid rgba(14, 91, 163, 0.35);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.home-band-link:hover {
  color: #094582;
  border-bottom-color: rgba(9, 69, 130, 0.55);
}

.home-band-link--muted {
  color: #6b6b69;
  border-bottom-color: rgba(107, 107, 105, 0.35);
}

.home-band-link--muted:hover {
  color: #141414;
  border-bottom-color: rgba(20, 20, 20, 0.4);
}

.home-band-link:focus-visible {
  outline: 2px solid #0e5ba3;
  outline-offset: 3px;
  border-radius: 2px;
}

/* About — mismo patrón editorial que home-band (cabecera + foto + panel) */
.home-about {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0 clamp(80px, 10vw, 120px);
  background: #f4f4f2;
  color: #1a1a1a;
  overflow: hidden;
}

/* Services band */
.home-services {
  padding: 88px 0 94px;
  background:
    radial-gradient(800px 260px at 85% 0%, rgba(14, 91, 163, 0.14), transparent 65%),
    linear-gradient(180deg, #eef2f7 0%, #e8edf3 100%);
  position: relative;
}

.home-services::before {
  display: none;
}

/* Servicios — referencia design-build: foto + titular fino, carril con tarjetas claras y números teal */
.home-services-editorial {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 4.5vw, 56px);
  align-items: end;
  margin-bottom: 0;
  padding-bottom: clamp(64px, 10vw, 120px);
}

.home-services-editorial-media {
  position: relative;
  z-index: 0;
  min-height: clamp(320px, 40vw, 520px);
  overflow: hidden;
  background: #e8ecf1;
  border-radius: 2px;
}

.home-services-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-services-editorial-media.js-parallax > img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 118%;
  top: -9%;
  object-fit: cover;
}

.home-services-editorial-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.home-services-kicker-chevron {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  opacity: 0.85;
}

.home-services-title-stack.home-band-title-stack {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.home-services .home-band-title-line--soft {
  color: #8b8b89;
  font-weight: 400;
}

.home-services .home-band-title-line--strong {
  color: #2c2c2a;
  font-weight: 700;
}

/* Servicios: «Ofrecemos más que» / «simplemente un lugar.» — una línea por frase */
.home-services .home-services-title-stack .home-band-title-line {
  white-space: nowrap;
}

@media (max-width: 380px) {
  .home-services-title-stack.home-band-title-stack {
    font-size: clamp(20px, 5.4vw, 28px);
  }
}

.home-services-editorial-lead {
  margin: clamp(22px, 3vw, 32px) 0 0;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #6b6b69;
}

.home-services-editorial-lead strong {
  font-weight: 700;
  color: #2a2a28;
}

/* Carril — solapa foto y base del titular (capa superior) */
.home-services-rail-wrap {
  position: relative;
  z-index: 2;
  margin-top: clamp(-100px, -11vw, -170px);
  padding-top: 0;
}

.home-services-rail {
  display: flex;
  gap: clamp(16px, 2vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 12px;
  padding: 8px 12px 12px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.home-services-rail::-webkit-scrollbar {
  display: none;
}

/* Flechas del carril: mismo pie que productos (.home-products-slider-footer) */
.home-services-rail-footer {
  margin-top: clamp(4px, 1.2vw, 10px);
}

.home-services-rail-wrap::before,
.home-services-rail-wrap::after {
  display: none;
}

.home-service-cell {
  margin: 0;
  min-width: 0;
  flex: 0 0 min(380px, calc(100vw - var(--container-pad) * 2 - 48px));
  scroll-snap-align: start;
}

.home-service-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.home-service-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  opacity: 0.9;
}

.home-service-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-service-index {
  display: block;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

/* Cards sin icono (p. ej. office-detail): índice como primer hijo directo */
.home-service-card > .home-service-index:first-child {
  margin-bottom: 18px;
}

.home-service-card-top .home-service-index {
  margin-bottom: 0;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  min-height: 288px;
  padding: 26px 26px 28px;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--color-accent-rgb), 0.22);
  box-shadow: none;
}

.home-service-cell:nth-child(even) .home-service-card {
  background: #f4fbf9;
  border-color: rgba(var(--color-accent-rgb), 0.14);
}

.home-service-card::before,
.home-service-card::after {
  display: none;
}

.home-service-cap {
  margin: 0;
  max-width: 100%;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.28;
  font-weight: 300;
  color: #5a5a58;
  letter-spacing: -0.025em;
  text-align: left;
  position: relative;
  z-index: 1;
}

.home-service-cap strong {
  font-weight: 700;
  color: #222220;
}

.home-service-desc {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.62;
  color: rgba(55, 55, 53, 0.78);
  max-width: 42ch;
  position: relative;
  z-index: 1;
}

/* Features — mismo lenguaje editorial que servicios: kicker + stack + lead + CTA */
.home-features {
  padding: clamp(80px, 10vw, 104px) 0 clamp(72px, 9vw, 96px);
  background:
    radial-gradient(760px 280px at 12% 25%, rgba(14, 91, 163, 0.09), transparent 62%),
    linear-gradient(180deg, #eef2f7 0%, #f6f8fb 100%);
  position: relative;
}

.home-features-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.home-features-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-features-title-stack.home-band-title-stack {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.home-features .home-band-title-line--soft {
  color: #8b8b89;
  font-weight: 400;
}

.home-features .home-band-title-line--strong {
  color: #2c2c2a;
  font-weight: 700;
}

.home-features-lead {
  margin: clamp(20px, 2.5vw, 28px) 0 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #6b6b69;
}

.home-features-lead strong {
  font-weight: 700;
  color: #2a2a28;
}

.home-features-cta {
  margin-top: clamp(22px, 3vw, 30px);
}

.home-features-cta-btn.btn {
  min-height: 48px;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.home-features-visual {
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.home-features-media {
  position: relative;
  flex: 1;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.1);
  background: #e8ecf1;
  min-height: min(420px, 52vw);
}

.home-features-media.js-parallax > img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 118%;
  top: -9%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.home-features-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 18px 22px 18px 24px;
  background: linear-gradient(145deg, #2a79c3 0%, #0e5ba3 62%, #094582 100%);
  color: #fff;
  border-radius: 0;
  max-width: calc(100% - 8px);
}

.home-features-badge-num {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.home-features-badge-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.2px;
  max-width: 140px;
}

@media (max-width: 1024px) {
  .home-features-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-features-lead {
    max-width: none;
  }

  .home-features-media {
    min-height: 280px;
  }
}

@media (max-width: 380px) {
  .home-features-title-stack.home-band-title-stack {
    font-size: clamp(22px, 6vw, 30px);
  }
}

/* Testimonios — tarjetas con cita, foto y cargo */
.home-testimonials {
  padding: clamp(72px, 9vw, 96px) 0 clamp(80px, 10vw, 100px);
  background: #f4f4f2;
  color: #1a1a1a;
  position: relative;
}

.home-testimonials-head {
  max-width: min(640px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.home-testimonials-kicker {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.home-testimonials-title-stack.home-band-title-stack {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-testimonials-lead {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c5c5a;
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
  align-items: stretch;
}

.home-testimonial-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(22px, 3vw, 28px) clamp(20px, 2.8vw, 26px) clamp(22px, 3vw, 26px);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  position: relative;
}

.home-testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--color-accent) 0%,
    rgba(var(--color-accent-rgb), 0.35) 100%
  );
  border-radius: 2px 0 0 2px;
  pointer-events: none;
}

.home-testimonial-quote {
  margin: 0;
  flex: 1;
  padding: 0;
  border: none;
}

.home-testimonial-quote p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: -0.01em;
  color: #2c2c2a;
}

.home-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(20px, 2.5vw, 26px);
  padding-top: clamp(18px, 2.2vw, 22px);
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.home-testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(var(--color-accent-rgb), 0.2);
  background: #e8e8e6;
}

.home-testimonial-who {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-testimonial-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #131313;
}

.home-testimonial-role {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(26, 26, 26, 0.52);
}

@media (max-width: 1024px) {
  .home-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: min(520px, 100%);
    margin-inline: auto;
  }

  .home-testimonials-head {
    margin-bottom: 32px;
  }
}

/* Stats */
.home-stats {
  padding: 56px 0 64px;
  background: #f8f9fa;
  border-top: 1px solid var(--color-border);
}

.home-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  text-align: left;
}

.home-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #0e5ba3;
}

.home-stat-label {
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(19, 19, 19, 0.55);
  max-width: 200px;
}

.home-stats--in-band {
  padding: clamp(24px, 3.5vw, 40px) 0 clamp(36px, 5.5vw, 64px);
  margin: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.home-stats--in-band .home-stats-inner {
  padding: 0;
}

/* Oficinas — bloque claro: una cabecera, barra de controles, panel simple */
.home-pricing {
  padding: clamp(72px, 9vw, 96px) 0 clamp(80px, 10vw, 104px);
  background: #f4f4f2;
  color: #1a1a1a;
  position: relative;
}

/* Título + tabs + panel de disponibilidad + grilla en un mismo bloque */
.home-pricing-surface {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 2px;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 36px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.home-pricing-surface .home-pricing-hero {
  margin-bottom: clamp(16px, 2.2vw, 22px);
}

.home-pricing-surface .home-pricing-head {
  margin: 0 auto;
  text-align: center;
  max-width: min(640px, 100%);
}

.home-pricing-surface .home-pricing-toolbar {
  justify-content: flex-start;
  margin-top: clamp(18px, 2.5vw, 26px);
}

.home-pricing-surface .home-pricing-toolbar-ctas {
  justify-content: flex-start;
}

.home-pricing-surface .home-availability-panel {
  margin: clamp(18px, 2.2vw, 24px) 0 0;
  max-width: none;
  background: #fafaf9;
  border-color: rgba(15, 23, 42, 0.07);
}

.home-pricing-filters-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: clamp(16px, 2.2vw, 22px) 0 clamp(18px, 2.5vw, 24px);
}

.home-pricing-surface .home-pricing-filters-wrap {
  justify-content: flex-start;
}

.home-pricing-surface .home-pricing-grid {
  margin-top: 0;
}

.home-pricing-hero {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.home-pricing-head {
  max-width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.home-pricing-title-stack.home-band-title-stack {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-pricing-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c5c5a;
}

.home-pricing-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.48);
}

.home-pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin-top: clamp(24px, 3.5vw, 32px);
}

.home-pricing-filters {
  display: inline-flex;
  padding: 2px;
  border-radius: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
  gap: 0;
}

.home-filter {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(26, 26, 26, 0.52);
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.home-filter.is-active {
  background: #fff;
  color: var(--color-accent-deep);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  border: none;
}

.home-pricing-toolbar-ctas {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
}

.home-pricing-cta.btn {
  min-height: 48px;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.home-pricing-cta-secondary.btn {
  min-height: 48px;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.home-availability-panel {
  margin: 0 auto clamp(32px, 4vw, 44px);
  max-width: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.home-availability-copy {
  padding: clamp(24px, 3.5vw, 32px) clamp(22px, 3vw, 32px);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.home-availability-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2c2c2a;
}

.home-availability-title [data-office-available-count] {
  font-weight: 600;
  color: var(--color-accent);
}

.home-availability-lead {
  margin: 12px 0 0;
  max-width: 40ch;
  font-size: 14px;
  line-height: 1.55;
  color: #6b6b69;
}

.home-availability-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.home-availability-btn.btn {
  min-height: 48px;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.home-availability-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.home-availability-link:hover {
  color: var(--color-accent-deep);
}

.home-availability-link::after {
  content: "→";
  font-size: 12px;
  transition: transform 0.2s ease;
}

.home-availability-link:hover::after {
  transform: translateX(3px);
}

.home-availability-cards {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
}

.home-availability-card {
  position: relative;
  padding: clamp(24px, 3.5vw, 32px) clamp(22px, 3vw, 32px);
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.2s ease;
}

.home-availability-card:hover {
  background: #fafafa;
}

.home-availability-card:not(:first-of-type) {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.home-availability-card .office-card-badge {
  position: static;
  margin-bottom: 14px;
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-availability-card .office-card-badge--ok {
  background: rgba(var(--color-accent-rgb), 0.14);
  color: var(--color-accent-deep);
}

.home-availability-card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.12;
  font-weight: 400;
  color: #2c2c2a;
}

.home-availability-card-meta {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(55, 55, 53, 0.78);
}

.home-availability-card-price {
  margin: 14px 0 0;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1;
  font-weight: 700;
  color: var(--color-accent);
}

.home-availability-card-price span {
  font-size: 14px;
  font-weight: 600;
  margin-right: 4px;
  color: rgba(44, 44, 42, 0.75);
}

.home-availability-card-price small {
  font-size: 14px;
  font-weight: 500;
  color: rgba(55, 55, 53, 0.55);
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
  margin-top: 8px;
}

.office-pricing-column {
  min-width: 0;
  padding: 0 1px;
}

.office-pricing-column[hidden] {
  display: none !important;
}

.office-pricing-col-title {
  margin: 0 0 16px;
  padding: 0 0 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 3px solid var(--color-accent);
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #2c2c2a;
}

.office-pricing-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Tarjeta en grilla 2×2: nombre + superficie | estado + precio */
.office-pricing-column .office-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
  padding: 14px 16px 14px 14px;
  border-radius: 0;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-left: 3px solid rgba(15, 23, 42, 0.06);
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  min-height: 88px;
  box-sizing: border-box;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.office-pricing-column .office-card[data-status="available"] {
  border-color: rgba(22, 163, 74, 0.35);
  border-left-color: #16a34a;
  background: rgba(240, 253, 244, 0.55);
}

.office-pricing-column .office-card[data-status="rented"] {
  border-left-color: rgba(100, 116, 139, 0.35);
  background: rgba(248, 250, 252, 0.9);
}

.office-pricing-column .office-card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.35);
  background: #fafafa;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.office-pricing-column .office-card[data-status="available"]:hover {
  border-color: rgba(22, 163, 74, 0.5);
  background: rgba(240, 253, 244, 0.85);
  box-shadow: 0 2px 14px rgba(22, 163, 74, 0.12);
}

.office-pricing-column .office-card-badge {
  position: static;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  padding: 5px 9px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.office-pricing-column .office-card-badge--ok {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.office-pricing-column .office-card-badge--muted {
  background: rgba(100, 116, 139, 0.12);
  color: #64748b;
}

.office-pricing-column .office-card-name {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 2px 0 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.office-pricing-column .office-card[data-status="rented"] .office-card-name {
  color: #52525b;
}

.office-pricing-column .office-card-meta {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #71717a;
}

.office-pricing-column .office-card-price {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: #18181b;
  text-align: right;
}

.office-pricing-column .office-card[data-status="available"] .office-card-price {
  color: #15803d;
}

.office-pricing-column .office-card[data-status="rented"] .office-card-price {
  color: #52525b;
  font-weight: 600;
}

.office-pricing-column .office-card-cur {
  font-weight: 700;
  font-size: 12px;
  margin-right: 3px;
  opacity: 0.85;
}

.office-pricing-column .office-card-per {
  font-weight: 500;
  font-size: 12px;
  color: inherit;
  opacity: 0.75;
}

.office-card[hidden] {
  display: none !important;
}

@media (max-width: 1200px) {
  .home-pricing-grid {
    grid-template-columns: 1fr;
    max-width: min(560px, 100%);
    margin: 0 auto;
  }

  .office-pricing-column .office-card {
    min-height: 0;
  }
}

@media (min-width: 1201px) and (max-width: 1320px) {
  .home-pricing-grid {
    gap: 18px;
  }

  .office-pricing-column .office-card-name {
    font-size: 15px;
  }

  .office-pricing-column .office-card-price {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .page-home {
    --home-hero-min-h: auto;
    --home-hero-pill-h: min(270px, 40svh);
  }

  .home-hero-main {
    padding-top: clamp(12px, 2vh, 20px);
    padding-bottom: clamp(18px, 3vh, 32px);
  }

  .home-products.home-products--slider {
    margin-top: -16px;
    padding-top: 14px;
  }

  .home-cut::before {
    top: -14px;
    height: 34px;
  }

  .home-cut--right::before {
    transform: rotate(0.8deg);
  }

  .home-cut--left::before {
    transform: rotate(-0.8deg);
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-hero-copy-col {
    order: 1;
  }

  .home-hero-visual-col {
    order: 2;
    position: static;
    transform: none;
    pointer-events: auto;
    max-width: none;
    width: auto;
  }

  .home-hero-visual-stack {
    max-width: min(340px, 100%);
    margin-inline: auto;
    --hero-pill-h: var(--home-hero-pill-h);
    min-height: calc(var(--hero-pill-h) + 20px);
  }

  .home-hero-pill {
    width: min(100%, 260px);
    margin-inline: auto;
    height: var(--hero-pill-h);
    max-height: 360px;
  }

  .home-hero-floating--team {
    left: clamp(0px, 4vw, 24px);
    bottom: 8%;
  }

  .home-hero-floating--chat {
    right: clamp(0px, 2vw, 16px);
    top: 4%;
  }

  .home-hero-portrait-ring {
    left: clamp(0px, 2vw, 12px);
  }

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

  .home-products::after,
  .home-services::before {
    font-size: clamp(44px, 12vw, 96px);
  }

  .home-services-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: clamp(40px, 10vw, 72px);
  }

  .home-services-editorial-media {
    min-height: 220px;
    max-height: 360px;
    order: 1;
  }

  .home-services-editorial-copy {
    order: 2;
  }

  .home-services-editorial-lead {
    max-width: none;
  }

  .home-services-rail-wrap {
    margin-top: clamp(-48px, -8vw, -72px);
  }

  .home-products-head.home-band-head {
    margin-bottom: 0;
    padding-bottom: 50px;
  }

  .home-band-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .home-band-intro {
    justify-self: start;
    max-width: none;
  }

  .home-band-visual {
    flex-direction: column;
    min-height: 0;
  }

  .home-band-media {
    flex: none;
    width: 100%;
    min-height: 240px;
    max-height: 380px;
  }

  .home-band-panel {
    flex: none;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-top: clamp(-40px, -6vw, -24px);
    padding: 28px 22px 32px;
  }

  .home-band-panel-edge {
    display: none;
  }

  .home-availability-panel {
    grid-template-columns: 1fr;
  }

  .home-availability-copy {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .home-availability-card {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }

  .home-stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    text-align: center;
  }

  .home-stat {
    align-items: center;
    max-width: 280px;
  }

  .home-stat-label {
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .page-home {
    --home-hero-min-h: auto;
    --home-hero-pill-h: min(240px, 35svh);
  }

  .home-cut::before {
    top: -8px;
    height: 18px;
  }

  .home-cut--right::before,
  .home-cut--left::before {
    transform: rotate(0.45deg);
  }

  .home-hero-main {
    padding-bottom: 24px;
    padding-top: 4px;
  }

  .home-hero-grid {
    gap: 16px;
  }

  .home-hero-visual-stack {
    --hero-pill-h: var(--home-hero-pill-h);
    max-width: min(300px, 100%);
    min-height: calc(var(--hero-pill-h) + 12px);
  }

  .home-hero-pill {
    width: min(100%, 250px);
    max-height: 280px;
  }

  .home-hero-title {
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.14;
  }

  .home-hero-copy-inner .home-hero-lead {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .home-hero-actions {
    gap: 12px;
    margin-top: 18px;
  }

  .home-hero-btn {
    min-height: 46px;
    padding: 11px 20px;
    font-size: 14px;
  }

  .home-about {
    padding: 68px 0 80px;
  }

  .home-stats-inner {
    grid-template-columns: 1fr;
  }

  .home-stat {
    max-width: none;
  }

  .home-pricing-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .home-pricing-surface {
    padding: 22px 16px 24px;
  }

  .home-pricing-surface .home-pricing-head {
    text-align: center;
    margin-inline: auto;
  }

  .home-pricing-surface .home-pricing-toolbar,
  .home-pricing-surface .home-pricing-toolbar-ctas {
    justify-content: center;
  }

  .home-pricing-surface .home-pricing-filters-wrap {
    justify-content: center;
  }

  .home-pricing-filters {
    justify-content: center;
    width: 100%;
  }

  .home-pricing-toolbar-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .home-pricing-cta.btn,
  .home-pricing-cta-secondary.btn {
    width: 100%;
    justify-content: center;
  }

  .home-band-panel-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .home-availability-copy {
    padding: 22px 18px;
  }

  .home-availability-card {
    padding: 20px 18px 18px;
  }

  .home-products,
  .home-services,
  .home-pricing,
  .home-features,
  .home-testimonials {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .home-products.home-products--slider {
    margin-top: -18px;
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .product-card-title {
    font-size: clamp(22px, 7.5vw, 30px);
  }

  .product-card-desc {
    font-size: 15px;
  }

  .home-products--slider .product-card--proposal,
  .home-products--slider .product-editorial-note--slide {
    width: min(340px, calc(100vw - var(--container-pad) * 2));
    min-width: min(340px, calc(100vw - var(--container-pad) * 2));
    max-width: min(340px, calc(100vw - var(--container-pad) * 2));
    min-height: 340px;
  }

  .product-editorial-note {
    min-height: 0;
  }

  .home-services-rail-wrap::before,
  .home-services-rail-wrap::after {
    display: none;
  }

  .home-services-rail-wrap {
    margin-top: -28px;
  }
}
