/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/pages/_home.scss ***!
  \***********************************************************************************************************************/
@font-face {
  font-family: "Quickpen";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/Quickpen.2c0d8a73.otf) format("opentype");
}
.home-lp *, .home-lp *::before, .home-lp *::after {
  box-sizing: border-box;
}
.home-lp img {
  display: block;
}
.home-lp button {
  cursor: pointer;
}
.home-lp input {
  outline: none;
}
.home-lp {
  min-width: 1280px;
  margin: 0;
  font-family: "arboria", sans-serif;
}

.form-card {
  position: relative;
  width: 427px;
  flex-shrink: 0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 31, 17, 0.72);
  pointer-events: none;
}
.form-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-card__heading {
  font-weight: 700;
  font-size: 28px;
  color: #fdd6a4;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 317px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
}

.form-input {
  height: 50px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fdd6a4;
  border-radius: 5px;
  padding: 0 16px;
  font-family: "arboria", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(10, 10, 10, 0.85);
  transition: border-color 0.2s;
}
.form-input::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.form-input.is-invalid {
  border-color: #e55;
}

.form-feedback {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  display: none;
}
.form-feedback--success {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  display: block;
}
.form-feedback--error {
  background: rgba(239, 68, 68, 0.15);
  color: #b91c1c;
  display: block;
}

.btn-solicitar {
  position: relative;
  width: 100%;
  padding: 14px;
  border: 2px solid rgba(253, 214, 164, 0.09);
  border-radius: 10px;
  overflow: hidden;
  font-family: "arboria", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-solicitar:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-solicitar--dark {
  color: #fff;
  background: linear-gradient(90deg, rgba(40, 20, 2, 0.51) 0%, rgba(102, 102, 102, 0) 50%, rgba(60, 31, 17, 0.51) 100%), linear-gradient(90deg, rgb(172, 84, 19) 0%, rgb(172, 84, 19) 100%);
}
.btn-solicitar--light {
  color: #3c210a;
  background: #FDD6A4 linear-gradient(90deg, rgba(40, 20, 2, 0.39) 0%, rgba(102, 102, 102, 0) 50%, rgba(60, 31, 17, 0.39) 100%);
}

.form-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-terms input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fdd6a4;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 1px;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.15s;
}
.form-terms input[type=checkbox]:checked {
  background: #fdd6a4;
}
.form-terms input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #3c210a;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-terms p {
  font-weight: 400;
  font-size: 14px;
  color: #fdd6a4;
  line-height: 14px;
  letter-spacing: 0px;
  margin: 0;
}

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 93px;
  padding: 0 120px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.home-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.home-header__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-header__logo {
  height: 37px;
  width: auto;
}
.home-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.home-header__nav-link {
  font-weight: 500;
  font-size: 14px;
  color: #3c210a;
  text-decoration: none;
  letter-spacing: 0.35px;
  background: none;
  border: none;
  font-family: inherit;
}
.home-header__nav-link:hover {
  text-decoration: underline;
}
.home-header__cta {
  height: 44px;
  padding: 0 32px;
  background: #281402;
  color: #fff;
  font-family: "arboria", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
}
.home-header__logos {
  display: flex;
  align-items: center;
  gap: 27px;
}
.home-header__logo-partner {
  height: 25px;
  width: auto;
}
.home-header__logo-divider {
  width: 1px;
  height: 19px;
  background: #d1d5dc;
  flex-shrink: 0;
}
.home-header__logo-rem {
  height: 30px;
  width: auto;
}
.home-header__hamburger {
  display: none;
}

.home-header__mobile-nav {
  display: none;
}

