html,
body {
  height: 100%;
  margin: 0;

  font-family: 'Gotham';
}

* {
  box-sizing: border-box;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0;
  margin-block-end: 0
}

ul {

  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 20px;

}

strong.blue {
  font-weight: 700;
  color: #005CA0
}

span.blue {

  color: #005CA0
}

span.quini {
  font-weight: 500;
}
strong.bold600{
  font-weight: 600;
}
.bg__white-transition {
  background-color: #F2F2F2;
  z-index: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0
}


/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  z-index: 100;
  pointer-events: auto;
    padding: 32px 20px;
  box-sizing: border-box;
  background-color: #072842;
}

.header__container {
width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    margin-top: 14px;
}

.header__logo img {
  width: 130px;
  position: absolute;
  left: 0;
  top: 0;
}

.header__logo--blue {
  z-index: 1;
  opacity: 0;

}

.header__logo--white {
  z-index: 2
}

.header__nav {
  display: flex;
  gap: 32px;
  margin-top: -2px;
}

.header__link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.header__link:hover {
  color: #ccc;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-toggle {
    width: 70px;
    display: flex
;
    align-items: center;
    gap: 8px;
    padding: 3px 0 5px 0px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    justify-content: center;
}



.dropdown-toggle.active {

    color: white;

}

.arrow {
    transition: transform 0.3s ease;
}

.dropdown.open .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}


/* FOOTER */
.main-footer {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: center;
  pointer-events: auto;
  z-index: 100;
  height: 72px;
  overflow: hidden;
}

.footer-nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 8px;
  border: 0.5px solid #B4B4B4;
  background: #FFF;
  box-shadow: 0px 1.832px 12.824px 0px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  overflow-x: auto;
  /* Scroll lateral */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll en iOS */
}

.footer-nav-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 0 16px;
}

.footer-nav a {
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  color: #B4B4B4;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: #005CA0;
}

.ab-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ab-slides {
  display: flex;
  transition: transform 0.4s ease;
  width: 300%;
  /* 3 slides */
}

.ab-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
}

.ab-slider-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.ab-slider-buttons button {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #072842;
  color: #fff;
  border: none;
  border-radius: 6px;
}

.slider-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-comparator {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 948 / 532;
  overflow: hidden;
  touch-action: none;
  margin-top: 0px;
  max-width: calc(100vw - 40px);
}

.image-comparator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.image-before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.image-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.image-after-wrapper .image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 40px);
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ccc;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: url('../imgs/intro/circulo.svg');
  background-size: cover;
}

#ab-prev {
  width: 40px;
  height: 40px;
  background: url('../imgs/intro/l.svg');
  background-size: cover;
}

#ab-next {
  width: 40px;
  height: 40px;
  background: url('../imgs/intro/r.svg');
  background-size: cover;
}

.ab-slider-buttons {
  padding-left: 20px;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 16px;
}

.slider-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100vh;
  /* para que atraviese todo */
  background-color: white;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#ab-prev.swiper-button-disabled,
#ab-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.3s ease;
}

#ab-prev.disabled,
#ab-next.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.3s ease;
}

/* .image-comparator {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1/1;
  overflow: hidden;
  touch-action: none;
}

.image-comparator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}


.image-before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.image-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}


.image-after-wrapper .image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw; 
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}


.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;

  border: 2px solid #ccc;
  transform: translate(-50%, -50%);
  z-index: 3;

  background: url('../imgs/mobile/intro/circulo.svg');
  background-size: cover;
} */




/* INTRO */

.intro {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;

  overflow: hidden;
  z-index: 1;
  background: #072842;
}

.intro__horizontal {
  display: flex;
  width: 100%;

  flex-direction: column;
}

.intro__horizontal>article {
  width: 100vw;

  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #072842;
}

.intro__horizontal>article.section__timeline {

  width: 100%;

  flex: 0 0 auto;

  display: flex;
  align-items: center;


}

.section__intro {
  background-color: #072842;
}

.section__timeline {

  flex-direction: column;
  align-items: flex-start;
}

.timeline__scroll {
  width: 100%;
  padding-left: 20px;
  white-space: nowrap;

}

.timeline__list {

  list-style: none;
  padding: 0;
  margin: 30px 0;
  gap: 40px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}

