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

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

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

body.lp-cintas {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--color-gris-2);
  overflow-x: hidden;
}

.lp-cintas__main {
  overflow-x: hidden;
  width: 100%;
}

/* Hero */

.lp-cintas__hero {
  padding: 0 var(--hero-padding-x);
}

.lp-cintas__hero-inner {
  width: 100%;
  max-width: var(--hero-width);
  height: min(100vh, var(--hero-max-height));
  margin: 0 auto;
  background-color: var(--color-celeste);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

/* corrección para monitores grandes paddings laterales*/
@media (min-width: 1728px) {
  .lp-cintas__hero-inner {
    max-width: none;
  }
}

.lp-cintas__hero-grid {
  display: grid;
  grid-template-columns: 1fr calc(var(--form-width) + var(--hero-padding-right-inner));
  align-items: stretch;
  height: 100%;
}

.lp-cintas__hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  height: 100%;
  padding: var(--hero-title-offset-top) 0 var(--hero-padding-left-y) var(--hero-padding-left-inner);
}

.lp-cintas__hero-copy {
  max-width: 720px;
}

.lp-cintas__hero-title {
  margin: 0 0 29px;
  font-family: var(--font-family);
  font-size: 63px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-claro);
  text-transform: uppercase;
}

.lp-cintas__hero-text {
  margin: 0 0 32px;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-claro);
  max-width: 530px;
}

.lp-cintas__hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 10px 20px;
  background-color: var(--color-naranja);
  color: var(--color-claro);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

/* .lp-cintas__hero-btn:hover {
  opacity: 0.9;
  color: var(--color-claro);
  text-decoration: none;
} */

.lp-cintas__hero-btn-arrow {
  font-size: 18px;
  line-height: 1;
}

.lp-cintas__hero-products-wrap {
  position: relative;
  width: 100%;
  max-width: 679px;
  margin-top: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lp-cintas__hero-product {
  position: relative;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  padding: 0 !important;
  border: 3px solid #fff !important;
  border-radius: 50%;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  transform: scale(1);
  transform-origin: center;
  transition:
    flex-basis 0.34s ease,
    width 0.34s ease,
    height 0.34s ease,
    margin 0.34s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
  -webkit-appearance: none;
  appearance: none;
  z-index: 1;
}

.lp-cintas__hero-product.is-active {
  flex-basis: 156px;
  width: 156px;
  height: 156px;
  margin: 0 20px;
  border-color: transparent !important;
  transform: scale(1);
  z-index: 2;
}

.lp-cintas__hero-product:hover,
.lp-cintas__hero-product:focus-visible {
  transform: scale(1.06);
}

.lp-cintas__hero-product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-cintas__hero-product-ring {
  position: absolute;
  inset: -14%;
  width: 128%;
  height: 128%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.lp-cintas__hero-product.is-active .lp-cintas__hero-product-ring {
  opacity: 1;
}

.lp-cintas__hero-ring-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: lp-cintas-hero-ring-spin 14s linear infinite;
}

@keyframes lp-cintas-hero-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-cintas__hero-ring-spin {
    animation: none;
  }

  .lp-cintas__hero-product {
    transition: none;
  }
}

/* Columna derecha Form */
.lp-cintas__hero-right {
  height: 100%;
  padding-top: var(--hero-padding-form-top);
  padding-right: var(--hero-padding-right-inner);
  box-sizing: border-box;
  overflow: hidden;
}

.lp-cintas__form {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  width: var(--form-width);
  min-width: var(--form-width);
  max-width: var(--form-width);
  padding: var(--form-padding-top) var(--form-padding-right) var(--form-padding-bottom) var(--form-padding-left);
  background-color: var(--color-claro);
  border-radius: 8px 8px 0 0 ;
  overflow: hidden;
  -webkit-border-radius: 8px 8px 0 0 ;
  -moz-border-radius: 8px 8px 0 0 ;
  -ms-border-radius: 8px 8px 0 0 ;
  -o-border-radius: 8px 8px 0 0 ;
}

.lp-cintas__logo {
  display: block;
  flex-shrink: 0;
  margin: 0 auto 20px;
  text-align: center;
}

.lp-cintas__logo img {
  display: block;
  width: 203px;
  height: 79px;
  margin: 0 auto;
  object-fit: contain;
}

.lp-cintas__form-title {
  flex-shrink: 0;
  margin: 0 0 8px;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-texto);
}