.home-hero {
  position: relative;
  height: 889px;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-hero__bg-img1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 106%;
  object-fit: cover;
}
.home-hero__bg-img2 {
  position: absolute;
  left: -28%;
  top: 8%;
  width: 146%;
  height: 134%;
  object-fit: cover;
  opacity: 0.6;
}
.home-hero__bg-overlay1 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.02);
}
.home-hero__bg-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.38) 11%, rgba(0, 0, 0, 0) 58%);
  mix-blend-mode: multiply;
}
.home-hero__bg-overlay3 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 40%);
}
.home-hero__bg-overlay4 {
  position: absolute;
  inset: 0;
  background: rgba(60, 33, 10, 0.3);
  mix-blend-mode: multiply;
}
.home-hero__content {
  position: absolute;
  top: 192px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  gap: 130px;
  width: max-content;
}
.home-hero__text {
  width: 654px;
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.home-hero__tag {
  display: inline-flex;
  width: fit-content;
  background: rgba(0, 0, 0, 0.16);
  border: 1.125px solid rgba(255, 255, 255, 0.2);
  padding: 9px;
}
.home-hero__tag span {
  font-weight: 500;
  font-size: 13.5px;
  color: #fdd6a4;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}
.home-hero__doppio-logo {
  height: 62px;
  width: 249px;
}
.home-hero__headline {
  display: flex;
  flex-direction: column;
  width: 546px;
}
.home-hero__headline-line {
  display: block;
  font-weight: 400;
  font-size: 53px;
  color: #fff;
  letter-spacing: 6.66px;
  text-transform: uppercase;
  line-height: 1.25;
}
.home-hero__headline-script {
  font-family: "Quickpen", cursive;
  font-size: 82px;
  color: #fdd6a4;
  line-height: 77px;
  padding-left: 10px;
  pointer-events: none;
}
.home-hero__location {
  font-weight: 400;
  font-size: 21px;
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.home-positioning {
  position: relative;
  padding: 40px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.home-positioning__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-positioning__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-positioning__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.59) 100%);
}
.home-positioning__title {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-weight: 400;
  font-size: 31px;
  color: #fff;
  letter-spacing: 5.15px;
  text-transform: uppercase;
  text-align: center;
  line-height: 50px;
}
.home-positioning__title .script {
  font-family: "Quickpen", cursive;
  font-size: 52px;
  color: #fdd6a4;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
}
.home-positioning__title--mobile {
  display: none;
}
.home-positioning__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 171px;
  padding-right: 217px;
  width: 100%;
}
.home-positioning__render {
  flex-shrink: 0;
}
.home-positioning__render img {
  display: block;
  width: 614px;
  height: 464px;
  object-fit: cover;
}
.home-positioning__specs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.home-positioning__cta {
  position: relative;
}

.spec-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.spec-group__type {
  font-weight: 500;
  font-size: 25.5px;
  color: #fff;
  line-height: 1.86;
  white-space: nowrap;
}
.spec-group__area {
  font-weight: 500;
  font-size: 49.7px;
  color: #fff;
  line-height: 22px;
  white-space: nowrap;
}
.spec-group__detail {
  font-family: "Quickpen", cursive;
  font-size: 45px;
  color: #fdd6a4;
  line-height: 0.9;
  white-space: pre-line;
}

.home-incorporadoras {
  position: relative;
  padding: 85px 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  overflow: hidden;
}
.home-incorporadoras__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-incorporadoras__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
}
.home-incorporadoras__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-incorporadoras__heading {
  position: relative;
  text-align: center;
  max-width: 910px;
}
.home-incorporadoras__heading h2 {
  font-weight: 500;
  font-size: 48px;
  color: #3c210a;
  line-height: 1.25;
  margin-bottom: 32px;
}
.home-incorporadoras__heading h2 .script {
  font-family: "Quickpen", cursive;
  font-size: 58px;
  font-weight: 400;
  color: #3C210A;
}
.home-incorporadoras__heading p {
  font-weight: 400;
  font-size: 20px;
  color: #364153;
  line-height: 32.5px;
}
.home-incorporadoras__video-wrap {
  position: relative;
  width: 981px;
  height: 552px;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid rgba(253, 214, 164, 0.95);
  flex-shrink: 0;
  cursor: pointer;
}
.home-incorporadoras__video-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-incorporadoras__logos-card {
  position: relative;
  background: rgba(254, 254, 254, 0.4);
  border: 3.26px solid rgba(253, 214, 164, 0.95);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 90px;
  padding: 23px 49px;
}
.home-incorporadoras__logos-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 442px;
}
.home-incorporadoras__logos-col img {
  height: 26px;
  width: auto;
}
.home-incorporadoras__logos-divider-h {
  width: 52px;
  height: 3.26px;
  background: #3c210a;
  flex-shrink: 0;
}
.home-incorporadoras__logos-text {
  font-weight: 400;
  font-size: 18px;
  color: #364153;
  text-align: center;
  line-height: 1.6;
}
.home-incorporadoras__logos-text strong {
  font-weight: 500;
}
.home-incorporadoras__logos-vdivider {
  width: 1px;
  align-self: stretch;
  min-height: 363px;
  background: rgba(60, 33, 10, 0.15);
  flex-shrink: 0;
}
.home-incorporadoras__partnership {
  position: relative;
  text-align: center;
  max-width: 970px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: center;
}
.home-incorporadoras__partnership p {
  font-weight: 400;
  font-size: 20px;
  color: #1e2939;
  line-height: 1.5;
}
.home-incorporadoras__partnership p strong {
  font-weight: 500;
}
.home-incorporadoras__partnership p b {
  font-weight: 700;
}
.home-incorporadoras__partnership .btn-solicitar {
  max-width: 306px;
}

