:root {
  --font-main: 'Poppins', sans-serif;
  --green: #143f45;
  --green-dark: #0f353a;
  --text-dark: #123f45;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 64px;
    height: 64px;

    border-radius: 50%;
    background: #25D366;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    z-index: 999;
    transition: .25s;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    display: block;
}


/* mobile nav*/
.mobile-menu-btn {
  display: none;
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 80;
    width: 46px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    display: block;
    width: 46px;
    height: 4px;
    background: #ffffff;
    border-radius: 4px;
  }
}
/* HEADER */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 50px clamp(40px, 6vw, 110px) 0;
}

.main-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: clamp(35px, 5vw, 80px);
}

.nav-group {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 78px);
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-group a {
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0,0,0,.18);
  transition: opacity .25s ease;
}

.nav-group a:hover,
.nav-group a.active {
  font-weight: 700;
}

.brand-logo {
  width: clamp(150px, 11vw, 205px);
  display: block;
}

/* HERO */

.hero-slider,
.heroSwiper,
.hero-slide {
  width: 100%;
  height: 100vh;
  min-height: 760px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.18) 0%,
      rgba(255,255,255,.04) 38%,
      rgba(255,255,255,0) 72%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(48vw, 690px);
  padding-left: clamp(52px, 7vw, 118px);
  padding-top: clamp(215px, 23vh, 280px);
}

.hero-content h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(44px, 4.3vw, 71px);
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: -0.055em;
  text-shadow: 0 3px 8px rgba(255,255,255,.15);
}

.hero-content h1 strong {
  font-weight: 700;
}

.hero-price {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--green);
  line-height: 1;
}

.hero-price em {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 3vw, 48px);
  font-style: italic;
  font-weight: 400;
}