.lp-cintas__form-subtitle {
  flex-shrink: 0;
  margin: 0 0 clamp(12px, 2vh, 20px);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: var(--color-texto);
}

.lp-cintas__form-subtitle strong {
  font-weight: 700;
}


/* Productos - Swipper */

.lp-cintas__products {
  padding: 48px 0 64px;
  background-color: var(--color-gris-2);
  overflow-x: clip;
}

.lp-cintas__products-header-wrap {
  padding: 0 var(--hero-padding-x);
  margin-bottom: 28px;
}

.lp-cintas__products-header {
  display: flex;
  justify-content: flex-end;
  max-width: var(--hero-width);
  margin: 0 auto;
  padding-left: var(--hero-padding-left-inner);
  padding-right: var(--hero-padding-right-inner);
  box-sizing: border-box;
}

.lp-cintas__products-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-cintas__products-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.lp-cintas__products-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.lp-cintas__products-nav-btn img {
  display: block;
  width: 16px;
  height: 14px;
}

.lp-cintas__products-viewport {
  overflow: hidden;
  width: 100%;
}

@media (hover: none), (pointer: coarse) {
  .lp-cintas__products-viewport {
    touch-action: pan-y;
    cursor: grab;
  }

  .lp-cintas__products-viewport.is-dragging {
    cursor: grabbing;
  }

  .lp-cintas__products-viewport.is-dragging .lp-cintas__products-track {
    transition: none;
  }
}

  .lp-cintas__products-track {
    display: flex;
    gap: var(--product-card-gap);
    width: max-content;
    padding-left: var(--layout-content-left);
    padding-right: 0;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .lp-cintas__products-track::after {
    content: "";
    display: block;
    width: calc(var(--layout-content-left) - var(--product-card-gap));
    flex-shrink: 0;
  }

/* pequeña corrección para monitores grandes alineacion */
@media (min-width: 1728px) {
  .lp-cintas__products-viewport {
    padding-inline: var(--hero-padding-x);
    box-sizing: border-box;
  }

  .lp-cintas__products-track {
    padding-left: calc(
      max(0px, (100% - var(--hero-width)) / 2) + var(--hero-padding-left-inner)
    );
  }

  .lp-cintas__products-track::after {
    width: calc(
      max(0px, (100% - var(--hero-width)) / 2) + var(--hero-padding-left-inner) - var(--product-card-gap)
    );
  }
}

/* Card */
.lp-cintas__product-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: var(--product-card-width);
  height: var(--product-card-height);
  padding: 14px;
  background-color: #ffffff;
  border-radius: 4px;
}

.lp-cintas__product-card-media {
  position: relative;
  flex-shrink: 0;
  width: var(--product-image-width);
  height: var(--product-image-height);
  overflow: hidden;
}

.lp-cintas__product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 10px 8px;
  background-color: var(--color-celeste);
  color: var(--color-claro);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
}

.lp-cintas__product-card-media img {
  display: block;
  width: var(--product-image-width);
  height: var(--product-image-height);
  object-fit: cover;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.lp-cintas__product-card-title {
  margin: 16px 0 0;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-texto);
}


.lp-cintas__products-footer-shell {
  padding: 0 var(--hero-padding-x);
}

.lp-cintas__products-footer-inner {
  max-width: var(--hero-width);
  margin: 0 auto;
  padding-left: var(--hero-padding-left-inner);
  padding-right: var(--hero-padding-right-inner);
}

.lp-cintas__products-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}

.lp-cintas__products-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 10px 20px;
  background-color: var(--color-celeste);
  color: var(--color-claro);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

/* .lp-cintas__products-btn:hover {
  opacity: 0.9;
  color: var(--color-claro);
  text-decoration: none;
} */

.lp-cintas__products-btn-arrow {
  font-size: 18px;
  line-height: 1;
}

.lp-cintas__products-certs {
  text-align: right;
}

.lp-cintas__products-certs-text {
  margin: 0 0 12px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-texto);
}

.lp-cintas__products-certs-logos {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-left: auto;
}