.home-cta {
  position: relative;
  height: 648px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-cta__bg-img {
  position: absolute;
  inset: 0;
}
.home-cta__bg-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-cta__bg-overlays, .home-cta__bg-color, .home-cta__bg-left, .home-cta__bg-warm {
  display: none;
}
.home-cta__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 182px;
}
.home-cta__text {
  display: flex;
  flex-direction: column;
  gap: 39px;
  text-align: center;
}
.home-cta__title {
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 9px;
  text-transform: uppercase;
  color: #3c210a;
  line-height: 1.33;
  margin: 0;
}
.home-cta__title .script {
  display: block;
  font-family: "Quickpen", cursive;
  font-size: 64px;
  color: #000;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}
.home-cta__subtitle {
  font-weight: 400;
  font-size: 24px;
  color: #3c210a;
  line-height: 32px;
  max-width: 480px;
  margin: 0;
}
.home-cta__subtitle strong {
  font-weight: 500;
}

.home-footer {
  background: #281402;
  padding: 50px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.home-footer__top {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: space-between;
}
.home-footer__col h4 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-footer__col p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.home-footer__logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.home-footer__logos img {
  height: 25px;
  width: auto;
}
.home-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  margin-top: 8px;
}
.home-footer__social img {
  width: 20px;
  height: 20px;
}
.home-footer__social a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.home-footer__divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home-footer__legal {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 802px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
}
.home-footer__copy {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.home-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #3c210a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.home-toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
  .home-lp {
    min-width: 0;
  }
  .home-header {
    padding: 0 32px;
  }
  .home-header__logos {
    display: none;
  }
  .home-header__nav {
    gap: 20px;
  }
  .home-header__hamburger {
    display: none;
  }
  .home-header__mobile-nav {
    display: none;
  }
  .home-hero {
    height: auto;
    padding-bottom: 60px;
  }
  .home-hero__content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    width: 100%;
    padding: 120px 40px 0;
    box-sizing: border-box;
  }
  .home-hero__text {
    width: 100%;
  }
  .home-hero__headline {
    width: 100%;
  }
  .home-hero__headline-line {
    font-size: 38px;
    letter-spacing: 4px;
  }
  .home-hero__headline-script {
    font-size: 60px;
    line-height: 65px;
  }
  .home-hero__location {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .form-card {
    width: 100%;
  }
  .home-positioning {
    padding: 40px 40px;
  }
  .home-positioning__title {
    font-size: 22px;
    letter-spacing: 3px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-positioning__title .script {
    font-size: 40px;
  }
  .home-positioning__body {
    flex-direction: column;
    gap: 40px;
    padding-right: 0;
  }
  .home-positioning__render img {
    width: 100%;
    height: auto;
  }
  .home-incorporadoras {
    padding: 60px 40px;
    gap: 48px;
  }
  .home-incorporadoras__heading h2 {
    font-size: 36px;
    display: flex;
    flex-direction: column;
  }
  .home-incorporadoras__heading h2 .script {
    font-size: 44px;
  }
  .home-incorporadoras__heading p {
    font-size: 18px;
  }
  .home-incorporadoras__video-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .home-incorporadoras__logos-card {
    flex-direction: column;
    gap: 32px;
    padding: 24px 32px;
    align-items: center;
  }
  .home-incorporadoras__logos-vdivider {
    display: none;
  }
  .home-incorporadoras__logos-col {
    max-width: 100%;
    width: 100%;
    align-items: center;
  }
  .home-incorporadoras__logos-divider-h {
    align-self: center;
  }
  .home-cta {
    height: auto;
    padding: 60px 40px;
  }
  .home-cta__content {
    flex-direction: column;
    gap: 40px;
    padding-left: 0;
    align-items: center;
    width: 100%;
  }
  .home-cta__text {
    text-align: center;
    max-width: 560px;
  }
  .home-cta__title {
    font-size: 26px;
    letter-spacing: 5px;
  }
  .home-cta__title .script {
    font-size: 52px;
  }
  .home-cta__subtitle {
    font-size: 20px;
    max-width: 100%;
  }
  .home-footer {
    padding: 40px 40px;
  }
  .home-footer__top {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .home-header {
    height: 64px;
    padding: 0 20px;
  }
  .home-header__nav {
    display: none;
  }
  .home-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .home-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #281402;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
  }
  .home-header.is-open .home-header__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .home-header.is-open .home-header__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .home-header.is-open .home-header__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .home-header__mobile-nav {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3f4f6;
    z-index: 199;
    padding: 24px 20px 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .home-header__mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .home-header__mobile-nav .home-header__nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #3c210a;
    text-decoration: none;
    padding: 4px 0;
  }
  .home-header__mobile-nav .home-header__cta {
    margin-top: 8px;
    height: 48px;
    padding: 0 32px;
    background: #281402;
    color: #fff;
    font-family: "arboria", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
  }
  .home-header__mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .home-hero__content {
    padding: 100px 24px 0;
    gap: 32px;
  }
  .home-hero__text {
    align-items: center;
    text-align: center;
  }
  .home-hero__headline-line {
    font-size: 30px;
    letter-spacing: 3px;
  }
  .home-hero__headline-script {
    font-size: 50px;
    line-height: 60px;
  }
  .home-hero__location {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .form-card {
    padding: 28px 20px;
  }
  .form-card__heading {
    font-size: 22px;
  }
  .home-positioning {
    padding: 32px 24px;
  }
  .home-positioning__title--desktop {
    display: none;
  }
  .home-positioning__title--mobile {
    display: flex;
    font-size: 18px;
    letter-spacing: 0;
    gap: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .home-positioning__title--mobile .script {
    font-size: 32px;
  }
  .spec-group {
    text-align: left;
    align-items: flex-start;
  }
  .spec-group__type {
    font-size: 18px;
    margin: 0 auto;
  }
  .spec-group__area {
    font-size: 34px;
  }
  .spec-group__detail {
    font-size: 32px;
  }
  .home-incorporadoras {
    padding: 40px 24px;
    gap: 36px;
  }
  .home-incorporadoras__heading h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .home-incorporadoras__heading h2 .script {
    font-size: 36px;
  }
  .home-incorporadoras__heading p {
    font-size: 16px;
    line-height: 24px;
  }
  .home-incorporadoras__logos-card {
    padding: 0;
    gap: 24px;
    background: none;
    border: none;
  }
  .home-incorporadoras__logos-col {
    background: rgba(254, 254, 254, 0.4);
    border: 3.26px solid rgba(253, 214, 164, 0.95);
    border-radius: 12px;
    padding: 24px 20px;
  }
  .home-incorporadoras__logos-vdivider {
    display: block;
    width: 100%;
    min-height: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(60, 33, 10, 0.15) 20%, rgba(60, 33, 10, 0.15) 80%, transparent);
    align-self: center;
  }
  .home-incorporadoras__logos-text {
    font-size: 15px;
  }
  .home-incorporadoras__partnership {
    text-align: center;
  }
  .home-incorporadoras__partnership p {
    font-size: 16px;
  }
  .home-cta {
    padding: 48px 24px;
  }
  .home-cta__text {
    text-align: center;
  }
  .home-cta__title {
    font-size: 22px;
    letter-spacing: 4px;
  }
  .home-cta__title .script {
    font-size: 44px;
  }
  .home-cta__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .home-footer {
    padding: 40px 24px;
    gap: 32px;
  }
  .home-footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .home-footer__col {
    width: 100%;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .home-footer__col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .home-footer__logos {
    justify-content: center;
  }
  .home-footer__social {
    justify-content: center;
  }
  .home-footer__legal {
    padding-top: 32px;
  }
}
