/* heyers Header */

.heyers-header-container {
  background-color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.heyers-header {
  width: 1190px;
  display: flex;
  flex-direction: column;
  margin: 0px auto;
}

.ml8 {
  position: relative;
  font-weight: 900;
  font-size: 105px;
  line-height: 100px;
  margin: 0px;
  letter-spacing: -7px;
  text-align: center;
}

.ml8 .line {
  display: block;
  overflow: hidden;
}

.ml8 span {
  display: inline-block;
  white-space: pre-wrap;
}

.ml8 .word {
  display: inline-block;
  white-space: pre-wrap;
}

.heyers-header > div:last-of-type {
  height: 100px;
  display: flex;
}

.heyers-header > div:last-of-type > img {
  height: 100%;
  user-select: none;
}

@media (max-width: 1450px) {
  .heyers-header > div:last-of-type {
    width: 70px;
  }

  .ml8 {
    font-size: 90px;
  }
}

@media (max-width: 1150px) {
  .heyers-header {
    width: auto;
  }

  .ml8 {
    font-size: 70px;
    line-height: 70px;
    width: 100%;
  }
}

@media (max-width: 1025px) {
  .heyers-header-container {
    display: flex;
    align-items: center;
  }

  .ml8 {
    width: auto;
    font-size: 50px;
    letter-spacing: -4px;
    line-height: 50px;
    text-align: center;
  }

  .heyers-header {
    gap: 50px;
    margin: 0px 145px;
  }
}

@media (max-width: 770px) {
  .ml8 {
    font-size: 44px;
    letter-spacing: -4px;
  }

  .heyers-header > div:last-of-type {
    padding-left: 90px;
  }

  .heyers-header > div:last-of-type > img {
    width: 60px;
  }

  .heyers-header {
    gap: 10px;
    margin: 0 auto;
  }
}

@media (max-width: 450px) {
  .heyers-header-container {
    padding: 180px 10px 100px 10px;
  }

  .ml8 {
    font-size: 34px;
    letter-spacing: -3px;
    line-height: 30px;
  }

  .heyers-header > div:last-of-type {
    padding-left: 10px;
  }

  .heyers-header > div:last-of-type > img {
    width: 50px !important;
  }

  .heyers-header {
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .heyers-header-container {
    padding: 80px 10px;
  }

  .ml8 {
    font-size: 32px;
    letter-spacing: -3px;
  }
}

/* Heyers Team */

.heyers-people-container {
  padding: 185px 0px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.heyers-people-slider {
  overflow: hidden;
  position: relative;
  padding: 0 50px;
  box-sizing: border-box;

  width: 100%;
}

.heyers-people {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  transform: translateX(0%);
  gap: 40px;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.3s ease;
  cursor: none !important;
}

.heyers-card {
  background-color: black;
  position: relative;
  scroll-snap-align: center;
  user-select: none;
}

.heyers-card:hover .heyers-people-image-background {
  transform: scale(1.03);
}

.heyers-card:hover .heyers-people-image-first {
  transform: scale(1.07);
}

.heyers-people-image-background,
.heyers-people-image-first {
  transition: transform 0.3s ease;
}

.heyers-card-background {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 74.6%, #000000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.heyers-card-image {
  width: 490px;
  aspect-ratio: 5 / 8;
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heyers-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 5px;
  z-index: 2;
}

.heyers-card-label span:nth-of-type(1) {
  color: #fff;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -1.25px;
}

.heyers-card-label span:nth-of-type(2) {
  color: #fff;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -1.25px;
}

.heyers-people > div.hover .heyers-people-image-second {
  opacity: 1;
  animation: fadeOut 0s;
}

.heyers-people > div.hover .heyers-people-image-first {
  opacity: 0;
}

@keyframes fadeOut {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.heyers-people-image-first {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  user-select: none;
}

.heyers-people-image-background {
  width: 105%;
}

.heyers-people-sign {
  display: flex;
  align-items: end;
  margin-top: 100px;
  width: fit-content;
  animation: move3 8s linear infinite;
}

.heyers-people-sign label {
  color: #fff;
  text-align: center;
  font-size: 185.41px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -12.979px;
  margin: 0 25px;
}

.heyers-people-sign img {
  margin: 0 25px;
}

.heyers-arrow {
  position: absolute;
  z-index: 40;
  width: 60px;
  height: 60px;
  padding: 15px;
  border-radius: 50px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbdbdb66;
}

.heyers-arrow img {
  width: 80%;
  user-select: none;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.heyers-arrow:hover > img {
  transform: scale(1.1);
}

.heyers-arrow:nth-of-type(2) {
  left: 20px;
}

@media (max-width: 1450px) {
  .heyers-card-image {
    width: 300px;
    aspect-ratio: 5 / 8;
  }

  .heyers-card-label {
    gap: 0;
    padding: 15px;
  }

  .heyers-card-label span:nth-of-type(1) {
    font-size: 18px;
    line-height: 1;
  }

  .heyers-card-label span:nth-of-type(2) {
    font-size: 18px;
  }

  .heyers-people-sign label {
    font-size: 130px;
    letter-spacing: -6px;
  }

  .heyers-people-sign img {
    width: 90px;
  }

  .heyers-people {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .heyers-people {
    justify-content: space-around;
  }
}

@media (max-width: 500px) {
  .heyers-team {
    padding: 80px 20px 0 20px;
  }

  .heyers-people {
    gap: 40px;
  }

  .heyers-people-slider {
    padding: 10px 20px;
  }

  .heyers-card {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .heyers-card-image {
    width: 250px;
    aspect-ratio: 5 / 9;
  }

  .heyers-card-label span:nth-of-type(1) {
    font-size: 22px;
  }

  .heyers-card-label span:nth-of-type(2) {
    font-size: 16px;
  }
}

/* Heyers Info */

.heyers-steps {
  max-width: 1600px;
  margin: auto;
  padding: 100px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.heyers-info {
  display: flex;
  align-items: center;
}

.heyers-info h2 {
  font-size: 130px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
}

.heyers-info h2 > span:nth-of-type(6) {
  color: #175b9a;
}

.heyers-info h2 > span:nth-of-type(7) {
  color: #30e4c4;
}

.heyers-info h2 > span:nth-of-type(8) {
  color: #09a0c1;
}

.heyers-info h2 > span:nth-of-type(11) {
  color: #e5225a;
}

.heyers-info h2 > span:nth-of-type(12) {
  color: #ffae00;
}

.heyers-info h2 > span:nth-of-type(13) {
  color: #0b6478;
}

.heyers-info h2 > span:nth-of-type(14) {
  color: #68296a;
}

.heyers-info h2 > span:nth-of-type(15) {
  color: #2e76e1;
}

.heyers-info h2 > span:nth-of-type(16) {
  color: #20bbec;
}

.heyers-info h2 > span:nth-of-type(17) {
  color: #acc31d;
}

.heyers-info h2 > span:nth-of-type(18) {
  color: #c3634e;
}

.heyers-info h2 > span:nth-of-type(19) {
  color: #ba1866;
}

.heyers-info h2 > span:nth-of-type(20) {
  color: #ba1866;
}

.heyers-info > div {
  width: 50%;
}

.heyers-info > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.heyers-info p {
  color: var(--Negro, #141414);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  max-width: 750px;
}

.heyers-info-text {
  color: #0f0f0f;
  text-align: right;
  font-family: Manrope;
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 170px;
  letter-spacing: -20.12px;
  mix-blend-mode: normal;
  margin-bottom: 75px;
}

.heyers-info-background {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0%;
  margin: 0 auto;
  z-index: 1;
  mix-blend-mode: hard-light;
}

@media (max-width: 1450px) {
  .heyers-info h2 {
    font-size: 104px;
  }

  .heyers-info p {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .heyers-info {
    flex-direction: column;
    gap: 30px;
  }

  .heyers-info > div {
    width: 100%;
  }

  .heyers-info p {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .heyers-info h2 {
    font-size: 82px;
  }
}

/* Heyers Years */

.heyers-years-container {
  padding: 165px 0px;
  background-color: white;
  overflow: hidden;
}

.heyers-years {
  display: flex;
  gap: 200px;
  width: fit-content;
  color: #0f0f0f;
  font-size: 802.343px;
  font-style: normal;
  font-weight: 600;
  line-height: 653.437px;
  letter-spacing: -56.164px;
  white-space: nowrap;
  animation: move3 20s linear infinite;
}

@keyframes move3 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.heyers-years > img {
  width: 100%;
}

.heyers-years-text-container {
  padding: 0 40px 150px 40px;
}

.heyers-years-texts {
  max-width: 1750px;
  width: 100%;
  display: flex;
  margin: auto;
  gap: 35px;
}

.heyers-years-text {
  color: #0f0f0f;
  font-size: 20px;
  font-style: normal;
  line-height: 25px;
  letter-spacing: -0.8px;
  font-weight: 400;
  padding-right: 25px;
  border-right: 1px solid black;
  transition: all 300ms ease-in-out;
}

.heyers-years-separator {
  width: 1px;
  border: 1px solid black;
  height: 80%;
}

@media (max-width: 1450px) {
  .heyers-years {
    font-size: 570px;
  }

  .heyers-years-text {
    font-size: 18px;
  }

  .heyers-years-container {
    padding: 100px 0 80px 0;
  }

  .heyers-header > div:last-of-type > img {
    width: 70px;
  }

  .heyers-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 900px) {
  .heyers-header > div:first-of-type {
    font-size: clamp(17px, 14vw, 84px);
  }

  .heyers-years-texts {
    flex-direction: column;
  }

  .heyers-years-text {
    width: 100%;
    border-right: 0px;
  }

  .heyers-arrow {
    width: 30px;
    height: 30px;
    padding: 10px;
    right: 15px;
  }

  .heyers-arrow:last-of-type {
    left: 15px;
  }
}

/* Heyers Metodo */

.heyers-metodo-container {
  background-color: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heyers-metodo {
  margin: auto;
  max-width: 1750px;
  width: 75%;
  position: relative;
}

.heyers-metodo-background {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  object-fit: contain;
}

.heyers-metodo-formula {
  width: 100%;
  aspect-ratio: 1810 / 850;
  position: relative;
}

.heyers-metodo-formula > img {
  position: absolute;
  z-index: 2;
}

.heyers-metodo-formula > img.animated {
  transition: transform 0.3s ease;
}

.heyers-metodo-formula > img.animated:hover {
  transform: scale(1.1);
}

.heyers-metodo-formula > img:nth-of-type(1) {
  top: 4%;
  left: 0;
  width: 100%;
  height: 100%;
}

.heyers-metodo-formula > img:nth-of-type(2) {
  top: 11.1%;
  left: 13.5%;
  width: 14.4%;
}

.heyers-metodo-formula > img:nth-of-type(3) {
  top: 0;
  left: 43.1%;
  width: 16.2%;
}

.heyers-metodo-formula > img:nth-of-type(4) {
  top: 13.6%;
  left: 73.5%;
  width: 16.3%;
}

.heyers-metodo-formula > img:nth-of-type(5) {
  top: 72.8%;
  left: 8%;
  width: 16%;
}

.heyers-metodo-formula > img:nth-of-type(6) {
  top: 80.5%;
  left: 60.9%;
  width: 16%;
}

@media (max-width: 900px) {
  .heyers-metodo-container {
    display: none;
  }
}

/* Heyers Metodo Móvil */

@media (min-width: 901px) {
  .heyers-metodo-mobile-container {
    display: none;
  }
}

.heyers-metodo-mobile-container {
  padding: 200px 20px;
  background-color: #0f0f0f;
}

.heyers-metodo-mobile-header h2 {
  color: #fff;
  font-size: 92px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -5.5px;
  margin: 0 0 150px 0;
}

.heyers-metodo-mobile {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.heyers-metodo-mobile > img:first-of-type {
  margin-bottom: 50px;
}

/* Heyers Brands */

.heyers-brands-container {
  padding: 240px 40px;
  background-color: white;
}

.heyers-brands {
  position: relative;
  max-width: 1650px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.heyers-brands-image {
  max-width: 1112px;
}

.heyers-brands-image img {
  width: 100%;
  mix-blend-mode: hard-light;
}

.heyers-brands-text {
  max-width: 443px;
}

.heyers-brands-text p {
  color: #0f0f0f;
  width: 70%;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.5px;
}

@media (max-width: 1450px) {
  .heyers-brands-container {
    padding: 120px 40px;
  }

  .heyers-info-background {
    height: 100%;
    top: 48px;
    right: 6%;
  }

  .heyers-info-text {
    font-size: 230.425px;
  }
}

@media (max-width: 1100px) {
  .heyers-brands-container {
    padding: 120px 40px;
  }

  .heyers-info-background {
    height: 70%;
    top: 46px;
    right: 24%;
  }

  .heyers-info-text {
    font-size: 100px;
    font-weight: 400;
    line-height: 94px;
    letter-spacing: -6.12px;
  }
}

@media (max-width: 900px) {
  .heyers-brands {
    flex-direction: column;
    gap: 20px;
  }

  .heyers-brands > div {
    width: 100%;
  }
}

@media (max-width: 770px) {
  .heyers-brands-container {
    margin: 0px;
  }

  .heyers-brands {
    align-items: flex-start;
  }

  .heyers-info-background {
    height: 100%;
    top: -325px;
    right: 43%;
    width: 250px;
  }

  .heyers-info-text {
    font-size: 103px;
    text-align: left;
    font-weight: 700;
  }

  .heyers-brands-text p {
    width: 80%;
    font-size: 34px;
    line-height: 35px;
    font-weight: bold;
  }
}

/* Heyers Vertical Line */

.heyers-vertical-line-container {
  padding: 0 40px;
  box-sizing: border-box;
}

.heyers-vertical-line {
  width: 100%;
  max-width: 1750px;
  padding: 0 40px;
  height: 1px;
  background-color: black;
  margin: auto;
  box-sizing: border-box;
}

/* Heyers Phygital */

.heyers-phygital-container {
  padding: 240px 40px;
  background-color: white;
  margin-left: 0px;
}

.heyers-phygital {
  position: relative;
  max-width: 1625px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 200px;
}

.heyers-phygital-image {
  max-width: 957px;
}

.heyers-phygital-image img {
  width: 100%;
  mix-blend-mode: hard-light;
}

.heyers-phygital-text {
  max-width: 385px;
}

.heyers-phygital-text p {
  color: #0f0f0f;
  text-align: right;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.5px;
}

.heyers-phygital-text {
  color: #0f0f0f;
  text-align: right;
  font-family: Manrope;
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 170px;
  letter-spacing: -20.12px;
  mix-blend-mode: normal;
  margin-bottom: 75px;
}

.heyers-phygital-background {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 12%;
  bottom: 9%;
  margin: 0 auto;
  z-index: 1;
  mix-blend-mode: hard-light;
}

@media (max-width: 1100px) {
  .heyers-phygital {
    gap: 100px;
  }

  .heyers-phygital-text {
    font-size: 100px;
    font-weight: 400;
    line-height: 94px;
    letter-spacing: -6.12px;
  }

  .heyers-phygital-background {
    height: 70%;
    left: 15%;
    top: 6px;
  }
}

@media (max-width: 900px) {
  .heyers-phygital {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .heyers-phygital > div {
    width: 100%;
  }
}

@media (max-width: 770px) {
  .heyers-phygital-container {
    margin: 0px;
  }

  .heyers-phygital {
    align-items: flex-start;
  }

  .heyers-phygital-text p {
    text-align: left;
    font-size: 35px;
    font-weight: bold;
    line-height: 35px;
    margin-top: 90px;
  }

  .heyers-phygital-text {
    text-align: left;
    margin-bottom: 0px;
    font-weight: bold;
  }

  .heyers-phygital-background {
    height: 30%;
    left: 0;
    right: 15% !important;
    top: -24px;
  }
}

@media (max-width: 450px) {
  .heyers-info-text {
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 0px;
  }

  .heyers-info-background {
    height: 50%;
    top: -115px;
    right: 13%;
    width: 169px;
  }

  .heyers-brands-text p {
    width: 100%;
    font-size: 33px;
  }

  .heyers-phygital-text {
    font-size: 70px;
    line-height: 70px;
  }

  .heyers-phygital-background {
    height: 100%;
    width: 145px;
    right: 56% !important;
    top: -209px;
  }

  .heyers-phygital-text p {
    margin-top: 40px;
  }
}

#keen-slider {
  width: 100%; /* Ancho por defecto en escritorio */
  max-width: 2000px; /* Limita el ancho máximo */
  margin: 0 auto; /* Centra el slider */
}

.keen-slider__slide {
  min-width: 453px !important;
  width: 456px;
  max-width: 500px;
  transform: translate3d(0px, 0px, 0px);
}

/* Ajustar el ancho en móviles */
@media (max-width: 1450px) {
  .keen-slider__slide {
    min-width: 300px !important;
    width: 285px;
  }
}

/* Ajustar el ancho en móviles */
@media (max-width: 950px) {
  #keen-slider {
    width: 100%; /* Se hace más estrecho */
    max-width: 400px;
    margin: 0px;
    overflow: visible; /* Evita que sea demasiado grande */
  }
}