.timeline__item {
  margin-bottom: 30px;
  font-weight: 250;
  font-size: 75px;
  line-height: 90%;
  letter-spacing: -6%;
  vertical-align: middle;
  color: #FFFFFF;
  display: flex;
  align-items: center;


}


/* suyo*/
.intro .container {
  width: 100%;
  max-width: 1515px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.swiper {
  width: 100%;
  height: 545px;
}

.swiper-controls {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 16px 24px;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
  width: 32px;
  height: 32px;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.ab_handle-fake {
  position: absolute;
  height: 48px;
  width: 48px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  background-image: url("../imgs/intro/slider/circulo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* pointer-events: none; */
  z-index: 3;
}

@media (min-width: 600px) {
  .ab_handle-fake {
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 1440px) {

  .swiper-controls .swiper-button-prev,
  .swiper-controls .swiper-button-next {
    width: 48px;
    height: 48px;
  }
}

.swiper-controls .swiper-button-prev:after,
.swiper-controls .swiper-button-next:after {
  content: none;
  display: none;
}

.swiper-controls .swiper-button-prev {
  background-image: url("../imgs/intro/slider/l.svg");
}

.swiper-controls .swiper-button-next {
  background-image: url("../imgs/intro/slider/r.svg");
}


.intro .container {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ab_top {
  padding: 16px 16px 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

@media (min-width: 1440px) {
  .ab_top {
    padding-bottom: 0;
  }
}

.ab_external {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: -0.56px;
  font-style: normal;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  padding-right: 22px;
  position: relative;
}

.ab_external:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("../images/ico-external.svg");
  background-size: 15px auto;
  background-position: left top;
  background-repeat: no-repeat;
  transition: all 0.25s;
  position: absolute;
  top: 0;
  right: 0;
}

.ab_external:hover:before {
  background-position: left bottom;
}

.ab_middle {
  width: 100%;
  max-width: 1080px;
  position: relative;
  margin: 0 auto;
  height: 532px;
}

.ab_item {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 345px;
}

@media (min-width: 600px) {
  .ab_item {
    height: 606px;
  }
}

.ab_item-1 .ab_contrast {
  background-image: url("../imgs/intro/slider/ab-1-a.webp");
}

.ab_item-1 .ab_divisor_image {
  background-image: url("../imgs/intro/slider/ab-1-b.webp");
}

.ab_item-2 .ab_contrast {
  background-image: url("../imgs/intro/slider/ab-2-a.webp");
}

.ab_item-2 .ab_divisor_image {
  background-image: url("../imgs/intro/slider/ab-2-b.webp");
}

.ab_item-3 .ab_contrast {
  background-image: url("../imgs/intro/slider/ab-3-a.webp");
}

.ab_item-3 .ab_divisor_image {
  background-image: url("../imgs/intro/slider/ab-3-b.webp");
}

.ab_contrast {
  position: absolute;
  background-size: auto 345px;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
}

@media (min-width: 600px) {
  .ab_contrast {
    background-size: 1080px auto;
  }
}

.ab_divisor {
  position: absolute;
  width: 33%;
  bottom: 0;
  height: 100%;
  overflow: hidden;
  border-right: 5px solid white;
}

.ab_divisor_image {
  display: block;
  width: 100vw;
  max-width: 1080px;
  height: 100%;
  background-size: auto 345px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 600px) {
  .ab_divisor_image {
    background-size: 1080px auto;
  }
}

.ab_handle {
  position: absolute;
  height: 48px;
  width: 48px;
  top: 50%;
  left: 30%;

  z-index: 1;
}

@media (min-width: 600px) {
  .ab_handle {
    width: 70px;
    height: 70px;
  }
}

.ab_range {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 48px);
  left: -24px;
  z-index: 2;
  opacity: 0;
}

@media (min-width: 600px) {
  .ab_range {
    width: calc(100% + 70px);
    left: -35px;
  }
}

.ab_range:focus,
.ab_range:active {
  border: none;
  outline: none;
}

.ab_range::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: transparent;
  background-image: url("../imgs/intro/slider/circulo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 1;
  transform: translateX(-4.5px);
  cursor: pointer;
}

@media (min-width: 600px) {
  .ab_range::-webkit-slider-thumb {
    width: 70px;
    height: 70px;
  }
}

.ab_range::-moz-range-track {
  -moz-appearance: none;
  display: none;
}

.ab_bottom {
  width: 100%;
  padding: 91px 24px 32px;
}

@media (min-width: 1440px) {
  .ab_bottom {
    padding-top: 40px;
  }
}

.ab_title {
  color: #FFFFFF;
  text-align: left;
  text-wrap: balance;
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: -2.16px;
  font-style: normal;
  font-weight: normal;
}

@media (min-width: 1440px) {
  .ab_title {
    font-size: 72px;
    line-height: 0.9;
    letter-spacing: -4.32px;
    text-align: center;
  }
}

.ab_title span {
  display: block;
}

@media (min-width: 1440px) {
  .intro .swiper-controls {
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .intro .swiper-controls .swiper-button-prev {
    position: absolute;
    left: -84px;
    top: -33px;
  }
}

@media (min-width: 1440px) {
  .intro .swiper-controls .swiper-button-next {
    position: absolute;
    right: -84px;
    top: -33px;
  }
}

@media (max-width: 599px) {

  .ab_contrast,
  .ab_divisor_image {
    background-size: cover !important;
    background-position: center center;
  }

  .ab_item,
  .ab_contrast,
  .ab_divisor_image {
    height: auto !important;
    aspect-ratio: 3 / 2;
    /* o ajusta según la relación deseada */
  }

  .ab_middle {
    height: auto !important;
  }
}

/* Contenedor reutilizable */
.container__1512 {
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  position: relative;
  z-index: 1;
}

/* historia */

.historia {
  top: 0;
  left: 0;
  width: 100vw;

  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background-color: #072842;
  position: relative;



}

.container__1512.historia__container {
  justify-content: flex-start;
  flex-direction: column;
}

.historia__top {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 60%; */
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}

.historia__content {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* height: 40%; */
  padding: 0 20px;
  /* gap: 60px; */
  width: 100%;
  flex-direction: column;
}


.historia__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.historia__bg-number {

  /* position: absolute; */
  font-size: 149px;
  font-weight: bold;
  color: #005CA0;
}

.historia__digits {

  font-weight: 700;
  font-size: 149px;
  line-height: 90%;
  letter-spacing: -10px;
  vertical-align: middle;

}

.historia__right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;

}

.historia__video-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.historia__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.historia__text {
  color: white;
  max-width: 480px;
}

.historia__subtitle {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.historia__description,
.historia__community {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 12px;
}



/* -----------------COMPROMISO---------------------- */

.compromiso {
  position: relative;
  width: 100vw;

  overflow: hidden;
  background-color: #072842;
  color: white;
  z-index: 1;
  padding-top: 50px;
}

.compromiso.comp2 {
  position: relative;
  width: 100vw;

  overflow: hidden;
  background-color: #fff;
  color: white;
  z-index: 1;
  padding-top: 0px;
}

.compromiso.comp2 .compromiso__content p {
  background-color: white;
  font-size: 20px;
  line-height: 1.1;
}

.compromiso.comp2 .compromiso__content p.big {
  background-color: white;
  font-size: 46px;
  line-height: .9;
  padding: 0 20px 0 0;
}

.compromiso.comp3 .compromiso__content p {
  background-color: white;
  padding: 60px 20px;

}

/* Fondo animable (dos imágenes superpuestas) */
.compromiso__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100vw;
}

.compromiso__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  object-fit: cover;
  opacity: 0;
}

.compromiso__bg-image--primary {
  opacity: 1;

}



/* Alineación específica para esta sección */
.container__compromiso {
  padding-right: 20px;
  flex-direction: column;
  /* height: 500px; */
}

/* Contenedor del texto (común para todos los tx) */
.compromiso__content {
  padding-top: 50px;
  position: relative;
  padding-left: 69px;

}

.compromiso__content.step1 {

  background: url('../imgs/compromiso/lineas-1.svg');
  background-size: 400%;
  background-position-x: center;
  background-position-y: top;
  height: 100%;
  padding-bottom: 40px;

}

.compromiso__text--tx3 p {
  padding-bottom: 30px;
}

.compromiso__content.step2 {
  background: url(../imgs/compromiso/lineas-montadas.svg);
  background-size: 260%;
  background-position: -275px 100px;
  height: 650px;
  background-repeat: no-repeat;
  padding-bottom: 40px;
}

.compromiso__content.step3 {
  /* background: url('../imgs/mobile/compromiso/lineas-5-01.svg');
    background-size: 150%;
    background-position: -150px 250px; */
  height: 210px;
  background-repeat: no-repeat;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-top: 40px;
}

/* Texto individual (base) */
.compromiso__text {
  position: relative;
  width: 100%;
  z-index: 1;
  font-weight: 300;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.2;
  vertical-align: middle;


}

/* Texto 1 visible por defecto */
.compromiso__text--tx1 {
  top: 0;
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

/* Texto 2 preparado para entrar desde abajo */
.compromiso__text--tx2 {
  color: #005CA0;

  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.56px;


}

/* Texto 3 (si lo usas luego) también se deja preparado */
.compromiso__text--tx3 {
  position: relative;

  font-weight: 400;
  font-size: 56.33px;
  line-height: 85%;
  letter-spacing: -0.5;
  vertical-align: middle;

}

.compromiso__text--tx3 span:nth-child(1) {
  color: #005CA0;
}

.compromiso__text--tx3 span:nth-child(2) {
  color: #64ADCB;
}

/* Párrafo base */
.compromiso__content p {
  margin: 0;
  padding: 20px;
  background: #072842;
  font-size: 20px;
  line-height: 1.1;
}

.compromiso__content .compromiso__text--tx3 p {

  padding-bottom: 60px;

}

.compromiso__content strong {
  font-weight: 700;
}



/* NUEVO ECO-------- */

.nuevo-eco {
  position: relative;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 4;
}

/* Fondo en dos columnas */
.nuevo-eco__background {
  position: absolute;

  display: flex;
  flex-direction: column;
  height: 100vh;


}



.nuevo-eco__col {
  flex: 1;
  background-size: cover;
  background-position: center;

}

.nuevo-eco__col--left {
  background-image: url('../imgs/nuevo/back_izq.webp');
  height: 64%;
  padding: 60px 20px;
  display: flex;
}

.nuevo-eco__col--right {
  background-image: url('../imgs/nuevo/img-10.webp');
  min-height: 42vh;
}

/* Contenido sobrepuesto */

.nuevo-eco__content {
  display: flex;
  width: 100%;
  gap: 2rem;
  justify-content: center;
}

.nuevo-eco__text {
  flex: 1;
  color: #072842;
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.2;
  vertical-align: middle;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px
}

.nuevo-eco__text p:nth-child(3) {
  color: #005CA0;
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.2;
  vertical-align: middle;
  padding-right: 40px;



}

.nuevo-eco__empty {
  flex: 1;
}


/* -------- COMO ------------------- */


.como {
  position: relative;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F2F2F2;
  z-index: 5;
  padding: 0 20px 60px;
  height: fit-content;
}

.como__wrapper {
  display: flex;
  width: 100%;
  height: 100%;

}

.como__col--left {

  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.como__container {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.como__content {
  padding: 40px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.como__blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;

}

.como__block__card {
  background-position: center !important;
  background-size: cover !important;
  height: 281px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
}


.como__block {
  display: flex;
  width: 320px;
  height: 98px;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;


}

.como__block__card[data-step="1"] {
  background: url('../imgs/como/img-2-mob.webp');
}

.como__block__card[data-step="2"] {
  background: url('../imgs/como/img-3-mob.webp');
}

.como__block__card[data-step="3"] {
  background: url('../imgs/como/img-4-mob.webp');
}

.como__block__card[data-step="4"] {
  background: url('../imgs/como/img-5-mob.webp');
}

.como__blocks__title {
  color: #072842;
  font-weight: 400;
  font-size: 56px;
  line-height: 90%;
  letter-spacing: -.6;
  vertical-align: middle;

}

.como__col--right {
  flex: 1;
  position: relative;
  overflow: hidden;

}

.como__block-title {
  color: #072842;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 18px */
  letter-spacing: -0.3px;
}


.como__block-icon {
  width: 65px;
  max-height: 64px;

}

.como__modelo {
  display: flex;
  gap: 24px;
  margin-top: 100px;
}


.como__modelo-left {
  width: 90%;
  display: flex;
  flex-direction: column;

}

.como__modelo-right {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;

}



.como__modelo-left p {

  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.4;

}

.como__phase-right {
  width: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.como__icon {
  width: 70px;
  height: 70px;
  border-radius: 13.494px;
  box-shadow: 0px 2.249px 15.743px 0px rgba(0, 0, 0, 0.05);

}



/* HECTÁREAS -------------*/
.size32ha {
  position: relative;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F2F2F2;
  z-index: 1;
  padding: 20px;
  height: 80vh;
}

.size32ha .container__1512 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.size32ha__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;


}

/* Capa superior de imágenes */
.size32ha__imgs {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  overflow: hidden;
  z-index: 2;
}

.size32ha__img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;

}

.size32ha__img--1 {
  z-index: 1;
  background-image: url('../imgs/size32ha/img-6-mob.webp');
  background-position: left;
}


.size32ha__txt {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 75%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #A9DEF4;
  padding: 24px 16px;

}

.size32ha__text-content {

  color: #072842;

  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -2%;
  vertical-align: middle;

}

.size32ha__text-content p:nth-child(1) {

  font-size: 112px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  letter-spacing: -12.48px;
}

.size32ha__text-content p:nth-child(2) {

  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.2;
  vertical-align: middle;
  margin-top: 10px;

}

/* a 15 MIN DE BCN ----- */


.a15min {
  position: relative;

  left: 0;
  width: 100%;
  height: fit-content;
  background-color: #F2F2F2;
  z-index: 1;
  padding: 100px 20px 100px 20px;
  /* height:calc(100vh - 142px); */

}

.container__a15min {
  padding-top: 10px;
}

.a15min .container__1512 {
  justify-content: flex-start;
}

.a15min__content {
  position: relative;


}


.a15min__bg {
  margin-top: 24px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: transparent;


}

.a15min__bg-img {
  width: 100%;
  height: auto;
  display: block;
}


.a15min__text {

  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.2;
  vertical-align: middle;
  margin-bottom: 20px;

}

/* CONECTADO ----------------------*/

.conectado {
  position: relative;
  left: 0;
  width: 100vw;

  z-index: 1;
  padding: 40px 20px;
  background-color: #f2f2f2;
  ;


}

.acordeon-section {
  border: 1px solid #ccc;
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.acordeon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f7f7f7;
  cursor: pointer;
}

.toggle-icon {
  font-size: 24px;
  color: #072842;
  user-select: none;
}

.acordeon-header h2 {

  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -2%;

  color: #072842;
}


.acordeon-image {
  width: 100%;
  display: block;
}

.acordeon-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.acordeon-content p {
  margin-bottom: 30px;
}

.acordeon-section.open .acordeon-content {
  max-height: 1000px;
  /* suficientemente grande */
  padding: 30px 20px 20px 20px;
}

.conectado__info.step2:nth-child(3) {
  margin-top: 30px;
}



/* EL PROYECTO ----------------- */

.elproyecto {
  position: relative;
  left: 0;
  width: 100%;
  height: fit-content;
  z-index: 9;
  /* pointer-events: none; */
  ;
  background: white;
  padding: 60px 20px 0 20px;
}


.elproyecto__top {
  height: fit-content;
  display: flex;
  align-items: flex-start;
  background-color: white;
  position: relative;
  padding: 0;

}

.elproyecto__top-inner {
  width: 1512px;
  max-width: 90%;
  margin: 0 auto;
}

.elproyecto__title {
  color: #072842;
  font-weight: 400;
  font-size: 48px;
  line-height: 95%;
  letter-spacing: -5%;
  vertical-align: middle;

}

.elproyecto__title span {
  display: inline-block;
  color: #005CA0;
}



.elproyecto__bottom {
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-top: 30px;

  background: url('../imgs/elproyecto/img-10-mob.webp');
}

.elproyecto__bottom img {
  width: 100%;
  height: auto;

}



/* MEJORANDO --------- */

.mejorando {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 10;
  /* pointer-events: none; */
  overflow: hidden;
  box-sizing: border-box;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Capas de fondo apiladas */
.mejorando__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mejorando__content-wrapper {
  position: relative;
  width: 100%;
  padding: 100px 0 0 0;
  box-sizing: border-box;

}

.mejorando__content-wrapper .container__1512 {
  height: 500px;
}

.mejorando__bg-layer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-position-y: top;
  margin-top: 10px;

}

.mejorando__bg-layer[data-step="5"] .mejorando__text--sub {
  max-width: 65%;
}

.mejorando__bg-layer[data-step="1"] {
  background-image: url('../imgs/elproyecto/img-11-a-mob.webp');
  z-index: 5
}

.mejorando__bg-layer[data-step="2"] {
  background-image: url('../imgs/elproyecto/img-11-b-mob.webp');
  z-index: 4
}

.mejorando__bg-layer[data-step="3"] {
  background-image: url('../imgs/elproyecto/img-11-c-mob.webp');
  z-index: 3;

}

.mejorando__bg-layer[data-step="4"] {
  background-image: url('../imgs/elproyecto/img-11-d-mob.webp');
  z-index: 2
}

.mejorando__bg-layer[data-step="5"] {
  background-image: url('../imgs/elproyecto/img-11-e-mob.webp');
  z-index: 1
}

/* Contenedor del texto */
.mejorando .container__1512 {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.mejorando__content {
  position: relative;
  width: 100%;
}


.mejorando__text {
  height: 450px;
  position: absolute;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.5s ease;


}

.mejorando__text {}

.mejorando__text[data-step="1"] {
    width: 100% !important;
  opacity: 1;
  z-index: 5
}

.mejorando__text[data-step="2"] {
    width: 100% !important;

  z-index: 4
}

.mejorando__text[data-step="3"] {
  width: 100% !important;
  z-index: 3;


}

.mejorando__text[data-step="4"] {
    width: 100% !important;

  z-index: 2
}

.mejorando__text[data-step="5"] {
    width: 100% !important;

  z-index: 1;
  height: 260px;

}

.mejorando__text p {
  color: #072842;

  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -3%;
  vertical-align: middle;
  max-width: 90%;

}

.mejorando__text p.mejorando__text--sub {
  color: #072842;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 17.6px */
  letter-spacing: -0.48px;
}


.mejorando__bullets {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 9999;
   display: none;
}
.bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;
}
.bullet.active {
  background: #000;
}



/* NUEVO COMPLEJO ----- */
.nuevocomplejo {
  position: relative;

  left: 0;
  width: 100vw;

  background: #fff;
  z-index: 11;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nuevocomplejo__container {

  padding: 60px 0 0;
  box-sizing: border-box;
  position: relative;
  gap: 30px;
  flex-direction: column;

}

.nuevocomplejo__title {

  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%;
  /* 53.2px */
  letter-spacing: -2.8px;
}

.nuevocomplejo__3imgs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 500px;
  width: 70%;
  justify-content: flex-start;


}

.nuevocomplejo__img-wrapper {
  position: relative;
  height: 30%;
  margin-left: 20px;


  overflow: hidden;
}

.nuevocomplejo--img {
  height: 30%;
  width: calc(100vw - 40px);
  margin-left: 20px;
  height: 157px;
}

.nuevocomplejo--img[data-img="1"] {
  background: url('../imgs/nuevocomplejo/img-12-mob.webp');
  background-size: cover;
}

.nuevocomplejo--img[data-img="2"] {
  background: url('../imgs/nuevocomplejo/img-13-mob.webp');
  background-size: cover;
}

.nuevocomplejo__text {
  position: relative;
  padding: 0 20px;
  top: 0;
  left: 0;

}

.nuevocomplejo__description {
  top: 0;
  color: #072842;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.72px;
  position: relative;
  margin-top: 10px;
}

.nuevocomplejo__bg {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Filas */
.nuevocomplejo__row {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  gap: 23px
}

/* Cols */
.nuevocomplejo__col {
  position: relative;
  overflow: hidden;
}

/* Fila superior */
.nuevocomplejo__row--top {
  /* height: 35%; */
  height: 226px;
}

.nuevocomplejo__row--bottom {
  height: 65%;
  gap: 23px
}

/* Col 1 vacía */
.nuevocomplejo__col--top-left {
  width: 65%;
}

/* Col 2 con 2 imágenes apiladas */
.nuevocomplejo__col--top-right {
  width: 35%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}



.nuevocomplejo__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;

}

.nuevocomplejo__img--1 {
  background-image: url('../imgs/nuevocomplejo/n-complejo-img1-mob.webp');
  z-index: 5;
  background-size: cover;
}

.nuevocomplejo__img--2 {
  background-image: url('../imgs/nuevocomplejo/n-complejo-img2-mob.webp');
  z-index: 4;
  background-size: 120%;
  background-repeat: none;
}

.nuevocomplejo__img--3 {
  background-image: url('../imgs/nuevocomplejo/n-complejo-img3-mob.webp');
  z-index: 3;
}

.nuevocomplejo__img--4 {
  background-image: url('../imgs/nuevocomplejo/n-complejo-img4-mob.webp');
  z-index: 2;
}

.nuevocomplejo__img--5 {
  background-image: url('../imgs/nuevocomplejo/n-complejo-img5-mob.webp');
  z-index: 1;
}

.nuevocomplejo__img--6 {
  background-image: url('../imgs/nuevocomplejo/complejo-edif-2-mob.png');
  z-index: 1;
}

/* Imágenes de la fila inferior */
.nuevocomplejo__col--bottom-left .nuevocomplejo__img,
.nuevocomplejo__col--bottom-right .nuevocomplejo__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.nuevocomplejo__col--bottom-left .nuevocomplejo__img--6 {
  background-image: url('../imgs/nuevocomplejo/n-complejo-img6.webp');

  opacity: 1;
}

.nuevocomplejo__col--bottom-right .nuevocomplejo__img--7 {
  background-image: url('../imgs/nuevocomplejo/n-complejo-img7.webp');

  opacity: 1;
}

/* Fila inferior */
.nuevocomplejo__col--bottom-left {
  width: 65%;
}

.nuevocomplejo__col--bottom-right {
  width: 35%;
  position: relative;
  height: 60%;
}



.nuevocomplejo__title span {
  display: block;

}

.nuevocomplejo__title span:nth-child(1) {
  color: #072842;
}

.nuevocomplejo__title span:nth-child(2) {
  color: #005CA0;

}


.nuevocomplejo__cards-wrapper {

  /* left: 50%; */
  /* width: 100%; */

  /* pointer-events: none; */
  z-index: 11;
}

.nuevocomplejo__card--container[data-img="1"] {
  display: flex;
  height: 650px;
  background: url(../imgs/nuevocomplejo/n-complejo-img3-mob.webp);
  align-items: center;
  background-size: 100%;
  background-position: 00px -120px;
  background-repeat: no-repeat;
}

.nuevocomplejo__card--container[data-img="2"] {
  display: flex;
  height: 650px;
  background: url(../imgs/nuevocomplejo/n-complejo-img4-mob.webp);
  align-items: center;
  background-size: 100%;
  background-position: 00px -100px;
  background-repeat: no-repeat;
}

.nuevocomplejo__card--container[data-img="3"] {
  display: flex;
  height: 650px;
  background: url(../imgs/nuevocomplejo/n-complejo-img5-mob.webp);
  align-items: center;
  background-size: 100%;
  background-position: 00px -60px;
  background-repeat: no-repeat;
}

.nuevocomplejo__plano img {
  width: 100%;
}

.nuevocomplejo__card {
  position: relative;
  margin-top: 30px;
  left: 0;
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  display: flex;
  width: calc(100vw - 40px);
  left: 20px;
  flex-direction: column;
  box-shadow: 0px 0px 16px 0px #00000026;
}

.nuevocomplejo__card-img {
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.nuevocomplejo__card[data-card="1"] .nuevocomplejo__card-left {
  background-image: url('../imgs/nuevocomplejo/img-14.webp');
}

.nuevocomplejo__card[data-card="2"] .nuevocomplejo__card-left {
  background-image: url('../imgs/nuevocomplejo/img-15.webp');
}

.nuevocomplejo__card[data-card="3"] {}

.nuevocomplejo__card[data-card="3"] .nuevocomplejo__card-left {
  background-image: url('../imgs/nuevocomplejo/img-16.webp');

}

.nuevocomplejo__card-left {
  width: 100%;
  height: 40%;
  background-size: cover;
  background-position: center;
}

.nuevocomplejo__card-right {
  width: 100%;
  height: 50%;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nuevocomplejo__card-title {
  color: #9B4393;

  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 40px */
  letter-spacing: -1.6px;
}

.nuevocomplejo__card-subtitle {
  color: #9B4393;

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 24px */
  letter-spacing: -0.96px;
  margin: 5px 0 20px;
}

.nuevocomplejo__card[data-card="1"] .nuevocomplejo__card-title,
.nuevocomplejo__card[data-card="2"] .nuevocomplejo__card-subtitle {
  color: #9B4393;
}

.nuevocomplejo__card[data-card="2"] .nuevocomplejo__card-title,
.nuevocomplejo__card[data-card="2"] .nuevocomplejo__card-subtitle {
  color: #4749B6;
}

.nuevocomplejo__card[data-card="3"] .nuevocomplejo__card-title,
.nuevocomplejo__card[data-card="3"] .nuevocomplejo__card-subtitle {
  color: #8253BC;
}

.nuevocomplejo__card-texts {
  margin-top: auto;
}

.nuevocomplejo__card-texts p {
  margin: 0 0 12px;
  color: #072842;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 28px */
  letter-spacing: -0.6px;
}

.nuevocomplejo__card-texts p:last-child {
  margin-bottom: 0;
}


/* SOSTENIBLE ------------------------ */

.sostenible {
  position: relative;
  left: 0;
  width: 100vw;
  padding-bottom: 100px;
  background: #072842;
  z-index: 12;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sostenible .container__1512 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10vh;
  align-items: center;
  position: relative;
}

.sostenible__phase1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.sostenible__title {
  color: #FFF;
  text-align: center;
  font-family: 'Gotham';
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 41.6px */
  letter-spacing: -0.64px;
  text-align: center;
  max-width: 90%;
}

.sostenible__images-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 141px;
  position: relative;
}

.sostenible__images {
  display: flex;
  width: 100vw;
  padding: 0 20px;
  box-sizing: border-box;
  flex-direction: row;
  gap: 16px;
  height: 140px;
}

.sostenible__images div {
  width: 33.3%;
  height: 90px;
  position: relative;
}

.sostenible__images .img1 {
  background: url(../imgs/sostenible/icono-8.png);
  background-size: 70px;
  background-repeat: no-repeat;
  background-position: top;
}

.sostenible__images .img2 {
  background: url(../imgs/sostenible/icono-9.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 10px 0px;
  background-size: 105px;
}

.sostenible__images .img3 {
  background: url('../imgs/sostenible/icono-10.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 75px;
}

.sostenible__image {
  width: 70px;
  height: 320px;
  background-size: cover;
  background-position: center;

}

.spanfin {
  position: absolute;
  display: block;
  width: 100%;
  bottom: -10px;
  color: white;
  font-size: 12px;
  text-align: center;
}

.sostenible__image img {
  width: 100%;

}

.sostenible__image--left {


  width: 100%;
  max-width: 70px;
  height: 70px;

}

.sostenible__image--center {
  transform: translateX(0);
  max-width: 70px;
  height: 70px;

}

.sostenible__image--right {

  max-width: 70px;
  height: 70px;

}

.sostenible__phase2 {
  position: relative;

  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 60px;

}

.sostenible__final-text {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  /* letter-spacing: -1.68px; */
  max-width: 100%;
  margin: 0 auto;
}


/* FIN --------------------- */
.fin {
  position: relative;
  left: 0;
  width: 100vw;

  background: #00192C;
  z-index: 17;
  /* pointer-events: none; */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
  height: 100vh;
  padding-top: 80px
}

.fin .container__1512 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
  padding-top: 10vh;
}

.second_row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: center;
}

.fin__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.fin__title {
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  /* 61.6px */
  letter-spacing: -1.68px;
}

.fin__subtitle {
  color: #FFF;
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 80%;
  max-width: 90%;
  /* 89.6px */
  letter-spacing: -3.36px;
}

.fin__button {
  display: inline-flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  /* margin-top: 50px; */
  background: #FFF;
  color: #005CA0;
  font-family: Gotham;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.56px;
  text-decoration: none;
}

.fin__button:hover {
  background: #f0f0f0;
}

.fin__button-icon {
  width: 16px;
  height: 18px;
  object-fit: contain;
}