.lp-hero {
  min-height: 950px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

 .lp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
 }

 .lp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
 }

 .lp-hero__content {
  position: relative;
  z-index: 1;
 }

@media (max-width: 767.98px) {
  .lp-hero {
    min-height: 740px;
  }

  .lp-hero__bg img {
    object-position: top center;
  }

  .lp-nav__inner {
    justify-content: space-between;
    gap: 12px;
  }

  .lp-nav__toggle {
    margin-left: auto;
  }

  .lp-nav__menu {
    align-items: center;
    text-align: center;
  }

  .lp-nav__menu a {
    justify-content: center;
  }
}

.lp-nav {
  width: 100%;
  background: var(--lp-nav-bg);
}

.lp-nav__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.lp-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  order: 1;
}

.lp-nav__logo {
  height: 32px;
  width: auto;
  display: block;
}

.lp-nav__toggle {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  width: 42px;
  height: 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.lp-nav__icon {
  font-size: 22px;
}

.lp-nav__collapse {
  width: 100%;
  flex-basis: 100%;
  order: 3;
}

.lp-nav__collapse-inner {
  padding: 10px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-nav__menu {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
  align-items: flex-start;
}

.lp-nav__menu li {
  width: 100%;
}

.lp-nav__menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 6px;
  border-radius: 6px;
  width: 100%;
  display: inline-flex;
  align-items: center;
}

.lp-nav__menu a:hover {
  color: #fff;
}

 .lp-nav__menu .dropdown-menu {
  background: #00234b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px;
  transform-origin: top;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
 }

 .lp-nav__menu .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0) scale(1);
 }

 .lp-nav__menu .dropdown-toggle::after {
  transition: transform 160ms ease;
 }

 .lp-nav__menu .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
 }

 @media (min-width: 992px) {
  .lp-nav__menu li.dropdown {
   position: relative;
  }

  .lp-nav__menu li.dropdown:hover > .dropdown-menu {
   display: block;
   opacity: 1;
   transform: translateY(0) scale(1);
  }

  .lp-nav__menu li.dropdown:hover > .dropdown-toggle::after {
   transform: rotate(180deg);
  }
 }

 @media (prefers-reduced-motion: reduce) {
  .lp-nav__menu .dropdown-menu {
    transition: none;
  }

  .lp-nav__menu .dropdown-toggle::after {
    transition: none;
  }
 }

 .lp-nav__menu .dropdown-item {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
 }

 .lp-nav-dd__title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #fff;
  line-height: 1.1;
  text-transform: none;
 }

 .lp-nav-dd__desc {
  margin-top: 0;
  /* font-weight: 500; */
  font-size: 12px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
  text-transform: none;
 }

 .lp-nav__menu .dropdown-item:hover,
 .lp-nav__menu .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
 }

 .lp-nav__menu .dropdown-divider {
  border-top-color: rgba(255, 255, 255, 0.14);
  margin: 8px 0;
 }

.lp-nav__cta {
  background: var(--lp-cta-bg);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

 .lp-nav__cta:hover {
  background: #3578c8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
 }

 .lp-nav__cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
 }