.hero-price span {
  font-size: clamp(34px, 3.2vw, 51px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn {
  min-width: 225px;
  height: 63px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 16px 0 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all .25s ease;
}

.btn-primary {
  background: var(--green);
  border: 1px solid var(--green);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary {
  background: rgba(255,255,255,.12);
  border: 1px solid var(--green);
  color: #071f22;
  backdrop-filter: blur(2px);
}

.btn-secondary:hover {
  background: var(--green);
  color: #ffffff;
}

/* SWIPER */

.hero-pagination {
  bottom: 28px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #ffffff;
  opacity: .55;
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: clamp(24px, 6vw, 90px);
  bottom: 36px;
  z-index: 80;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #21ba19;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
}

.whatsapp-float span {
  font-size: 32px;
  line-height: 1;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .site-header {
    padding-inline: 28px;
  }

  .nav-group {
    gap: 28px;
  }

  .hero-content {
    width: 55vw;
  }

  .hero-content h1 {
    font-size: clamp(56px, 7vw, 78px);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 24px;
  }

  .main-nav {
    display: flex;
    justify-content: center;
  }

  .nav-group {
    display: none;
  }

  .brand-logo {
    width: 150px;
  }

  .hero-slider,
  .heroSwiper,
  .hero-slide {
    height: 100svh;
    min-height: 650px;
  }

  .hero-slide {
    background-position: 68% bottom;
  }

  .hero-slide::before {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.18) 0%,
        rgba(255,255,255,.2) 24%,
        rgba(255,255,255,.55) 58%,
        rgba(255,255,255,.72) 100%
      );
  }

  .hero-content {
    width: 100%;
    max-width: 520px;
    padding: 0 24px 105px;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .hero-content h1 {
    font-size: clamp(46px, 12vw, 70px);
    line-height: .98;
  }

  .hero-price {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .hero-actions {
    margin-top: 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    height: 56px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 20px;
    bottom: 22px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 135px;
  }

  .hero-slider,
  .heroSwiper,
  .hero-slide {
    min-height: 620px;
  }

  .hero-slide {
    background-position: 72% bottom;
  }

  .hero-content {
    padding-inline: 20px;
    padding-bottom: 92px;
  }

  .hero-content h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-price em,
  .hero-price span {
    font-size: clamp(28px, 8vw, 38px);
  }
}


/* TU NUEVO HOGAR */

.tu-nuevo-hogar {
  --block2-bottom: clamp(115px, 13vw, 165px);

  position: relative;
  min-height: 700px;
  background-image: url('../img/block2bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}


	
	
.tu-nuevo-hogar-inner {
  position: relative;
  min-height: 820px;
  padding: clamp(80px, 9vw, 135px) clamp(32px, 6vw, 100px);
}

.tu-nuevo-hogar-content {
  max-width: 690px;
  color: #ffffff;
}

.tu-nuevo-hogar-title {
  margin: 0;
  font-size: clamp(25px, 2.8vw, 44px);
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.tu-nuevo-hogar-title em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.tu-nuevo-hogar-title strong {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tu-nuevo-hogar-subtitle {
  margin: 34px 0 0;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.25;
  font-weight: 700;
}

.tu-nuevo-hogar .btn-light {
  position: absolute;
  left: clamp(32px, 6vw, 100px);
   bottom: calc(var(--block2-bottom) + 35px);
  background: #f4fbff;
  border: 1px solid #f4fbff;
  color: #06252a;
}

.tu-nuevo-hogar .btn-light:hover {
  background: transparent;
  color: #ffffff;
}

.modelos-card {
  position: absolute;
  right: clamp(32px, 5vw, 82px);
  bottom: var(--block2-bottom);
  width: min(420px, 32vw);
  padding: 26px 34px;
  background: #f1f3f1;
  color: var(--green);
  border-radius: 0 18px 0 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.modelos-card h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.1;
  font-weight: 700;
}

.modelos-card p {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.1;
  font-weight: 400;
}

.modelos-card p em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}
/*#################################################################*/
/*                      RESPONSIVE BLOQUE 2                       */
/*#################################################################*/

@media (max-width: 900px) {
  .tu-nuevo-hogar,
  .tu-nuevo-hogar-inner {
    min-height: 720px;
  }
  

  .tu-nuevo-hogar {
    background-position: top center;
  }

  .tu-nuevo-hogar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.08) 0%,
      rgba(0,0,0,.22) 35%,
      rgba(0,0,0,.70) 100%
    );
    z-index: 1;
  }

  .tu-nuevo-hogar-inner {
    position: relative;
    z-index: 2;
    padding: 90px 24px 42px;
    display: flex;
    flex-direction: column;
    justify-content: top;
  }

  .tu-nuevo-hogar-content {
    max-width: 100%;
  }

  .tu-nuevo-hogar-title {
    font-size: clamp(26px, 6.75vw, 39px);
  }

  .tu-nuevo-hogar-subtitle {
    margin: 28px 0 26px;
    font-size: clamp(20px, 5vw, 28px);
  }

  .tu-nuevo-hogar .btn-light {
    position: static;
    width: 100%;
  }

  .modelos-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 50%;
    margin-top: 28px;
	margin-left:auto;
    padding: 22px 24px;
  }
}

@media (max-width: 480px) {
  .tu-nuevo-hogar,
  .tu-nuevo-hogar-inner {
    min-height: 680px;
  }

  .tu-nuevo-hogar {
    background-position: 62% center;
  }

  .tu-nuevo-hogar-title {
    line-height: 1.16;
  }
}


/* APROVECHA ENGANCHE */

.aprovecha-enganche {
  position: relative;
  min-height: 820px;
  background-image: url('../img/aprovecha.jpg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.aprovecha-enganche::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.0);
  z-index: 1;
}

.aprovecha-content {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(120px, 13vw, 190px) 24px 0;
  text-align: center;
}

.aprovecha-content h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.aprovecha-content h2 strong {
  font-weight: 700;
  letter-spacing: -0.045em;
}

.aprovecha-content h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
/*############################################################################*/
/*                       RESPONSIVE APROVECHA                                 */
/*############################################################################*/

@media (max-width: 900px) {
  .aprovecha-enganche,
  .aprovecha-content {
    min-height: 620px;
  }

  .aprovecha-enganche {
    background-position: 48% center;
  }

  .aprovecha-content {
    padding-top: 95px;
  }

  .aprovecha-content h2 {
    font-size: clamp(30px, 7vw, 46px);
  }
}

@media (max-width: 480px) {
  .aprovecha-enganche,
  .aprovecha-content {
    min-height: 560px;
  }

  .aprovecha-enganche {
    background-position: 48% center;
  }

  .aprovecha-content {
    padding-top: 75px;
  }
}


/*############################################################################*/
/*                              QUIERES VIVIR                                 */
/*############################################################################*/ 
.quieres-vivir {
  position: relative;
  min-height: 880px;
  background-image: url('../img/quieres.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

.quieres-vivir::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 66, 82, .18);
  z-index: 1;
}

.quieres-vivir-inner {
  position: relative;
  z-index: 2;
  min-height: 880px;
  padding: clamp(90px, 9vw, 140px) clamp(32px, 6vw, 100px);
  display: grid;
  grid-template-columns: minmax(360px, 43%) minmax(480px, 1fr);
  gap: clamp(55px, 7vw, 110px);
  align-items: start;
}

.quieres-info {
  color: #ffffff;
  padding-top: 20px;
}

.quieres-info h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.quieres-info p {
  margin: 0 0 48px;
  font-size: clamp(30px, 3vw, 47px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.quieres-asesor {
  margin-bottom: 28px;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.35;
}

.quieres-asesor strong {
  font-weight: 700;
}

.quieres-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-channel {
  min-width: 230px;
  height: 58px;
  padding: 0 24px;
  background: #ffffff;
  color: #06252a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 0 10px 0 10px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

.contact-channel i {
  font-size: 27px;
}

.contact-channel .fa-whatsapp {
  color: #0fbd22;
}

.contact-channel .fa-video {
  color: #2e91ff;
}

/* FORM */

.contact-form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(42px, 4.5vw, 68px) clamp(38px, 5vw, 70px);
  color: var(--green);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
    max-width: 800px;
    margin-left: auto;
}


.contact-form-card h3 {
  margin: 0 0 48px;
  font-size: clamp(19px, 1.72vw, 27px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.contact-form-card h3 strong {
  font-weight: 700;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.contact-form-card label {
  display: block;
  color: var(--green);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.contact-form-card input {
  width: 100%;
  height: 34px;
  margin-top: 10px;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.65);
  outline: none;
  background: transparent;
  color: #06252a;
  font-family: var(--font-main);
  font-size: 16px;
}

.contact-form-card input:focus {
  border-bottom-color: var(--green);
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.form-submit .btn {
  min-width: 145px;
  height: 58px;
  border-radius: 0 10px 0 10px;
  cursor: pointer;
  font-family: var(--font-main);
}


/*############################################################################*/
/*                    RESPONSIVE QUIERES VIVIR                                */
/*############################################################################*/

@media (max-width: 980px) {
  .quieres-vivir,
  .quieres-vivir-inner {
    min-height: auto;
  }

  .quieres-vivir {
    background-position: 42% bottom;
  }

  .quieres-vivir::before {
    background: rgba(12, 66, 82, .35);
  }

  .quieres-vivir-inner {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 42px;
  }

  .quieres-info {
    padding-top: 0;
  }

  .quieres-info p {
    margin-bottom: 34px;
  }

  .contact-form-card {
	  margin:0;
    padding: 36px 24px;
  }
}

@media (max-width: 560px) {
  .quieres-actions {
    flex-direction: column;
  }

  .contact-channel {
    width: 100%;
    min-width: 0;
  }

  .contact-form-card h3 br {
    display: none;
  }

  .form-submit .btn {
    width: 100%;
  }
}




/*##############*/
/* UN PROYECTO  */
/*############# */

.un-proyecto {
  position: relative;
  min-height: 950px;
  background-image: url('../img/unproyecto.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.un-proyecto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  z-index: 1;
}

.un-proyecto-content {
  position: relative;
  z-index: 2;
  min-height: 950px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(180px, 17vw, 260px) 24px 0;
  text-align: center;
}

.un-proyecto-content h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(38px, 4.2vw, 66px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.un-proyecto-content h2 strong {
  font-weight: 700;
}

.un-proyecto-content h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

/* RESPONSIVE UN PROYECTO */

@media (max-width: 900px) {
  .un-proyecto,
  .un-proyecto-content {
    min-height: 620px;
  }

  .un-proyecto {
    background-position: 52% center;
  }

  .un-proyecto-content {
    padding-top: 120px;
  }

  .un-proyecto-content h2 {
    font-size: clamp(32px, 7vw, 48px);
  }
}

@media (max-width: 480px) {
  .un-proyecto,
  .un-proyecto-content {
    min-height: 560px;
  }

  .un-proyecto-content {
    padding-top: 90px;
  }

  .un-proyecto-content h2 {
    line-height: 1.18;
  }
}

/*ICONS*/
.amenidades-list {
    margin: 55px 0 0;
    padding: 0;
    list-style: none;
}

.amenidades-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.2;
}

.amenidades-list li img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.amenidades-list li span {
    display: block;
}



/* #################################AMENIDADES############################################# */

.amenidades {
    position: relative;
    background-image: url('../img/bgamen.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.amenidades-inner {
    max-width: 1600px;
    margin: 0 auto;
    min-height: 860px;
    padding: 90px 60px;
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;
    gap: 30px;
}

.amenidades-content {
    color: #ffffff;
}

.amenidades-pretitle {
    font-size: 18px;
    margin-bottom: 18px;
}

.amenidades-content h2 {
    margin: 0;
    font-size: clamp(34px, 3.2vw, 54px);
    line-height: 1.15;
    font-weight: 400;
}

.amenidades-content h2 strong {
    font-weight: 700;
}

.amenidades-content h2 em {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.amenidades-price {
    margin-top: 28px;
    font-size: clamp(26px, 2.2vw, 40px);
    line-height: 1.2;
}

.amenidades-price strong {
    font-weight: 700;
}

.amenidades-list {
    margin: 55px 0 0;
    padding: 0;
    list-style: none;
}

.amenidades-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    font-size: 20px;
}

.amenidades-list i {
    width: 24px;
    text-align: center;
}

.amenidades-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.amenidades-map img {
    width: 100%;
    max-width: 760px;
    height: auto;
    display: block;
}


/*################################RSPONSIVE################################*/

@media (max-width: 980px) {

    .amenidades-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 70px 24px;
    }

    .amenidades-map {
        order: 2;
    }

    .amenidades-content {
        order: 1;
    }

    .amenidades-map img {
        max-width: 100%;
    }

}


/*###############################DEPTO MUESTRA##########################################*/
/* DEPARTAMENTO MUESTRA */

.departamento-muestra {
	margin-top:30px;
  position: relative;
  min-height: 1050px;
  background: #fff;
  overflow: hidden;
}

.departamento-content {
  position: relative;
  z-index: 2;
  width: 44%;
  padding: clamp(120px, 11vw, 170px) 0 0 clamp(48px, 6vw, 95px);
  color: var(--green);
}

.departamento-content h2 {
  margin: 0;
  font-size: clamp(36px, 3.65vw, 62px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.departamento-content h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.departamento-content p {
  margin: 30px 0 42px;
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.departamento-render {
    position: absolute;
    inset: auto 0 0 auto;

    width: 100%;
    height: auto;

    max-width: none;
    display: block;
}

@media (max-width: 900px) {
	.departamento-muestra {
		min-height:600px;
	}
  .departamento-content { 
  margin: 0 auto;
    width:80%;
	padding-top:20px;
	padding-bottom:5px;
  }
  
  .departamento-content h2 {
  margin: 0;
  font-size: clamp(26.25px, 2.73vw, 46.5px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.045em;
}
  
}

/*##############################*/
/* ############GAL############ */
/*##############################*/

.estilo-vida {
    background: #f7f7f7;
}

.estilo-header {
    text-align: center;
    padding: 90px 20px 55px;
}

.estilo-header h2 {
    margin: 0 0 18px;
    color: var(--green);
    font-size: clamp(32px, 3vw, 54px);
    line-height: 1.2;
    font-weight: 400;
}

.estilo-header h2 strong {
    font-weight: 700;
}

.estilo-header h2 em {
    font-family: Georgia, serif;
    font-style: italic;
}

.estilo-header p {
    margin: 0;
    color: var(--green);
    font-size: 18px;
}

.amenidades-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.card-juegos {
    grid-column: 1 / -1;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 40px 55px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.45) 28%,
        rgba(0,0,0,.05) 65%,
        transparent 100%
    );
}

.gallery-overlay h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(28px, 2vw, 42px);
    line-height: 1.15;
    font-weight: 700;
}

.gallery-overlay h3 em {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.gallery-overlay p {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(18px, 1.3vw, 28px);
    line-height: 1.3;
}

.gallery-overlay small {
    display: block;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    line-height: 1.4;
}

.card-terraza,
.card-pista,
.card-pet,
.card-asadores,
.card-caseta,
.card-picnic {
    min-height: 420px;
}

.card-juegos {
    min-height: 520px;
}

@media (max-width: 900px) {

    .amenidades-gallery {
        display: grid;
        grid-template-columns: 1fr !important;
    }

    .gallery-card {
        grid-column: auto !important;
        width: 100%;
    }

    .card-juegos {
        grid-column: auto !important;
    }

}


/* COTIZAR DEPARTAMENTO */

.cotizar-departamento {
  background: var(--green);
  color: #ffffff;
}

.cotizar-inner {
  min-height: 520px;
  padding: 105px 24px 90px;
  text-align: center;
}

.cotizar-inner h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.cotizar-inner h2 strong {
  font-weight: 700;
}

.cotizar-inner h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.cotizar-inner p {
  margin: 34px 0 36px;
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 700;
}

.cotizar-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .cotizar-inner {
    min-height: auto;
    padding: 70px 22px;
  }

  .cotizar-actions {
    flex-direction: column;
  }

  .cotizar-actions .contact-channel {
    width: 100%;
  }

  .cotizar-inner h2 br {
    display: none;
  }
}



/* CUAL DEPARTAMENTO */

.cual-departamento {
    position: relative;
    min-height: 890px;

    background-image: url('../img/cuales.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.cual-departamento::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.55) 20%,
        rgba(0,0,0,.18) 45%,
        transparent 75%
    );

    z-index: 1;
}

.cual-content {
    position: relative;
    z-index: 2;

    min-height: 890px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    text-align: center;

    padding: 0 24px 85px;
}

.cual-content h2 {
    margin: 0 0 22px;

    color: #ffffff;

   font-size: clamp(34px, 3.2vw, 58px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.cual-content h2 strong {
    font-weight: 700;
}

.cual-content h2 em {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.cual-content p {
    max-width: 920px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(18px, 1.4vw, 28px);
    line-height: 1.45;
}

.cual-content p strong {
    font-weight: 700;
}

@media (max-width: 900px) {

    .cual-departamento,
    .cual-content {
        min-height: 620px;
    }

    .cual-content {
        padding-bottom: 55px;
    }

    .cual-content h2 {
        font-size: clamp(34px, 8vw, 52px);
    }

    .cual-content p {
        font-size: 18px;
    }
}


/* MODELOS */

.modelos-section {
  background: #fff;
  padding: 70px 24px 90px;
}

.modelos-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
  color: var(--green);
}

.modelos-header h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.7vw, 46px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.modelos-header h2 strong {
  font-weight: 700;
}

.modelos-header p {
  margin: 0 0 20px;
  font-size: clamp(15px, 1vw, 18px);
}

.modelos-header .btn {
  min-width: 140px;
  height: 44px;
  font-size: 12px;
}

.modelos-list {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.modelo-card {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(42px, 5vw, 70px) clamp(38px, 5vw, 76px);
  color: var(--green);
}

.modelo-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modelo-img img {
  width: 100%;
  max-width: 330px;
  height: auto;
  display: block;
}

.modelo-info h3 {
  margin: 0;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1;
  font-weight: 700;
}

.modelo-info h3 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.modelo-info h4 {
  margin: 4px 0 36px;
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.15;
  font-weight: 400;
}

.modelo-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 80px;
  margin-bottom: 38px;
  font-size: 14px;
  line-height: 1.2;
}

.modelo-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 18px;
  background: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
}

.modelo-price div {
  padding: 18px 22px;
}

.modelo-price strong {
  font-weight: 700;
}

.modelo-note {
  margin: 0 0 28px;
  font-size: 12px;
  line-height: 1.5;
}

.modelo-btn {
  width: 170px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  color: var(--green);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0 10px 0 10px;
  transition: all .25s ease;
}

.modelo-btn:hover {
  background: var(--green);
  color: #ffffff;
}

/* RESPONSIVE MODELOS */

@media (max-width: 900px) {
  .modelos-section {
    padding: 55px 18px 70px;
  }

  .modelos-header {
    margin-bottom: 42px;
  }

  .modelo-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px 22px;
  }

  .modelo-img img {
    max-width: 280px;
  }

  .modelo-specs,
  .modelo-price {
    grid-template-columns: 1fr;
  }

  .modelo-specs {
    gap: 14px;
  }

  .modelo-price div + div {
    border-top: 1px solid rgba(0,0,0,.06);
  }

  .modelo-btn {
    width: 100%;
  }
}




.modelo-img a {
    display: block;
    text-decoration: none;
}

.modelo-img img {
    width: 100%;
    max-width: 330px;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: transform .25s ease;
}

.modelo-img:hover img {
    transform: scale(1.03);
}




/* COMPRAR CTA */

.comprar-cta {
  background: var(--green);
  color: #ffffff;
}

.comprar-cta-inner {
  min-height: 505px;
  padding: 115px 24px 95px;
  text-align: center;
}

.comprar-cta h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.comprar-cta h2 strong {
  font-weight: 700;
}

.comprar-cta h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.comprar-cta p {
  margin: 34px 0 34px;
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 400;
}

/* UBICACION INTRO */

.ubicacion-intro {
  background: #f6f6f6;
  color: var(--green);
}

.ubicacion-intro-inner {
  min-height: 365px;
  padding: 95px 24px 80px;
  text-align: center;
}

.ubicacion-intro h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 53px);
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.ubicacion-intro h2 strong {
  font-weight: 700;
}

.ubicacion-intro h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

/* RESPONSIVE */

@media (max-width: 560px) {
  .comprar-cta-inner {
    min-height: auto;
    padding: 75px 22px;
  }

  .comprar-cta h2 br,
  .ubicacion-intro h2 br {
    display: none;
  }

  .comprar-cta .contact-channel {
    width: 100%;
  }

  .ubicacion-intro-inner {
    min-height: auto;
    padding: 70px 22px;
  }

  .ubicacion-intro h2 {
    font-size: clamp(34px, 9vw, 48px);
  }
}

/* CONECTADO */

.conectado-section {
  position: relative;
  min-height: 890px;
  background-image: url('../img/conectado.jpg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.conectado-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 60, 70, .12);
  z-index: 1;
}

.conectado-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding: clamp(85px, 8vw, 130px) clamp(42px, 6vw, 95px);
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 40px;
  align-items: start;
}

.conectado-title {
  color: #ffffff;
  padding-top: 10px;
}

.conectado-title h2 {
  margin: 0;
  font-size: clamp(32px, 3.1vw, 54px);
  line-height: 1.36;
  font-weight: 300;
  letter-spacing: -0.045em;
}

.conectado-title h2 strong {
  font-weight: 700;
}

.conectado-title h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.conectado-logos {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  justify-content: center;
  gap: 18px 28px;
}

.logo-card {
  width: 280px;
  height: 74px;
  padding: 12px 20px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  display: block;
}

/* PROYECTO CTA */

.proyecto-cta {
  background: var(--green);
  color: #ffffff;
}

.proyecto-cta-inner {
  min-height: 500px;
  padding: 115px 24px 90px;
  text-align: center;
}

.proyecto-cta h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.proyecto-cta p {
  margin: 0 0 34px;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.45;
  font-weight: 400;
}

/* RESPONSIVE CONECTADO */

@media (max-width: 980px) {
  .conectado-section,
  .conectado-inner {
    min-height: auto;
  }

  .conectado-inner {
    grid-template-columns: 1fr;
    padding: 70px 24px;
    gap: 42px;
  }

  .conectado-title h2 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .conectado-logos {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .logo-card {
    height: 70px;
    padding: 12px 20px;
  }

  .proyecto-cta-inner {
    min-height: auto;
    padding: 75px 22px;
  }
}

@media (max-width: 560px) {
  .conectado-logos {
    grid-template-columns: 1fr;
  }

  .logo-card {
    height: 74px;
  }

  .proyecto-cta p br {
    display: none;
  }

  .proyecto-cta .contact-channel {
    width: 100%;
  }
}



/* ENGANCHE */

.enganche-section {
  position: relative;
  min-height: 1080px;
  background-image: url('../img/enganche.jpg');
  background-size: cover;
   background-position: center 80%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.enganche-content {
  min-height: 980px;
  padding: clamp(145px, 16vw, 230px) 24px 0;
  text-align: center;
  color: #ffffff;
}

.enganche-content h2 {
  margin: 0 0 22px;
  font-size: clamp(33.6px, 3.68vw, 60.8px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.enganche-content p {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 56px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.enganche-content p em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .enganche-section,
  .enganche-content {
    min-height: 620px;
  }

  .enganche-content {
    padding-top: 125px;
  }

  .enganche-content h2 {
    font-size: clamp(34px, 8vw, 54px);
  }

  .enganche-content p {
    font-size: clamp(26px, 6.5vw, 42px);
  }
}

/* CONTACTO FINAL */

.contacto-final {
  background: var(--green);
  color: #ffffff;
}

.contacto-final-inner {
  min-height: 850px;
  padding: clamp(75px, 7vw, 115px) clamp(32px, 6vw, 95px);
  display: grid;
  grid-template-columns: 43% 57%;
  gap: clamp(55px, 7vw, 110px);
  align-items: start;
}

.contacto-final-info {
  padding-top: 10px;
}

.contacto-final-info h2 {
  margin: 0 0 45px;
  font-size: clamp(34px, 3.3vw, 56px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.contacto-final-info p {
  margin: 0 0 50px;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.45;
  font-weight: 400;
}

.contacto-final-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contacto-final-card {
  max-width: 720px;
  margin: 0 auto;
}

/* RESPONSIVE CONTACTO FINAL */

@media (max-width: 980px) {
  .contacto-final-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 70px 24px;
    gap: 42px;
  }

  .contacto-final-info h2 {
    margin-bottom: 28px;
  }

  .contacto-final-info p {
    margin-bottom: 34px;
  }

  .contacto-final-card {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .contacto-final-actions {
    flex-direction: column;
  }

  .contacto-final-actions .contact-channel {
    width: 100%;
  }

  .contacto-final-info h2 br,
  .contacto-final-info p br {
    display: none;
  }
}


@media (max-width: 900px) {

  .mobile-nav-wrapper {
    position: fixed;
    inset: 0;
    background: rgba(8, 48, 58, .98);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: .35s ease;
    z-index: 70;
  }

  .mobile-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-wrapper li {
    margin: 16px 0;
    text-align: center;
  }

  .mobile-nav-wrapper a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
  }

  .nav-left,
  .nav-right {
    display: block;
  }
}

@media (max-width: 900px) {

  .main-nav > .nav-left,
  .main-nav > .nav-right {
      display: none;
  }

}

.main-nav {
  position: relative;
}

.mobile-menu-btn {
  display: none;
}

.mobile-nav-wrapper {
  display: none;
}

@media (max-width: 900px) {
  .main-nav > .nav-left,
  .main-nav > .nav-right {
    display: none;
  }

  .mobile-menu-btn {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 100;
    width: 42px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    display: block;
    width: 42px;
    height: 4px;
    background: #ffffff;
    border-radius: 4px;
    transition: .25s ease;
  }

  .mobile-nav-wrapper {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(8, 48, 58, .97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease;
  }

  .mobile-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .mobile-nav-wrapper li {
    margin: 18px 0;
  }

  .mobile-nav-wrapper a {
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 500;
  }
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;

    width: 48px;
    height: 48px;

    border: 0;
    background: transparent;

    color: #fff;
    font-size: 42px;
    line-height: 1;

    cursor: pointer;
}



/*#######################FOOTER#############################*/

.site-footer{

    background:#fff;
    padding:70px 0;
}

.footer-container{

    max-width:1280px;
    margin:auto;

    padding:0 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:55px;
}

.footer-logo img{

    width:180px;
    display:block;
}

.footer-divider{

    width:1px;
    align-self:stretch;

    background:#d7d7d7;
}

.footer-nav{

    display:grid;

    grid-template-columns:repeat(2,auto);

    column-gap:90px;
    row-gap:28px;
}

.footer-nav a{

    text-decoration:none;

    color:#163e47;

    font-size:23px;
    font-weight:500;

    transition:.25s;
}

.footer-nav a:hover{

    opacity:.65;
}

.footer-contact{

    min-width:270px;
}

.footer-contact h4{

    margin:0 0 6px;

    color:#163e47;

    font-size:22px;
    font-weight:700;
}

.footer-contact p{

    margin:0 0 26px;

    color:#163e47;

    font-size:22px;
}

.footer-social{

    display:flex;

    gap:14px;

    margin:18px 0 28px;
}

.footer-social img{

    width:46px;

    display:block;

    transition:.25s;
}

.footer-social a:hover img{

    transform:translateY(-3px);
}

.privacy-link{

    color:#163e47;

    font-size:16px;

    text-decoration:underline;
}


/* RESPONSIVE FOOTER */

@media (max-width: 980px) {

  .site-footer {
    padding: 55px 0;
  }

  .footer-container {
    padding: 0 24px;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    text-align: center;
  }

  .footer-logo img {
    width: 150px;
    margin: 0 auto;
  }

  .footer-divider {
    display: block;
    width: 100%;
    max-width: 320px;
    height: 1px;
    align-self: auto;
  }

  .footer-nav {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 0;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .footer-contact {
    min-width: 0;
    width: 100%;
  }

  .footer-contact h4 {
    font-size: 22px;
  }

  .footer-contact p {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social img {
    width: 40px;
  }

  .privacy-link {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .site-footer {
    padding: 45px 0;
  }

  .footer-container {
    gap: 28px;
  }

  .footer-logo img {
    width: 135px;
  }

  .footer-nav a {
    font-size: 17px;
  }

  .footer-contact h4 {
    font-size: 20px;
  }

  .footer-contact p {
    font-size: 17px;
  }
}


.form-message {
  padding: 30px 0;
  color: var(--green);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}


/* =========================================================
   AJUSTE FINAL MÓVIL — HERO
   ========================================================= */

@media (max-width: 560px) {

  .site-header {
    padding: 22px 20px 0;
  }

  .brand-logo {
    width: 132px;
  }

  .mobile-menu-btn {
    top: 24px;
    left: 28px;
    width: 40px;
    height: 31px;
  }

  .mobile-menu-btn span {
    width: 40px;
    height: 4px;
  }

  .hero-slider,
  .heroSwiper,
  .hero-slide {
    height: 100svh;
    min-height: 760px;
  }

  .hero-slide {
    /*
     * Reducimos visualmente el fondo para mostrar más conjunto
     * y lo apoyamos contra la parte inferior.
     */
    background-color: #17a9dc;
    background-size: auto 91%;
    background-position: center bottom;
    background-repeat: no-repeat;
  }

  .hero-slide::before {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.05) 50%,
      rgba(255,255,255,.13) 100%
    );
  }

  .hero-content {
    position: absolute;
    top: 180px;
    bottom: auto;
    left: 0;

    width: 100%;
    max-width: none;
    padding: 0 29px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.045em;
  }

  .hero-price {
    margin-top: 12px;
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
  }

  .hero-price em {
    font-size: clamp(25px, 7.5vw, 31px);
  }

  .hero-price span {
    font-size: clamp(25px, 7.3vw, 30px);
  }

  .hero-actions {
    width: 100%;
    margin-top: 27px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    height: 62px;
    padding: 0 10px;

    font-size: 13px;
    white-space: nowrap;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 22px;
    width: 57px;
    height: 57px;
  }

  .whatsapp-float img {
    width: 31px;
    height: 31px;
  }

}


@media (max-width:560px){

.tu-nuevo-hogar,
.tu-nuevo-hogar-inner{

    min-height:560px;

}

}


/* =========================================================
   AJUSTE FINAL MÓVIL — QUIERES VIVIR
   ========================================================= */

@media (max-width: 560px) {

  .quieres-vivir-inner {
    padding: 58px 28px 70px;
  }

  .quieres-info h2 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .quieres-info p {
    margin: 0 0 27px;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.025em;
  }

  .quieres-asesor {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.35;
  }

}

/* =========================================================
   AJUSTE FINAL MÓVIL — CONECTADO
   ========================================================= */

@media (max-width: 560px) {

  .conectado-inner {
    padding: 78px 28px 60px;
    gap: 30px;
  }

  .conectado-title h2 {
    font-size: clamp(26px, 7.3vw, 29px);
    line-height: 1.28;
    letter-spacing: -0.035em;
  }

  .conectado-logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    justify-content: stretch;
  }

  .logo-card {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 7px 10px;
    border-radius: 10px;
  }

  .logo-card img {
    width: auto;
    max-width: 100%;
    max-height: 31px;
    object-fit: contain;
  }

  .conectado-section {
    min-height: 720px;
    background-position: center bottom;
  }

}