@media (max-width: 767px) {
  .lp-cintas__hero {
    --hero-mobile-x: 20px;
    --hero-active-product-width: 156px;
  }

  .lp-cintas__main {
    overflow-x: hidden;
  }

  .lp-cintas__hero {
    padding: 0;
    overflow-x: hidden;
    overflow-x: clip;
    background-color: var(--color-celeste);
  }

  .lp-cintas__hero-inner {
    height: auto;
    min-height: 0;
    max-width: none;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .lp-cintas__hero-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .lp-cintas__hero-left {
    height: auto;
    padding: 40px 20px 28px;
    justify-content: flex-start;
    gap: 28px;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .lp-cintas__hero-copy {
    max-width: none;
  }

  .lp-cintas__hero-title {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .lp-cintas__hero-text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .lp-cintas__hero-left .lp-cintas__hero-btn {
    display: none;
  }

  .lp-cintas__hero-products-wrap {
    margin-top: 0;
    margin-left: calc(var(--hero-mobile-x) * -1);
    margin-right: calc(var(--hero-mobile-x) * -1);
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    height: 235px;
    min-height: 235px;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 27px 0;
    scroll-padding-inline: calc((100vw - var(--hero-active-product-width)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    contain: content;
    touch-action: pan-x;
  }

  .lp-cintas__hero-products-wrap::before,
  .lp-cintas__hero-products-wrap::after {
    content: "";
    display: block;
    flex: 0 0 calc((100vw - var(--hero-active-product-width)) / 2);
  }

  .lp-cintas__hero-products-wrap::-webkit-scrollbar {
    display: none;
  }

  .lp-cintas__hero-product {
    scroll-snap-align: center;
  }

  .lp-cintas__hero-product.is-active {
    margin: 0 20px;
  }

  .lp-cintas__hero-right {
    height: auto;
    padding: 0 20px 28px;
    overflow: hidden;
    min-width: 0;
  }

  .lp-cintas__form {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    max-height: none;
    padding: 24px 20px 28px;
    border-radius: 8px;
    overflow: hidden;
  }

  .lp-cintas__form .crmWebToEntityForm,
  .lp-cintas__form .crmWebToEntityForm form {
    min-width: 0;
    max-width: 100%;
  }

  .lp-cintas__logo {
    margin-bottom: 16px;
  }

  .lp-cintas__logo img {
    width: min(203px, 70vw);
    height: auto;
  }

  .lp-cintas__form-title {
    font-size: 18px;
  }

  .lp-cintas__form-subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .lp-cintas__hero {
    --hero-mobile-x: 16px;
  }

  .lp-cintas__hero-left {
    padding: 32px 16px 24px;
    gap: 24px;
  }

  .lp-cintas__hero-right {
    padding: 0 16px 24px;
  }

  .lp-cintas__hero-title {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.12;
  }

  .lp-cintas__form {
    padding: 20px 16px 24px;
  }
}



@media (max-width: 767px) {
  .lp-cintas__products {
    padding: 40px 0 48px;
  }

  .lp-cintas__products-header-wrap {
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .lp-cintas__products-header {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .lp-cintas__products-track {
    /* 16px shell + 20px = mismo inset que .lp-cintas__hero-left */
    padding-left: calc(16px + 20px);
    padding-right: 0;
    gap: 27px;
  }

  .lp-cintas__products-track::after {
    content: "";
    display: block;
    width: calc(16px + 20px - 16px); 
    flex-shrink: 0;
  }

  .lp-cintas__product-card {
    width: calc(100vw - (16px + 20px) * 2);
    height: auto;
    min-height: 0;
  }

  .lp-cintas__product-card-media {
    width: 100%;
    height: auto;
    aspect-ratio: 348 / 385;
  }

  .lp-cintas__product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }

  .lp-cintas__product-card-title {
    font-size: 16px;
  }

  .lp-cintas__products-footer-shell {
    padding: 0 16px;
  }

  .lp-cintas__products-footer-inner {
    max-width: none;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-cintas__products-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-top: 32px;
  }

  .lp-cintas__products-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .lp-cintas__products-certs {
    width: 100%;
    text-align: left;
  }

  .lp-cintas__products-certs-text {
    font-size: 16px;
  }

  .lp-cintas__products-certs-logos {
    margin-left: 0;
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .lp-cintas__products-track {
    padding-left: calc(16px + 16px);
    padding-right: 0;
    gap: 12px;
  }

  .lp-cintas__products-track::after {
    content: "";
    display: block;
    width: calc(16px + 16px - 12px); 
    flex-shrink: 0;
  }

  .lp-cintas__product-card {
    width: calc(100vw - (16px + 16px) * 2);
  }

  .lp-cintas__products-footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-cintas__products-certs-logos {
    max-width: 200px;
  }
}