@media (min-width: 992px) {
  .lp-nav__inner {
    flex-wrap: nowrap;
  }

  .lp-nav__toggle {
    display: none;
  }

  .lp-nav__collapse {
    display: block !important;
    width: auto;
    flex-basis: auto;
    order: 2;
    flex-grow: 1;
    height: auto !important;
    overflow: visible !important;
    visibility: visible !important;
  }

  .lp-nav__collapse.collapse:not(.show) {
    height: auto !important;
  }

  .lp-nav__menu a {
    font-size: 11px;
    padding: 6px 8px;
  }

  .lp-nav__cta {
    padding: 6px 10px;
    border-radius: 4px;
  }

  .lp-nav__collapse-inner {
    padding: 0;
    border-top: none;
  }

  .lp-nav__menu {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .lp-nav__menu li {
    width: auto;
  }

  .lp-nav__menu .dropdown-menu {
    min-width: 360px;
  }

  .lp-nav__menu a {
    width: auto;
  }

  .lp-nav__menu li.lp-nav__group-sep {
    margin-left: 18px;
  }
}

@media (min-width: 1200px) {
  .lp-nav__menu {
    gap: 14px;
  }
}

.lp-hero__content {
  padding-top: 76px;
  padding-bottom: 56px;
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.lp-hero__left {
  max-width: 520px;
}

.lp-hero__logo {
  max-width: 240px;
  width: 100%;
  height: auto;
}

.lp-hero__title {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.12;
  font-size: 38px;
}

.lp-hero__title-light {
  font-weight: 400;
}

.lp-hero__title strong {
  font-weight: 800;
}

.lp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lp-meta-card {
  background: #D01C1C;
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
}

.lp-meta-card__date {
  padding: 10px 14px;
  min-width: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lp-meta-card__date-inner {
  display: inline-block;
  line-height: 1;
}

.lp-meta-card__day {
  display: block;
  font-size: 22px;
}

.lp-meta-card__month {
  display: block;
  font-size: 13px;
  letter-spacing: 0.6px;
}

.lp-meta-card__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.lp-meta-card__time {
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.lp-meta-card__hour {
  font-size: 18px;
}

.lp-hero__place {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.35;
  max-width: 440px;
}

.lp-hero__pin {
  color: #fff;
  font-size: 30px;
  margin-top: 0;
}

.lp-hero__place-title {
  font-weight: 700;
  color: #fff;
}

.lp-feature-bar {
  padding: 28px 0;
}

.lp-feature-bar__inner {
  background: var(--lp-cta-bg);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.lp-feature-bar__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  color: #fff;
  text-align: left;
}

.lp-feature-bar__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.lp-feature-bar__text {
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: 16px;
}

.lp-feature-bar__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.lp-section3 {
  padding: 54px 0 62px;
  overflow-x: hidden;
}

.lp-section3__col-text {
  padding-left: 0;
  padding-right: 0;
}

.lp-section3__inner {
  max-width: 100%;
}

.lp-section3__title {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  color: #002147;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.05;
  font-size: clamp(26px, 3.2vw, 44px);
  margin: 0 0 18px;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.lp-section3__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
  padding-left: 0;
  max-width: 560px;
}

.lp-section3__item {
  border-left: 3px solid #002147;
  padding-left: 14px;
}

.lp-section3__item-title {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  color: #002147;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.15;
  margin-bottom: 4px;
}

.lp-section3__item-text {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  color: #002147;
  font-size: clamp(13px, 1.6vw, 17px);
  line-height: 1.25;
}

.lp-section3__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #4A90E2;
  color: #fff;
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: 9999px;
  padding: 14px 22px;
  font-size: clamp(14px, 1.8vw, 18px);
  margin-left: 0;
}

.lp-section3__media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lp-section3__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-section3__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right center;
}

.lp-section3__cta:hover {
  color: #fff;
}

@media (max-width: 767.98px) {
  .lp-section3 {
    padding: 32px 0 38px;
  }

  .lp-section3__col-text {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-section3__inner {
    max-width: 100%;
  }

  .lp-section3__body {
    padding-left: 0;
  }

  .lp-section3__cta {
    margin-left: 0;
  }

  .lp-feature-bar {
    padding: 18px 0;
  }

  .lp-feature-bar__inner {
    flex-direction: column;
  }

  .lp-feature-bar__item {
    justify-content: center;
    padding: 14px 16px;
    text-align: center;
  }

  .lp-feature-bar__text {
    font-size: 14px;
  }

  .lp-feature-bar__divider {
    width: 100%;
    height: 1px;
  }

  .lp-section3__cta {
    margin-left: auto;
    display: flex;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .lp-section3__col-text {
    display: flex;
    align-items: center;
  }

  .lp-section3__col-media {
    position: relative;
    display: flex;
    min-height: 520px;
  }

  .lp-section3__media {
    width: 100%;
    margin-right: 0;
    flex: 1 1 auto;
  }
}

@media (max-width: 767.98px) {
  .lp-hero__content {
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .lp-hero__left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-hero__meta {
    justify-content: center;
  }

  .lp-hero__place {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
  }

  .lp-hero__pin {
    color: #E21B1B;
  }

  .lp-hero__title {
    font-size: 28px;
  }
}

 .lp-fears {
   padding: 58px 0 66px;
   overflow-x: hidden;
   background: #fff;
   position: relative;
 }

 .lp-fears .container {
   position: relative;
   z-index: 1;
 }

 /* .lp-fears__card {
   background: #fff;
   border-radius: 0 0 0 70px;
   padding: 28px 26px;
   box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
 } */

 .lp-fears__card .row {
   --bs-gutter-x: 7rem;
 }
 
 .lp-fears__left {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .lp-fears__list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .lp-fears__item {
   width: 100%;
   border: 1px solid rgba(0, 0, 0, 0.12);
   background: #2F2F2F;
   color: #fff;
   border-radius: 6px;
   padding: 14px 16px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   text-transform: uppercase;
   font-weight: 800;
   letter-spacing: 0.4px;
   font-size: 14px;
   transition: background-color 180ms ease, transform 180ms ease;
 }

 .lp-fears__item span {
   text-align: left;
 }
 
 .lp-fears__item:hover {
   background: #363636;
 }
 
 .lp-fears__item.is-active {
   background: #3F3F3F;
 }
 
 .lp-fears__item i {
   font-size: 18px;
   transition: transform 180ms ease;
 }
 
 .lp-fears__item.is-active i {
   transform: rotate(180deg);
 }
 
 .lp-fears__plane img {
   width: 100%;
   height: auto;
   display: block;
   max-width: 520px;
   margin-left: 0;
 }
 
 .lp-fears__right {
   padding-left: 0;
 }
 
 .lp-fears__panels {
   position: relative;
 }
 
 .lp-fears__panel {
   opacity: 0;
   transform: translateY(8px);
   transition: opacity 240ms ease, transform 240ms ease;
 }
 
 .lp-fears__panel.is-active {
   opacity: 1;
   transform: translateY(0);
 }
 
 .lp-fears__title {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 900;
   color: #002147;
   text-transform: uppercase;
   letter-spacing: 0.3px;
   line-height: 1.05;
   font-size: clamp(28px, 3.6vw, 46px);
   margin: 0 0 16px;
 }
 
 .lp-fears__text {
   color: #002147;
   font-weight: 600;
   font-size: clamp(14px, 1.6vw, 18px);
   line-height: 1.35;
   margin: 0 0 18px;
 }

 .lp-fears__text strong {
   font-weight: 900;
 }
 
 .lp-fears__benefits {
   margin: 0 0 18px;
   padding-left: 0;
   color: #002147;
   font-weight: 600;
   font-size: clamp(13px, 1.6vw, 17px);
   line-height: 1.35;
   list-style: none;
 }

 .lp-fears__benefits li {
   margin-bottom: 10px;
   position: relative;
   padding-left: 14px;
 }

 .lp-fears__benefits li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 2px;
   bottom: 2px;
   width: 3px;
   border-radius: 9999px;
   background: #002147;
 }
 
 .lp-fears__cta {
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   background: #4A90E2;
   color: #fff;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.4px;
   border-radius: 9999px;
   padding: 12px 24px;
   font-size: 15px;
 }
 
 .lp-fears__cta:hover {
   color: #fff;
 }
 
 @media (max-width: 767.98px) {
   .lp-fears {
     padding: 34px 0 40px;
   }

   .lp-fears::before {
     left: -230px;
     bottom: -230px;
     width: 460px;
     height: 460px;
     border-radius: 0 460px 0 0;
   }

   .lp-fears__card {
     border-radius: 0 0 0 46px;
     padding: 22px 18px;
   }

   .lp-fears__card .row {
     --bs-gutter-x: 1.5rem;
   }
 
   .lp-fears__plane img {
     margin-left: auto;
     margin-right: auto;
   }
 
   .lp-fears__title {
     text-align: left;
   }
 }

 .lp-piramide {
   background: #0A2440;
   padding: 74px 0 78px;
 }

 .lp-piramide__inner {
   position: relative;
 }

 .lp-piramide__card {
   background: #fff;
   border-radius: 24px;
   padding: 142px 32px 34px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
   position: relative;
   z-index: 1;
 }

 .lp-piramide__card::before {
   content: '';
   position: absolute;
   left: 50%;
   top: -73px;
   transform: translateX(-50%);
   width: 360px;
   height: 170px;
   background: #0A2440;
   border-radius: 0 0 360px 360px;
   z-index: 2;
 }

 .lp-piramide__piramide {
   position: absolute;
   left: 50%;
   top: 0;
   transform: translate(-50%, -72%);
   width: min(240px, 55vw);
   z-index: 3;
 }

 .lp-piramide__piramide img {
   width: 100%;
   height: auto;
   display: block;
 }

 .lp-piramide__side-stack {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .lp-piramide__btn {
   display: flex;
   align-items: center;
   gap: 10px;
   border-radius: 8px;
   padding: 10px 12px;
   color: #fff;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.4px;
   font-size: 12px;
   line-height: 1.05;
   justify-content: center;
   text-align: center;
 }

 .lp-piramide__btn-icon {
   width: 22px;
   height: 22px;
   object-fit: contain;
   flex: 0 0 auto;
 }

 .lp-piramide__btn--navy {
   background: #0A2440;
 }

 .lp-piramide__btn--black {
   background: #1F1F1F;
 }

 .lp-piramide__btn--light-blue {
   background: #4A90E2;
 }

 .lp-piramide__btn--red {
   background: #D01C1C;
 }

 .lp-piramide__content {
   text-align: center;
 }

 .lp-piramide__title {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.4px;
   line-height: 1.03;
   color: #002147;
   font-size: clamp(28px, 3.4vw, 44px);
   margin: 20px 0px;
 }

 .lp-piramide__text {
   max-width: 620px;
   margin: 0 auto 18px;
   color: #002147;
   font-weight: 600;
   font-size: clamp(13px, 1.5vw, 16px);
   line-height: 1.35;
 }

 .lp-piramide__cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   background: #4A90E2;
   color: #fff;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.4px;
   border-radius: 9999px;
   padding: 12px 24px;
   font-size: 14px;
   min-width: min(520px, 100%);
   transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
 }

 .lp-piramide__cta:hover {
   color: #fff;
   background: #3578c8;
   transform: translateY(-1px);
   box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
 }

 .lp-piramide__cta:active {
   transform: translateY(0);
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
 }

 @media (max-width: 991.98px) {
   .lp-piramide {
     padding: 125px 0 66px;
   }

   .lp-piramide__card {
     padding: 86px 18px 26px;
   }

   .lp-piramide__card::before {
     top: -64px;
     width: 300px;
     height: 150px;
     border-radius: 0 0 300px 300px;
   }

   .lp-piramide__side {
     order: 2;
     margin-top: 16px;
   }

   .lp-piramide__content {
     order: 1;
     margin-bottom: 18px;
   }

   .lp-piramide__card .row {
     --bs-gutter-y: 1rem;
   }

   .lp-piramide__side-stack {
     gap: 14px;
   }

   .lp-piramide__btn {
     width: 100%;
   }

   .lp-piramide__cta {
     width: 100%;
   }
 }

 .lp-metrics {
   background: #0A2440;
   padding: 30px 0;
 }

 .lp-metrics__grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 22px;
   align-items: center;
 }

 .lp-metrics__item {
   text-align: center;
   color: #fff;
 }

 .lp-metrics__value {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 900;
   font-size: clamp(34px, 4.2vw, 58px);
   line-height: 1;
   letter-spacing: 0.6px;
 }

 .lp-metrics__label {
   margin-top: 6px;
   font-weight: 800;
   font-size: 14px;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   opacity: 0.95;
 }

 @media (max-width: 767.98px) {
   .lp-metrics {
     padding: 22px 0;
   }

   .lp-metrics__grid {
     grid-template-columns: 1fr;
     gap: 16px;
   }

   .lp-metrics__label {
     font-size: 13px;
   }
 }

 .lp-living {
   padding: 58px 0;
    background: #0A2440;
 }

 .lp-living__left {
   height: 100%;
   border-radius: 16px;
   padding: 34px 28px 24px;
   color: #fff;
   display: flex;
   flex-direction: column;
 }

 .lp-living__title {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 900;
   letter-spacing: 0.6px;
   text-transform: uppercase;
   font-size: clamp(30px, 3.6vw, 46px);
   line-height: 1.02;
   margin: 0 0 6px;
 }

 .lp-living__subtitle {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 0.4px;
   font-size: clamp(14px, 1.6vw, 18px);
   line-height: 1.1;
   opacity: 0.95;
   margin: 20px 0px;
 }

 .lp-living__text {
   font-weight: normal;
   font-size: clamp(14px, 1.6vw, 18px);
   line-height: 1.35;
   margin: 0 0 18px;
   max-width: 520px;
 }

 .lp-living__cta {
   width: fit-content;
   margin: 30px 0px;
 }

 .lp-living__image {
   margin-top: auto;
   display: flex;
   align-items: flex-end;
   justify-content: center;
   padding-top: 12px;
 }

 .lp-living__image img {
   width: min(520px, 100%);
   height: auto;
   display: block;
 }

 .lp-living__cards {
   height: 100%;
   display: grid;
   grid-template-columns: 1fr;
   gap: 12px;
 }

 .lp-living__card {
   border-radius: 10px;
   padding: 14px 16px;
   display: grid;
   grid-template-columns: 34px 1fr;
   gap: 12px;
   align-items: center;
   box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
 }

 .lp-living__card--white {
   background: #fff;
   color: #0A2440;
 }

 .lp-living__card--blue {
   background: #4A90E2;
   color: #fff;
 }

 .lp-living__card-icon {
   width: 34px;
   height: 34px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .lp-living__card-icon img {
   width: 22px;
   height: 22px;
   object-fit: contain;
   display: block;
 }

 .lp-living__card--blue .lp-living__card-icon img {
   filter: brightness(0) invert(1);
 }

 .lp-living__card-icon i {
   font-size: 18px;
   line-height: 1;
 }

 .lp-living__card-title {
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.3px;
   font-size: 20px;
   line-height: 1.1;
 }

 .lp-living__card-text {
   font-weight: 600;
   font-size: 16px;
   line-height: 1.2;
   margin-top: 3px;
 }

 @media (max-width: 767.98px) {
   .lp-living {
     padding: 34px 0;
   }

   .lp-living__left {
     padding: 24px 18px 18px;
   }

   .lp-living__cta {
     width: 100%;
   }

   .lp-living__image img {
     width: 100%;
   }
 }

 @media (min-width: 992px) {
   .lp-living__cards {
     padding-left: 10px;
   }
 }

 .lp-stories {
   position: relative;
   width: 100%;
   aspect-ratio: 4 / 3;
   background-image: url('/img/banners/banner-celular.png');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
 }

 .lp-stories__header {
   position: absolute;
   left: 0;
   right: 0;
   top: 46px;
   text-align: center;
   color: #fff;
   max-width: 980px;
   margin-left: auto;
   margin-right: auto;
   padding-left: 12px;
   padding-right: 12px;
   z-index: 5;
 }

 .lp-stories__slider {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   z-index: 2;
 }

 .lp-stories__track {
   position: relative;
   width: 100%;
   height: 100%;
 }

 .lp-stories__slide {
   display: block;
   text-decoration: none;
 }

 .lp-stories__slide img {
   width: 100%;
   height: auto;
   display: block;
 }

 @media (min-width: 768px) {
   .lp-stories__track {
     pointer-events: none;
   }

   .lp-stories__slide {
     pointer-events: auto;
     position: absolute;
     top: 62%;
     left: 50%;
     width: clamp(110px, 11vw, 160px);
     transform: translate(-50%, -50%);
     opacity: 0;
     transition: transform 650ms ease, opacity 650ms ease;
     filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.32));
   }

   .lp-stories__slide[data-slot="0"] {
     opacity: 0.85;
     transform: translate(calc(-50% - 380px), -50%) scale(0.92);
   }

   .lp-stories__slide[data-slot="1"] {
     opacity: 0.92;
     transform: translate(calc(-50% - 220px), -50%) scale(0.98);
   }

   .lp-stories__slide[data-slot="2"] {
     opacity: 1;
     z-index: 3;
     width: clamp(160px, 16vw, 240px);
     transform: translate(-50%, -50%) scale(1.02);
   }

   .lp-stories__slide[data-slot="3"] {
     opacity: 0.92;
     transform: translate(calc(-50% + 220px), -50%) scale(0.98);
   }

   .lp-stories__slide[data-slot="4"] {
     opacity: 0.85;
     transform: translate(calc(-50% + 380px), -50%) scale(0.92);
   }
 }

 .lp-stories__title {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   line-height: 1.05;
   margin: 0 0 10px;
   font-size: clamp(28px, 3.6vw, 52px);
 }

 .lp-stories__subtitle {
   margin: 0;
   font-weight: 500;
   font-size: clamp(14px, 1.7vw, 20px);
   line-height: 1.35;
   color: rgba(255, 255, 255, 0.95);
 }

 .lp-stories__subtitle strong {
   font-weight: 900;
   color: #fff;
 }

 @media (max-width: 767.98px) {
   .lp-stories {
     aspect-ratio: auto;
     min-height: 560px;
     background-position: center top;
   }

   .lp-stories__header {
     top: 22px;
   }

   .lp-stories__slider {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 22px;
     top: auto;
     padding-left: 14px;
     padding-right: 14px;
   }

   .lp-stories__track {
     height: auto;
     display: flex;
     gap: 14px;
     overflow-x: auto;
     overflow-y: hidden;
     -webkit-overflow-scrolling: touch;
     scroll-snap-type: x mandatory;
     padding-bottom: 6px;
     padding-left: 6px;
     padding-right: 6px;
     scrollbar-width: none;
   }

   .lp-stories__track::-webkit-scrollbar {
     display: none;
   }

   .lp-stories__slide {
     flex: 0 0 auto;
     width: min(240px, 74vw);
     scroll-snap-align: center;
     filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.32));
   }

   .lp-stories__slide img {
     border-radius: 10px;
   }
 }

 .lp-team {
   padding: 64px 0 82px;
   background: #fff;
 }

 .lp-team__title {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   color: #0A2440;
   font-size: clamp(30px, 3.4vw, 48px);
   line-height: 1.05;
   margin: 0 0 14px;
 }

 .lp-team__title-accent {
   color: #4A90E2;
 }

 .lp-team__text {
   color: #0A2440;
   font-weight: 500;
   font-size: 20px;
   line-height: 1.35;
   max-width: 560px;
 }

 .lp-team__cta {
   margin-top: 12px;
 }

 .lp-team__media {
   display: flex;
   justify-content: center;
 }

 .lp-team__img {
   width: min(520px, 100%);
   height: auto;
   display: block;
 }

 .lp-awards {
   margin-top: -82px;
   margin-bottom: -82px;
   position: relative;
   z-index: 3;
 }

 .lp-awards__card {
  background: radial-gradient(120% 160% at 50% 0%, #3a3a3a 0%, #1F1F1F 55%, #141414 100%);
  border-radius: 16px;
  padding: 26px 18px 22px;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
 }

 .lp-awards__title {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   font-size: 35px;
   line-height: 1.1;
   margin: 0 0 6px;
   text-align: center;
 }

 .lp-awards__subtitle {
  margin: 0 auto 14px;
  text-align: center;
  max-width: 820px;
  font-size: 20px;
  line-height: 1.25;
  opacity: 0.95;
 }

 .lp-awards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  justify-items: center;
  margin-top: 10px;
 }

 .lp-awards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
 }

 .lp-awards__badge {
  width: 100%;
  max-width: 126px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
 }

 .lp-awards__year {
  margin-top: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.95;
 }

 .lp-awards__label {
  margin-top: 4px;
  /* font-weight: 700; */
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.92;
 }

 .lp-start {
  padding: 120px 0 70px;
  background: linear-gradient(rgba(10, 36, 64, 0.59), rgba(10, 36, 64, 0.744)), url('/img/banners/banner_form.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
 }

 .lp-start__title {
   font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   line-height: 1.05;
   color: #fff;
   font-size: clamp(30px, 3.2vw, 48px);
   margin: 0 0 10px;
 }
 
 .lp-start__title-accent {
  display: inline-block;
  color: #fff;
  background: #4A90E2;
  padding: 2px 10px;
  border-radius: 8px;
 }

 .lp-start__text {
   color: rgba(255, 255, 255, 0.92);
   /* font-weight: 600; */
   font-size: 22px;
   line-height: 1.25;
   margin: 0 0 18px;
 }

 .lp-start__mala img {
   width: min(520px, 100%);
   height: auto;
   display: block;
 }

 .lp-start__form-wrap {
   background: #fff;
   border-radius: 12px;
   padding: 18px;
   box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
 }

 .lp-vistos-hero {
  background: #00234b;
  padding: 80px 0;
 }

 .lp-vistos-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
 }

 .lp-vistos-hero__content {
  max-width: 980px;
 }

 .lp-vistos-hero__title {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
 }

 .lp-vistos-hero__subtitle {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  padding-left: 18px;
  border-left: 2px solid #fff;
  margin: 0;
 }

 .lp-vistos-green {
  background: #00234b;
  padding: 70px 0 90px;
 }

 .lp-vistos-temp {
  background: #00234b;
  padding: 70px 0 90px;
 }

 .lp-vistos-note {
  background: #00234b;
  padding: 50px 0 70px;
 }

 .lp-vistos-note__text {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
 }

 .lp-vistos-final {
  background: #00234b;
  padding: 90px 0 110px;
 }

 .lp-vistos-final__content {
  max-width: 520px;
 }

 .lp-vistos-final__title {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  font-size: 56px;
  line-height: 1.02;
  margin: 0 0 18px;
 }

 .lp-vistos-final__subtitle {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
 }

 .lp-vistos-green__title {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  font-size: 34px;
  margin: 0 0 40px;
  text-align: center;
 }

 .lp-vistos-green__item {
  padding: 40px 0;
 }

 .lp-vistos-green__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
 }

 .lp-vistos-green__item--reverse .lp-vistos-green__content {
  grid-column: 2;
 }

 .lp-vistos-green__item--reverse .lp-vistos-green__media {
  grid-column: 1;
 }

 .lp-vistos-green__item--reverse .lp-vistos-green__media {
  min-height: 0;
 }

 .lp-vistos-green__content {
  max-width: 560px;
 }

 .lp-vistos-green__visa {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 50px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 14px;
 }

 .lp-vistos-green__kicker {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 16px;
  max-width: 520px;
 }

 .lp-vistos-green__text {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  margin: 0 0 18px;
  max-width: 540px;
 }

 .lp-vistos-green__cta.lp-piramide__cta {
  min-width: 260px;
  padding: 12px 22px;
 }

 .lp-vistos-green__media {
  min-height: 230px;
 }

 .lp-vistos-green__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
 }

 .lp-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.9);
 }

 .lp-footer__top {
  padding: 44px 0 34px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
 }

 .lp-footer__logo {
  width: min(220px, 100%);
  height: auto;
  display: block;
 }

 .lp-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
 }

 .lp-footer__col-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
  margin-bottom: 10px;
  color: #fff;
 }

 .lp-footer__link {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 6px 0;
 }

 .lp-footer__link:hover {
  color: #fff;
 }

 .lp-footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
 }

 .lp-footer__social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
 }

 .lp-footer__social-link img {
  width: 22px;
  height: 22px;
  display: block;
 }

 .lp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
 }

 .lp-footer__bottom-inner {
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: center;
  text-align: center;
 }

 .lp-footer__copyright,
 .lp-footer__company {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
 }

 .lp-footer__legal {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
 }

 .lp-footer__legal:hover {
  color: #fff;
 }

 @media (max-width: 991.98px) {
  .lp-team {
    padding: 46px 0 64px;
  }

   .lp-awards {
    margin-top: -64px;
    margin-bottom: -64px;
  }

   .lp-awards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .lp-awards__badge {
    max-width: 116px;
  }
 
  .lp-start {
    padding: 100px 0 54px;
  }

  .lp-vistos-hero {
    padding: 64px 0;
  }

  .lp-vistos-hero__title {
    font-size: 44px;
  }

  .lp-vistos-hero__subtitle {
    font-size: 20px;
    padding-left: 14px;
  }

  .lp-vistos-green {
    padding: 56px 0 70px;
  }

  .lp-vistos-temp {
    padding: 56px 0 70px;
  }

  .lp-vistos-note {
    padding: 44px 0 58px;
  }

  .lp-vistos-note__text {
    font-size: 18px;
  }

  .lp-vistos-final {
    padding: 70px 0 86px;
  }

  .lp-vistos-final__title {
    font-size: 46px;
  }

  .lp-vistos-green__title {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .lp-vistos-green__item {
    padding: 34px 0;
  }

  .lp-vistos-green__grid {
    gap: 26px;
  }

  .lp-vistos-green__visa {
    font-size: 30px;
  }

  .lp-footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lp-footer__social {
    justify-content: flex-start;
  }

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

 @media (max-width: 767.98px) {
  .lp-team {
    padding: 38px 0 64px;
  }

   .lp-team__title {
     text-align: center;
   }

   .lp-team__text {
     text-align: left;
     margin-left: auto;
     margin-right: auto;
   }

   .lp-team__cta {
     display: flex;
     width: 100%;
   }

   .lp-awards__card {
    border-radius: 14px;
  }

  .lp-awards__badge {
    max-width: 104px;
  }
 
  .lp-start__form-wrap {
    padding: 14px;
  }

  .lp-vistos-hero {
    padding: 52px 0;
  }

  .lp-vistos-hero__title {
    font-size: 34px;
  }

  .lp-vistos-hero__subtitle {
    font-size: 16px;
  }

  .lp-vistos-green {
    padding: 44px 0 60px;
  }

  .lp-vistos-temp {
    padding: 44px 0 60px;
  }

  .lp-vistos-note {
    padding: 36px 0 48px;
  }

  .lp-vistos-note__text {
    font-size: 16px;
  }

  .lp-vistos-final {
    padding: 56px 0 70px;
  }

  .lp-vistos-final__content {
    max-width: none;
  }

  .lp-vistos-final__title {
    font-size: 38px;
  }

  .lp-vistos-final__subtitle {
    font-size: 16px;
  }

  .lp-vistos-green__title {
    font-size: 26px;
    margin-bottom: 26px;
  }

  .lp-vistos-green__item {
    padding: 34px 0;
  }

  .lp-vistos-green__kicker {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .lp-vistos-green__text {
    font-size: 15px;
    line-height: 1.5;
  }

  .lp-vistos-green__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .lp-vistos-green__item--reverse .lp-vistos-green__content,
  .lp-vistos-green__item--reverse .lp-vistos-green__media {
    grid-column: auto;
  }

  .lp-vistos-green__content {
    max-width: none;
  }

  .lp-vistos-green__media {
    display: none;
  }

  .lp-vistos-green__cta.lp-piramide__cta {
    min-width: 100%;
  }

  .lp-footer__top {
    padding: 34px 0 26px;
    text-align: center;
  }

  .lp-footer__nav {
    grid-template-columns: 1fr;
  }

  .lp-footer__brand {
    display: flex;
    justify-content: center;
  }

  .lp-footer__social {
    justify-content: center;
  }
 }
