@font-face {
  font-family: 'Avocado';
  src: url('avocado.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DMSansCustom';
  src: url('DMSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'InterCustom';
  src: url('Inter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #fff !important;
  color: #2d2d2d;
  background-image: none;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

body .intro-section {
  background: #1E3427 !important;
  background-color: #1E3427 !important;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2vw;
  height: 90px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 0 !important;
  flex-shrink: 0;
}

.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto !important;
  z-index: 1001;
  flex-shrink: 0;
  position: relative;
  top: 8px;
}

.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: #23412d;
  position: relative;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 8px;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #23412d;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}

nav {
  flex: 1;
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.language-bar {
  width: 100%;
  margin: 0 auto;
  background: #202020;
  color: #FFFFFF;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  padding: 20px 2cm;
  height: 61px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.language-bar span {
  cursor: pointer;
  margin: 0;
}

.language-bar .separator {
  width: 1px;
  height: 21px;
  background-color: #FFFFFF;
}

.language-bar span:hover {
  text-decoration: underline;
}

header {
  background: #FAEACD;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
    margin-left: 70px;
}

.logo img {
    display: block;
    max-height: 40px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

nav {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  padding-right: 2cm;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin: 0;
  padding: 0;
  align-items: center;
  height: auto;
  flex-wrap: nowrap;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: 900;
  font-size: 24px;
  font-family: 'DM Sans', Arial, sans-serif;
  letter-spacing: 0;
  line-height: normal;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

nav a:hover {
  color: #23412d;
}
.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
  background-color: #FAEACD !important;
}

@media (max-width: 1024px) {
  .navbar-flex {
    flex-direction: column;
    align-items: center;
    padding: 20px 0 10px 0.5cm; 
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  nav a {
    font-size: 18px;
    vertical-align: auto;
    display: block;
    align-items: flex-start;
  }
}


.hero {
  background-color: #FAEACD;
  position: relative;
  overflow: visible;
  padding-top: 32px;
  padding-bottom: 0 !important;
  min-height: 500px;
  background-image: url('Vector (5).png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  margin-bottom: 60px !important;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
    }

.hero-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-title, .hero-desc {
  word-break: break-word;
  white-space: normal;
}

.hero-form {
  width: 100%;
  max-width: 480px;     
  min-height: 420px;    
  margin: 0 auto;
  padding: 32px 24px;   
  background: #E86A33;  

  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-form input, .hero-form button {
  width: 50%;
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}

.hero-form {
  font-family: 'InterCustom', 'DM Sans', Arial, sans-serif;
  margin-top: 0;
  width: 50%;
  max-width: 60px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.hero-right {
  margin-top: 0;
}



.hero-left, .hero-right-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title-block, .hero-form, .hero-right {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-vector {
  max-height: 22000px;
  height: auto;
  width: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}


.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  z-index: 1;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  align-self: flex-start; 
}



.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  overflow: visible;
}


.hero-title {
  width: 100%; 
  max-width: 860px; 
  height: auto;
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal; 
  font-weight: 400; 
  font-size: 80px;
  line-height: 84px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}


.hero-desc {
  width: 100%; 
  max-width: 600px; 
  height: auto; 
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal; 
  font-weight: normal; 
  font-size: 20px;
  line-height: 20px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}


.hero-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 20px;
  width: 625px; 
  max-width: 100%;
  height: 473px;
  background: #C14D35;
  border-radius: 10px;
  box-sizing: border-box;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 50px; 
  width: 545px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row.row-gap-20 {
    gap: 20px;
    justify-content: space-between;
}

.hero-form .field-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  width: 247.5px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 1;
  flex-shrink: 0;
}


.hero-form .row .field-div.field-correo {
    width: 100%;
}


.hero-form label {
  width: auto;
  height: auto;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form label.label-inter {
    font-family: 'Inter', sans-serif;
    line-height: 24px;
}


.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  padding: 0 10px;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form button {
  width: 80px;
  min-width: 60px;
  max-width: 90px;
  height: 80px;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  background: #FAEACD;

  border: none;
  color: #000000;
    cursor: pointer;
  transition: all 0.3s ease;
}


.hero-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  gap: 10px;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  background: #D6D6D6;

  overflow: hidden;
  flex: none;
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-right img {
  display: block;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  object-fit: cover;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}





@media (max-width: 1460px) {
  .container,
  .navbar-flex {
    max-width: 100%;
    padding: 10px 0 10px 1cm;
  }
  
  .language-bar {
    padding: 20px 1cm;
  }
  
  nav {
    padding-right: 1cm;
  }
}

@media (max-width: 1024px) {
  .container,
  .navbar-flex {
    padding: 10px 0 10px 0.5cm;
  }
  
  .language-bar {
    padding: 20px 0.5cm;
  }
  
  nav {
    padding-right: 0.5cm;
  }
}


.intro-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background-color: #1E3427 !important;
  position: relative !important;
  z-index: 1 !important;
  padding: 0 0 100px !important;
  margin-top: -40px !important;
}

.intro-title {
  order: 1 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  margin-top: -50px !important;
  transform: translateY(-30px) !important;
}

.intro-subtitle {
  order: 2 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  margin-top: -30px !important;
  transform: translateY(-20px) !important;
}

.img-slider {
  order: 3 !important;
  z-index: 2 !important;
  position: relative !important;
  width: 100% !important;
  margin-top: -20px !important;
  transform: translateY(-10px) !important;
}

.intro-title {
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  color: #FAEACD;
  margin: 0 auto;
  text-align: center;
}

.intro-subtitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 880px;
  max-width: 100%;
  height: auto;
  flex: none;
  order: 1;
  flex-grow: 0;
  text-align: center;
  margin: -20px auto 20px;
}

.intro-subtitle p {
  width: 880px;
  max-width: 100%;
  height: auto;
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #FAEACD;
  margin: 0 auto;
}


.img-slider {
  max-width: 1200px;
  margin: -20px auto 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.slider-images {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  scroll-behavior: smooth;

  margin-top: 20px;
}

.img-container {
    flex: 0 0 calc(25% - 15px);
    transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-button {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
  width: 40px;
  height: 40px;

    background: #FAEACD !important;
    border: none;
  cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: #FAEACD !important;
    opacity: 0.9;
}


.slider-button img {
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) saturate(100%) invert(13%) sepia(23%) saturate(669%) hue-rotate(108deg) brightness(94%) contrast(89%);
}

.right-button {
    right: 40px;
}

.left-button {
    left: 40px;
}


.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #FAEACD;
}


.slider-images::-webkit-scrollbar {
    display: none;
}


.slider-images .img-container:nth-child(even) { 
    align-self: flex-start; 
    margin-top: 20px; 
}

.slider-images .img-container:nth-child(odd) { 
    align-self: flex-end; 
    margin-bottom: 20px; 
}



.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slider-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 9px;
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center;     
  flex-grow: 0;
  z-index: 1;
}


.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  flex: none;
  flex-grow: 0;
  cursor: pointer;
  transition: background 0.3s;
  border: none !important;
}

.dot.active {
  background: #fff !important;
}

.brochure-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 70px; 
  background: #fff !important;
  width: 100vw;
  max-width: none;
  height: auto !important;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  padding-top: 0 !important;
  margin-top: 48px !important;
  padding-bottom: 0 !important;
  margin-bottom: 48px !important;
  border-top: none !important;
  border-bottom: none !important;
}

.brochure-section::before,
.brochure-section::after {
    background: #fff !important;
    background-color: #fff !important;
    border: none !important;
}

.brochure-section .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    gap: 40px; 
}

.brochure-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 35%; 
    max-width: 400px; 
    flex-shrink: 0;
}

.brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.brochure-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 56px !important;
    line-height: 1.2; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 16px !important;
    line-height: 1.4; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-button {
    display: inline-block !important;
    padding: 12px 25px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.brochure-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%; 
    max-width: 600px; 
    flex-shrink: 0;
}

.brochure-image-placeholder {
    width: 100%;
    height: 280px !important;
    background: #D9D9D9 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


@media (max-width: 1024px) {
    .brochure-section {
        padding: 40px 20px;
    }
    .brochure-section .container {
        flex-direction: column;
        gap: 30px;
    }
    .brochure-left,
    .brochure-right {
        width: 100%;
        max-width: 600px; 
        text-align: center;
        align-items: center;
    }
    .brochure-text {
        gap: 12px;
    }
    .brochure-title { 
        font-size: 42px; 
        line-height: 1.2;
    }
    .brochure-description { 
        font-size: 15px; 
        line-height: 1.3;
    }
    .brochure-button {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 160px;
    }
    .brochure-image-placeholder {
        height: 240px; 
    }
}

@media (max-width: 1024px) {
    .brochure-section {
        padding: 30px 15px;
    }
    .brochure-title { 
        font-size: 32px; 
    }
    .brochure-description { 
        font-size: 14px; 
    }
    .brochure-button {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 140px;
    }
    .brochure-image-placeholder {
        height: 200px; 
    }
}


.combined-amenities-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    background: #224457;
    background-image: url('Vector (1).png');
    background-repeat: no-repeat;
    background-size: 40% auto !important;
    background-position: 0 0 !important;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.combined-amenities-cta > .container:nth-child(1) {
    padding-top: 0 !important;
    margin-top: 0 !important;
    gap: 0 !important;
}

.combined-amenities-cta .amenities-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.combined-amenities-cta::before,
.combined-amenities-cta::after {
    display: none;
}


.combined-amenities-cta + section { 
    margin-top: 0 !important; 
}


.combined-amenities-cta > .container:nth-child(1) { 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 30px; 
    position: relative; 
    padding: 0 20px; 
    box-sizing: border-box;
}

.combined-amenities-cta > .container:nth-child(2) { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1440px; 
    margin: 0 auto; 
    gap: 50px; 
    padding: 0 70px; 
    box-sizing: border-box;
    background: none !important; 
}


.combined-amenities-cta .amenities-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 15px; 
    width: 100%;
    max-width: 800px; 
    text-align: left; 
}

.combined-amenities-cta .amenities-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px; 
    line-height: 1.2em; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.combined-amenities-cta .amenities-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px; 
    line-height: 24px; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}


.combined-amenities-cta .amenities-gallery {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    width: 100%; 
    max-width: 1100px; 
    height: auto; 
    position: relative; 
    overflow: hidden; 
    padding: 0 60px; 
    box-sizing: border-box;
}

.combined-amenities-cta .gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.combined-amenities-cta .gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.combined-amenities-cta .gallery-item.needs-item-tall {
    grid-row: span 2;
}

.combined-amenities-cta .gallery-item.needs-item-short {
    grid-row: span 1;
}

.combined-amenities-cta .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 4; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 2; grid-row: 2 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 1; grid-row: 3; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 4; grid-row: 2; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 3; grid-row: 3 / span 2; }

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 2; grid-row: 2 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 1; grid-row: 3; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 1; grid-row: 4 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 2; grid-row: 4; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 2; grid-row: 5; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 1; grid-row: 6 / span 2; }
}

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    display: block !important;
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 420px;
    height: 420px;
    padding: 0 !important;
  }
  .amenidades-slide-track {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100%;
    will-change: transform;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal {
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item {
    width: 70vw !important;
    max-width: 250px !important;
    min-width: 120px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    display: block;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-tall {
    height: 270px !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-short {
    height: 100px !important;
  }
  .combined-amenities-cta .gallery-item:not(.amenidades-slide-pair .gallery-item) {
    display: none !important;
  }
}


.combined-amenities-cta .gallery-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 10px; 
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center; 
  flex-grow: 0;
  z-index: 1;
}

.combined-amenities-cta .gallery-dots .dot {
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  width: 12px !important;
  height: 12px !important;
  transition: background 0.3s;
  border: none !important;
}

.combined-amenities-cta .gallery-dots .dot.active {
  background: #fff !important;
}

.combined-amenities-cta .gallery-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0; 
  gap: 8px;
  position: absolute; 
  width: 40px; 
  height: 40px; 
  background: #FAEACD; 
  border-radius: 50%; 
  flex: none;
  flex-grow: 0;
  z-index: 3; 
  cursor: pointer;
  top: 50%; 
  transform: translateY(-50%); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; 
  transition: background-color 0.3s ease;
}

.combined-amenities-cta .gallery-button:hover {
    background-color: #E0D3B8; 
}

.combined-amenities-cta .gallery-button.left-button {
  left: 10px; 
  background-image: url('Vector (4).png'); 
}

.combined-amenities-cta .gallery-button.right-button {
  right: 10px; 
  background-image: url('Vector (3).png'); 
}

.combined-amenities-cta .gallery-button svg path {

    stroke: #1E3427;
}


.combined-amenities-cta .cta-brochure-left {
  display: flex;
  justify-content: center;
  align-items: center;
    width: 50%; 
    max-width: 700px; 
    flex-shrink: 0; 
}

.combined-amenities-cta .cta-brochure-image-placeholder {
    height: 180px !important;
    aspect-ratio: 1/1 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}

.combined-amenities-cta .cta-brochure-img {
    object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

.combined-amenities-cta .cta-brochure-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: 50%;
    max-width: 500px;
    flex-shrink: 0;
    text-align: right;
}

.combined-amenities-cta .cta-brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.combined-amenities-cta .cta-brochure-title {
    font-family: 'Avocado', 'Cormorant Garamond', serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2em;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-description {
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-button {
    display: inline-block;
    padding: 12px 25px;
    background: #224457 !important;
    color: #fff !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.combined-amenities-cta .cta-brochure-button:hover {
    background: #E0D3B8;
}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 60px 0;
        gap: 40px;
         background-size: 150px;
         background-position: left top;
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 15px;
         gap: 30px;
          max-width: 960px;
          align-items: center;
     }
      .combined-amenities-cta .amenities-text {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    .combined-amenities-cta .amenities-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .amenities-description { font-size: 16px; line-height: 1.3; }

    .combined-amenities-cta .amenities-gallery {
        gap: 15px;
        align-items: center;
         max-width: 900px; 
          padding: 0 40px; 
    }
    .combined-amenities-cta .gallery-images {
        gap: 15px; 
        padding-left: 0;
        padding-right: 0;
        height: auto; 
        padding-bottom: 0; 
         justify-content: center; 
    }
    .combined-amenities-cta .gallery-item {
        width: 180px; 
        align-self: auto; 
    }
    .combined-amenities-cta .gallery-item-short {
        height: 180px; 
         align-self: flex-start;
    }
    .combined-amenities-cta .gallery-item-tall {
        height: 280px; 
         align-self: flex-end;
    }
    .combined-amenities-cta .gallery-dots { gap: 8px; }
    .combined-amenities-cta .gallery-dots .dot { width: 8px; height: 8px; }
    .combined-amenities-cta .gallery-button {
       width: 30px; 
       height: 30px;
       top: 50%;
       transform: translateY(-50%);
        background-size: 50%;
    }
  .combined-amenities-cta .gallery-button.left-button {
      left: 0; 
  }
  .combined-amenities-cta .gallery-button.right-button {
      right: 0; 
  }

      .combined-amenities-cta > .container:nth-child(2) { 
        flex-direction: column; 
        gap: 30px;
        padding: 0 20px;
        align-items: center; 
    }
   .combined-amenities-cta .cta-brochure-left, 
   .combined-amenities-cta .cta-brochure-right {
        width: 100%; 
        max-width: 600px; 
        text-align: center; 
        align-items: center; 
   }
    .combined-amenities-cta .cta-brochure-image-placeholder {
          height: 250px; 
    }
    .combined-amenities-cta .cta-brochure-text {
        gap: 10px;
        align-items: center; 
    }
    .combined-amenities-cta .cta-brochure-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .cta-brochure-description { font-size: 16px; line-height: 1.3; }
    .combined-amenities-cta .cta-brochure-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }

}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 40px 0;
        gap: 30px; 
            background-size: 100px; 
        background-position: left top; 
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 10px;
         gap: 20px;
     }
      .combined-amenities-cta .amenities-text {
        text-align: center; 
         align-items: center; 
         gap: 10px;
     }
    .combined-amenities-cta .amenities-title { font-size: 36px; }
    .combined-amenities-cta .amenities-description { font-size: 15px; }

    .combined-amenities-cta .amenities-gallery {
         max-width: 400px; 
    }
     .combined-amenities-cta .gallery-images {
         grid-template-columns: repeat(2, 1fr); 
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .combined-amenities-cta .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.needs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 40px 20px;
  background: #F8ECD7; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
    margin-top: 0;
    background-color: #FAEACD !important;
}

.needs-section .needs-text {
    margin-top: -20px;
  text-align: center; 
  max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.needs-section .needs-gallery {
    margin-top: 30px;
}

a[href="#"][class="needs-button"] {
    display: inline-block !important;
    padding: 16px 35px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: normal !important;
    border-radius: 25px !important;
    transition: background 0.3s ease !important;
    min-width: 220px !important;
    text-align: center !important;
}

.needs-section .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.needs-section .needs-gallery {
    margin-bottom: 50px;
}

.needs-section .gallery-images {
    display: grid; 
  grid-template-columns: repeat(4, 1fr); 
    gap: 22px;
    margin-bottom: 30px;
}

.needs-section .gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
  overflow: hidden;
    border-radius: 10px;
}

.needs-section .gallery-item.needs-item-tall {
    height: 320px;
    grid-row: span 2;
}

.needs-section .gallery-item.needs-item-short {
    height: 150px;
    grid-row: span 1;
}

.needs-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.needs-section .gallery-images .needs-item-tall:nth-child(1) { 
    grid-column: span 1; 
    grid-row: span 2; 
}

.needs-section .gallery-images .needs-item-short:nth-child(2) { 
    grid-column: span 1; 
    grid-row: span 1; 
}

.needs-section .gallery-images .needs-item-tall:nth-child(3) { 
     grid-column: span 1;
     grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(4) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(5) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(6) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(7) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(8) {     
     grid-column: span 1;
     grid-row: span 1;
}


.needs-section .needs-button {
    display: inline-block;
  padding: 15px 30px; 
  background: #C14D35; 
  color: #FFFFFF;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
  font-size: 18px; 
    line-height: normal;
  border-radius: 5px;
  transition: background 0.3s ease; 
  margin-top: 20px; 
  margin-bottom: 40px;
}

.needs-section .needs-button:hover {
    background: #A03D2A; 
}


@media (max-width: 1024px) {
  .needs-section {
    padding: 60px 15px;
  }
  .needs-section .container {
      gap: 30px;
  }
  .needs-section .needs-text {
        gap: 15px;
  }
   .needs-section .needs-title { font-size: 48px; line-height: 1.2; }
   .needs-section .needs-description { font-size: 16px; line-height: 1.3; }

   .needs-section .needs-gallery {
      max-width: 700px; 
   }
   .needs-section .gallery-images {
      grid-template-columns: repeat(2, 1fr); 
      gap: 10px;
       max-width: 700px;
       grid-auto-rows: auto; 
   }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }
}

@media (max-width: 768px) {
.needs-section {
        padding: 40px 10px;
    }
     .needs-section .container {
         gap: 20px;
     }
     .needs-section .needs-text {
    gap: 10px;
     }
    .needs-section .needs-title { font-size: 36px; line-height: 1.1; }
    .needs-section .needs-description { font-size: 15px; line-height: 1.3; }

    .needs-section .needs-gallery {
         max-width: 400px; 
    }
     .needs-section .gallery-images {
         grid-template-columns: repeat(2, 1fr);
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
}

.features-section .container {
  max-width: 1350px;
    width: 100%;
  margin: 0 auto; 
  padding: 0 40px 0 20px;
}

.features-section .features-grid {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  margin-left: 60px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 20px;
}

@media (max-width: 1200px) {
  .features-section .features-grid {
    gap: 25px;
    margin-left: 4px !important;
  }
}

@media (max-width: 1024px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 0 !important; 
  }
}

.features-section .feature-item {
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
}

.features-section .feature-icon {
  width: 100%; 
  max-width: 250px;
  height: auto; 
  margin-bottom: 15px;
  object-fit: contain;
}

.features-section .feature-text {
    font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #224457;
    margin: 0;
}

.living-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    background: #c14d35;
    background-image: url('Vector (6).png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


.living-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('Vector (1).png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right center;
  opacity: 0.15; 
  pointer-events: none;
  z-index: -1;
}

.living-section .container {
     display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center; 
     width: 100%;
  max-width: 1200px; 
     margin: 0 auto;
  padding: 0 40px; 
     box-sizing: border-box;
  gap: 50px; 
  position: relative; 
            z-index: 3; 
}

.living-section .living-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  gap: 30px; 
    width: 50%; 
  max-width: 500px;
}


.living-section .living-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 60px; 
  line-height: 1.1em;
  color: #FAEACD; 
    margin: 0;
    padding: 0;
}
.living-section .row-title h3 {
  font-family: 'Avocado', serif !important;
}
.living-section .living-button {
    display: inline-block;
    padding: 15px 20px;
    background: #FAEACD !important;
    color: #224457 !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400; 
    font-size: 16px !important; 
    line-height: normal;
    border-radius: 8px;
    transition: background 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.living-section .living-button:hover {
  background: #E0D3B8; 
}

.living-section .living-right {
     display: flex;
    justify-content: center;
    align-items: center;
          width: 50%; 
  max-width: 500px;
}

.living-section .living-image-placeholder {
    width: 100%;
  height: 300px; 
  background: #D9D9D9; 
     display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  border-radius: 10px; 
}

.living-section .living-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.living-section .living-text-blocks {
    display: flex;
  flex-direction: column; 
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0; 
  padding: 0 40px; 
    box-sizing: border-box;
  position: relative;
  z-index: 1; 
  gap: 0; 
}


.living-section .living-text-blocks .text-row {
    display: flex; 
  flex-direction: row; 
  width: 100%;
  gap: 60px; 
  padding: 30px 0; 
  border-bottom: 1px solid #FAEACD; 
}


.living-section .living-text-blocks .text-row:last-child {
  border-bottom: none;
}


.living-section .living-text-blocks .text-row .row-title {
  width: 35%; 
    flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-description {
  width: 65%; 
  flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .text-row .row-description p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .titles-column,
.living-section .living-text-blocks .descriptions-column {
  display: none;
}


@media (max-width: 1024px) {
  .living-section {
    padding: 60px 0;
  }
  .living-section::before {
    opacity: 0.1; 
  }
  .living-section .container {
    flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .living-section .living-left,
  .living-section .living-right {
    width: 100%; 
    max-width: 600px;
    align-items: center; 
  }
  .living-section .living-title { font-size: 48px; line-height: 1.1; }
  .living-section .living-button { padding: 12px 20px; font-size: 15px; }
  .living-section .living-image-placeholder { height: 250px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 40px auto 0;
    padding: 0 30px;
                text-align: center; 
  }
  
  .living-section .living-text-blocks .text-row {
    flex-direction: column; 
    gap: 15px;
    padding: 25px 0;
  }
  
  .living-section .living-text-blocks .text-row .row-title,
  .living-section .living-text-blocks .text-row .row-description {
    width: 100%;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 32px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 15px; }
}

@media (max-width: 1024px) {
  .living-section {
    padding: 40px 0;
  }
  .living-section::before {
          opacity: 0.08; 
  }
  .living-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .living-section .living-left,
  .living-section .living-right {
    max-width: 100%;
  }
  .living-section .living-title { font-size: 36px; }
  .living-section .living-button { padding: 10px 18px; font-size: 14px; }
  .living-section .living-image-placeholder { height: 200px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 30px auto 0;
    padding: 0 20px;
    text-align: left !important;
  }
  
  .living-section .living-text-blocks .text-row {
    padding: 20px 0;
    gap: 10px;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 28px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 14px; }
}


.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0; 
  background: #FFFFFF; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-section .container {
    display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: flex-start; 
    width: 100%;
  max-width: 1200px; 
    margin: 0 auto;
  padding: 0 40px; 
  box-sizing: border-box;
  gap: 80px; 
}


.faq-section .faq-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  width: 35%; 
  max-width: 400px;
  flex-shrink: 0;
}

.faq-section .faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
      font-size: 60px; 
  line-height: 1.1em;
  color: #000000; 
    margin: 0;
    padding: 0;
  text-align: left;
}


.faq-section .faq-right {
    display: flex;
    flex-direction: column;
  width: 65%; 
  max-width: 700px;
  flex-shrink: 0;
}


.faq-section .faq-item {
    display: flex;
    flex-direction: column;
  width: 100%;
  padding: 30px 0; 
  border-bottom: none; 
  gap: 20px; 
}


.faq-section .faq-item:last-child {
  border-bottom: none;
}

.faq-section .faq-question {
    display: flex;
  flex-direction: row;
  justify-content: space-between; 
    align-items: center;
  width: 100%;
  cursor: pointer; 
  padding-bottom: 15px; 
  border-bottom: 1px solid #CCCCCC; 
}


.faq-section .faq-question span:first-child {
  font-family: 'Avocado', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}


.faq-section .faq-arrow {
    font-size: 24px; 
  color: #000000; 
  font-weight: bold;
  flex-shrink: 0; 
  margin-left: 20px; 
  transform: rotate(0deg); 
}


.faq-section .faq-answer {
  display: block; 
  width: 100%;
}


.faq-section .faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #000000; 
  margin: 0;
  padding: 0;
  padding-right: 44px; 
}


@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .container {
      flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    width: 100%; 
    max-width: 700px;
    align-items: center; 
  }
  .faq-section .faq-title { 
    font-size: 48px; 
    line-height: 1.1; 
    text-align: center; 
  }
  .faq-section .faq-item {
    padding: 25px 0;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 32px; 
    text-align: left;
  }
  .faq-section .faq-answer p { 
    font-size: 15px; 
    padding-right: 20px; 
         text-align: left;
    }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    max-width: 100%;
  }
  .faq-section .faq-title { 
    font-size: 36px; 
  }
  .faq-section .faq-item {
    padding: 20px 0;
        gap: 15px;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 28px; 
  }
  .faq-section .faq-arrow {
    font-size: 20px;
    margin-left: 15px;
  }
  .faq-section .faq-answer p { 
    font-size: 14px; 
    padding-right: 15px; 
  }
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 80px 0;
  background: #F8ECD7;
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 236, 215, 0.7); 
  z-index: 1;
  pointer-events: none;
}

.contact-section .container {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    width: 100%;
  max-width: 800px; 
    margin: 0 auto;
  padding: 0 40px;
    box-sizing: border-box;
  position: relative;
  z-index: 2; 
  gap: 40px;
}

.contact-section .contact-form-block {
    display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background: #4A5D5F; 
    border-radius: 10px; 
  width: 100%;
  max-width: 200px;
    box-sizing: border-box;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); 
}


.contact-section .contact-title {
  font-family: 'Cormorant Garamond', serif;
    font-style: normal;
  font-weight: 400;
  font-size: 48px; 
  line-height: 1.2em;
  color: #FFFFFF; 
  margin: 0 0 30px 0;
    padding: 0;
  text-align: center;
}

.contact-section .contact-form {
    display: flex;
  flex-direction: column;
  width: 100%;
    gap: 20px; 
}

.contact-section .form-row {
    display: flex;
  flex-direction: row;
  gap: 20px; 
  width: 100%;
}

.contact-section .form-field {
    display: flex;
  flex-direction: column;
  gap: 10px; 
  flex: 1; 
}

.contact-section .form-field.full-width {
  width: 100%;
}

.contact-section .form-field label {
  font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3em;
  color: #FFFFFF; 
    margin: 0;
    padding: 0;
}

.contact-section .form-field input,
.contact-section .form-field textarea {
    width: 100%;
  height: 30px; 
  background: #FFFFFF;
  border: none; 
  border-radius: 5px; 
  padding: 8px 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
  line-height: 1.3em;
  color: #000000; 
  box-sizing: border-box;
  outline: none; 
}

.contact-section .form-field textarea {
  height: 70px;
  resize: vertical; 
}


.contact-section .submit-button {
    display: inline-block;
  padding: 6px 18px;
  font-size: 14px;
  margin-top: -32px; 
  background: #F8ECD7; 
  color: #000000; 
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 600;
  font-size: 16px;
    line-height: normal;
    border: none;
  border-radius: 10px; 
    cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
  align-self: center; 
  min-width: 120px; 
}

.contact-section .submit-button:hover {
  background: #E0D3B8; 
}

.contact-section .contact-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
  width: 100%;
  max-width: 600px;
  height: 200px;
  background: #D9D9D9;
  border-radius: 10px;
    overflow: hidden;
  margin-top: 0; 
}

.contact-section .contact-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .contact-section {
    padding: 80px 0;
    }
    .contact-section .container {
    max-width: 90%;
        padding: 0 20px;
  }
  .contact-section .contact-form-block {
    padding: 30px;
  }
  .contact-section .contact-title {
    font-size: 42px;
  }
  .contact-section .form-row {
    flex-direction: column; 
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 28px; 
  }
  .contact-section .form-field textarea {
    height: 60px; 
  }
}

@media (max-width: 1024px) {
     .contact-section {
    padding: 60px 0;
    }
     .contact-section .container {
    padding: 0 15px;
  }
  .contact-section .contact-form-block {
    padding: 25px;
  }
  .contact-section .contact-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .contact-section .contact-form {
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 26px; 
    padding: 6px 12px; 
  }
  .contact-section .form-field textarea {
    height: 50px; 
  }
  .contact-section .submit-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}


.cotizador-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: #234457; 
  width: 100vw;
  max-width: none;
  min-height: 70vh; 
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.cotizador-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  gap: 60px; 
}

.cotizador-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px; 
  line-height: 1.1em;
  color: #FFFFFF; 
  margin: 0;
  padding: 0;
  text-align: center;
}

.cotizador-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.cotizador-form-area {
  width: 100%;
  height: 140000px; 
  background: #E5E5E5; 
  border-radius: 12px; 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); 
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.cotizador-section {
  background-color: #224457;
  padding: 100px 0 200px 0;
  min-height: auto;
}

@media (max-width: 1024px) {
  .cotizador-section {
    padding: 80px 0 150px 0;
  }
  
  .container-svg {
    height: 350px;
  }
  
  .cotizador-main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .status-legend {
    gap: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .container-svg {
    height: 450px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

@media (max-width: 1023px) {
  .container-svg {
    height: 350px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

.cotizador-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cotizador-header {
  text-align: center;
  margin-bottom: 30px;
}

.cotizador-main-title {
  font-family: 'Avocado', sans-serif;
  font-weight: normal;
  font-size: 48px;
  color: #FAEACD;
  margin-bottom: 30px;
}

.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
  preserveAspectRatio: xMidYMid meet;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@font-face {
  font-family: 'Avocado';
  src: url('avocado.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DMSansCustom';
  src: url('DMSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'InterCustom';
  src: url('Inter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #fff !important;
  color: #2d2d2d;
  background-image: none;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

body .intro-section {
  background: #1E3427 !important;
  background-color: #1E3427 !important;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2vw;
  height: 90px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 0 !important;
  flex-shrink: 0;
}

.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto !important;
  z-index: 1001;
  flex-shrink: 0;
  position: relative;
  top: 8px;
}

.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: #23412d;
  position: relative;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 8px;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #23412d;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}

nav {
  flex: 1;
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.language-bar {
  width: 100%;
  margin: 0 auto;
  background: #202020;
  color: #FFFFFF;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  padding: 20px 2cm;
  height: 61px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.language-bar span {
  cursor: pointer;
  margin: 0;
}

.language-bar .separator {
  width: 1px;
  height: 21px;
  background-color: #FFFFFF;
}

.language-bar span:hover {
  text-decoration: underline;
}

header {
  background: #FAEACD;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
    margin-left: 70px;
}

.logo img {
    display: block;
    max-height: 40px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

nav {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  padding-right: 2cm;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin: 0;
  padding: 0;
  align-items: center;
  height: auto;
  flex-wrap: nowrap;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: 900;
  font-size: 24px;
  font-family: 'DM Sans', Arial, sans-serif;
  letter-spacing: 0;
  line-height: normal;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

nav a:hover {
  color: #23412d;
}
.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
  background-color: #FAEACD !important;
}

@media (max-width: 1024px) {
  .navbar-flex {
    flex-direction: column;
    align-items: center;
    padding: 20px 0 10px 0.5cm; 
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  nav a {
    font-size: 18px;
    vertical-align: auto;
    display: block;
    align-items: flex-start;
  }
}


.hero {
  background-color: #FAEACD;
  position: relative;
  overflow: visible;
  padding-top: 32px;
  padding-bottom: 0 !important;
  min-height: 500px;
  background-image: url('Vector (5).png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  margin-bottom: 60px !important;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
    }

.hero-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-title, .hero-desc {
  word-break: break-word;
  white-space: normal;
}

.hero-form {
  width: 100%;
  max-width: 480px;     
  min-height: 420px;    
  margin: 0 auto;
  padding: 32px 24px;   
  background: #E86A33;  
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-form input, .hero-form button {
  width: 50%;
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}

.hero-form {
  font-family: 'InterCustom', 'DM Sans', Arial, sans-serif;
  margin-top: 0;
  width: 50%;
  max-width: 60px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.hero-right {
  margin-top: 0;
}



.hero-left, .hero-right-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title-block, .hero-form, .hero-right {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-vector {
  max-height: 22000px;
  height: auto;
  width: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}


.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  z-index: 1;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  align-self: flex-start; 
}



.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  overflow: visible;
}


.hero-title {
  width: 100%; 
  max-width: 860px; 
  height: auto;
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal; 
  font-weight: 400; 
  font-size: 80px;
  line-height: 84px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}


.hero-desc {
  width: 100%; 
  max-width: 600px; 
  height: auto; 
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal; 
  font-weight: normal; 
  font-size: 20px;
  line-height: 20px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}


.hero-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 20px;
  width: 625px; 
  max-width: 100%;
  height: 473px;
  background: #C14D35;
  border-radius: 10px;
  box-sizing: border-box;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 50px; 
  width: 545px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row.row-gap-20 {
    gap: 20px;
    justify-content: space-between;
}

.hero-form .field-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  width: 247.5px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 1;
  flex-shrink: 0;
}


.hero-form .row .field-div.field-correo {
    width: 100%;
}


.hero-form label {
  width: auto;
  height: auto;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form label.label-inter {
    font-family: 'Inter', sans-serif;
    line-height: 24px;
}


.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  padding: 0 10px;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form button {
  width: 80px;
  min-width: 60px;
  max-width: 90px;
  height: 80px;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  background: #FAEACD;
    border-radius: 5px;
  border: none;
  color: #000000;
    cursor: pointer;
  transition: all 0.3s ease;
}


.hero-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  gap: 10px;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  background: #D6D6D6;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-right img {
  display: block;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  object-fit: cover;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}





@media (max-width: 1460px) {
  .container,
  .navbar-flex {
    max-width: 100%;
    padding: 10px 0 10px 1cm;
  }
  
  .language-bar {
    padding: 20px 1cm;
  }
  
  nav {
    padding-right: 1cm;
  }
}

@media (max-width: 1024px) {
  .container,
  .navbar-flex {
    padding: 10px 0 10px 0.5cm;
  }
  
  .language-bar {
    padding: 20px 0.5cm;
  }
  
  nav {
    padding-right: 0.5cm;
  }
}


.intro-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background-color: #1E3427 !important;
  position: relative !important;
  z-index: 1 !important;
  padding: 0 0 100px !important;
  margin-top: -40px !important;
}

.intro-title {
  order: 1 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  margin-top: -50px !important;
  transform: translateY(-30px) !important;
}

.intro-subtitle {
  order: 2 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  margin-top: -30px !important;
  transform: translateY(-20px) !important;
}

.img-slider {
  order: 3 !important;
  z-index: 2 !important;
  position: relative !important;
  width: 100% !important;
  margin-top: -20px !important;
  transform: translateY(-10px) !important;
}

.intro-title {
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  color: #FAEACD;
  margin: 0 auto;
  text-align: center;
}

.intro-subtitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 880px;
  max-width: 100%;
  height: auto;
  flex: none;
  order: 1;
  flex-grow: 0;
  text-align: center;
  margin: -20px auto 20px;
}

.intro-subtitle p {
  width: 880px;
  max-width: 100%;
  height: auto;
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #FAEACD;
  margin: 0 auto;
}


.img-slider {
  max-width: 1200px;
  margin: -20px auto 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.slider-images {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  scroll-behavior: smooth;

  margin-top: 20px;
}

.img-container {
    flex: 0 0 calc(25% - 15px);
    transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-button {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
    background: #FAEACD !important;
    border: none;
  cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: #FAEACD !important;
    opacity: 0.9;
}


.slider-button img {
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) saturate(100%) invert(13%) sepia(23%) saturate(669%) hue-rotate(108deg) brightness(94%) contrast(89%);
}

.right-button {
    right: 40px;
}

.left-button {
    left: 40px;
}


.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #FAEACD;
}


.slider-images::-webkit-scrollbar {
    display: none;
}


.slider-images .img-container:nth-child(even) { 
    align-self: flex-start; 
    margin-top: 20px; 
}

.slider-images .img-container:nth-child(odd) { 
    align-self: flex-end; 
    margin-bottom: 20px; 
}



.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slider-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 9px;
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center;     
  flex-grow: 0;
  z-index: 1;
}


.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  flex: none;
  flex-grow: 0;
  cursor: pointer;
  transition: background 0.3s;
  border: none !important;
}

.dot.active {
  background: #fff !important;
}

.brochure-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 70px; 
  background: #fff !important;
  width: 100vw;
  max-width: none;
  height: auto !important;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  padding-top: 0 !important;
  margin-top: 48px !important;
  padding-bottom: 0 !important;
  margin-bottom: 48px !important;
  border-top: none !important;
  border-bottom: none !important;
}

.brochure-section::before,
.brochure-section::after {
    background: #fff !important;
    background-color: #fff !important;
    border: none !important;
}

.brochure-section .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    gap: 40px; 
}

.brochure-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 35%; 
    max-width: 400px; 
    flex-shrink: 0;
}

.brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.brochure-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 56px !important;
    line-height: 1.2; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 16px !important;
    line-height: 1.4; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-button {
    display: inline-block !important;
    padding: 12px 25px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.brochure-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%; 
    max-width: 600px; 
    flex-shrink: 0;
}

.brochure-image-placeholder {
    width: 100%;
    height: 280px !important;
    background: #D9D9D9 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


@media (max-width: 1024px) {
    .brochure-section {
        padding: 40px 20px;
    }
    .brochure-section .container {
        flex-direction: column;
        gap: 30px;
    }
    .brochure-left,
    .brochure-right {
        width: 100%;
        max-width: 600px; 
        text-align: center;
        align-items: center;
    }
    .brochure-text {
        gap: 12px;
    }
    .brochure-title { 
        font-size: 42px; 
        line-height: 1.2;
    }
    .brochure-description { 
        font-size: 15px; 
        line-height: 1.3;
    }
    .brochure-button {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 160px;
    }
    .brochure-image-placeholder {
        height: 240px; 
    }
}

@media (max-width: 1024px) {
    .brochure-section {
        padding: 30px 15px;
    }
    .brochure-title { 
        font-size: 32px; 
    }
    .brochure-description { 
        font-size: 14px; 
    }
    .brochure-button {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 140px;
    }
    .brochure-image-placeholder {
        height: 200px; 
    }
}


.combined-amenities-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    background: #224457;
    background-image: url('Vector (1).png');
    background-repeat: no-repeat;
    background-size: 40% auto !important;
    background-position: 0 0 !important;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.combined-amenities-cta > .container:nth-child(1) {
    padding-top: 0 !important;
    margin-top: 0 !important;
    gap: 0 !important;
}

.combined-amenities-cta .amenities-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.combined-amenities-cta::before,
.combined-amenities-cta::after {
    display: none;
}


.combined-amenities-cta + section { 
    margin-top: 0 !important; 
}


.combined-amenities-cta > .container:nth-child(1) { 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 30px; 
    position: relative; 
    padding: 0 20px; 
    box-sizing: border-box;
}

.combined-amenities-cta > .container:nth-child(2) { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1440px; 
    margin: 0 auto; 
    gap: 50px; 
    padding: 0 70px; 
    box-sizing: border-box;
    background: none !important; 
}


.combined-amenities-cta .amenities-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 15px; 
    width: 100%;
    max-width: 800px; 
    text-align: left; 
}

.combined-amenities-cta .amenities-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px; 
    line-height: 1.2em; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.combined-amenities-cta .amenities-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px; 
    line-height: 24px; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}


.combined-amenities-cta .amenities-gallery {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    width: 100%; 
    max-width: 1100px; 
    height: auto; 
    position: relative; 
    overflow: hidden; 
    padding: 0 60px; 
    box-sizing: border-box;
}

.combined-amenities-cta .gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.combined-amenities-cta .gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.combined-amenities-cta .gallery-item.needs-item-tall {
    grid-row: span 2;
}

.combined-amenities-cta .gallery-item.needs-item-short {
    grid-row: span 1;
}

.combined-amenities-cta .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 4; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 2; grid-row: 2 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 1; grid-row: 3; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 4; grid-row: 2; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 3; grid-row: 3 / span 2; }

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 2; grid-row: 2 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 1; grid-row: 3; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 1; grid-row: 4 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 2; grid-row: 4; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 2; grid-row: 5; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 1; grid-row: 6 / span 2; }
}

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    display: block !important;
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 420px;
    height: 420px;
    padding: 0 !important;
  }
  .amenidades-slide-track {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100%;
    will-change: transform;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal {
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item {
    width: 70vw !important;
    max-width: 250px !important;
    min-width: 120px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    display: block;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-tall {
    height: 270px !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-short {
    height: 100px !important;
  }
  /* Ocultar los .gallery-item originales en móvil */
  .combined-amenities-cta .gallery-item:not(.amenidades-slide-pair .gallery-item) {
    display: none !important;
  }
}


.combined-amenities-cta .gallery-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 10px; 
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center; 
  flex-grow: 0;
  z-index: 1;
}

.combined-amenities-cta .gallery-dots .dot {
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  width: 12px !important;
  height: 12px !important;
  transition: background 0.3s;
  border: none !important;
}

.combined-amenities-cta .gallery-dots .dot.active {
  background: #fff !important;
}

.combined-amenities-cta .gallery-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0; 
  gap: 8px;
  position: absolute; 
  width: 40px; 
  height: 40px; 
  background: #FAEACD; 
  border-radius: 50%; 
  flex: none;
  flex-grow: 0;
  z-index: 3; 
  cursor: pointer;
  top: 50%; 
  transform: translateY(-50%); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; 
  transition: background-color 0.3s ease;
}

.combined-amenities-cta .gallery-button:hover {
    background-color: #E0D3B8; 
}

.combined-amenities-cta .gallery-button.left-button {
  left: 10px; 
  background-image: url('Vector (4).png'); 
}

.combined-amenities-cta .gallery-button.right-button {
  right: 10px; 
  background-image: url('Vector (3).png'); 
}

.combined-amenities-cta .gallery-button svg path {

    stroke: #1E3427;
}


.combined-amenities-cta .cta-brochure-left {
  display: flex;
  justify-content: center;
  align-items: center;
    width: 50%; 
    max-width: 700px; 
    flex-shrink: 0; 
}

.combined-amenities-cta .cta-brochure-image-placeholder {
    height: 180px !important;
    aspect-ratio: 1/1 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}

.combined-amenities-cta .cta-brochure-img {
    object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

.combined-amenities-cta .cta-brochure-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: 50%;
    max-width: 500px;
    flex-shrink: 0;
    text-align: right;
}

.combined-amenities-cta .cta-brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.combined-amenities-cta .cta-brochure-title {
    font-family: 'Avocado', 'Cormorant Garamond', serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2em;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-description {
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-button {
    display: inline-block;
    padding: 12px 25px;
    background: #224457 !important;
    color: #fff !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.combined-amenities-cta .cta-brochure-button:hover {
    background: #E0D3B8;
}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 60px 0;
        gap: 40px;
         background-size: 150px;
         background-position: left top;
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 15px;
         gap: 30px;
          max-width: 960px;
          align-items: center;
     }
      .combined-amenities-cta .amenities-text {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    .combined-amenities-cta .amenities-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .amenities-description { font-size: 16px; line-height: 1.3; }

    .combined-amenities-cta .amenities-gallery {
        gap: 15px;
        align-items: center;
         max-width: 900px; 
          padding: 0 40px; 
    }
    .combined-amenities-cta .gallery-images {
        gap: 15px; 
        padding-left: 0;
        padding-right: 0;
        height: auto; 
        padding-bottom: 0; 
         justify-content: center; 
    }
    .combined-amenities-cta .gallery-item {
        width: 180px; 
        align-self: auto; 
    }
    .combined-amenities-cta .gallery-item-short {
        height: 180px; 
         align-self: flex-start;
    }
    .combined-amenities-cta .gallery-item-tall {
        height: 280px; 
         align-self: flex-end;
    }
    .combined-amenities-cta .gallery-dots { gap: 8px; }
    .combined-amenities-cta .gallery-dots .dot { width: 8px; height: 8px; }
    .combined-amenities-cta .gallery-button {
       width: 30px; 
       height: 30px;
       top: 50%;
       transform: translateY(-50%);
        background-size: 50%;
    }
  .combined-amenities-cta .gallery-button.left-button {
      left: 0; 
  }
  .combined-amenities-cta .gallery-button.right-button {
      right: 0; 
  }

      .combined-amenities-cta > .container:nth-child(2) { 
        flex-direction: column; 
        gap: 30px;
        padding: 0 20px;
        align-items: center; 
    }
   .combined-amenities-cta .cta-brochure-left, 
   .combined-amenities-cta .cta-brochure-right {
        width: 100%; 
        max-width: 600px; 
        text-align: center; 
        align-items: center; 
   }
    .combined-amenities-cta .cta-brochure-image-placeholder {
          height: 250px; 
    }
    .combined-amenities-cta .cta-brochure-text {
        gap: 10px;
        align-items: center; 
    }
    .combined-amenities-cta .cta-brochure-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .cta-brochure-description { font-size: 16px; line-height: 1.3; }
    .combined-amenities-cta .cta-brochure-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }

}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 40px 0;
        gap: 30px; 
            background-size: 100px; 
        background-position: left top; 
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 10px;
         gap: 20px;
     }
      .combined-amenities-cta .amenities-text {
        text-align: center; 
         align-items: center; 
         gap: 10px;
     }
    .combined-amenities-cta .amenities-title { font-size: 36px; }
    .combined-amenities-cta .amenities-description { font-size: 15px; }

    .combined-amenities-cta .amenities-gallery {
         max-width: 400px; 
    }
     .combined-amenities-cta .gallery-images {
         grid-template-columns: repeat(2, 1fr); 
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .combined-amenities-cta .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.needs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 40px 20px;
  background: #F8ECD7; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
    margin-top: 0;
    background-color: #FAEACD !important;
}

.needs-section .needs-text {
    margin-top: -20px;
  text-align: center; 
  max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.needs-section .needs-gallery {
    margin-top: 30px;
}

a[href="#"][class="needs-button"] {
    display: inline-block !important;
    padding: 16px 35px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: normal !important;
    border-radius: 25px !important;
    transition: background 0.3s ease !important;
    min-width: 220px !important;
    text-align: center !important;
}

.needs-section .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.needs-section .needs-gallery {
    margin-bottom: 50px;
}

.needs-section .gallery-images {
    display: grid; 
  grid-template-columns: repeat(4, 1fr); 
    gap: 22px;
    margin-bottom: 30px;
}

.needs-section .gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
  overflow: hidden;
    border-radius: 10px;
}

.needs-section .gallery-item.needs-item-tall {
    height: 320px;
    grid-row: span 2;
}

.needs-section .gallery-item.needs-item-short {
    height: 150px;
    grid-row: span 1;
}

.needs-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.needs-section .gallery-images .needs-item-tall:nth-child(1) { 
    grid-column: span 1; 
    grid-row: span 2; 
}

.needs-section .gallery-images .needs-item-short:nth-child(2) { 
    grid-column: span 1; 
    grid-row: span 1; 
}

.needs-section .gallery-images .needs-item-tall:nth-child(3) { 
     grid-column: span 1;
     grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(4) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(5) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(6) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(7) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(8) {     
     grid-column: span 1;
     grid-row: span 1;
}


.needs-section .needs-button {
    display: inline-block;
  padding: 15px 30px; 
  background: #C14D35; 
  color: #FFFFFF;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
  font-size: 18px; 
    line-height: normal;
  border-radius: 5px;
  transition: background 0.3s ease; 
  margin-top: 20px; 
  margin-bottom: 40px;
}

.needs-section .needs-button:hover {
    background: #A03D2A; 
}


@media (max-width: 1024px) {
  .needs-section {
    padding: 60px 15px;
  }
  .needs-section .container {
      gap: 30px;
  }
  .needs-section .needs-text {
        gap: 15px;
  }
   .needs-section .needs-title { font-size: 48px; line-height: 1.2; }
   .needs-section .needs-description { font-size: 16px; line-height: 1.3; }

   .needs-section .needs-gallery {
      max-width: 700px; 
   }
   .needs-section .gallery-images {
      grid-template-columns: repeat(2, 1fr); 
      gap: 10px;
       max-width: 700px;
       grid-auto-rows: auto; 
   }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }
}

@media (max-width: 768px) {
.needs-section {
        padding: 40px 10px;
    }
     .needs-section .container {
         gap: 20px;
     }
     .needs-section .needs-text {
    gap: 10px;
     }
    .needs-section .needs-title { font-size: 36px; line-height: 1.1; }
    .needs-section .needs-description { font-size: 15px; line-height: 1.3; }

    .needs-section .needs-gallery {
         max-width: 400px; 
    }
     .needs-section .gallery-images {
         grid-template-columns: repeat(2, 1fr);
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
}

.features-section .container {
  max-width: 1350px;
    width: 100%;
  margin: 0 auto; 
  padding: 0 40px 0 20px;
}

.features-section .features-grid {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  margin-left: 60px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 20px;
}

@media (max-width: 1200px) {
  .features-section .features-grid {
    gap: 25px;
    margin-left: 4px !important;
  }
}

@media (max-width: 1024px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 0 !important; 
  }
}

.features-section .feature-item {
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
}

.features-section .feature-icon {
  width: 100%; 
  max-width: 250px;
  height: auto; 
  margin-bottom: 15px;
  object-fit: contain;
}

.features-section .feature-text {
    font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #224457;
    margin: 0;
}

.living-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    background: #c14d35;
    background-image: url('Vector (6).png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


.living-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('Vector (1).png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right center;
  opacity: 0.15; 
  pointer-events: none;
  z-index: -1;
}

.living-section .container {
     display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center; 
     width: 100%;
  max-width: 1200px; 
     margin: 0 auto;
  padding: 0 40px; 
     box-sizing: border-box;
  gap: 50px; 
  position: relative; 
            z-index: 3; 
}

.living-section .living-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  gap: 30px; 
    width: 50%; 
  max-width: 500px;
}


.living-section .living-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 60px; 
  line-height: 1.1em;
  color: #FAEACD; 
    margin: 0;
    padding: 0;
}
.living-section .row-title h3 {
  font-family: 'Avocado', serif !important;
}
.living-section .living-button {
    display: inline-block;
    padding: 15px 20px;
    background: #FAEACD !important;
    color: #224457 !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400; 
    font-size: 16px !important; 
    line-height: normal;
    border-radius: 8px;
    transition: background 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.living-section .living-button:hover {
  background: #E0D3B8; 
}

.living-section .living-right {
     display: flex;
    justify-content: center;
    align-items: center;
          width: 50%; 
  max-width: 500px;
}

.living-section .living-image-placeholder {
    width: 100%;
  height: 300px; 
  background: #D9D9D9; 
     display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  border-radius: 10px; 
}

.living-section .living-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.living-section .living-text-blocks {
    display: flex;
  flex-direction: column; 
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0; 
  padding: 0 40px; 
    box-sizing: border-box;
  position: relative;
  z-index: 1; 
  gap: 0; 
}


.living-section .living-text-blocks .text-row {
    display: flex; 
  flex-direction: row; 
  width: 100%;
  gap: 60px; 
  padding: 30px 0; 
  border-bottom: 1px solid #FAEACD; 
}


.living-section .living-text-blocks .text-row:last-child {
  border-bottom: none;
}


.living-section .living-text-blocks .text-row .row-title {
  width: 35%; 
    flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-description {
  width: 65%; 
  flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .text-row .row-description p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .titles-column,
.living-section .living-text-blocks .descriptions-column {
  display: none;
}


@media (max-width: 1024px) {
  .living-section {
    padding: 60px 0;
  }
  .living-section::before {
    opacity: 0.1; 
  }
  .living-section .container {
    flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .living-section .living-left,
  .living-section .living-right {
    width: 100%; 
    max-width: 600px;
    align-items: center; 
  }
  .living-section .living-title { font-size: 48px; line-height: 1.1; }
  .living-section .living-button { padding: 12px 20px; font-size: 15px; }
  .living-section .living-image-placeholder { height: 250px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 40px auto 0;
    padding: 0 30px;
                text-align: center; 
  }
  
  .living-section .living-text-blocks .text-row {
    flex-direction: column; 
    gap: 15px;
    padding: 25px 0;
  }
  
  .living-section .living-text-blocks .text-row .row-title,
  .living-section .living-text-blocks .text-row .row-description {
    width: 100%;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 32px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 15px; }
}

@media (max-width: 1024px) {
  .living-section {
    padding: 40px 0;
  }
  .living-section::before {
          opacity: 0.08; 
  }
  .living-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .living-section .living-left,
  .living-section .living-right {
    max-width: 100%;
  }
  .living-section .living-title { font-size: 36px; }
  .living-section .living-button { padding: 10px 18px; font-size: 14px; }
  .living-section .living-image-placeholder { height: 200px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 30px auto 0;
    padding: 0 20px;
    text-align: left !important;
  }
  
  .living-section .living-text-blocks .text-row {
    padding: 20px 0;
    gap: 10px;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 28px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 14px; }
}


.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0; 
  background: #FFFFFF; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-section .container {
    display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: flex-start; 
    width: 100%;
  max-width: 1200px; 
    margin: 0 auto;
  padding: 0 40px; 
  box-sizing: border-box;
  gap: 80px; 
}


.faq-section .faq-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  width: 35%; 
  max-width: 400px;
  flex-shrink: 0;
}

.faq-section .faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
      font-size: 60px; 
  line-height: 1.1em;
  color: #000000; 
    margin: 0;
    padding: 0;
  text-align: left;
}


.faq-section .faq-right {
    display: flex;
    flex-direction: column;
  width: 65%; 
  max-width: 700px;
  flex-shrink: 0;
}


.faq-section .faq-item {
    display: flex;
    flex-direction: column;
  width: 100%;
  padding: 30px 0; 
  border-bottom: none; 
  gap: 20px; 
}


.faq-section .faq-item:last-child {
  border-bottom: none;
}

.faq-section .faq-question {
    display: flex;
  flex-direction: row;
  justify-content: space-between; 
    align-items: center;
  width: 100%;
  cursor: pointer; 
  padding-bottom: 15px; 
  border-bottom: 1px solid #CCCCCC; 
}


.faq-section .faq-question span:first-child {
  font-family: 'Avocado', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}


.faq-section .faq-arrow {
    font-size: 24px; 
  color: #000000; 
  font-weight: bold;
  flex-shrink: 0; 
  margin-left: 20px; 
  transform: rotate(0deg); 
}


.faq-section .faq-answer {
  display: block; 
  width: 100%;
}


.faq-section .faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #000000; 
  margin: 0;
  padding: 0;
  padding-right: 44px; 
}


@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .container {
      flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    width: 100%; 
    max-width: 700px;
    align-items: center; 
  }
  .faq-section .faq-title { 
    font-size: 48px; 
    line-height: 1.1; 
    text-align: center; 
  }
  .faq-section .faq-item {
    padding: 25px 0;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 32px; 
    text-align: left;
  }
  .faq-section .faq-answer p { 
    font-size: 15px; 
    padding-right: 20px; 
         text-align: left;
    }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    max-width: 100%;
  }
  .faq-section .faq-title { 
    font-size: 36px; 
  }
  .faq-section .faq-item {
    padding: 20px 0;
        gap: 15px;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 28px; 
  }
  .faq-section .faq-arrow {
    font-size: 20px;
    margin-left: 15px;
  }
  .faq-section .faq-answer p { 
    font-size: 14px; 
    padding-right: 15px; 
  }
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 80px 0;
  background: #F8ECD7;
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 236, 215, 0.7); 
  z-index: 1;
  pointer-events: none;
}

.contact-section .container {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    width: 100%;
  max-width: 800px; 
    margin: 0 auto;
  padding: 0 40px;
    box-sizing: border-box;
  position: relative;
  z-index: 2; 
  gap: 40px;
}

.contact-section .contact-form-block {
    display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background: #4A5D5F; 
    border-radius: 10px; 
  width: 100%;
  max-width: 200px;
    box-sizing: border-box;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); 
}


.contact-section .contact-title {
  font-family: 'Cormorant Garamond', serif;
    font-style: normal;
  font-weight: 400;
  font-size: 48px; 
  line-height: 1.2em;
  color: #FFFFFF; 
  margin: 0 0 30px 0;
    padding: 0;
  text-align: center;
}

.contact-section .contact-form {
    display: flex;
  flex-direction: column;
  width: 100%;
    gap: 20px; 
}

.contact-section .form-row {
    display: flex;
  flex-direction: row;
  gap: 20px; 
  width: 100%;
}

.contact-section .form-field {
    display: flex;
  flex-direction: column;
  gap: 10px; 
  flex: 1; 
}

.contact-section .form-field.full-width {
  width: 100%;
}

.contact-section .form-field label {
  font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3em;
  color: #FFFFFF; 
    margin: 0;
    padding: 0;
}

.contact-section .form-field input,
.contact-section .form-field textarea {
    width: 100%;
  height: 30px; 
  background: #FFFFFF;
  border: none; 
  border-radius: 5px; 
  padding: 8px 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
  line-height: 1.3em;
  color: #000000; 
  box-sizing: border-box;
  outline: none; 
}

.contact-section .form-field textarea {
  height: 70px;
  resize: vertical; 
}


.contact-section .submit-button {
    display: inline-block;
  padding: 6px 18px;
  font-size: 14px;
  margin-top: -32px; 
  background: #F8ECD7; 
  color: #000000; 
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 600;
  font-size: 16px;
    line-height: normal;
    border: none;
  border-radius: 10px; 
    cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
  align-self: center; 
  min-width: 120px; 
}

.contact-section .submit-button:hover {
  background: #E0D3B8; 
}

.contact-section .contact-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
  width: 100%;
  max-width: 600px;
  height: 200px;
  background: #D9D9D9;
  border-radius: 10px;
    overflow: hidden;
  margin-top: 0; 
}

.contact-section .contact-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .contact-section {
    padding: 80px 0;
    }
    .contact-section .container {
    max-width: 90%;
        padding: 0 20px;
  }
  .contact-section .contact-form-block {
    padding: 30px;
  }
  .contact-section .contact-title {
    font-size: 42px;
  }
  .contact-section .form-row {
    flex-direction: column; 
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 28px; 
  }
  .contact-section .form-field textarea {
    height: 60px; 
  }
}

@media (max-width: 1024px) {
     .contact-section {
    padding: 60px 0;
    }
     .contact-section .container {
    padding: 0 15px;
  }
  .contact-section .contact-form-block {
    padding: 25px;
  }
  .contact-section .contact-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .contact-section .contact-form {
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 26px; 
    padding: 6px 12px; 
  }
  .contact-section .form-field textarea {
    height: 50px; 
  }
  .contact-section .submit-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}


.cotizador-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: #234457; 
  width: 100vw;
  max-width: none;
  min-height: 70vh; 
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.cotizador-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  gap: 60px; 
}

.cotizador-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px; 
  line-height: 1.1em;
  color: #FFFFFF; 
  margin: 0;
  padding: 0;
  text-align: center;
}

.cotizador-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.cotizador-form-area {
  width: 100%;
  height: 140000px; 
  background: #E5E5E5; 
  border-radius: 12px; 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); 
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.cotizador-section {
  background-color: #224457;
  padding: 100px 0 200px 0;
  min-height: auto;
}

@media (max-width: 1024px) {
  .cotizador-section {
    padding: 80px 0 150px 0;
  }
  
  .container-svg {
    height: 350px;
  }
  
  .cotizador-main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .status-legend {
    gap: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .container-svg {
    height: 450px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

@media (max-width: 1023px) {
  .container-svg {
    height: 350px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

.cotizador-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cotizador-header {
  text-align: center;
  margin-bottom: 30px;
}

.cotizador-main-title {
  font-family: 'Avocado', sans-serif;
  font-weight: normal;
  font-size: 48px;
  color: #FAEACD;
  margin-bottom: 30px;
}

.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
  preserveAspectRatio: xMidYMid meet;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

@font-face {
  font-family: 'Avocado';
  src: url('avocado.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Avocado';
  src: url('avocado.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DMSansCustom';
  src: url('DMSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'InterCustom';
  src: url('Inter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #fff !important;
  color: #2d2d2d;
  background-image: none;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

body .intro-section {
  background: #1E3427 !important;
  background-color: #1E3427 !important;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2vw;
  height: 90px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 0 !important;
  flex-shrink: 0;
}

.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto !important;
  z-index: 1001;
  flex-shrink: 0;
  position: relative;
  top: 8px;
}

.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: #23412d;
  position: relative;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 8px;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #23412d;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}

nav {
  flex: 1;
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.language-bar {
  width: 100%;
  margin: 0 auto;
  background: #202020;
  color: #FFFFFF;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  padding: 20px 2cm;
  height: 61px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.language-bar span {
  cursor: pointer;
  margin: 0;
}

.language-bar .separator {
  width: 1px;
  height: 21px;
  background-color: #FFFFFF;
}

.language-bar span:hover {
  text-decoration: underline;
}

header {
  background: #FAEACD;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
    margin-left: 70px;
}

.logo img {
    display: block;
    max-height: 40px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

nav {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  padding-right: 2cm;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin: 0;
  padding: 0;
  align-items: center;
  height: auto;
  flex-wrap: nowrap;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: 900;
  font-size: 24px;
  font-family: 'DM Sans', Arial, sans-serif;
  letter-spacing: 0;
  line-height: normal;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

nav a:hover {
  color: #23412d;
}
.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
  background-color: #FAEACD !important;
}

@media (max-width: 1024px) {
  .navbar-flex {
    flex-direction: column;
    align-items: center;
    padding: 20px 0 10px 0.5cm; 
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  nav a {
    font-size: 18px;
    vertical-align: auto;
    display: block;
    align-items: flex-start;
  }
}


.hero {
  background-color: #FAEACD;
  position: relative;
  overflow: visible;
  padding-top: 32px;
  padding-bottom: 0 !important;
  min-height: 500px;
  background-image: url('Vector (5).png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  margin-bottom: 60px !important;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
    }

.hero-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-title, .hero-desc {
  word-break: break-word;
  white-space: normal;
}

.hero-form {
  width: 100%;
  max-width: 480px;     
  min-height: 420px;    
  margin: 0 auto;
  padding: 32px 24px;   
  background: #E86A33;  
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-form input, .hero-form button {
  width: 50%;
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}

.hero-form {
  font-family: 'InterCustom', 'DM Sans', Arial, sans-serif;
  margin-top: 0;
  width: 50%;
  max-width: 60px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.hero-right {
  margin-top: 0;
}



.hero-left, .hero-right-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title-block, .hero-form, .hero-right {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-vector {
  max-height: 22000px;
  height: auto;
  width: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}


.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  z-index: 1;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  align-self: flex-start; 
}



.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  overflow: visible;
}


.hero-title {
  width: 100%; 
  max-width: 860px; 
  height: auto;
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal; 
  font-weight: 400; 
  font-size: 80px;
  line-height: 84px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}


.hero-desc {
  width: 100%; 
  max-width: 600px; 
  height: auto; 
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal; 
  font-weight: normal; 
  font-size: 20px;
  line-height: 20px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}


.hero-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 20px;
  width: 625px; 
  max-width: 100%;
  height: 473px;
  background: #C14D35;
  border-radius: 10px;
  box-sizing: border-box;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 50px; 
  width: 545px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row.row-gap-20 {
    gap: 20px;
    justify-content: space-between;
}

.hero-form .field-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  width: 247.5px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 1;
  flex-shrink: 0;
}


.hero-form .row .field-div.field-correo {
    width: 100%;
}


.hero-form label {
  width: auto;
  height: auto;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form label.label-inter {
    font-family: 'Inter', sans-serif;
    line-height: 24px;
}


.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  padding: 0 10px;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form button {
  width: 80px;
  min-width: 60px;
  max-width: 90px;
  height: 80px;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  background: #FAEACD;
    border-radius: 5px;
  border: none;
  color: #000000;
    cursor: pointer;
  transition: all 0.3s ease;
}


.hero-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  gap: 10px;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  background: #D6D6D6;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-right img {
  display: block;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  object-fit: cover;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}





@media (max-width: 1460px) {
  .container,
  .navbar-flex {
    max-width: 100%;
    padding: 10px 0 10px 1cm;
  }
  
  .language-bar {
    padding: 20px 1cm;
  }
  
  nav {
    padding-right: 1cm;
  }
}

@media (max-width: 1024px) {
  .container,
  .navbar-flex {
    padding: 10px 0 10px 0.5cm;
  }
  
  .language-bar {
    padding: 20px 0.5cm;
  }
  
  nav {
    padding-right: 0.5cm;
  }
}


.intro-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background-color: #1E3427 !important;
  position: relative !important;
  z-index: 1 !important;
  padding: 0 0 100px !important;
  margin-top: -40px !important;
}

.intro-title {
  order: 1 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  margin-top: -50px !important;
  transform: translateY(-30px) !important;
}

.intro-subtitle {
  order: 2 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  margin-top: -30px !important;
  transform: translateY(-20px) !important;
}

.img-slider {
  order: 3 !important;
  z-index: 2 !important;
  position: relative !important;
  width: 100% !important;
  margin-top: -20px !important;
  transform: translateY(-10px) !important;
}

.intro-title {
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  color: #FAEACD;
  margin: 0 auto;
  text-align: center;
}

.intro-subtitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 880px;
  max-width: 100%;
  height: auto;
  flex: none;
  order: 1;
  flex-grow: 0;
  text-align: center;
  margin: -20px auto 20px;
}

.intro-subtitle p {
  width: 880px;
  max-width: 100%;
  height: auto;
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #FAEACD;
  margin: 0 auto;
}


.img-slider {
  max-width: 1200px;
  margin: -20px auto 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.slider-images {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  scroll-behavior: smooth;

  margin-top: 20px;
}

.img-container {
    flex: 0 0 calc(25% - 15px);
    transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-button {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
    background: #FAEACD !important;
    border: none;
  cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: #FAEACD !important;
    opacity: 0.9;
}


.slider-button img {
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) saturate(100%) invert(13%) sepia(23%) saturate(669%) hue-rotate(108deg) brightness(94%) contrast(89%);
}

.right-button {
    right: 40px;
}

.left-button {
    left: 40px;
}


.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #FAEACD;
}


.slider-images::-webkit-scrollbar {
    display: none;
}


.slider-images .img-container:nth-child(even) { 
    align-self: flex-start; 
    margin-top: 20px; 
}

.slider-images .img-container:nth-child(odd) { 
    align-self: flex-end; 
    margin-bottom: 20px; 
}



.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slider-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 9px;
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center;     
  flex-grow: 0;
  z-index: 1;
}


.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  flex: none;
  flex-grow: 0;
  cursor: pointer;
  transition: background 0.3s;
  border: none !important;
}

.dot.active {
  background: #fff !important;
}

.brochure-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 70px; 
  background: #fff !important;
  width: 100vw;
  max-width: none;
  height: auto !important;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  padding-top: 0 !important;
  margin-top: 48px !important;
  padding-bottom: 0 !important;
  margin-bottom: 48px !important;
  border-top: none !important;
  border-bottom: none !important;
}

.brochure-section::before,
.brochure-section::after {
    background: #fff !important;
    background-color: #fff !important;
    border: none !important;
}

.brochure-section .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    gap: 40px; 
}

.brochure-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 35%; 
    max-width: 400px; 
    flex-shrink: 0;
}

.brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.brochure-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 56px !important;
    line-height: 1.2; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 16px !important;
    line-height: 1.4; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-button {
    display: inline-block !important;
    padding: 12px 25px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.brochure-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%; 
    max-width: 600px; 
    flex-shrink: 0;
}

.brochure-image-placeholder {
    width: 100%;
    height: 280px !important;
    background: #D9D9D9 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


@media (max-width: 1024px) {
    .brochure-section {
        padding: 40px 20px;
    }
    .brochure-section .container {
        flex-direction: column;
        gap: 30px;
    }
    .brochure-left,
    .brochure-right {
        width: 100%;
        max-width: 600px; 
        text-align: center;
        align-items: center;
    }
    .brochure-text {
        gap: 12px;
    }
    .brochure-title { 
        font-size: 42px; 
        line-height: 1.2;
    }
    .brochure-description { 
        font-size: 15px; 
        line-height: 1.3;
    }
    .brochure-button {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 160px;
    }
    .brochure-image-placeholder {
        height: 240px; 
    }
}

@media (max-width: 1024px) {
    .brochure-section {
        padding: 30px 15px;
    }
    .brochure-title { 
        font-size: 32px; 
    }
    .brochure-description { 
        font-size: 14px; 
    }
    .brochure-button {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 140px;
    }
    .brochure-image-placeholder {
        height: 200px; 
    }
}


.combined-amenities-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    background: #224457;
    background-image: url('Vector (1).png');
    background-repeat: no-repeat;
    background-size: 40% auto !important;
    background-position: 0 0 !important;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.combined-amenities-cta > .container:nth-child(1) {
    padding-top: 0 !important;
    margin-top: 0 !important;
    gap: 0 !important;
}

.combined-amenities-cta .amenities-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.combined-amenities-cta::before,
.combined-amenities-cta::after {
    display: none;
}


.combined-amenities-cta + section { 
    margin-top: 0 !important; 
}


.combined-amenities-cta > .container:nth-child(1) { 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 30px; 
    position: relative; 
    padding: 0 20px; 
    box-sizing: border-box;
}

.combined-amenities-cta > .container:nth-child(2) { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1440px; 
    margin: 0 auto; 
    gap: 50px; 
    padding: 0 70px; 
    box-sizing: border-box;
    background: none !important; 
}


.combined-amenities-cta .amenities-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 15px; 
    width: 100%;
    max-width: 800px; 
    text-align: left; 
}

.combined-amenities-cta .amenities-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px; 
    line-height: 1.2em; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.combined-amenities-cta .amenities-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px; 
    line-height: 24px; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}


.combined-amenities-cta .amenities-gallery {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    width: 100%; 
    max-width: 1100px; 
    height: auto; 
    position: relative; 
    overflow: hidden; 
    padding: 0 60px; 
    box-sizing: border-box;
}

.combined-amenities-cta .gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.combined-amenities-cta .gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.combined-amenities-cta .gallery-item.needs-item-tall {
    grid-row: span 2;
}

.combined-amenities-cta .gallery-item.needs-item-short {
    grid-row: span 1;
}

.combined-amenities-cta .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 4; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 2; grid-row: 2 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 1; grid-row: 3; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 4; grid-row: 2; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 3; grid-row: 3 / span 2; }

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 2; grid-row: 2 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 1; grid-row: 3; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 1; grid-row: 4 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 2; grid-row: 4; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 2; grid-row: 5; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 1; grid-row: 6 / span 2; }
}

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    display: block !important;
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 420px;
    height: 420px;
    padding: 0 !important;
  }
  .amenidades-slide-track {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100%;
    will-change: transform;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal {
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item {
    width: 70vw !important;
    max-width: 250px !important;
    min-width: 120px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    display: block;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-tall {
    height: 270px !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-short {
    height: 100px !important;
  }
  /* Ocultar los .gallery-item originales en móvil */
  .combined-amenities-cta .gallery-item:not(.amenidades-slide-pair .gallery-item) {
    display: none !important;
  }
}


.combined-amenities-cta .gallery-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 10px; 
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center; 
  flex-grow: 0;
  z-index: 1;
}

.combined-amenities-cta .gallery-dots .dot {
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  width: 12px !important;
  height: 12px !important;
  transition: background 0.3s;
  border: none !important;
}

.combined-amenities-cta .gallery-dots .dot.active {
  background: #fff !important;
}

.combined-amenities-cta .gallery-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0; 
  gap: 8px;
  position: absolute; 
  width: 40px; 
  height: 40px; 
  background: #FAEACD; 
  border-radius: 50%; 
  flex: none;
  flex-grow: 0;
  z-index: 3; 
  cursor: pointer;
  top: 50%; 
  transform: translateY(-50%); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; 
  transition: background-color 0.3s ease;
}

.combined-amenities-cta .gallery-button:hover {
    background-color: #E0D3B8; 
}

.combined-amenities-cta .gallery-button.left-button {
  left: 10px; 
  background-image: url('Vector (4).png'); 
}

.combined-amenities-cta .gallery-button.right-button {
  right: 10px; 
  background-image: url('Vector (3).png'); 
}

.combined-amenities-cta .gallery-button svg path {

    stroke: #1E3427;
}


.combined-amenities-cta .cta-brochure-left {
  display: flex;
  justify-content: center;
  align-items: center;
    width: 50%; 
    max-width: 700px; 
    flex-shrink: 0; 
}

.combined-amenities-cta .cta-brochure-image-placeholder {
    height: 180px !important;
    aspect-ratio: 1/1 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}

.combined-amenities-cta .cta-brochure-img {
    object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

.combined-amenities-cta .cta-brochure-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: 50%;
    max-width: 500px;
    flex-shrink: 0;
    text-align: right;
}

.combined-amenities-cta .cta-brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.combined-amenities-cta .cta-brochure-title {
    font-family: 'Avocado', 'Cormorant Garamond', serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2em;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-description {
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-button {
    display: inline-block;
    padding: 12px 25px;
    background: #224457 !important;
    color: #fff !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.combined-amenities-cta .cta-brochure-button:hover {
    background: #E0D3B8;
}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 60px 0;
        gap: 40px;
         background-size: 150px;
         background-position: left top;
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 15px;
         gap: 30px;
          max-width: 960px;
          align-items: center;
     }
      .combined-amenities-cta .amenities-text {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    .combined-amenities-cta .amenities-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .amenities-description { font-size: 16px; line-height: 1.3; }

    .combined-amenities-cta .amenities-gallery {
        gap: 15px;
        align-items: center;
         max-width: 900px; 
          padding: 0 40px; 
    }
    .combined-amenities-cta .gallery-images {
        gap: 15px; 
        padding-left: 0;
        padding-right: 0;
        height: auto; 
        padding-bottom: 0; 
         justify-content: center; 
    }
    .combined-amenities-cta .gallery-item {
        width: 180px; 
        align-self: auto; 
    }
    .combined-amenities-cta .gallery-item-short {
        height: 180px; 
         align-self: flex-start;
    }
    .combined-amenities-cta .gallery-item-tall {
        height: 280px; 
         align-self: flex-end;
    }
    .combined-amenities-cta .gallery-dots { gap: 8px; }
    .combined-amenities-cta .gallery-dots .dot { width: 8px; height: 8px; }
    .combined-amenities-cta .gallery-button {
       width: 30px; 
       height: 30px;
       top: 50%;
       transform: translateY(-50%);
        background-size: 50%;
    }
  .combined-amenities-cta .gallery-button.left-button {
      left: 0; 
  }
  .combined-amenities-cta .gallery-button.right-button {
      right: 0; 
  }

      .combined-amenities-cta > .container:nth-child(2) { 
        flex-direction: column; 
        gap: 30px;
        padding: 0 20px;
        align-items: center; 
    }
   .combined-amenities-cta .cta-brochure-left, 
   .combined-amenities-cta .cta-brochure-right {
        width: 100%; 
        max-width: 600px; 
        text-align: center; 
        align-items: center; 
   }
    .combined-amenities-cta .cta-brochure-image-placeholder {
          height: 250px; 
    }
    .combined-amenities-cta .cta-brochure-text {
        gap: 10px;
        align-items: center; 
    }
    .combined-amenities-cta .cta-brochure-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .cta-brochure-description { font-size: 16px; line-height: 1.3; }
    .combined-amenities-cta .cta-brochure-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }

}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 40px 0;
        gap: 30px; 
            background-size: 100px; 
        background-position: left top; 
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 10px;
         gap: 20px;
     }
      .combined-amenities-cta .amenities-text {
        text-align: center; 
         align-items: center; 
         gap: 10px;
     }
    .combined-amenities-cta .amenities-title { font-size: 36px; }
    .combined-amenities-cta .amenities-description { font-size: 15px; }

    .combined-amenities-cta .amenities-gallery {
         max-width: 400px; 
    }
     .combined-amenities-cta .gallery-images {
         grid-template-columns: repeat(2, 1fr); 
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .combined-amenities-cta .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.needs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 40px 20px;
  background: #F8ECD7; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
    margin-top: 0;
    background-color: #FAEACD !important;
}

.needs-section .needs-text {
    margin-top: -20px;
  text-align: center; 
  max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.needs-section .needs-gallery {
    margin-top: 30px;
}

a[href="#"][class="needs-button"] {
    display: inline-block !important;
    padding: 16px 35px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: normal !important;
    border-radius: 25px !important;
    transition: background 0.3s ease !important;
    min-width: 220px !important;
    text-align: center !important;
}

.needs-section .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.needs-section .needs-gallery {
    margin-bottom: 50px;
}

.needs-section .gallery-images {
    display: grid; 
  grid-template-columns: repeat(4, 1fr); 
    gap: 22px;
    margin-bottom: 30px;
}

.needs-section .gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
  overflow: hidden;
    border-radius: 10px;
}

.needs-section .gallery-item.needs-item-tall {
    height: 320px;
    grid-row: span 2;
}

.needs-section .gallery-item.needs-item-short {
    height: 150px;
    grid-row: span 1;
}

.needs-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.needs-section .gallery-images .needs-item-tall:nth-child(1) { 
    grid-column: span 1; 
    grid-row: span 2; 
}

.needs-section .gallery-images .needs-item-short:nth-child(2) { 
    grid-column: span 1; 
    grid-row: span 1; 
}

.needs-section .gallery-images .needs-item-tall:nth-child(3) { 
     grid-column: span 1;
     grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(4) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(5) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(6) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(7) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(8) {     
     grid-column: span 1;
     grid-row: span 1;
}


.needs-section .needs-button {
    display: inline-block;
  padding: 15px 30px; 
  background: #C14D35; 
  color: #FFFFFF;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
  font-size: 18px; 
    line-height: normal;
  border-radius: 5px;
  transition: background 0.3s ease; 
  margin-top: 20px; 
  margin-bottom: 40px;
}

.needs-section .needs-button:hover {
    background: #A03D2A; 
}


@media (max-width: 1024px) {
  .needs-section {
    padding: 60px 15px;
  }
  .needs-section .container {
      gap: 30px;
  }
  .needs-section .needs-text {
        gap: 15px;
  }
   .needs-section .needs-title { font-size: 48px; line-height: 1.2; }
   .needs-section .needs-description { font-size: 16px; line-height: 1.3; }

   .needs-section .needs-gallery {
      max-width: 700px; 
   }
   .needs-section .gallery-images {
      grid-template-columns: repeat(2, 1fr); 
      gap: 10px;
       max-width: 700px;
       grid-auto-rows: auto; 
   }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }
}

@media (max-width: 768px) {
.needs-section {
        padding: 40px 10px;
    }
     .needs-section .container {
         gap: 20px;
     }
     .needs-section .needs-text {
    gap: 10px;
     }
    .needs-section .needs-title { font-size: 36px; line-height: 1.1; }
    .needs-section .needs-description { font-size: 15px; line-height: 1.3; }

    .needs-section .needs-gallery {
         max-width: 400px; 
    }
     .needs-section .gallery-images {
         grid-template-columns: repeat(2, 1fr);
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
}

.features-section .container {
  max-width: 1350px;
    width: 100%;
  margin: 0 auto; 
  padding: 0 40px 0 20px;
}

.features-section .features-grid {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  margin-left: 60px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 20px;
}

@media (max-width: 1200px) {
  .features-section .features-grid {
    gap: 25px;
    margin-left: 4px !important;
  }
}

@media (max-width: 1024px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 0 !important; 
  }
}

.features-section .feature-item {
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
}

.features-section .feature-icon {
  width: 100%; 
  max-width: 250px;
  height: auto; 
  margin-bottom: 15px;
  object-fit: contain;
}

.features-section .feature-text {
    font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #224457;
    margin: 0;
}

.living-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    background: #c14d35;
    background-image: url('Vector (6).png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


.living-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('Vector (1).png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right center;
  opacity: 0.15; 
  pointer-events: none;
  z-index: -1;
}

.living-section .container {
     display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center; 
     width: 100%;
  max-width: 1200px; 
     margin: 0 auto;
  padding: 0 40px; 
     box-sizing: border-box;
  gap: 50px; 
  position: relative; 
            z-index: 3; 
}

.living-section .living-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  gap: 30px; 
    width: 50%; 
  max-width: 500px;
}


.living-section .living-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 60px; 
  line-height: 1.1em;
  color: #FAEACD; 
    margin: 0;
    padding: 0;
}
.living-section .row-title h3 {
  font-family: 'Avocado', serif !important;
}
.living-section .living-button {
    display: inline-block;
    padding: 15px 20px;
    background: #FAEACD !important;
    color: #224457 !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400; 
    font-size: 16px !important; 
    line-height: normal;
    border-radius: 8px;
    transition: background 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.living-section .living-button:hover {
  background: #E0D3B8; 
}

.living-section .living-right {
     display: flex;
    justify-content: center;
    align-items: center;
          width: 50%; 
  max-width: 500px;
}

.living-section .living-image-placeholder {
    width: 100%;
  height: 300px; 
  background: #D9D9D9; 
     display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  border-radius: 10px; 
}

.living-section .living-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.living-section .living-text-blocks {
    display: flex;
  flex-direction: column; 
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0; 
  padding: 0 40px; 
    box-sizing: border-box;
  position: relative;
  z-index: 1; 
  gap: 0; 
}


.living-section .living-text-blocks .text-row {
    display: flex; 
  flex-direction: row; 
  width: 100%;
  gap: 60px; 
  padding: 30px 0; 
  border-bottom: 1px solid #FAEACD; 
}


.living-section .living-text-blocks .text-row:last-child {
  border-bottom: none;
}


.living-section .living-text-blocks .text-row .row-title {
  width: 35%; 
    flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-description {
  width: 65%; 
  flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .text-row .row-description p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .titles-column,
.living-section .living-text-blocks .descriptions-column {
  display: none;
}


@media (max-width: 1024px) {
  .living-section {
    padding: 60px 0;
  }
  .living-section::before {
    opacity: 0.1; 
  }
  .living-section .container {
    flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .living-section .living-left,
  .living-section .living-right {
    width: 100%; 
    max-width: 600px;
    align-items: center; 
  }
  .living-section .living-title { font-size: 48px; line-height: 1.1; }
  .living-section .living-button { padding: 12px 20px; font-size: 15px; }
  .living-section .living-image-placeholder { height: 250px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 40px auto 0;
    padding: 0 30px;
                text-align: center; 
  }
  
  .living-section .living-text-blocks .text-row {
    flex-direction: column; 
    gap: 15px;
    padding: 25px 0;
  }
  
  .living-section .living-text-blocks .text-row .row-title,
  .living-section .living-text-blocks .text-row .row-description {
    width: 100%;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 32px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 15px; }
}

@media (max-width: 1024px) {
  .living-section {
    padding: 40px 0;
  }
  .living-section::before {
          opacity: 0.08; 
  }
  .living-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .living-section .living-left,
  .living-section .living-right {
    max-width: 100%;
  }
  .living-section .living-title { font-size: 36px; }
  .living-section .living-button { padding: 10px 18px; font-size: 14px; }
  .living-section .living-image-placeholder { height: 200px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 30px auto 0;
    padding: 0 20px;
    text-align: left !important;
  }
  
  .living-section .living-text-blocks .text-row {
    padding: 20px 0;
    gap: 10px;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 28px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 14px; }
}


.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0; 
  background: #FFFFFF; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-section .container {
    display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: flex-start; 
    width: 100%;
  max-width: 1200px; 
    margin: 0 auto;
  padding: 0 40px; 
  box-sizing: border-box;
  gap: 80px; 
}


.faq-section .faq-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  width: 35%; 
  max-width: 400px;
  flex-shrink: 0;
}

.faq-section .faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
      font-size: 60px; 
  line-height: 1.1em;
  color: #000000; 
    margin: 0;
    padding: 0;
  text-align: left;
}


.faq-section .faq-right {
    display: flex;
    flex-direction: column;
  width: 65%; 
  max-width: 700px;
  flex-shrink: 0;
}


.faq-section .faq-item {
    display: flex;
    flex-direction: column;
  width: 100%;
  padding: 30px 0; 
  border-bottom: none; 
  gap: 20px; 
}


.faq-section .faq-item:last-child {
  border-bottom: none;
}

.faq-section .faq-question {
    display: flex;
  flex-direction: row;
  justify-content: space-between; 
    align-items: center;
  width: 100%;
  cursor: pointer; 
  padding-bottom: 15px; 
  border-bottom: 1px solid #CCCCCC; 
}


.faq-section .faq-question span:first-child {
  font-family: 'Avocado', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}


.faq-section .faq-arrow {
    font-size: 24px; 
  color: #000000; 
  font-weight: bold;
  flex-shrink: 0; 
  margin-left: 20px; 
  transform: rotate(0deg); 
}


.faq-section .faq-answer {
  display: block; 
  width: 100%;
}


.faq-section .faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #000000; 
  margin: 0;
  padding: 0;
  padding-right: 44px; 
}


@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .container {
      flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    width: 100%; 
    max-width: 700px;
    align-items: center; 
  }
  .faq-section .faq-title { 
    font-size: 48px; 
    line-height: 1.1; 
    text-align: center; 
  }
  .faq-section .faq-item {
    padding: 25px 0;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 32px; 
    text-align: left;
  }
  .faq-section .faq-answer p { 
    font-size: 15px; 
    padding-right: 20px; 
         text-align: left;
    }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    max-width: 100%;
  }
  .faq-section .faq-title { 
    font-size: 36px; 
  }
  .faq-section .faq-item {
    padding: 20px 0;
        gap: 15px;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 28px; 
  }
  .faq-section .faq-arrow {
    font-size: 20px;
    margin-left: 15px;
  }
  .faq-section .faq-answer p { 
    font-size: 14px; 
    padding-right: 15px; 
  }
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 80px 0;
  background: #F8ECD7;
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 236, 215, 0.7); 
  z-index: 1;
  pointer-events: none;
}

.contact-section .container {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    width: 100%;
  max-width: 800px; 
    margin: 0 auto;
  padding: 0 40px;
    box-sizing: border-box;
  position: relative;
  z-index: 2; 
  gap: 40px;
}

.contact-section .contact-form-block {
    display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background: #4A5D5F; 
    border-radius: 10px; 
  width: 100%;
  max-width: 200px;
    box-sizing: border-box;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); 
}


.contact-section .contact-title {
  font-family: 'Cormorant Garamond', serif;
    font-style: normal;
  font-weight: 400;
  font-size: 48px; 
  line-height: 1.2em;
  color: #FFFFFF; 
  margin: 0 0 30px 0;
    padding: 0;
  text-align: center;
}

.contact-section .contact-form {
    display: flex;
  flex-direction: column;
  width: 100%;
    gap: 20px; 
}

.contact-section .form-row {
    display: flex;
  flex-direction: row;
  gap: 20px; 
  width: 100%;
}

.contact-section .form-field {
    display: flex;
  flex-direction: column;
  gap: 10px; 
  flex: 1; 
}

.contact-section .form-field.full-width {
  width: 100%;
}

.contact-section .form-field label {
  font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3em;
  color: #FFFFFF; 
    margin: 0;
    padding: 0;
}

.contact-section .form-field input,
.contact-section .form-field textarea {
    width: 100%;
  height: 30px; 
  background: #FFFFFF;
  border: none; 
  border-radius: 5px; 
  padding: 8px 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
  line-height: 1.3em;
  color: #000000; 
  box-sizing: border-box;
  outline: none; 
}

.contact-section .form-field textarea {
  height: 70px;
  resize: vertical; 
}


.contact-section .submit-button {
    display: inline-block;
  padding: 6px 18px;
  font-size: 14px;
  margin-top: -32px; 
  background: #F8ECD7; 
  color: #000000; 
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 600;
  font-size: 16px;
    line-height: normal;
    border: none;
  border-radius: 10px; 
    cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
  align-self: center; 
  min-width: 120px; 
}

.contact-section .submit-button:hover {
  background: #E0D3B8; 
}

.contact-section .contact-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
  width: 100%;
  max-width: 600px;
  height: 200px;
  background: #D9D9D9;
  border-radius: 10px;
    overflow: hidden;
  margin-top: 0; 
}

.contact-section .contact-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .contact-section {
    padding: 80px 0;
    }
    .contact-section .container {
    max-width: 90%;
        padding: 0 20px;
  }
  .contact-section .contact-form-block {
    padding: 30px;
  }
  .contact-section .contact-title {
    font-size: 42px;
  }
  .contact-section .form-row {
    flex-direction: column; 
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 28px; 
  }
  .contact-section .form-field textarea {
    height: 60px; 
  }
}

@media (max-width: 1024px) {
     .contact-section {
    padding: 60px 0;
    }
     .contact-section .container {
    padding: 0 15px;
  }
  .contact-section .contact-form-block {
    padding: 25px;
  }
  .contact-section .contact-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .contact-section .contact-form {
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 26px; 
    padding: 6px 12px; 
  }
  .contact-section .form-field textarea {
    height: 50px; 
  }
  .contact-section .submit-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}


.cotizador-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: #234457; 
  width: 100vw;
  max-width: none;
  min-height: 70vh; 
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.cotizador-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  gap: 60px; 
}

.cotizador-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px; 
  line-height: 1.1em;
  color: #FFFFFF; 
  margin: 0;
  padding: 0;
  text-align: center;
}

.cotizador-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.cotizador-form-area {
  width: 100%;
  height: 140000px; 
  background: #E5E5E5; 
  border-radius: 12px; 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); 
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.cotizador-section {
  background-color: #224457;
  padding: 100px 0 200px 0;
  min-height: auto;
}

@media (max-width: 1024px) {
  .cotizador-section {
    padding: 80px 0 150px 0;
  }
  
  .container-svg {
    height: 350px;
  }
  
  .cotizador-main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .status-legend {
    gap: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .container-svg {
    height: 450px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

@media (max-width: 1023px) {
  .container-svg {
    height: 350px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

.cotizador-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cotizador-header {
  text-align: center;
  margin-bottom: 30px;
}

.cotizador-main-title {
  font-family: 'Avocado', sans-serif;
  font-weight: normal;
  font-size: 48px;
  color: #FAEACD;
  margin-bottom: 30px;
}

.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
  preserveAspectRatio: xMidYMid meet;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius:0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@font-face {
  font-family: 'Avocado';
  src: url('avocado.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DMSansCustom';
  src: url('DMSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'InterCustom';
  src: url('Inter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #fff !important;
  color: #2d2d2d;
  background-image: none;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

body .intro-section {
  background: #1E3427 !important;
  background-color: #1E3427 !important;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2vw;
  height: 90px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 0 !important;
  flex-shrink: 0;
}

.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto !important;
  z-index: 1001;
  flex-shrink: 0;
  position: relative;
  top: 8px;
}

.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: #23412d;
  position: relative;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 8px;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #23412d;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}

nav {
  flex: 1;
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.language-bar {
  width: 100%;
  margin: 0 auto;
  background: #202020;
  color: #FFFFFF;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  padding: 20px 2cm;
  height: 61px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.language-bar span {
  cursor: pointer;
  margin: 0;
}

.language-bar .separator {
  width: 1px;
  height: 21px;
  background-color: #FFFFFF;
}

.language-bar span:hover {
  text-decoration: underline;
}

header {
  background: #FAEACD;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
    margin-left: 70px;
}

.logo img {
    display: block;
    max-height: 40px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

nav {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  padding-right: 2cm;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin: 0;
  padding: 0;
  align-items: center;
  height: auto;
  flex-wrap: nowrap;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: 900;
  font-size: 24px;
  font-family: 'DM Sans', Arial, sans-serif;
  letter-spacing: 0;
  line-height: normal;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

nav a:hover {
  color: #23412d;
}
.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
  background-color: #FAEACD !important;
}

@media (max-width: 1024px) {
  .navbar-flex {
    flex-direction: column;
    align-items: center;
    padding: 20px 0 10px 0.5cm; 
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  nav a {
    font-size: 18px;
    vertical-align: auto;
    display: block;
    align-items: flex-start;
  }
}


.hero {
  background-color: #FAEACD;
  position: relative;
  overflow: visible;
  padding-top: 32px;
  padding-bottom: 0 !important;
  min-height: 500px;
  background-image: url('Vector (5).png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  margin-bottom: 60px !important;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
    }

.hero-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-title, .hero-desc {
  word-break: break-word;
  white-space: normal;
}

.hero-form {
  width: 100%;
  max-width: 480px;     
  min-height: 420px;    
  margin: 0 auto;
  padding: 32px 24px;   
  background: #E86A33;  
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-form input, .hero-form button {
  width: 50%;
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}

.hero-form {
  font-family: 'InterCustom', 'DM Sans', Arial, sans-serif;
  margin-top: 0;
  width: 50%;
  max-width: 60px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.hero-right {
  margin-top: 0;
}



.hero-left, .hero-right-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title-block, .hero-form, .hero-right {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-vector {
  max-height: 22000px;
  height: auto;
  width: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}


.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  z-index: 1;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  align-self: flex-start; 
}



.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  overflow: visible;
}


.hero-title {
  width: 100%; 
  max-width: 860px; 
  height: auto;
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal; 
  font-weight: 400; 
  font-size: 80px;
  line-height: 84px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}


.hero-desc {
  width: 100%; 
  max-width: 600px; 
  height: auto; 
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal; 
  font-weight: normal; 
  font-size: 20px;
  line-height: 20px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}


.hero-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 20px;
  width: 625px; 
  max-width: 100%;
  height: 473px;
  background: #C14D35;
  border-radius: 10px;
  box-sizing: border-box;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 50px; 
  width: 545px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row.row-gap-20 {
    gap: 20px;
    justify-content: space-between;
}

.hero-form .field-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  width: 247.5px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 1;
  flex-shrink: 0;
}


.hero-form .row .field-div.field-correo {
    width: 100%;
}


.hero-form label {
  width: auto;
  height: auto;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form label.label-inter {
    font-family: 'Inter', sans-serif;
    line-height: 24px;
}


.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  padding: 0 10px;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form button {
  width: 80px;
  min-width: 60px;
  max-width: 90px;
  height: 80px;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  background: #FAEACD;
    border-radius: 5px;
  border: none;
  color: #000000;
    cursor: pointer;
  transition: all 0.3s ease;
}


.hero-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  gap: 10px;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  background: #D6D6D6;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-right img {
  display: block;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  object-fit: cover;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}





@media (max-width: 1460px) {
  .container,
  .navbar-flex {
    max-width: 100%;
    padding: 10px 0 10px 1cm;
  }
  
  .language-bar {
    padding: 20px 1cm;
  }
  
  nav {
    padding-right: 1cm;
  }
}

@media (max-width: 1024px) {
  .container,
  .navbar-flex {
    padding: 10px 0 10px 0.5cm;
  }
  
  .language-bar {
    padding: 20px 0.5cm;
  }
  
  nav {
    padding-right: 0.5cm;
  }
}


.intro-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background-color: #1E3427 !important;
  position: relative !important;
  z-index: 1 !important;
  padding: 0 0 100px !important;
  margin-top: -40px !important;
}

.intro-title {
  order: 1 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  margin-top: -50px !important;
  transform: translateY(-30px) !important;
}

.intro-subtitle {
  order: 2 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  margin-top: -30px !important;
  transform: translateY(-20px) !important;
}

.img-slider {
  order: 3 !important;
  z-index: 2 !important;
  position: relative !important;
  width: 100% !important;
  margin-top: -20px !important;
  transform: translateY(-10px) !important;
}

.intro-title {
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  color: #FAEACD;
  margin: 0 auto;
  text-align: center;
}

.intro-subtitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 880px;
  max-width: 100%;
  height: auto;
  flex: none;
  order: 1;
  flex-grow: 0;
  text-align: center;
  margin: -20px auto 20px;
}

.intro-subtitle p {
  width: 880px;
  max-width: 100%;
  height: auto;
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #FAEACD;
  margin: 0 auto;
}


.img-slider {
  max-width: 1200px;
  margin: -20px auto 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.slider-images {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  scroll-behavior: smooth;

  margin-top: 20px;
}

.img-container {
    flex: 0 0 calc(25% - 15px);
    transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-button {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
    background: #FAEACD !important;
    border: none;
  cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: #FAEACD !important;
    opacity: 0.9;
}


.slider-button img {
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) saturate(100%) invert(13%) sepia(23%) saturate(669%) hue-rotate(108deg) brightness(94%) contrast(89%);
}

.right-button {
    right: 40px;
}

.left-button {
    left: 40px;
}


.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #FAEACD;
}


.slider-images::-webkit-scrollbar {
    display: none;
}


.slider-images .img-container:nth-child(even) { 
    align-self: flex-start; 
    margin-top: 20px; 
}

.slider-images .img-container:nth-child(odd) { 
    align-self: flex-end; 
    margin-bottom: 20px; 
}



.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slider-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 9px;
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center;     
  flex-grow: 0;
  z-index: 1;
}


.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  flex: none;
  flex-grow: 0;
  cursor: pointer;
  transition: background 0.3s;
  border: none !important;
}

.dot.active {
  background: #fff !important;
}

.brochure-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 70px; 
  background: #fff !important;
  width: 100vw;
  max-width: none;
  height: auto !important;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  padding-top: 0 !important;
  margin-top: 48px !important;
  padding-bottom: 0 !important;
  margin-bottom: 48px !important;
  border-top: none !important;
  border-bottom: none !important;
}

.brochure-section::before,
.brochure-section::after {
    background: #fff !important;
    background-color: #fff !important;
    border: none !important;
}

.brochure-section .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    gap: 40px; 
}

.brochure-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 35%; 
    max-width: 400px; 
    flex-shrink: 0;
}

.brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.brochure-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 56px !important;
    line-height: 1.2; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 16px !important;
    line-height: 1.4; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-button {
    display: inline-block !important;
    padding: 12px 25px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.brochure-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%; 
    max-width: 600px; 
    flex-shrink: 0;
}

.brochure-image-placeholder {
    width: 100%;
    height: 280px !important;
    background: #D9D9D9 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


@media (max-width: 1024px) {
    .brochure-section {
        padding: 40px 20px;
    }
    .brochure-section .container {
        flex-direction: column;
        gap: 30px;
    }
    .brochure-left,
    .brochure-right {
        width: 100%;
        max-width: 600px; 
        text-align: center;
        align-items: center;
    }
    .brochure-text {
        gap: 12px;
    }
    .brochure-title { 
        font-size: 42px; 
        line-height: 1.2;
    }
    .brochure-description { 
        font-size: 15px; 
        line-height: 1.3;
    }
    .brochure-button {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 160px;
    }
    .brochure-image-placeholder {
        height: 240px; 
    }
}

@media (max-width: 1024px) {
    .brochure-section {
        padding: 30px 15px;
    }
    .brochure-title { 
        font-size: 32px; 
    }
    .brochure-description { 
        font-size: 14px; 
    }
    .brochure-button {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 140px;
    }
    .brochure-image-placeholder {
        height: 200px; 
    }
}


.combined-amenities-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    background: #224457;
    background-image: url('Vector (1).png');
    background-repeat: no-repeat;
    background-size: 40% auto !important;
    background-position: 0 0 !important;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.combined-amenities-cta > .container:nth-child(1) {
    padding-top: 0 !important;
    margin-top: 0 !important;
    gap: 0 !important;
}

.combined-amenities-cta .amenities-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.combined-amenities-cta::before,
.combined-amenities-cta::after {
    display: none;
}


.combined-amenities-cta + section { 
    margin-top: 0 !important; 
}


.combined-amenities-cta > .container:nth-child(1) { 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 30px; 
    position: relative; 
    padding: 0 20px; 
    box-sizing: border-box;
}

.combined-amenities-cta > .container:nth-child(2) { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1440px; 
    margin: 0 auto; 
    gap: 50px; 
    padding: 0 70px; 
    box-sizing: border-box;
    background: none !important; 
}


.combined-amenities-cta .amenities-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 15px; 
    width: 100%;
    max-width: 800px; 
    text-align: left; 
}

.combined-amenities-cta .amenities-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px; 
    line-height: 1.2em; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.combined-amenities-cta .amenities-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px; 
    line-height: 24px; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}


.combined-amenities-cta .amenities-gallery {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    width: 100%; 
    max-width: 1100px; 
    height: auto; 
    position: relative; 
    overflow: hidden; 
    padding: 0 60px; 
    box-sizing: border-box;
}

.combined-amenities-cta .gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.combined-amenities-cta .gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.combined-amenities-cta .gallery-item.needs-item-tall {
    grid-row: span 2;
}

.combined-amenities-cta .gallery-item.needs-item-short {
    grid-row: span 1;
}

.combined-amenities-cta .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 4; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 2; grid-row: 2 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 1; grid-row: 3; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 4; grid-row: 2; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 3; grid-row: 3 / span 2; }

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 2; grid-row: 2 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 1; grid-row: 3; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 1; grid-row: 4 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 2; grid-row: 4; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 2; grid-row: 5; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 1; grid-row: 6 / span 2; }
}

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    display: block !important;
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 420px;
    height: 420px;
    padding: 0 !important;
  }
  .amenidades-slide-track {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100%;
    will-change: transform;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal {
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item {
    width: 70vw !important;
    max-width: 250px !important;
    min-width: 120px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    display: block;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-tall {
    height: 270px !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-short {
    height: 100px !important;
  }
  /* Ocultar los .gallery-item originales en móvil */
  .combined-amenities-cta .gallery-item:not(.amenidades-slide-pair .gallery-item) {
    display: none !important;
  }
}


.combined-amenities-cta .gallery-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 10px; 
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center; 
  flex-grow: 0;
  z-index: 1;
}

.combined-amenities-cta .gallery-dots .dot {
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  width: 12px !important;
  height: 12px !important;
  transition: background 0.3s;
  border: none !important;
}

.combined-amenities-cta .gallery-dots .dot.active {
  background: #fff !important;
}

.combined-amenities-cta .gallery-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0; 
  gap: 8px;
  position: absolute; 
  width: 40px; 
  height: 40px; 
  background: #FAEACD; 
  border-radius: 50%; 
  flex: none;
  flex-grow: 0;
  z-index: 3; 
  cursor: pointer;
  top: 50%; 
  transform: translateY(-50%); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; 
  transition: background-color 0.3s ease;
}

.combined-amenities-cta .gallery-button:hover {
    background-color: #E0D3B8; 
}

.combined-amenities-cta .gallery-button.left-button {
  left: 10px; 
  background-image: url('Vector (4).png'); 
}

.combined-amenities-cta .gallery-button.right-button {
  right: 10px; 
  background-image: url('Vector (3).png'); 
}

.combined-amenities-cta .gallery-button svg path {

    stroke: #1E3427;
}


.combined-amenities-cta .cta-brochure-left {
  display: flex;
  justify-content: center;
  align-items: center;
    width: 50%; 
    max-width: 700px; 
    flex-shrink: 0; 
}

.combined-amenities-cta .cta-brochure-image-placeholder {
    height: 180px !important;
    aspect-ratio: 1/1 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}

.combined-amenities-cta .cta-brochure-img {
    object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

.combined-amenities-cta .cta-brochure-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: 50%;
    max-width: 500px;
    flex-shrink: 0;
    text-align: right;
}

.combined-amenities-cta .cta-brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.combined-amenities-cta .cta-brochure-title {
    font-family: 'Avocado', 'Cormorant Garamond', serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2em;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-description {
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-button {
    display: inline-block;
    padding: 12px 25px;
    background: #224457 !important;
    color: #fff !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.combined-amenities-cta .cta-brochure-button:hover {
    background: #E0D3B8;
}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 60px 0;
        gap: 40px;
         background-size: 150px;
         background-position: left top;
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 15px;
         gap: 30px;
          max-width: 960px;
          align-items: center;
     }
      .combined-amenities-cta .amenities-text {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    .combined-amenities-cta .amenities-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .amenities-description { font-size: 16px; line-height: 1.3; }

    .combined-amenities-cta .amenities-gallery {
        gap: 15px;
        align-items: center;
         max-width: 900px; 
          padding: 0 40px; 
    }
    .combined-amenities-cta .gallery-images {
        gap: 15px; 
        padding-left: 0;
        padding-right: 0;
        height: auto; 
        padding-bottom: 0; 
         justify-content: center; 
    }
    .combined-amenities-cta .gallery-item {
        width: 180px; 
        align-self: auto; 
    }
    .combined-amenities-cta .gallery-item-short {
        height: 180px; 
         align-self: flex-start;
    }
    .combined-amenities-cta .gallery-item-tall {
        height: 280px; 
         align-self: flex-end;
    }
    .combined-amenities-cta .gallery-dots { gap: 8px; }
    .combined-amenities-cta .gallery-dots .dot { width: 8px; height: 8px; }
    .combined-amenities-cta .gallery-button {
       width: 30px; 
       height: 30px;
       top: 50%;
       transform: translateY(-50%);
        background-size: 50%;
    }
  .combined-amenities-cta .gallery-button.left-button {
      left: 0; 
  }
  .combined-amenities-cta .gallery-button.right-button {
      right: 0; 
  }

      .combined-amenities-cta > .container:nth-child(2) { 
        flex-direction: column; 
        gap: 30px;
        padding: 0 20px;
        align-items: center; 
    }
   .combined-amenities-cta .cta-brochure-left, 
   .combined-amenities-cta .cta-brochure-right {
        width: 100%; 
        max-width: 600px; 
        text-align: center; 
        align-items: center; 
   }
    .combined-amenities-cta .cta-brochure-image-placeholder {
          height: 250px; 
    }
    .combined-amenities-cta .cta-brochure-text {
        gap: 10px;
        align-items: center; 
    }
    .combined-amenities-cta .cta-brochure-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .cta-brochure-description { font-size: 16px; line-height: 1.3; }
    .combined-amenities-cta .cta-brochure-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }

}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 40px 0;
        gap: 30px; 
            background-size: 100px; 
        background-position: left top; 
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 10px;
         gap: 20px;
     }
      .combined-amenities-cta .amenities-text {
        text-align: center; 
         align-items: center; 
         gap: 10px;
     }
    .combined-amenities-cta .amenities-title { font-size: 36px; }
    .combined-amenities-cta .amenities-description { font-size: 15px; }

    .combined-amenities-cta .amenities-gallery {
         max-width: 400px; 
    }
     .combined-amenities-cta .gallery-images {
         grid-template-columns: repeat(2, 1fr); 
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .combined-amenities-cta .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.needs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 40px 20px;
  background: #F8ECD7; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
    margin-top: 0;
    background-color: #FAEACD !important;
}

.needs-section .needs-text {
    margin-top: -20px;
  text-align: center; 
  max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.needs-section .needs-gallery {
    margin-top: 30px;
}

a[href="#"][class="needs-button"] {
    display: inline-block !important;
    padding: 16px 35px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: normal !important;
    border-radius: 25px !important;
    transition: background 0.3s ease !important;
    min-width: 220px !important;
    text-align: center !important;
}

.needs-section .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.needs-section .needs-gallery {
    margin-bottom: 50px;
}

.needs-section .gallery-images {
    display: grid; 
  grid-template-columns: repeat(4, 1fr); 
    gap: 22px;
    margin-bottom: 30px;
}

.needs-section .gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
  overflow: hidden;
    border-radius: 10px;
}

.needs-section .gallery-item.needs-item-tall {
    height: 320px;
    grid-row: span 2;
}

.needs-section .gallery-item.needs-item-short {
    height: 150px;
    grid-row: span 1;
}

.needs-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.needs-section .gallery-images .needs-item-tall:nth-child(1) { 
    grid-column: span 1; 
    grid-row: span 2; 
}

.needs-section .gallery-images .needs-item-short:nth-child(2) { 
    grid-column: span 1; 
    grid-row: span 1; 
}

.needs-section .gallery-images .needs-item-tall:nth-child(3) { 
     grid-column: span 1;
     grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(4) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(5) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(6) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(7) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(8) {     
     grid-column: span 1;
     grid-row: span 1;
}


.needs-section .needs-button {
    display: inline-block;
  padding: 15px 30px; 
  background: #C14D35; 
  color: #FFFFFF;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
  font-size: 18px; 
    line-height: normal;
  border-radius: 0;
  transition: background 0.3s ease; 
  margin-top: 20px; 
  margin-bottom: 40px;
}

.needs-section .needs-button:hover {
    background: #A03D2A; 
}


@media (max-width: 1024px) {
  .needs-section {
    padding: 60px 15px;
  }
  .needs-section .container {
      gap: 30px;
  }
  .needs-section .needs-text {
        gap: 15px;
  }
   .needs-section .needs-title { font-size: 48px; line-height: 1.2; }
   .needs-section .needs-description { font-size: 16px; line-height: 1.3; }

   .needs-section .needs-gallery {
      max-width: 700px; 
   }
   .needs-section .gallery-images {
      grid-template-columns: repeat(2, 1fr); 
      gap: 10px;
       max-width: 700px;
       grid-auto-rows: auto; 
   }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }
}

@media (max-width: 768px) {
.needs-section {
        padding: 40px 10px;
    }
     .needs-section .container {
         gap: 20px;
     }
     .needs-section .needs-text {
    gap: 10px;
     }
    .needs-section .needs-title { font-size: 36px; line-height: 1.1; }
    .needs-section .needs-description { font-size: 15px; line-height: 1.3; }

    .needs-section .needs-gallery {
         max-width: 400px; 
    }
     .needs-section .gallery-images {
         grid-template-columns: repeat(2, 1fr);
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
}

.features-section .container {
  max-width: 1350px;
    width: 100%;
  margin: 0 auto; 
  padding: 0 40px 0 20px;
}

.features-section .features-grid {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  margin-left: 60px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 20px;
}

@media (max-width: 1200px) {
  .features-section .features-grid {
    gap: 25px;
    margin-left: 4px !important;
  }
}

@media (max-width: 1024px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 0 !important; 
  }
}

.features-section .feature-item {
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
}

.features-section .feature-icon {
  width: 100%; 
  max-width: 250px;
  height: auto; 
  margin-bottom: 15px;
  object-fit: contain;
}

.features-section .feature-text {
    font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #224457;
    margin: 0;
}

.living-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    background: #c14d35;
    background-image: url('Vector (6).png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


.living-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('Vector (1).png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right center;
  opacity: 0.15; 
  pointer-events: none;
  z-index: -1;
}

.living-section .container {
     display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center; 
     width: 100%;
  max-width: 1200px; 
     margin: 0 auto;
  padding: 0 40px; 
     box-sizing: border-box;
  gap: 50px; 
  position: relative; 
            z-index: 3; 
}

.living-section .living-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  gap: 30px; 
    width: 50%; 
  max-width: 500px;
}


.living-section .living-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 60px; 
  line-height: 1.1em;
  color: #FAEACD; 
    margin: 0;
    padding: 0;
}
.living-section .row-title h3 {
  font-family: 'Avocado', serif !important;
}
.living-section .living-button {
    display: inline-block;
    padding: 15px 20px;
    background: #FAEACD !important;
    color: #224457 !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400; 
    font-size: 16px !important; 
    line-height: normal;
    border-radius: 8px;
    transition: background 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.living-section .living-button:hover {
  background: #E0D3B8; 
}

.living-section .living-right {
     display: flex;
    justify-content: center;
    align-items: center;
          width: 50%; 
  max-width: 500px;
}

.living-section .living-image-placeholder {
    width: 100%;
  height: 300px; 
  background: #D9D9D9; 
     display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  border-radius: 10px; 
}

.living-section .living-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.living-section .living-text-blocks {
    display: flex;
  flex-direction: column; 
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0; 
  padding: 0 40px; 
    box-sizing: border-box;
  position: relative;
  z-index: 1; 
  gap: 0; 
}


.living-section .living-text-blocks .text-row {
    display: flex; 
  flex-direction: row; 
  width: 100%;
  gap: 60px; 
  padding: 30px 0; 
  border-bottom: 1px solid #FAEACD; 
}


.living-section .living-text-blocks .text-row:last-child {
  border-bottom: none;
}


.living-section .living-text-blocks .text-row .row-title {
  width: 35%; 
    flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-description {
  width: 65%; 
  flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .text-row .row-description p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .titles-column,
.living-section .living-text-blocks .descriptions-column {
  display: none;
}


@media (max-width: 1024px) {
  .living-section {
    padding: 60px 0;
  }
  .living-section::before {
    opacity: 0.1; 
  }
  .living-section .container {
    flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .living-section .living-left,
  .living-section .living-right {
    width: 100%; 
    max-width: 600px;
    align-items: center; 
  }
  .living-section .living-title { font-size: 48px; line-height: 1.1; }
  .living-section .living-button { padding: 12px 20px; font-size: 15px; }
  .living-section .living-image-placeholder { height: 250px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 40px auto 0;
    padding: 0 30px;
                text-align: center; 
  }
  
  .living-section .living-text-blocks .text-row {
    flex-direction: column; 
    gap: 15px;
    padding: 25px 0;
  }
  
  .living-section .living-text-blocks .text-row .row-title,
  .living-section .living-text-blocks .text-row .row-description {
    width: 100%;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 32px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 15px; }
}

@media (max-width: 1024px) {
  .living-section {
    padding: 40px 0;
  }
  .living-section::before {
          opacity: 0.08; 
  }
  .living-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .living-section .living-left,
  .living-section .living-right {
    max-width: 100%;
  }
  .living-section .living-title { font-size: 36px; }
  .living-section .living-button { padding: 10px 18px; font-size: 14px; }
  .living-section .living-image-placeholder { height: 200px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 30px auto 0;
    padding: 0 20px;
    text-align: left !important;
  }
  
  .living-section .living-text-blocks .text-row {
    padding: 20px 0;
    gap: 10px;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 28px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 14px; }
}


.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0; 
  background: #FFFFFF; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-section .container {
    display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: flex-start; 
    width: 100%;
  max-width: 1200px; 
    margin: 0 auto;
  padding: 0 40px; 
  box-sizing: border-box;
  gap: 80px; 
}


.faq-section .faq-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  width: 35%; 
  max-width: 400px;
  flex-shrink: 0;
}

.faq-section .faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
      font-size: 60px; 
  line-height: 1.1em;
  color: #000000; 
    margin: 0;
    padding: 0;
  text-align: left;
}


.faq-section .faq-right {
    display: flex;
    flex-direction: column;
  width: 65%; 
  max-width: 700px;
  flex-shrink: 0;
}


.faq-section .faq-item {
    display: flex;
    flex-direction: column;
  width: 100%;
  padding: 30px 0; 
  border-bottom: none; 
  gap: 20px; 
}


.faq-section .faq-item:last-child {
  border-bottom: none;
}

.faq-section .faq-question {
    display: flex;
  flex-direction: row;
  justify-content: space-between; 
    align-items: center;
  width: 100%;
  cursor: pointer; 
  padding-bottom: 15px; 
  border-bottom: 1px solid #CCCCCC; 
}


.faq-section .faq-question span:first-child {
  font-family: 'Avocado', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}


.faq-section .faq-arrow {
    font-size: 24px; 
  color: #000000; 
  font-weight: bold;
  flex-shrink: 0; 
  margin-left: 20px; 
  transform: rotate(0deg); 
}


.faq-section .faq-answer {
  display: block; 
  width: 100%;
}


.faq-section .faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #000000; 
  margin: 0;
  padding: 0;
  padding-right: 44px; 
}


@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .container {
      flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    width: 100%; 
    max-width: 700px;
    align-items: center; 
  }
  .faq-section .faq-title { 
    font-size: 48px; 
    line-height: 1.1; 
    text-align: center; 
  }
  .faq-section .faq-item {
    padding: 25px 0;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 32px; 
    text-align: left;
  }
  .faq-section .faq-answer p { 
    font-size: 15px; 
    padding-right: 20px; 
         text-align: left;
    }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    max-width: 100%;
  }
  .faq-section .faq-title { 
    font-size: 36px; 
  }
  .faq-section .faq-item {
    padding: 20px 0;
        gap: 15px;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 28px; 
  }
  .faq-section .faq-arrow {
    font-size: 20px;
    margin-left: 15px;
  }
  .faq-section .faq-answer p { 
    font-size: 14px; 
    padding-right: 15px; 
  }
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 80px 0;
  background: #F8ECD7;
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 236, 215, 0.7); 
  z-index: 1;
  pointer-events: none;
}

.contact-section .container {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    width: 100%;
  max-width: 800px; 
    margin: 0 auto;
  padding: 0 40px;
    box-sizing: border-box;
  position: relative;
  z-index: 2; 
  gap: 40px;
}

.contact-section .contact-form-block {
    display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background: #4A5D5F; 
    border-radius: 10px; 
  width: 100%;
  max-width: 200px;
    box-sizing: border-box;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); 
}


.contact-section .contact-title {
  font-family: 'Cormorant Garamond', serif;
    font-style: normal;
  font-weight: 400;
  font-size: 48px; 
  line-height: 1.2em;
  color: #FFFFFF; 
  margin: 0 0 30px 0;
    padding: 0;
  text-align: center;
}

.contact-section .contact-form {
    display: flex;
  flex-direction: column;
  width: 100%;
    gap: 20px; 
}

.contact-section .form-row {
    display: flex;
  flex-direction: row;
  gap: 20px; 
  width: 100%;
}

.contact-section .form-field {
    display: flex;
  flex-direction: column;
  gap: 10px; 
  flex: 1; 
}

.contact-section .form-field.full-width {
  width: 100%;
}

.contact-section .form-field label {
  font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3em;
  color: #FFFFFF; 
    margin: 0;
    padding: 0;
}

.contact-section .form-field input,
.contact-section .form-field textarea {
    width: 100%;
  height: 30px; 
  background: #FFFFFF;
  border: none; 
  border-radius: 5px; 
  padding: 8px 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
  line-height: 1.3em;
  color: #000000; 
  box-sizing: border-box;
  outline: none; 
}

.contact-section .form-field textarea {
  height: 70px;
  resize: vertical; 
}


.contact-section .submit-button {
    display: inline-block;
  padding: 6px 18px;
  font-size: 14px;
  margin-top: -32px; 
  background: #F8ECD7; 
  color: #000000; 
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 600;
  font-size: 16px;
    line-height: normal;
    border: none;
  border-radius: 10px; 
    cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
  align-self: center; 
  min-width: 120px; 
}

.contact-section .submit-button:hover {
  background: #E0D3B8; 
}

.contact-section .contact-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
  width: 100%;
  max-width: 600px;
  height: 200px;
  background: #D9D9D9;
  border-radius: 10px;
    overflow: hidden;
  margin-top: 0; 
}

.contact-section .contact-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .contact-section {
    padding: 80px 0;
    }
    .contact-section .container {
    max-width: 90%;
        padding: 0 20px;
  }
  .contact-section .contact-form-block {
    padding: 30px;
  }
  .contact-section .contact-title {
    font-size: 42px;
  }
  .contact-section .form-row {
    flex-direction: column; 
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 28px; 
  }
  .contact-section .form-field textarea {
    height: 60px; 
  }
}

@media (max-width: 1024px) {
     .contact-section {
    padding: 60px 0;
    }
     .contact-section .container {
    padding: 0 15px;
  }
  .contact-section .contact-form-block {
    padding: 25px;
  }
  .contact-section .contact-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .contact-section .contact-form {
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 26px; 
    padding: 6px 12px; 
  }
  .contact-section .form-field textarea {
    height: 50px; 
  }
  .contact-section .submit-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}


.cotizador-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: #234457; 
  width: 100vw;
  max-width: none;
  min-height: 70vh; 
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.cotizador-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  gap: 60px; 
}

.cotizador-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px; 
  line-height: 1.1em;
  color: #FFFFFF; 
  margin: 0;
  padding: 0;
  text-align: center;
}

.cotizador-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.cotizador-form-area {
  width: 100%;
  height: 140000px; 
  background: #E5E5E5; 
  border-radius: 12px; 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); 
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.cotizador-section {
  background-color: #224457;
  padding: 100px 0 200px 0;
  min-height: auto;
}

@media (max-width: 1024px) {
  .cotizador-section {
    padding: 80px 0 150px 0;
  }
  
  .container-svg {
    height: 350px;
  }
  
  .cotizador-main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .status-legend {
    gap: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .container-svg {
    height: 450px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

@media (max-width: 1023px) {
  .container-svg {
    height: 350px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

.cotizador-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cotizador-header {
  text-align: center;
  margin-bottom: 30px;
}

.cotizador-main-title {
  font-family: 'Avocado', sans-serif;
  font-weight: normal;
  font-size: 48px;
  color: #FAEACD;
  margin-bottom: 30px;
}

.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
  preserveAspectRatio: xMidYMid meet;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

@font-face {
  font-family: 'Avocado';
  src: url('avocado.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DMSansCustom';
  src: url('DMSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'InterCustom';
  src: url('Inter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #fff !important;
  color: #2d2d2d;
  background-image: none;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

body .intro-section {
  background: #1E3427 !important;
  background-color: #1E3427 !important;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2vw;
  height: 90px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 0 !important;
  flex-shrink: 0;
}

.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto !important;
  z-index: 1001;
  flex-shrink: 0;
  position: relative;
  top: 8px;
}

.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: #23412d;
  position: relative;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 8px;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #23412d;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}

nav {
  flex: 1;
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.language-bar {
  width: 100%;
  margin: 0 auto;
  background: #202020;
  color: #FFFFFF;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  padding: 20px 2cm;
  height: 61px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.language-bar span {
  cursor: pointer;
  margin: 0;
}

.language-bar .separator {
  width: 1px;
  height: 21px;
  background-color: #FFFFFF;
}

.language-bar span:hover {
  text-decoration: underline;
}

header {
  background: #FAEACD;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
    margin-left: 70px;
}

.logo img {
    display: block;
    max-height: 40px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

nav {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  padding-right: 2cm;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin: 0;
  padding: 0;
  align-items: center;
  height: auto;
  flex-wrap: nowrap;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: 900;
  font-size: 24px;
  font-family: 'DM Sans', Arial, sans-serif;
  letter-spacing: 0;
  line-height: normal;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

nav a:hover {
  color: #23412d;
}
.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
  background-color: #FAEACD !important;
}

@media (max-width: 1024px) {
  .navbar-flex {
    flex-direction: column;
    align-items: center;
    padding: 20px 0 10px 0.5cm; 
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  nav a {
    font-size: 18px;
    vertical-align: auto;
    display: block;
    align-items: flex-start;
  }
}


.hero {
  background-color: #FAEACD;
  position: relative;
  overflow: visible;
  padding-top: 32px;
  padding-bottom: 0 !important;
  min-height: 500px;
  background-image: url('Vector (5).png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  margin-bottom: 60px !important;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
    }

.hero-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-title, .hero-desc {
  word-break: break-word;
  white-space: normal;
}

.hero-form {
  width: 100%;
  max-width: 480px;     
  min-height: 420px;    
  margin: 0 auto;
  padding: 32px 24px;   
  background: #E86A33;  
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-form input, .hero-form button {
  width: 50%;
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}

.hero-form {
  font-family: 'InterCustom', 'DM Sans', Arial, sans-serif;
  margin-top: 0;
  width: 50%;
  max-width: 60px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.hero-right {
  margin-top: 0;
}



.hero-left, .hero-right-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title-block, .hero-form, .hero-right {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-vector {
  max-height: 22000px;
  height: auto;
  width: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}


.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  z-index: 1;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  align-self: flex-start; 
}



.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  height: auto;
  overflow: visible;
}


.hero-title {
  width: 100%; 
  max-width: 860px; 
  height: auto;
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal; 
  font-weight: 400; 
  font-size: 80px;
  line-height: 84px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}


.hero-desc {
  width: 100%; 
  max-width: 600px; 
  height: auto; 
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal; 
  font-weight: normal; 
  font-size: 20px;
  line-height: 20px;
  color: #000000; 
  margin: 0;
  padding: 0;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}

.hero-right-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  gap: 40px; 
  width: 100%;
  max-width: 1260px;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: flex-start;
}


.hero-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 20px;
  width: 625px; 
  max-width: 100%;
  height: 473px;
  background: #C14D35;
  border-radius: 10px;
  box-sizing: border-box;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 50px; 
  width: 545px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-form .row.row-gap-20 {
    gap: 20px;
    justify-content: space-between;
}

.hero-form .field-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  width: 247.5px; 
  max-width: 100%;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 1;
  flex-shrink: 0;
}


.hero-form .row .field-div.field-correo {
    width: 100%;
}


.hero-form label {
  width: auto;
  height: auto;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form label.label-inter {
    font-family: 'Inter', sans-serif;
    line-height: 24px;
}


.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  padding: 0 10px;
  font-family: 'DM Sans Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-form button {
  width: 80px;
  min-width: 60px;
  max-width: 90px;
  height: 80px;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  background: #FAEACD;
    border-radius: 5px;
  border: none;
  color: #000000;
    cursor: pointer;
  transition: all 0.3s ease;
}


.hero-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  gap: 10px;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  background: #D6D6D6;
  border-radius: 0;
  overflow: hidden;
  flex: none;
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
}


.hero-right img {
  display: block;
  width: 625px; 
  max-width: 100%;
  height: 472px; 
  object-fit: cover;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}





@media (max-width: 1460px) {
  .container,
  .navbar-flex {
    max-width: 100%;
    padding: 10px 0 10px 1cm;
  }
  
  .language-bar {
    padding: 20px 1cm;
  }
  
  nav {
    padding-right: 1cm;
  }
}

@media (max-width: 1024px) {
  .container,
  .navbar-flex {
    padding: 10px 0 10px 0.5cm;
  }
  
  .language-bar {
    padding: 20px 0.5cm;
  }
  
  nav {
    padding-right: 0.5cm;
  }
}


.intro-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background-color: #1E3427 !important;
  position: relative !important;
  z-index: 1 !important;
  padding: 0 0 100px !important;
  margin-top: -40px !important;
}

.intro-title {
  order: 1 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  margin-top: -50px !important;
  transform: translateY(-30px) !important;
}

.intro-subtitle {
  order: 2 !important;
  z-index: 3 !important;
  position: relative !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  margin-top: -30px !important;
  transform: translateY(-20px) !important;
}

.img-slider {
  order: 3 !important;
  z-index: 2 !important;
  position: relative !important;
  width: 100% !important;
  margin-top: -20px !important;
  transform: translateY(-10px) !important;
}

.intro-title {
  font-family: 'Avocado', 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  color: #FAEACD;
  margin: 0 auto;
  text-align: center;
}

.intro-subtitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 880px;
  max-width: 100%;
  height: auto;
  flex: none;
  order: 1;
  flex-grow: 0;
  text-align: center;
  margin: -20px auto 20px;
}

.intro-subtitle p {
  width: 880px;
  max-width: 100%;
  height: auto;
  font-family: 'DMSansCustom', 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #FAEACD;
  margin: 0 auto;
}


.img-slider {
  max-width: 1200px;
  margin: -20px auto 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.slider-images {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  scroll-behavior: smooth;

  margin-top: 20px;
}

.img-container {
    flex: 0 0 calc(25% - 15px);
    transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-button {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
    background: #FAEACD !important;
    border: none;
  cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: #FAEACD !important;
    opacity: 0.9;
}


.slider-button img {
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) saturate(100%) invert(13%) sepia(23%) saturate(669%) hue-rotate(108deg) brightness(94%) contrast(89%);
}

.right-button {
    right: 40px;
}

.left-button {
    left: 40px;
}


.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #FAEACD;
}


.slider-images::-webkit-scrollbar {
    display: none;
}


.slider-images .img-container:nth-child(even) { 
    align-self: flex-start; 
    margin-top: 20px; 
}

.slider-images .img-container:nth-child(odd) { 
    align-self: flex-end; 
    margin-bottom: 20px; 
}



.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slider-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 9px;
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center;     
  flex-grow: 0;
  z-index: 1;
}


.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  flex: none;
  flex-grow: 0;
  cursor: pointer;
  transition: background 0.3s;
  border: none !important;
}

.dot.active {
  background: #fff !important;
}

.brochure-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 70px; 
  background: #fff !important;
  width: 100vw;
  max-width: none;
  height: auto !important;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  padding-top: 0 !important;
  margin-top: 48px !important;
  padding-bottom: 0 !important;
  margin-bottom: 48px !important;
  border-top: none !important;
  border-bottom: none !important;
}

.brochure-section::before,
.brochure-section::after {
    background: #fff !important;
    background-color: #fff !important;
    border: none !important;
}

.brochure-section .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    gap: 40px; 
}

.brochure-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 35%; 
    max-width: 400px; 
    flex-shrink: 0;
}

.brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.brochure-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 56px !important;
    line-height: 1.2; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 300; 
    font-size: 16px !important;
    line-height: 1.4; 
    color: #000000;
    margin: 0;
    padding: 0;
}

.brochure-button {
    display: inline-block !important;
    padding: 12px 25px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 0 !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.brochure-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%; 
    max-width: 600px; 
    flex-shrink: 0;
}

.brochure-image-placeholder {
    width: 100%;
    height: 280px !important;
    background: #D9D9D9 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


@media (max-width: 1024px) {
    .brochure-section {
        padding: 40px 20px;
    }
    .brochure-section .container {
        flex-direction: column;
        gap: 30px;
    }
    .brochure-left,
    .brochure-right {
        width: 100%;
        max-width: 600px; 
        text-align: center;
        align-items: center;
    }
    .brochure-text {
        gap: 12px;
    }
    .brochure-title { 
        font-size: 42px; 
        line-height: 1.2;
    }
    .brochure-description { 
        font-size: 15px; 
        line-height: 1.3;
    }
    .brochure-button {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 160px;
    }
    .brochure-image-placeholder {
        height: 240px; 
    }
}

@media (max-width: 1024px) {
    .brochure-section {
        padding: 30px 15px;
    }
    .brochure-title { 
        font-size: 32px; 
    }
    .brochure-description { 
        font-size: 14px; 
    }
    .brochure-button {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 140px;
    }
    .brochure-image-placeholder {
        height: 200px; 
    }
}


.combined-amenities-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    background: #224457;
    background-image: url('Vector (1).png');
    background-repeat: no-repeat;
    background-size: 40% auto !important;
    background-position: 0 0 !important;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.combined-amenities-cta > .container:nth-child(1) {
    padding-top: 0 !important;
    margin-top: 0 !important;
    gap: 0 !important;
}

.combined-amenities-cta .amenities-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.combined-amenities-cta::before,
.combined-amenities-cta::after {
    display: none;
}


.combined-amenities-cta + section { 
    margin-top: 0 !important; 
}


.combined-amenities-cta > .container:nth-child(1) { 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 30px; 
    position: relative; 
    padding: 0 20px; 
    box-sizing: border-box;
}

.combined-amenities-cta > .container:nth-child(2) { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1440px; 
    margin: 0 auto; 
    gap: 50px; 
    padding: 0 70px; 
    box-sizing: border-box;
    background: none !important; 
}


.combined-amenities-cta .amenities-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 15px; 
    width: 100%;
    max-width: 800px; 
    text-align: left; 
}

.combined-amenities-cta .amenities-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px; 
    line-height: 1.2em; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.combined-amenities-cta .amenities-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px; 
    line-height: 24px; 
    color: #FAEACD; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}


.combined-amenities-cta .amenities-gallery {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    width: 100%; 
    max-width: 1100px; 
    height: auto; 
    position: relative; 
    overflow: hidden; 
    padding: 0 60px; 
    box-sizing: border-box;
}

.combined-amenities-cta .gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.combined-amenities-cta .gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.combined-amenities-cta .gallery-item.needs-item-tall {
    grid-row: span 2;
}

.combined-amenities-cta .gallery-item.needs-item-short {
    grid-row: span 1;
}

.combined-amenities-cta .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 4; grid-row: 1; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 2; grid-row: 2 / span 2; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 1; grid-row: 3; }
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 4; grid-row: 2; }
.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 3; grid-row: 3 / span 2; }

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: 2; grid-row: 1; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: 2; grid-row: 2 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: 1; grid-row: 3; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: 1; grid-row: 4 / span 2; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: 2; grid-row: 4; }
  .combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { grid-column: 2; grid-row: 5; }
  .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(8) { grid-column: 1; grid-row: 6 / span 2; }
}

@media (max-width: 1024px) {
  .combined-amenities-cta .gallery-images {
    display: block !important;
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 420px;
    height: 420px;
    padding: 0 !important;
  }
  .amenidades-slide-track {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100%;
    will-change: transform;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal {
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item {
    width: 70vw !important;
    max-width: 250px !important;
    min-width: 120px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-tall {
    height: 270px !important;
  }
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item.needs-item-short {
    height: 100px !important;
  }
  .combined-amenities-cta .gallery-item:not(.amenidades-slide-pair .gallery-item) {
    display: none !important;
  }
}


.combined-amenities-cta .gallery-dots {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center; 
  padding: 10px;
  gap: 10px; 
  width: 100%; 
  height: auto; 
  flex: none;
  order: 1; 
  align-self: center; 
  flex-grow: 0;
  z-index: 1;
}

.combined-amenities-cta .gallery-dots .dot {
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  width: 12px !important;
  height: 12px !important;
  transition: background 0.3s;
  border: none !important;
}

.combined-amenities-cta .gallery-dots .dot.active {
  background: #fff !important;
}

.combined-amenities-cta .gallery-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0; 
  gap: 8px;
  position: absolute; 
  width: 40px; 
  height: 40px; 
  background: #FAEACD; 
  border-radius: 50%; 
  flex: none;
  flex-grow: 0;
  z-index: 3; 
  cursor: pointer;
  top: 50%; 
  transform: translateY(-50%); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; 
  transition: background-color 0.3s ease;
}

.combined-amenities-cta .gallery-button:hover {
    background-color: #E0D3B8; 
}

.combined-amenities-cta .gallery-button.left-button {
  left: 10px; 
  background-image: url('Vector (4).png'); 
}

.combined-amenities-cta .gallery-button.right-button {
  right: 10px; 
  background-image: url('Vector (3).png'); 
}

.combined-amenities-cta .gallery-button svg path {

    stroke: #1E3427;
}


.combined-amenities-cta .cta-brochure-left {
  display: flex;
  justify-content: center;
  align-items: center;
    width: 50%; 
    max-width: 700px; 
    flex-shrink: 0; 
}

.combined-amenities-cta .cta-brochure-image-placeholder {
    height: 180px !important;
    aspect-ratio: 1/1 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}

.combined-amenities-cta .cta-brochure-img {
    object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

.combined-amenities-cta .cta-brochure-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: 50%;
    max-width: 500px;
    flex-shrink: 0;
    text-align: right;
}

.combined-amenities-cta .cta-brochure-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.combined-amenities-cta .cta-brochure-title {
    font-family: 'Avocado', 'Cormorant Garamond', serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2em;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-description {
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FAEACD;
    margin: 0;
    padding: 0;
}

.combined-amenities-cta .cta-brochure-button {
    display: inline-block;
    padding: 12px 25px;
    background: #224457 !important;
    color: #fff !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: normal !important;
    border-radius: 0 !important;
    transition: background 0.3s ease !important;
    min-width: 180px !important;
    text-align: center !important;
}

.combined-amenities-cta .cta-brochure-button:hover {
    background: #E0D3B8;
}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 60px 0;
        gap: 40px;
         background-size: 150px;
         background-position: left top;
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 15px;
         gap: 30px;
          max-width: 960px;
          align-items: center;
     }
      .combined-amenities-cta .amenities-text {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    .combined-amenities-cta .amenities-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .amenities-description { font-size: 16px; line-height: 1.3; }

    .combined-amenities-cta .amenities-gallery {
        gap: 15px;
        align-items: center;
         max-width: 900px; 
          padding: 0 40px; 
    }
    .combined-amenities-cta .gallery-images {
        gap: 15px; 
        padding-left: 0;
        padding-right: 0;
        height: auto; 
        padding-bottom: 0; 
         justify-content: center; 
    }
    .combined-amenities-cta .gallery-item {
        width: 180px; 
        align-self: auto; 
    }
    .combined-amenities-cta .gallery-item-short {
        height: 180px; 
         align-self: flex-start;
    }
    .combined-amenities-cta .gallery-item-tall {
        height: 280px; 
         align-self: flex-end;
    }
    .combined-amenities-cta .gallery-dots { gap: 8px; }
    .combined-amenities-cta .gallery-dots .dot { width: 8px; height: 8px; }
    .combined-amenities-cta .gallery-button {
       width: 30px; 
       height: 30px;
       top: 50%;
       transform: translateY(-50%);
        background-size: 50%;
    }
  .combined-amenities-cta .gallery-button.left-button {
      left: 0; 
  }
  .combined-amenities-cta .gallery-button.right-button {
      right: 0; 
  }

      .combined-amenities-cta > .container:nth-child(2) { 
        flex-direction: column; 
        gap: 30px;
        padding: 0 20px;
        align-items: center; 
    }
   .combined-amenities-cta .cta-brochure-left, 
   .combined-amenities-cta .cta-brochure-right {
        width: 100%; 
        max-width: 600px; 
        text-align: center; 
        align-items: center; 
   }
    .combined-amenities-cta .cta-brochure-image-placeholder {
          height: 250px; 
    }
    .combined-amenities-cta .cta-brochure-text {
        gap: 10px;
        align-items: center; 
    }
    .combined-amenities-cta .cta-brochure-title { font-size: 48px; line-height: 1.1; }
    .combined-amenities-cta .cta-brochure-description { font-size: 16px; line-height: 1.3; }
    .combined-amenities-cta .cta-brochure-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }

}

@media (max-width: 1004px) {
    .combined-amenities-cta {
        padding: 40px 0;
        gap: 30px; 
            background-size: 100px; 
        background-position: left top; 
    }
     .combined-amenities-cta > .container:nth-child(1) {
         padding: 0 10px;
         gap: 20px;
     }
      .combined-amenities-cta .amenities-text {
        text-align: center; 
         align-items: center; 
         gap: 10px;
     }
    .combined-amenities-cta .amenities-title { font-size: 36px; }
    .combined-amenities-cta .amenities-description { font-size: 15px; }

    .combined-amenities-cta .amenities-gallery {
         max-width: 400px; 
    }
     .combined-amenities-cta .gallery-images {
         grid-template-columns: repeat(2, 1fr); 
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .combined-amenities-cta .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.needs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 40px 20px;
  background: #F8ECD7; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
    margin-top: 0;
    background-color: #FAEACD !important;
}

.needs-section .needs-text {
    margin-top: -20px;
  text-align: center; 
  max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.needs-section .needs-gallery {
    margin-top: 30px;
}

a[href="#"][class="needs-button"] {
    display: inline-block !important;
    padding: 16px 35px !important;
    background: #C14D35 !important;
    color: #FAEACD !important;
    text-decoration: none !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: normal !important;
    border-radius: 0 !important;
    transition: background 0.3s ease !important;
    min-width: 220px !important;
    text-align: center !important;
}

.needs-section .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.needs-section .needs-gallery {
    margin-bottom: 50px;
}

.needs-section .gallery-images {
    display: grid; 
  grid-template-columns: repeat(4, 1fr); 
    gap: 22px;
    margin-bottom: 30px;
}

.needs-section .gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
  overflow: hidden;
    border-radius: 0;
}

.needs-section .gallery-item.needs-item-tall {
    height: 320px;
    grid-row: span 2;
}

.needs-section .gallery-item.needs-item-short {
    height: 150px;
    grid-row: span 1;
}

.needs-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.needs-section .gallery-images .needs-item-tall:nth-child(1) { 
    grid-column: span 1; 
    grid-row: span 2; 
}

.needs-section .gallery-images .needs-item-short:nth-child(2) { 
    grid-column: span 1; 
    grid-row: span 1; 
}

.needs-section .gallery-images .needs-item-tall:nth-child(3) { 
     grid-column: span 1;
     grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(4) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(5) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(6) { 
    grid-column: span 1;
    grid-row: span 1;
}

.needs-section .gallery-images .needs-item-tall:nth-child(7) { 
    grid-column: span 1;
    grid-row: span 2;
}

.needs-section .gallery-images .needs-item-short:nth-child(8) {     
     grid-column: span 1;
     grid-row: span 1;
}


.needs-section .needs-button {
    display: inline-block;
  padding: 15px 30px; 
  background: #C14D35; 
  color: #FFFFFF;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
  font-size: 18px; 
    line-height: normal;
  border-radius: 0;
  transition: background 0.3s ease; 
  margin-top: 20px; 
  margin-bottom: 40px;
}

.needs-section .needs-button:hover {
    background: #A03D2A; 
}


@media (max-width: 1024px) {
  .needs-section {
    padding: 60px 15px;
  }
  .needs-section .container {
      gap: 30px;
  }
  .needs-section .needs-text {
        gap: 15px;
  }
   .needs-section .needs-title { font-size: 48px; line-height: 1.2; }
   .needs-section .needs-description { font-size: 16px; line-height: 1.3; }

   .needs-section .needs-gallery {
      max-width: 700px; 
   }
   .needs-section .gallery-images {
      grid-template-columns: repeat(2, 1fr); 
      gap: 10px;
       max-width: 700px;
       grid-auto-rows: auto; 
   }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 12px 25px; font-size: 16px; margin-top: 15px; }
}

@media (max-width: 768px) {
.needs-section {
        padding: 40px 10px;
    }
     .needs-section .container {
         gap: 20px;
     }
     .needs-section .needs-text {
    gap: 10px;
     }
    .needs-section .needs-title { font-size: 36px; line-height: 1.1; }
    .needs-section .needs-description { font-size: 15px; line-height: 1.3; }

    .needs-section .needs-gallery {
         max-width: 400px; 
    }
     .needs-section .gallery-images {
         grid-template-columns: repeat(2, 1fr);
         gap: 8px;
          max-width: 400px;
          grid-auto-rows: auto; 
     }

    .needs-section .gallery-images .needs-item-tall:nth-child(1) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(3) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(4) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(5) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .needs-section .gallery-images .needs-item-tall:nth-child(7) { grid-column: span 1; grid-row: span 2; }
    .needs-section .gallery-images .needs-item-short:nth-child(8) { grid-column: span 1; grid-row: span 1; }

    .needs-section .needs-button { padding: 10px 20px; font-size: 14px; margin-top: 10px; }
}

.features-section {
  padding: 80px 0 100px;
  background-color: #FDF5E6;
  width: 100%;
}

.features-section .container {
  max-width: 1350px;
    width: 100%;
  margin: 0 auto; 
  padding: 0 40px 0 20px;
}

.features-section .features-grid {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  margin-left: 60px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 20px;
}

@media (max-width: 1200px) {
  .features-section .features-grid {
    gap: 25px;
    margin-left: 4px !important;
  }
}

@media (max-width: 1024px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 0 !important; 
  }
}

.features-section .feature-item {
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
}

.features-section .feature-icon {
  width: 100%; 
  max-width: 250px;
  height: auto; 
  margin-bottom: 15px;
  object-fit: contain;
}

.features-section .feature-text {
    font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #224457;
    margin: 0;
}

.living-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    background: #c14d35;
    background-image: url('Vector (6).png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
    width: 100vw;
    max-width: none;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


.living-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('Vector (1).png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right center;
  opacity: 0.15; 
  pointer-events: none;
  z-index: -1;
}

.living-section .container {
     display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center; 
     width: 100%;
  max-width: 1200px; 
     margin: 0 auto;
  padding: 0 40px; 
     box-sizing: border-box;
  gap: 50px; 
  position: relative; 
            z-index: 3; 
}

.living-section .living-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  gap: 30px; 
    width: 50%; 
  max-width: 500px;
}


.living-section .living-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 60px; 
  line-height: 1.1em;
  color: #FAEACD; 
    margin: 0;
    padding: 0;
}
.living-section .row-title h3 {
  font-family: 'Avocado', serif !important;
}
.living-section .living-button {
    display: inline-block;
    padding: 15px 20px;
    background: #FAEACD !important;
    color: #224457 !important;
    text-decoration: none;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400; 
    font-size: 16px !important; 
    line-height: normal;
    border-radius:0;
    transition: background 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.living-section .living-button:hover {
  background: #E0D3B8; 
}

.living-section .living-right {
     display: flex;
    justify-content: center;
    align-items: center;
          width: 50%; 
  max-width: 500px;
}

.living-section .living-image-placeholder {
    width: 100%;
  height: 300px; 
  background: #D9D9D9; 
     display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  border-radius: 0; 
}

.living-section .living-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.living-section .living-text-blocks {
    display: flex;
  flex-direction: column; 
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0; 
  padding: 0 40px; 
    box-sizing: border-box;
  position: relative;
  z-index: 1; 
  gap: 0; 
}


.living-section .living-text-blocks .text-row {
    display: flex; 
  flex-direction: row; 
  width: 100%;
  gap: 60px; 
  padding: 30px 0; 
  border-bottom: 1px solid #FAEACD; 
}


.living-section .living-text-blocks .text-row:last-child {
  border-bottom: none;
}


.living-section .living-text-blocks .text-row .row-title {
  width: 35%; 
    flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-description {
  width: 65%; 
  flex-shrink: 0;
}


.living-section .living-text-blocks .text-row .row-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .text-row .row-description p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #FAEACD;
    margin: 0;
    padding: 0;
}


.living-section .living-text-blocks .titles-column,
.living-section .living-text-blocks .descriptions-column {
  display: none;
}


@media (max-width: 1024px) {
  .living-section {
    padding: 60px 0;
  }
  .living-section::before {
    opacity: 0.1; 
  }
  .living-section .container {
    flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .living-section .living-left,
  .living-section .living-right {
    width: 100%; 
    max-width: 300px;
    align-items: center; 
  }
  .living-section .living-title { font-size: 48px; line-height: 1.1; }
  .living-section .living-button { padding: 12px 20px; font-size: 15px; }
  .living-section .living-image-placeholder { height: 250px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 40px auto 0;
    padding: 0 30px;
                text-align: center; 
  }
  
  .living-section .living-text-blocks .text-row {
    flex-direction: column; 
    gap: 15px;
    padding: 25px 0;
  }
  
  .living-section .living-text-blocks .text-row .row-title,
  .living-section .living-text-blocks .text-row .row-description {
    width: 100%;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 32px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 15px; }
}

@media (max-width: 1024px) {
  .living-section {
    padding: 40px 0;
  }
  .living-section::before {
          opacity: 0.08; 
  }
  .living-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .living-section .living-left,
  .living-section .living-right {
    max-width: 100%;
  }
  .living-section .living-title { font-size: 36px; }
  .living-section .living-button { padding: 10px 18px; font-size: 14px; }
  .living-section .living-image-placeholder { height: 200px; }
  
  .living-section .living-text-blocks {
    gap: 0;
    margin: 30px auto 0;
    padding: 0 20px;
    text-align: left !important;
  }
  
  .living-section .living-text-blocks .text-row {
    padding: 20px 0;
    gap: 10px;
  }
  
  .living-section .living-text-blocks .text-row .row-title h3 { font-size: 28px; }
  .living-section .living-text-blocks .text-row .row-description p { font-size: 14px; }
}


.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0; 
  background: #FFFFFF; 
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-section .container {
    display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: flex-start; 
    width: 100%;
  max-width: 1200px; 
    margin: 0 auto;
  padding: 0 40px; 
  box-sizing: border-box;
  gap: 80px; 
}


.faq-section .faq-left {
    display: flex;
    flex-direction: column;
  align-items: flex-start; 
  width: 35%; 
  max-width: 400px;
  flex-shrink: 0;
}

.faq-section .faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
      font-size: 60px; 
  line-height: 1.1em;
  color: #000000; 
    margin: 0;
    padding: 0;
  text-align: left;
}


.faq-section .faq-right {
    display: flex;
    flex-direction: column;
  width: 65%; 
  max-width: 700px;
  flex-shrink: 0;
}


.faq-section .faq-item {
    display: flex;
    flex-direction: column;
  width: 100%;
  padding: 30px 0; 
  border-bottom: none; 
  gap: 20px; 
}


.faq-section .faq-item:last-child {
  border-bottom: none;
}

.faq-section .faq-question {
    display: flex;
  flex-direction: row;
  justify-content: space-between; 
    align-items: center;
  width: 100%;
  cursor: pointer; 
  padding-bottom: 15px; 
  border-bottom: 1px solid #CCCCCC; 
}


.faq-section .faq-question span:first-child {
  font-family: 'Avocado', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}


.faq-section .faq-arrow {
    font-size: 24px; 
  color: #000000; 
  font-weight: bold;
  flex-shrink: 0; 
  margin-left: 20px; 
  transform: rotate(0deg); 
}


.faq-section .faq-answer {
  display: block; 
  width: 100%;
}


.faq-section .faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #000000; 
  margin: 0;
  padding: 0;
  padding-right: 44px; 
}


@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .container {
      flex-direction: column; 
    gap: 40px;
    padding: 0 30px;
    text-align: center; 
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    width: 100%; 
    max-width: 700px;
    align-items: center; 
  }
  .faq-section .faq-title { 
    font-size: 48px; 
    line-height: 1.1; 
    text-align: center; 
  }
  .faq-section .faq-item {
    padding: 25px 0;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 32px; 
    text-align: left;
  }
  .faq-section .faq-answer p { 
    font-size: 15px; 
    padding-right: 20px; 
         text-align: left;
    }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .container {
    gap: 30px;
    padding: 0 20px;
  }
  .faq-section .faq-left,
  .faq-section .faq-right {
    max-width: 100%;
  }
  .faq-section .faq-title { 
    font-size: 36px; 
  }
  .faq-section .faq-item {
    padding: 20px 0;
        gap: 15px;
  }
  .faq-section .faq-question span:first-child { 
    font-family: 'Avocado', serif;
    font-size: 28px; 
  }
  .faq-section .faq-arrow {
    font-size: 20px;
    margin-left: 15px;
  }
  .faq-section .faq-answer p { 
    font-size: 14px; 
    padding-right: 15px; 
  }
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 80px 0;
  background: #F8ECD7;
  width: 100vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 236, 215, 0.7); 
  z-index: 1;
  pointer-events: none;
}

.contact-section .container {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    width: 100%;
  max-width: 800px; 
    margin: 0 auto;
  padding: 0 40px;
    box-sizing: border-box;
  position: relative;
  z-index: 2; 
  gap: 40px;
}

.contact-section .contact-form-block {
    display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background: #4A5D5F; 
    border-radius: 0; 
  width: 100%;
  max-width: 200px;
    box-sizing: border-box;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); 
}


.contact-section .contact-title {
  font-family: 'Cormorant Garamond', serif;
    font-style: normal;
  font-weight: 400;
  font-size: 48px; 
  line-height: 1.2em;
  color: #FFFFFF; 
  margin: 0 0 30px 0;
    padding: 0;
  text-align: center;
}

.contact-section .contact-form {
    display: flex;
  flex-direction: column;
  width: 100%;
    gap: 20px; 
}

.contact-section .form-row {
    display: flex;
  flex-direction: row;
  gap: 20px; 
  width: 100%;
}

.contact-section .form-field {
    display: flex;
  flex-direction: column;
  gap: 10px; 
  flex: 1; 
}

.contact-section .form-field.full-width {
  width: 100%;
}

.contact-section .form-field label {
  font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3em;
  color: #FFFFFF; 
    margin: 0;
    padding: 0;
}

.contact-section .form-field input,
.contact-section .form-field textarea {
    width: 100%;
  height: 30px; 
  background: #FFFFFF;
  border: none; 
  border-radius: 0; 
  padding: 8px 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
  line-height: 1.3em;
  color: #000000; 
  box-sizing: border-box;
  outline: none; 
}

.contact-section .form-field textarea {
  height: 70px;
  resize: vertical; 
}


.contact-section .submit-button {
    display: inline-block;
  padding: 6px 18px;
  font-size: 14px;
  margin-top: -32px; 
  background: #F8ECD7; 
  color: #000000; 
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: 600;
  font-size: 16px;
    line-height: normal;
    border: none;
  border-radius: 0; 
    cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
  align-self: center; 
  min-width: 120px; 
}

.contact-section .submit-button:hover {
  background: #E0D3B8; 
}

.contact-section .contact-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
  width: 100%;
  max-width: 600px;
  height: 200px;
  background: #D9D9D9;
  border-radius: 0;
    overflow: hidden;
  margin-top: 0; 
}

.contact-section .contact-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .contact-section {
    padding: 80px 0;
    }
    .contact-section .container {
    max-width: 90%;
        padding: 0 20px;
  }
  .contact-section .contact-form-block {
    padding: 30px;
  }
  .contact-section .contact-title {
    font-size: 42px;
  }
  .contact-section .form-row {
    flex-direction: column; 
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 28px; 
  }
  .contact-section .form-field textarea {
    height: 60px; 
  }
}

@media (max-width: 1024px) {
     .contact-section {
    padding: 60px 0;
    }
     .contact-section .container {
    padding: 0 15px;
  }
  .contact-section .contact-form-block {
    padding: 25px;
  }
  .contact-section .contact-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .contact-section .contact-form {
    gap: 15px;
  }
  .contact-section .form-field input,
  .contact-section .form-field textarea {
    height: 26px; 
    padding: 6px 12px; 
  }
  .contact-section .form-field textarea {
    height: 50px; 
  }
  .contact-section .submit-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}


.cotizador-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: #234457; 
  width: 100vw;
  max-width: none;
  min-height: 70vh; 
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.cotizador-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  gap: 60px; 
}

.cotizador-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px; 
  line-height: 1.1em;
  color: #FFFFFF; 
  margin: 0;
  padding: 0;
  text-align: center;
}

.cotizador-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.cotizador-form-area {
  width: 100%;
  height: 140000px; 
  background: #E5E5E5; 
  border-radius: 0px; 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); 
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.cotizador-section {
  background-color: #224457;
  padding: 100px 0 200px 0;
  min-height: auto;
}

@media (max-width: 1024px) {
  .cotizador-section {
    padding: 80px 0 150px 0;
  }
  
  .container-svg {
    height: 350px;
  }
  
  .cotizador-main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .status-legend {
    gap: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .container-svg {
    height: 450px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

@media (max-width: 1023px) {
  .container-svg {
    height: 350px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

.cotizador-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cotizador-header {
  text-align: center;
  margin-bottom: 30px;
}

.cotizador-main-title {
  font-family: 'Avocado', sans-serif;
  font-weight: normal;
  font-size: 48px;
  color: #FAEACD;
  margin-bottom: 30px;
}

.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
  preserveAspectRatio: xMidYMid meet;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius:0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important; 
  transition: all 0.3s ease;
}

.batch:hover .lot-path,
.batch:hover polygon {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.lot-number {
  fill: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.batch:hover .lot-number {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.lot-status-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-dot-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #333;
}

.status-dot-large.disponible {
  background-color: #28a745;
}

.status-dot-large.apartado {
  background-color: #ffc107;
}

.status-dot-large.vendido {
  background-color: #dc3545;
}

.info-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.lot-data {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.lot-data h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-weight: bold;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
  border-bottom: none;
}

.surface-value, .price-value {
  font-weight: bold;
  color: #224457;
}

.payment-plan {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.plan-row, .discount-row, .final-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.final-price-row {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #224457;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan-row select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.discount-value, .final-price-value {
  color: #28a745;
  font-weight: bold;
}

.down-payment-section {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.down-payment-section h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.down-payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.down-payment-options select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.payment-summary {
  background-color: #224457;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.reserve-payment, .installments {
  margin-bottom: 15px;
}

.reserve-payment span, .installments span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #34495E;
  display: block;
  margin-bottom: 8px;
}

.reserve-amount, .installment-amount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E74C3C;
}

.installment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-plan-btn {
  width: 100%;
  padding: 12px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 25px 0;
}

.view-plan-btn:hover {
  background: #C0392B;
}

.quote-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #ECF0F1;
}

.quote-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #E74C3C;
}

.quote-form button {
  padding: 12px;
  background: #27AE60;
  color: #FFFFFF;
  border: none;
  border-radius: 0 ;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #229954;
}

.cotizador-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #1E3427; 
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.cotizador-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 120px; 
}

.cotizador-logo {
  display: block;
  max-height: 120px; 
  width: auto;
  flex-shrink: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: row;
  gap: 100px; 
  flex-grow: 1;
  justify-content: flex-end; 
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

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

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
  color: #FAEACD; 
  margin: 0;
  padding: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #FAEACD;
  padding: 0;
  opacity: 0.8; 
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 80px 0;
    min-height: 60vh;
  }
  .cotizador-hero .container {
    gap: 50px;
    padding: 0 30px;
  }
  .cotizador-title {
    font-size: 52px;
  }
  .cotizador-form-area {
    height: 350px;
  }
  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-links-grid {
    justify-content: center;
    gap: 40px;
  }
  .cotizador-logo {
    max-height: 100px;
  }
}

@media (max-width: 1024px) {
  .cotizador-hero {
    padding: 60px 0;
    min-height: 50vh;
  }
  .cotizador-hero .container {
    gap: 40px;
    padding: 0 20px;
  }
  .cotizador-title {
    font-size: 42px;
  }
  .cotizador-form-area {
    height: 300px;
}
  .cotizador-footer {
    padding: 40px 0;
  }
  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
  .cotizador-logo {
    max-height: 80px;
  }
}


.status-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
}

.status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.disponible {
  background-color: #28a745; 
}

.status-dot.apartado {
  background-color: #ffc107; 
}

.status-dot.vendido {
  background-color: #dc3545; 
}



.container-svg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.container-svg svg {
  width: 100%;
  height: 100%;
  transform: none !important;
  will-change: auto;
}

.batch.disponible .lot-path,
.batch.disponible polygon {
  fill: #28a745 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.apartado .lot-path,
.batch.apartado polygon {
  fill: #ffc107 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  opacity: 0.8 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.batch.vendido .lot-path,
.batch.vendido polygon {
  fill: #dc3545 !important; 
  stroke: #fff !important;
  stroke-width: 2 !important;
  stroke-width: 3 !important;
  opacity: 1 !important;
}

.lot-path {
  fill: rgba(255, 255, 255, 0.2);
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-dasharray: 2,1;
  transition: fill 0.3s ease;
  transform: none !important;
  pointer-events: all;
  will-change: auto;
}

.lot-number {
  display: none;
}

.batch:hover .lot-path {
  fill: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
} 

.logo img {
  max-height: 52px;
} 

.combined-amenities-cta .gallery-images {
    gap: 15px; 
    padding-left: 0;
    padding-right: 0;
    height: auto; 
    padding-bottom: 0;
    justify-content: flex-start; 
    max-width: 720px; 
}
.combined-amenities-cta .gallery-item {
    width: 160px; 
    align-self: auto; 
}
.combined-amenities-cta .gallery-item-short {
    height: 195px !important; 
    align-self: flex-start;
}
.combined-amenities-cta .gallery-item-tall {
    height: 300px; 
    align-self: flex-end;
} 

.amenidades-carrusel-fila, .amenidades-fijas-fila {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 0;
}
.amenidades-carrusel-fila {
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.amenidades-fijas-fila {
  margin-bottom: 0;
}
.amenidades-carrusel-fila .gallery-item,
.amenidades-fijas-fila .gallery-item {
  width: 220px;
  flex-shrink: 0;
}
.amenidades-carrusel-fila .gallery-item-tall,
.amenidades-fijas-fila .gallery-item-tall {
  height: 350px;
  align-self: flex-end;
}
.amenidades-carrusel-fila .gallery-item-short,
.amenidades-fijas-fila .gallery-item-short {
  height: 280px;
  align-self: flex-end;
}
.amenidades-carrusel-fila .gallery-item img,
.amenidades-fijas-fila .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-images#amenidades-carrusel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 32px;
    width: 400%;
    transition: transform 0.5s ease;
    margin-bottom: 24px;
}

.gallery-images#amenidades-carrusel .gallery-item {
    width: 220px;
    height: 220px;
    overflow: hidden;
}

.gallery-images#amenidades-carrusel .gallery-item.tall {
    height: 350px;
}

.gallery-images#amenidades-carrusel .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
  display: flex;
  align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-button.left-button {
    left: 45px;
}

.slider-button.right-button {
    right: 75px;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 1);
} 


.needs-section .gallery-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.needs-section .gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.needs-section .gallery-item.needs-item-tall {
  height: 320px;
  grid-row: span 2;
}

.needs-section .gallery-item.needs-item-short {
  height: 150px;
  grid-row: span 1;
}


.needs-section .gallery-images .gallery-item:nth-last-child(-n+2) {
  margin-top: 0px;
}


.needs-section .gallery-images .gallery-item:nth-last-child(2) {
  margin-top: 0.5px;
}


.needs-section .gallery-images .gallery-item:last-child {
  margin-top: -170px;
}

.needs-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.combined-amenities-cta .gallery-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.combined-amenities-cta .gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.combined-amenities-cta .gallery-item.needs-item-tall {
  height: 320px;
  grid-row: span 2;
}

.combined-amenities-cta .gallery-item.needs-item-short {
  height: 150px;
  grid-row: span 1;
}

.combined-amenities-cta .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(1) { 
    grid-column: span 1;
    grid-row: span 2;
}

.combined-amenities-cta .gallery-images .needs-item-short:nth-child(2) { 
    grid-column: span 1;
    grid-row: span 1;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(3) { 
     grid-column: span 1;
     grid-row: span 2;
}

.combined-amenities-cta .gallery-images .needs-item-short:nth-child(4) { 
    grid-column: span 1;
    grid-row: span 1;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(5) { 
    grid-column: span 1;
    grid-row: span 2;
}

.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6) { 
    grid-column: span 1;
    grid-row: span 1;
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { 
    grid-column: 4;
    grid-row: 2;
    height: 150px;
}

.combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { 
    grid-column: 4;
    grid-row: 2;
    height: 150px;
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7),
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { 
        grid-column: 2;
        grid-row: 5;
        height: 130px;
    }
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7),
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) { 
        grid-column: span 1;
        grid-row: span 1;
        height: 110px;
    }
}

.combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { 
    grid-column: 4;
    grid-row: 2 / span 2;
    height: 320px !important;
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { 
        grid-column: 2;
        grid-row: 2 / span 2;
        height: 280px !important;
    }
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .needs-item-tall:nth-child(7) { 
        grid-column: span 1;
        grid-row: span 2;
        height: 240px !important;
    }
}


.combined-amenities-cta .gallery-images .needs-item-short:nth-child(7) {
    display: none;
}

.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6),
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) {
    margin-top: -10px;
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6),
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) {
        margin-top: 0;
    }
}

.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6),
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) {
    position: relative;
    transform: translateY(-10px);
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6),
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) {
        transform: none;
    }
}

.combined-amenities-cta .gallery-images .needs-item-short:nth-child(6),
.combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) {
    position: relative;
    transform: translateY(-80px);
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6),
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) {
        transform: none;
    }
}

.combined-amenities-cta .gallery-images .gallery-item.needs-item-short {
    height: 190px !important;
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .gallery-item.needs-item-short {
        height: 170px !important;
    }
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .gallery-item.needs-item-short {
        height: 150px !important;
    }
}


.hero-title,
.intro-title h1,
.brochure-title,
.amenities-title,
.needs-title,
.living-title,
.faq-title,
.contact-title,
.cta-brochure-title {
    font-family: 'Avocado', sans-serif !important;
}


.hero-desc,
.intro-subtitle p,
.brochure-description,
.amenities-description,
.needs-description,
.living-text-blocks p,
.faq-answer p,
.contact-form label,
.cta-brochure-description,
.footer-links p {
    font-family: 'DM Sans Regular', sans-serif !important;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #FAEACD;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #FAEACD;
    transition: all 0.3s;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}


.hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-vector {
    position: absolute;
    right: 0;
  top: 0;
  height: 100%;
    width: auto;
    min-width: 100%;
    object-fit: cover;
    object-position: right;
    z-index: -1;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    nav {
  position: relative;
}

    .navbar-menu {
        display: none;
  position: absolute;
        top: 100%;
        right: 0;
        background: #1E3427;
        flex-direction: column;
  padding: 20px;
  text-align: center;
        width: 200px;
        border-radius: 0 !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .navbar-menu.active {
  display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .navbar-flex {
        position: relative;
    }
}

#brochure-section {
    scroll-margin-top: 100px;
}

#amenidades {
    scroll-margin-top: 100px;
} 

.needs-section .needs-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.1em;
    color: #23412d;
  margin-bottom: 20px;
  text-align: center;
}

.needs-section .needs-description {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
  font-weight: normal;
    font-size: 18px;
    line-height: 1.4em;
    color: #000000;
  margin-bottom: 30px;
    text-align: center;
}

.needs-button {
    position: relative;
    top: -180px;
    margin-top: -120px;
    margin-bottom: 0;
    z-index: 2;
}

.combined-amenities-cta {
    margin-top: 0px !important;
    position: relative;
    z-index: 1;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
} 

.intro-section::before, .intro-section::after, .brochure-section::before, .brochure-section::after, .container::before, .container::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-color: transparent !important;
}

.brochure-section {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
}
.brochure-title {
    font-size: 48px;
}
.brochure-description {
    font-size: 15px;
}
.brochure-button {
    font-size: 13px;
    padding: 10px 20px;
}
.brochure-image-placeholder {
    height: 240px;
}

.combined-amenities-cta .amenities-title {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
}
.combined-amenities-cta .amenities-gallery {
    margin-top: 32px !important;
    max-width: 1200px !important;
}
.combined-amenities-cta .gallery-images {
    max-width: 1200px !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px !important;
}
.combined-amenities-cta .gallery-item {
    min-width: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.combined-amenities-cta .cta-brochure-left {
    align-items: flex-start !important;
    margin-top: -32px !important;
}
.combined-amenities-cta .cta-brochure-image-placeholder {
    width: 340px !important;
    height: 120px !important;
    aspect-ratio: unset !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}
.combined-amenities-cta .cta-brochure-img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}
.combined-amenities-cta .cta-brochure-right {
    margin-top: -24px !important;
}
.combined-amenities-cta .cta-brochure-button {
    background: #FAEACD !important;
    color: #224457 !important;
    font-family: 'DMSansCustom', 'DM Sans', Arial, sans-serif !important;
    font-weight: 400 !important;
}

.combined-amenities-cta .gallery-dots {
    margin-top: -16px !important;
}
.combined-amenities-cta .cta-brochure-left {
    align-items: flex-start !important;
    margin-top: -48px !important;
}
.combined-amenities-cta .cta-brochure-image-placeholder {
    width: 340px !important;
    height: 240px !important;
    aspect-ratio: unset !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}
.combined-amenities-cta .cta-brochure-right {
    margin-top: -32px !important;
}

.combined-amenities-cta .gallery-dots {
    margin-top: -32px !important;
}
.combined-amenities-cta .cta-brochure-left {
    align-items: flex-start !important;
    margin-top: -64px !important;
}
.combined-amenities-cta .cta-brochure-right {
    margin-top: -48px !important;
}

.combined-amenities-cta .gallery-images {
    max-width: 100% !important;
    width: 100% !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px !important;
}

.combined-amenities-cta .amenities-gallery {
    max-width: 100% !important;
    width: 100% !important;
}
.combined-amenities-cta .gallery-images {
    max-width: 100% !important;
    width: 100% !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px !important;
}

.combined-amenities-cta > .container:nth-child(1) {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.combined-amenities-cta .amenities-gallery {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    margin-left: calc(-1 * ((100vw - 100%) / 2)) !important;
}
.combined-amenities-cta .gallery-images {
    max-width: 100vw !important;
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.combined-amenities-cta .amenities-gallery {
    max-width: 1800px !important;
    width: 100%;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: -10px !important;
}
.combined-amenities-cta .gallery-images {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto !important;
}

.combined-amenities-cta .amenities-gallery {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
}
.combined-amenities-cta .gallery-images {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto !important;
}

.combined-amenities-cta .amenities-gallery {
  max-width: 1200px !important;
  width: 100%;
  margin: 32px auto 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
}

.combined-amenities-cta .cta-brochure-left {
    align-items: center !important;
    margin-top: -64px !important;
    margin-left: 150px !important;
}
.combined-amenities-cta .cta-brochure-image-placeholder {
    width: 450px !important;
    height: 350px !important;
    aspect-ratio: unset !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: center !important;
}
.combined-amenities-cta .cta-brochure-right {
    margin-top: -48px !important;
    text-align: center !important;
}

.combined-amenities-cta .cta-brochure-image-placeholder {
    margin-top: 50px !important;
}

.combined-amenities-cta .cta-brochure-left,
.combined-amenities-cta .cta-brochure-right {
    transform: translateX(-180px);
}

.combined-amenities-cta .cta-brochure-right {
    transform: translateX(-100px) !important;
}

.needs-section .needs-title,
.needs-section .needs-description {
    color: #224457 !important;
}
.needs-section .needs-button {
    color: #FAEACD !important;
}

.features-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.needs-section .needs-button {
    margin-bottom: -100px !important;
} 

.faq-item .faq-answer {
  display: none;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item .faq-arrow {
  transition: transform 0.3s;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
} 

.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('2653b0e0f4fb2e200ab653c625a39ccacd3f4655.jpg') center center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.contact-section .contact-form-block {
  background: #224457 !important;
  max-width: 900px;
  width: 100%;
  min-width: 350px;
  border-radius: 0  !important;
  box-sizing: border-box;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 60px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.contact-section .container {
  max-width: 100% !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-section .contact-form-block {
  width: 100%;
  max-width: 910px;
  min-width: 0;
  margin: 0 auto;
  padding: 7px 3px;
  height: auto;
}
.contact-section .contact-image-placeholder {
  max-width: 800px;
  width: 100%;
  height: 350px;
  margin: 30px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-section .form-row {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}
.contact-section .form-field {
  width: 100%;
  max-width: 990px;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  height: 20px;
  font-size: 15px;
  padding: 2px 8px;
  border-radius: 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.contact-section .form-field.full-width {
  margin-bottom: 0; 
}

.contact-section .contact-form-block {

  min-height: 395px;
} 

.footer-logo-section,
.footer-links,
  .footer-links-grid {
  display: flex;
  flex-wrap: wrap;
    gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-column, .footer-col {
  min-width: 140px;
  max-width: 200px;
  flex: 1 1 140px;
}

.main-footer .footer-svg {
  width: 20px;
  height: auto;
  display: block;
  margin-left: 160px;
} 

.footer-links .footer-col:nth-child(2) {
  margin-left: 120px !important;
}
.footer-links .footer-col:nth-child(3) {
  margin-left: 120px !important;
}

.intro-title h1 {
  font-weight: 300 !important;
}

.batch {
  position: relative;
  cursor: pointer;
}

.batch .lot-path {
  transition: all 0.3s ease;
}

.batch:hover .lot-path {
  opacity: 1 !important;
  stroke-width: 3 !important;
  transform: scale(1.05);
}

.batch .tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.batch:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.batch .tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.needs-section .container,
.combined-amenities-cta .container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.needs-section .gallery-images,
.combined-amenities-cta .gallery-images {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.needs-section .gallery-item,
.combined-amenities-cta .gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.needs-section .gallery-item img,
.combined-amenities-cta .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.needs-section .needs-item-tall,
.combined-amenities-cta .gallery-item.needs-item-tall {
  height: 320px;
  grid-row: span 2;
}

.needs-section .needs-item-short,
.combined-amenities-cta .gallery-item.needs-item-short {
  height: 150px;
  grid-row: span 1;
}
.features-section {
  min-height: 700px;
}



.intro-section {
  .intro-section {
    margin-top: 400px !important;
  }
}
section.hero {
  background: #FAEACD !important; 
}

.intro-section {
  margin-top: 0 !important;
}

.intro-section .container {
  padding-top: 90px !important;
}

section.hero {
  padding-bottom: 60px !important; 
}


section.hero {
  background-color: #FAEACD !important;
  background-image: url('Vector (7).png') !important;
  background-repeat: no-repeat !important;
  background-size: 50% 100% !important;
  background-position: right center !important;
}



@media (min-width: 1000px) {
  .hero-inner {
    position: relative !important;
    left: -10px !important;
  }
}



@media (max-width: 1000px) {
  .cta-brochure-img {
  
    height: auto !important;
  }
}

@media (max-width: 1000px) {
  .combined-amenities-cta .cta-brochure-image-placeholder {
    width: 300px !important;
    height: 250px !important;
    margin-left: auto !important;
    margin-right: -20px !important;
  }

  .combined-amenities-cta .cta-brochure-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .combined-amenities-cta .cta-brochure-right {
    margin-top: 30px !important;
    text-align: center !important;
    padding: 0 20px !important;
    margin-left: 280px !important;
  }

  .combined-amenities-cta .cta-brochure-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .gallery-images{
    
    margin-left:120px !important;
  }
}



@media (max-width: 1000px) {
  .navbar-menu {
    width: 100% !important;
    max-width: 300px !important;
    right: 0 !important;
    padding: 20px !important;
    background: #FAEACD !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
  }

  .navbar-menu li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .navbar-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: left !important;
    line-height: 1.4 !important;
  }

  nav {
    padding-right: 20px !important;
  }

  .menu-toggle {
    margin-left: 15px !important;
  }
}

@media (max-width: 1024px) {
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(6),
    .combined-amenities-cta .gallery-images .needs-item-short:nth-child(8) {
        transform: none;
    }
}



.main-footer {
  background-color: #1E3427;
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.main-footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-logo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.footer-logo-img {
  width: 200px;
  height: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 120px;
}

.link-pair {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FAEACD;
  margin: 0;
}

.link-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #FAEACD;
  margin: 0;
  opacity: 0.8;
}

.bottom-bar {
  background-color: #000000;
  padding: 20px 0;
  color: white;
}

.bottom-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.copyright {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: white;
}

.vector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vector-icon img {
  height: 24px;
  width: auto;
}

.privacy {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: white;
}

@media (max-width: 1000px) {
  .main-footer .container, .bottom-bar .container {
    gap: 20px;
    padding: 0 10px;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-logo-img {
    width: 140px;
  }
}

@media (max-width: 1000px) {
  .main-footer {
    padding: 30px 0;
  }
  .main-footer .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 150px;
    padding: 0 5px;
  }
  .footer-logo-img {
    width: 200px;
    margin-left: 30px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-col {
    gap: 8px;
    min-width: 80px;
  }
  .bottom-bar {
    padding: 10px 0;
  }
  .bottom-bar .container {
    flex-direction: row;
    gap: 10px;
    padding: 0 5px;
  }
  .vector-icon img {
    height: 18px;
  }
  .copyright, .privacy {
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  .container-svg {
    height: 600px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}

@media (max-width: 1023px) {
  .container-svg {
    height: 450px;
  }
  
  .container-svg svg {
    width: 100%;
    height: 100%;
    preserveAspectRatio: xMidYMid meet;
  }
}
.navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  order: 1;
  margin-left: 0 !important;
}

.menu-toggle {
  order: 2;
  margin-left: auto !important;
  margin-right: 0 !important;
  display: block;
}

nav {
  order: 3;
}

@media (max-width: 1000px) {
  .navbar-flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    height: 60px !important;
  }
  .logo {
    margin-left: 0 !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    display: flex !important;
    order: 1 !important;
  }
  .menu-toggle {
    margin-left: auto !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
    display: block !important;
    order: 2 !important;
    align-self: center !important;
    position: relative !important;
    top: 6px !important;
  }
  nav {
    order: 3 !important;
  }
}

@media (max-width: 1441px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 30px;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-left {
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  
  .hero-title {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
  }
  
  .hero-desc {
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
  }
  
  .hero-right-content {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  .hero-form {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 25px 20px;
    border-radius: 16px;
    background: #C14D35;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: auto;
    height: auto;
  }
  
  .hero-form .row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .hero-form .field-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .hero-form label {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    margin: 0;
  }
  
  .hero-form input,
  .hero-form button {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    box-sizing: border-box;
  }
  
  .hero-form input {
    background: #fff;
    color: #222;
    height: 40px;
  }
  
  .hero-form button {
    background: #FAEACD;
    color: #C14D35;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    height: 40px;
    margin-top: 8px;
  }
  
  .hero-form button:hover {
    background: #ffe6c7;
  }
  
  .hero-right {
    width: 100%;
    max-width: 420px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    padding: 0 15px;
    gap: 25px;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 1.1;
  }
  
  .hero-desc {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .hero-right-content {
    max-width: 380px;
  }
  
  .hero-form {
    max-width: 380px;
    padding: 20px 15px;
  }
  
  .hero-form .row {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .hero-form .field-div {
    gap: 5px;
  }
  
  .hero-form label {
    font-size: 14px;
  }
  
  .hero-form input,
  .hero-form button {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .hero-form input {
    height: 35px;
  }
  
  .hero-form button {
    height: 35px;
    margin-top: 6px;
  }
  
  .hero-right {
    max-width: 380px;
    height: 280px;
  }
  
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 0 10px;
    gap: 20px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 1.1;
  }
  
  .hero-desc {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .hero-right-content {
    max-width: 340px;
  }
  
  .hero-form {
    max-width: 340px;
    padding: 18px 12px;
  }
  
  .hero-form .row {
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .hero-form .field-div {
    gap: 4px;
  }
  
  .hero-form label {
    font-size: 13px;
  }
  
  .hero-form input,
  .hero-form button {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  .hero-form input {
    height: 32px;
  }
  
  .hero-form button {
    height: 32px;
    margin-top: 5px;
  }
  
  .hero-right {
    max-width: 340px;
    height: 240px;
  }
  
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    padding: 0 8px;
    gap: 15px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-desc {
    font-size: 12px;
  }
  
  .hero-right-content {
    max-width: 300px;
  }
  
  .hero-form {
    max-width: 300px;
    padding: 15px 10px;
  }
  
  .hero-form .row {
    gap: 6px;
    margin-bottom: 6px;
  }
  
  .hero-form .field-div {
    gap: 3px;
  }
  
  .hero-form label {
    font-size: 12px;
  }
  
  .hero-form input,
  .hero-form button {
    padding: 5px 8px;
    font-size: 12px;
  }
  
  .hero-form input {
    height: 28px;
  }
  
  .hero-form button {
    height: 28px;
    margin-top: 4px;
  }
  
  .hero-right {
    max-width: 300px;
    height: 200px;
  }
  
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 320px) {
  .hero-inner {
    padding: 0 5px;
    gap: 12px;
  }
  
  .hero-title {
    font-size: 20px;
  }
  
  .hero-desc {
    font-size: 11px;
  }
  
  .hero-right-content {
    max-width: 280px;
  }
  
  .hero-form {
    max-width: 280px;
    padding: 12px 8px;
  }
  
  .hero-form .row {
    gap: 5px;
    margin-bottom: 5px;
  }
  
  .hero-form .field-div {
    gap: 2px;
  }
  
  .hero-form label {
    font-size: 11px;
  }
  
  .hero-form input,
  .hero-form button {
    padding: 4px 6px;
    font-size: 11px;
  }
  
  .hero-form input {
    height: 25px;
  }
  
  .hero-form button {
    height: 25px;
    margin-top: 3px;
  }
  
  .hero-right {
    max-width: 280px;
    height: 180px;
  }
  
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 280px) {
  .hero-inner {
    padding: 0 3px;
    gap: 10px;
  }
  
  .hero-title {
    font-size: 18px;
  }
  
  .hero-desc {
    font-size: 10px;
  }
  
  .hero-right-content {
    max-width: 260px;
  }
  
  .hero-form {
    max-width: 260px;
    padding: 10px 6px;
  }
  
  .hero-form .row {
    gap: 4px;
    margin-bottom: 4px;
  }
  
  .hero-form .field-div {    gap: 2px;
  }
  
  .hero-form label {
    font-size: 10px;
  }
  
  .hero-form input,
  .hero-form button {
    padding: 3px 5px;
    font-size: 10px;
  }
  
  .hero-form input {
    height: 22px;
  }
  
  .hero-form button {
    height: 22px;
    margin-top: 2px;
  }
  
  .hero-right {
    max-width: 260px;
    height: 160px;
  }
  
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1024px) {
  .intro-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .intro-title h1 { 
    font-size: 36px; 
    text-align: center;
    margin-bottom: 20px;
  }
  .intro-subtitle p { 
    font-size: 16px; 
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
    line-height: 1.5;
  }
  .img-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .slider-images {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  .img-container.active {
    opacity: 1;
 
  }
  .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  .slider-button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  .left-button {
    left: 20px;
  }
  .right-button {
    right: 20px;
  }
  .slider-dots {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3) !important;
    cursor: pointer;
    transition: background 0.3s;
    border: none !important;
  }
  .dot.active {
    background: #fff !important;
  }
}

@media (max-width: 1024px) {
  .intro-section {
    padding: 30px 15px;
  }
  .intro-title h1 { 
    font-size: 32px; 
  }
  .intro-subtitle p { 
    font-size: 15px; 
  }
  .slider-images {
    height: 220px;
  }
 
  .slider-button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 25px 10px;
  }
  .intro-title h1 { 
    font-size: 28px; 
  }
  .intro-subtitle p { 
    font-size: 14px; 
  }
  .slider-images {
    height: 200px;
  }
  .img-container {
    width: 160px;
    height: 160px;
  }
  .slider-button {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 1024px) {
  .slider-button {
    display: none !important;
  }
  .dot {
    background: rgba(255,255,255,0.3) !important;
    border: none !important;
  }
  .dot.active {
    background: #fff !important;
  }
}

@media (max-width: 1024px) {
  .slider-button {
    display: none !important;
  }
  .dot {
    background: rgba(255,255,255,0.3) !important;
    border: none !important;
  }
  .dot.active {
    background: #fff !important;
  }
}

@media (max-width: 480px) {
  .slider-button {
    display: none !important;
  }
  .dot {
    background: rgba(255,255,255,0.3) !important;
    border: none !important;
  }
  .dot.active {
    background: #fff !important;
  }
}

@media (max-width: 1024px) {
  
  .combined-amenities-cta .gallery-button {
    display: none !important;
  }

  .combined-amenities-cta .gallery-dots {
    margin-top: 32px !important;
    margin-bottom: 16px !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    justify-content: center !important;
    display: flex !important;
  }

  .combined-amenities-cta .cta-brochure-image-placeholder {
    justify-content: flex-end !important;
    margin-right: 10vw !important;
    margin-left: 0 !important;
    margin-top: 32px !important;
    width: 100% !important;
    display: flex !important;
  }
  .combined-amenities-cta .cta-brochure-right {
    align-items: flex-start !important;
    text-align: left !important;
    margin-left: 10vw !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  .combined-amenities-cta > .container .cta-brochure-left,
  .combined-amenities-cta > .container .cta-brochure-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: 5vw !important;
    margin-right: 0 !important;
    padding: 0 !important;
  }
  .combined-amenities-cta > .container .cta-brochure-image-placeholder {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: 100% !important;
    margin: 32px 0 0 0 !important;
    padding: 0 !important;
    padding-right: 5vw !important;
  }
  .combined-amenities-cta > .container .cta-brochure-img {
    display: block !important;
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 1024px) {
  .combined-amenities-cta > .container .cta-brochure-left,
  .combined-amenities-cta > .container .cta-brochure-right {
    margin: 0 auto !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 0 !important;
  }
  .combined-amenities-cta > .container .cta-brochure-image-placeholder {
    margin: 32px auto 0 auto !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    display: flex !important;
    padding: 0 !important;
  }
  .combined-amenities-cta > .container .cta-brochure-img {
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 1024px) {
  .combined-amenities-cta > .container,
  .combined-amenities-cta > .container .cta-brochure-left,
  .combined-amenities-cta > .container .cta-brochure-right,
  .combined-amenities-cta > .container .cta-brochure-image-placeholder {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta > .container .cta-brochure-img {
    display: block !important;
    margin: 0 auto !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
}
@media (max-width: 1024px) {
  .combined-amenities-cta > .container {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    position: static !important;
  }
}

@media (max-width: 1024px) {
  .combined-amenities-cta > .container {
    width: 100% !important;
    max-width: 400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .combined-amenities-cta > .container .cta-brochure-left,
  .combined-amenities-cta > .container .cta-brochure-right {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta > .container .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width: 320px !important;
    margin: 32px auto 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }
  .combined-amenities-cta > .container .cta-brochure-img {
    display: block !important;
    margin: 0 auto !important;
    width: 100% !important;

    min-width: 0 !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius:0 !important;
  }
}

@media (max-width: 1024px) {
  .cta-brochure-img {
    display: block !important;
    margin: 0 auto !important;

    height: auto !important;
  }
  .cta-brochure-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .cta-brochure-text, .cta-brochure-title, .cta-brochure-description {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 340px !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .cta-brochure-button {
    margin: 18px auto 0 auto !important;
    display: block !important;
    text-align: center !important;
  }
}

@media (max-width: 1024px) {
  .needs-gallery {
    max-width: 360px !important;
    margin: 0 auto 32px auto !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gallery-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    align-items: stretch !important;
    justify-items: stretch !important;
  }
  .gallery-item {
    border-radius: 0 !important;
    overflow: hidden !important;
    background: none !important;
    margin: 0 !important;
    width: 100% !important;
    aspect-ratio: 1/1 !important; 
    min-height: 0 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
  }
  .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
  }
  .needs-button {
    display: block !important;
    margin: 32px auto 0 auto !important;
    font-size: 16px !important;
    padding: 12px 24px !important;
    border-radius:0 !important;
    width: 90%;
    max-width: 320px;
    text-align: center;
  }
  .needs-title, .needs-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width:1024px) {
  .needs-section .gallery-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .needs-section .gallery-item,
  .needs-section .gallery-item.needs-item-tall,
  .needs-section .gallery-item.needs-item-short {

    grid-row: auto !important;
    grid-column: auto !important;
    height: 100px !important; 
    border-radius: 0!important;
    overflow: hidden !important;
    background: none !important;
    margin: 0 !important;
    width: 100% !important;
    aspect-ratio: 1/1 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
  }
  .needs-section .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
  }
}
@media (max-width: 1024px) {
  .needs-button {
    margin-top: 160px !important;  
    margin-bottom: 0 !important;
    display: block !important;
    width: 90%;
    max-width: 320px;
    text-align: center;
  }
}


@media (max-width: 1024px) {
  .footer-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 16px !important;
  }
  .footer-logo-img {
    width: 120px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .link-pair {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .link-title, .link-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    word-break: break-word !important;
  }

}
@media (max-width: 1024px) {
  .hero-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 1024px) {
  .faq-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 8px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .faq-question span {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    word-break: break-word !important;
  }
  .faq-arrow {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 2rem !important;
    color: #234457 !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
  }
}

@media (max-width: 1024px) {
  .main-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 30px 0 10px 0 !important;
    box-sizing: border-box !important;
  }
  .main-footer .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    gap: 24px !important;
  }
  .footer-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 16px !important;
  }
  .footer-logo-img {
    width: 120px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 0 !important;
    padding: 0 !important;
  }
  .footer-links > div[style*="flex:1"] {
    display: none !important;
  }
  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer-links {
    flex-direction: column !important;
  }
  .link-pair {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
  }
  .link-title {
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #FAEACD !important; 
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3em !important;
    letter-spacing: normal !important;
    word-break: break-word !important;
  }
  .link-subtitle {
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #FAEACD !important; 
    text-align: center !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    line-height: 1.3em !important;
    opacity: 0.8 !important;
    letter-spacing: normal !important;
    word-break: break-word !important;
  }
}

@media (max-width: 1024px) {
  .footer-col {
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .footer-links {
    align-items: center !important;
    justify-content: center !important;
  }
  .link-pair {
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 1200px) {
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  .link-pair {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .link-title, .link-subtitle {
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    word-break: break-word !important;
  }
  .footer-links > div[style*="flex:1"] {
    display: none !important;
  }
  .footer-links .footer-col,
  .footer-links .footer-col:nth-child(1),
  .footer-links .footer-col:nth-child(2),
  .footer-links .footer-col:nth-child(3) {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 1024px) {
  .combined-amenities-cta > .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding-left: 220px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }
  .cta-brochure-left,
  .cta-brochure-right {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 !important;
  }
  .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 24px auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .cta-brochure-img {
    width: 100% !important;

    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    object-fit: cover !important;
  }
  .cta-brochure-text,
  .cta-brochure-title,
  .cta-brochure-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .cta-brochure-button {
    display: block !important;
    margin: 24px auto 0 auto !important;
    text-align: center !important;
    width: 90%;
    max-width: 320px;
  }
}



@media (max-width: 1024px) {
  .contact-section .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }
  .contact-form-block,
  .contact-image-placeholder {
    width: 100% !important;
    max-width: 400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 1024px) {
  .brochure-right {
    max-width: 80% !important; 
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 1024px) {
  .cta-brochure-button {
    width: 100% !important;
    max-width: 40% !important;
    min-width: 120px !important;
    font-size: 15px !important;
    padding: 12px 0 !important;
    margin: 24px auto 0 auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .needs-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 60px 0 -2444444444444px 0 !important; 
    font-size: 15px !important;
    padding: 12px 0 !important;
    display: block !important;
  }
}
@media (max-width: 480px) {
  .needs-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 150px 0 24px 0 !important; 
    font-size: 15px !important;
    padding: 12px 0 !important;
    display: block !important;
  }
}
@media (max-width: 480px) {
  .cta-brochure-title {
    font-size: 1.5rem !important;  
    line-height: 1.1 !important;
    text-align: center !important;
  }
  .cta-brochure-description {
    font-size: 1rem !important;    
    line-height: 1.3 !important;
    text-align: center !important;
    margin: 0 auto 16px auto !important;
    max-width: 95vw !important;
  }
}

@media (max-width: 360px) {
  .cta-brochure-title {
    font-size: 1.9rem !important;
  }
  .cta-brochure-description {
    font-size: 0.4rem !important;
  }
  .cta-brochure-img {
   
    max-width: 100vw !important;
  }
}

@media (max-width: 600px) {
  .container-svg {
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    height: 40vw !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    border-radius: 0 !important;
  }
  .container-svg svg {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    display: block;
  }
}
@media (max-width: 600px) {
  .container-svg {
    height: 300px !important;
  }
}

@media (max-width: 1024px) {
  .combined-amenities-cta {
    position: relative !important;
    background-image: url('Vector (6).png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh !important;
    z-index: 1;
  }
  .combined-amenities-cta::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.1); 
    z-index: 2;
    pointer-events: none;
  }
  .combined-amenities-cta > * {
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 480px) {
  .cta-brochure-right {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin: 0 auto 16px auto !important;
    max-width: 100vw !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    box-sizing: border-box !important;
  }
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}



@media (max-width: 1024px) {
  .features-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .features-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100%;
    max-width: 420px;
    margin: 0 auto !important;
    padding: 0 5vw !important; 
    box-sizing: border-box !important;
    justify-items: stretch;
    align-items: stretch;
  }
  .feature-card, .feature-item {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    text-align: center !important;
  }
}

@media (max-width: 1024px) {
  .intro-subtitle p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    max-width: 75vw !important;
    margin: 32px auto 20px auto !important; 
    padding: 0 10px !important;
    font-weight: 400 !important;
    font-family: inherit !important;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 1024px) {
  .slider-images {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    width: 100vw !important;
    height: 60vw !important;
    min-height: 60vw !important;
    max-height: 60vw !important;
    align-items: center !important;
  }
  .img-container {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 60vw !important;
    min-height: 60vw !important;
    max-height: 60vw !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    scroll-snap-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    display: block !important;
  }
  .slider-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 40px auto 0 auto !important;
    background: none !important;
    height: 16px !important;
    width: 100vw !important;
    border-radius: 0 !important;
    overflow: visible !important;
    position: relative !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .slider-dots .dot {
    width: 14px !important;
    height: 14px !important;
    background: rgba(255,255,255,0.3) !important;
    border-radius: 50% !important;
    transition: background 0.3s;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    position: static !important;
    border: none !important;
  }
  .slider-dots .dot.active {
    background: #fff !important;
  }

  .slider-dots .barra-dot,
  .slider-dots .dot[style*='width'] {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 1024px) {
  .slider-images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: auto;     
    min-width: 100vw;
    padding: 0;
    margin: 0;
    gap: 0;
  }
  .img-container {
    flex: 0 0 100vw;
    width: 100vw;
    scroll-snap-align: start;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .brochure-section .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 6vw !important;     
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 24px !important;
  }
  .brochure-left, .brochure-right {
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .brochure-text {
    text-align: center !important;
    margin-bottom: 18px !important;
  }
  .brochure-button {
    margin: 0 auto !important;
    display: block !important;
  }


}
@media (max-width: 1024px) {
  .faq-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    left:-10%  !important;
    transform: translateX(-50%) !important;
    position: relative !important;
  }
  .faq-item {
    width: 90vw !important;
    max-width: 420px !important;
    margin: 0 0 18px 0 !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}


@media (max-width: 900px) {
  .cotizador-container {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: transparent;
  }
}
@media (max-width: 1024px) {
  .cotizador-container {
    padding: 0;
  }
  .container-svg {
    aspect-ratio: 3/2;
    max-width: 100vw;
  }
  .container-svg svg {
    aspect-ratio: 3/2 !important;
    max-width: 100vw !important;
    max-height: 50vw !important;
  }
}
@media (max-width: 600px) {
  .cotizador-container {
    padding: 0;
  }
  .container-svg {
    aspect-ratio: 3/2;
    max-width: 100vw;
  }
  .container-svg svg {
    aspect-ratio: 3/2 !important;
    max-width: 100vw !important;
    max-height: 50vw !important;
  }
}
@media (max-width: 480px) {
  .cotizador-container {
    padding: 0;
  }
  .container-svg {
    aspect-ratio: 3/2;
    max-width: 100vw;
  }
  .container-svg svg {
    aspect-ratio: 3/2 !important;
    max-width: 100vw !important;
    max-height: 50vw !important;
  }
}
@media (max-width: 360px) {
  .cotizador-container {
    padding: 0;
  }
  .container-svg {
    aspect-ratio: 3/2;
    max-width: 100vw;
  }
  .container-svg svg {
    aspect-ratio: 3/2 !important;
    max-width: 100vw !important;
    max-height: 50vw !important;
  }
}


@media (max-width: 900px) {
  .cotizador-container {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: transparent;
  }
}
@media (max-width: 1024px) {
  .cotizador-container {
    width: 100vw;
    max-width: 100vw;
    padding: 0 4vw;
    margin: 0 auto;
    box-sizing: border-box;
    background: transparent;
  }
  .map-main-container,
  .map-main-container > div {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    box-sizing: border-box;
    overflow: visible;
  }
  .container-svg {
    width: 100%;
    aspect-ratio: 3/2;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: transparent !important;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .container-svg svg {
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
    max-height: 100%;
  }
}

.status-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap; 
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1rem;
  white-space: nowrap; 
  margin-bottom: 8px;
}


@media (max-width: 600px) {
  .status-legend {
    gap: 16px;
    margin-bottom: 16px;
  }
  .status-item {
    font-size: 0.95rem;
    gap: 6px;
    margin-bottom: 4px;
  }
}
@media (max-width: 400px) {
  .status-legend {
    gap: 8px;
  }
  .status-item {
    font-size: 0.85rem;
    gap: 4px;
  }
}

@media (max-width: 768px) {
  .intro-section .slider-images {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: hidden !important;
    scroll-behavior: smooth !important;
    gap: 60px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 180px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 !important;
    position: relative !important;
  }
  .intro-section .img-container {
    min-width: calc(100vw - 100px) !important;
    max-width: calc(100vw - 100px) !important;
    width: calc(100vw - 100px) !important;
    height: 180px !important;
    flex: 0 0 calc(100vw - 100px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 40px !important;
    padding: 0 !important;
  }
  .intro-section .img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
 
  .intro-section .slider-images .img-container:nth-child(even),
  .intro-section .slider-images .img-container:nth-child(odd) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    float: none !important;
    display: flex !important;
  }
}


@media (max-width: 480px) {
  .intro-section .img-container {
    min-width: calc(100vw - 100px) !important;
    max-width: calc(100vw - 100px) !important;
    width: calc(100vw - 100px) !important;
    flex: 0 0 calc(100vw - 100px) !important;
    margin: 0 30px !important;
  }
}

@media (max-width: 360px) {
  .intro-section .img-container {
    min-width: calc(100vw - 100px) !important;
    max-width: calc(100vw - 100px) !important;
    width: calc(100vw - 100px) !important;
    flex: 0 0 calc(100vw - 100px) !important;
    margin: 0 20px !important;
  }
}
@media (max-width: 1024px) {
  .intro-section .slider-images {
    padding-left: 2%!important; 
  }
}

.menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 1024px) {
  .cta-brochure-title {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
    max-width: 95vw !important;
    margin: 0 auto 12px auto !important;
  }
  .cta-brochure-description {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    max-width: 95vw !important;
    margin: 0 auto 20px auto !important;
  }
  .cta-brochure-img {
    width: 100% !important;
    
    min-width: 0 !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 0!important;
  }
  .cta-brochure-button {
    display: block !important;
    width: 100% !important;

    margin: 0 auto !important;
    font-size: 1.15rem !important;
    padding: 16px 0 !important;
    border-radius: 0 !important;
    text-align: center !important;
    background: #FAEACD !important;
    color: #224457 !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 500px) {
  .cta-brochure-title {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 12px auto !important;
  }
  .cta-brochure-description {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 20px auto !important;
  }
  .cta-brochure-img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  .cta-brochure-button {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    font-size: 1.15rem !important;
    padding: 16px 0 !important;
    border-radius: 0px !important;
    text-align: center !important;
    background: #FAEACD !important;
    color: #224457 !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .cta-brochure-title {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 12px auto !important;
  }
  .cta-brochure-description {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 20px auto !important;
  }
  .cta-brochure-img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 0!important;
  }
  .cta-brochure-button {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    font-size: 1.15rem !important;
    padding: 16px 0 !important;
    border-radius: 0  !important;
    text-align: center !important;
    background: #FAEACD !important;
    color: #224457 !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 240px) {
  .cta-brochure-title {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 12px auto !important;
  }
  .cta-brochure-description {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 20px auto !important;
  }
  .cta-brochure-img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  .cta-brochure-button {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    font-size: 1.15rem !important;
    padding: 16px 0 !important;
    border-radius: 0 !important;
    text-align: center !important;
    background: #FAEACD !important;
    color: #224457 !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 1024px) {
  .cta-brochure-right {
    width: 95% !important;
    max-width: 95% !important;
    min-width: 0 !important;
    margin: 0 auto 24px auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 1024px) {
  .cta-brochure-right {
    width: 95% !important;
    max-width: 95% !important;
    min-width: 0 !important;
    margin: 0 auto 24px auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 1024px) {
  .combined-amenities-cta > .container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 0 32px 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .combined-amenities-cta > .container .cta-brochure-left,
  .combined-amenities-cta > .container .cta-brochure-right {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto 24px auto !important;
    padding: 0 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    transform: none !important;
  }
  .combined-amenities-cta .cta-brochure-img,
  .combined-amenities-cta .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width: 320px !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  .combined-amenities-cta .cta-brochure-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    word-break: break-word !important;
  }
  .combined-amenities-cta .cta-brochure-description {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    word-break: break-word !important;
  }
  .combined-amenities-cta .cta-brochure-button {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    font-size: 1.15rem !important;
    padding: 16px 0 !important;
    border-radius:0 !important;
    text-align: center !important;
    background: #FAEACD !important;
    color: #224457 !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta .cta-brochure-left,
  .combined-amenities-cta .cta-brochure-right,
  .combined-amenities-cta .cta-brochure-image-placeholder {
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }
}




@media (min-width: 768px) and (max-width: 1024px) {
  .combined-amenities-cta > .container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 0 32px 0 !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta .cta-brochure-left,
  .combined-amenities-cta .cta-brochure-right {
    width: 100vw !important;
    max-width: 400px !important;
    margin: 0 auto 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    transform: none !important;
    
  }
  .combined-amenities-cta .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }
  .combined-amenities-cta .cta-brochure-img {
    display: block !important;
    margin: 0 auto 20px auto !important;
    width: 100% !important;
    max-width: 250px !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta .cta-brochure-title,
  .combined-amenities-cta .cta-brochure-description,
  .combined-amenities-cta .cta-brochure-button {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 1024px) {
  .cta-brochure-image-placeholder {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto 20px auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .cta-brochure-img {
    display: block !important;
    width: 100% !important;
    max-width: 250px !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
}
@media (max-width: 1024px) {
  .hero-title,
  .hero-title h1, .hero-title h2,
  .intro-title,
  .intro-title h1, .intro-title h2,
  .brochure-title,
  .brochure-title h1, .brochure-title h2,
  .amenities-title,
  .amenities-title h1, .amenities-title h2,
  .cta-brochure-title,
  .cta-brochure-title h1, .cta-brochure-title h2,
  .needs-title,
  .needs-title h1, .needs-title h2,
  .living-title,
  .living-title h1, .living-title h2,
  .faq-title,
  .faq-title h1, .faq-title h2,
  .contact-title,
  .contact-title h1, .contact-title h2 {
    font-size: clamp(2.2rem, 8vw, 3rem) !important;
    line-height: 1.1 !important;
  }
}
@media (max-width: 1024px) {
  .amenities-description, .cta-brochure-image-placeholder {
    margin-left: 32px !important;
    margin-right: 32px !important;
    width: auto !important;
    box-sizing: border-box !important;
    display: block !important;
  }
}


.intro-section .slider-dots .dot {
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  width: 12px !important;
  height: 12px !important;
  transition: background 0.3s;
  border: none !important;
}
.intro-section .slider-dots .dot.active {
  background: #fff !important;
}
@media (max-width: 1024px) {
  .faq-item {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }
  .faq-question {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }
  .faq-answer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }
  .faq-answer p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .faq-question {
    justify-content: flex-start !important; 
    text-align: left !important;            
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .faq-question span {
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    display: block; 
  }
}

@media (max-width: 1024px) {
  .faq-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 1024px) {
  .navbar-menu {
    position: fixed !important; 
    top: 0 !important;
    right: 0 !important;
    width: 85vw !important;       
    max-width: 300px !important;
    min-width: 180px !important;  

    border-radius: 0 0 0 16px !important; 
    z-index: 9999 !important;
  }
}

@media (max-width: 1024px) {
  .navbar-menu {
    position: fixed !important;
    top: 0 !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: 300px !important;
    min-width: 180px !important;
    margin: 0 auto !important;
    border-radius: 0 0 0 16px !important;
    z-index: 9999 !important;
  }
}

@media (max-width: 1024px) {
  .navbar-menu {
    position: fixed !important;
    top: 0 !important;
    right: 10px !important;
    left: 10px !important;
    width: calc(100vw - 20px) !important;
    max-width: 300px !important;
    min-width: 180px !important;
    margin: 0 !important;
    border-radius: 0 0 0 16px !important;
    z-index: 9999 !important;
  }
}
@media (max-width: 1024px) {
  .container-svg svg #orden-por-lote {
    transform: scale(0.9);
    transform-origin: center;
  }
}

@media (max-width: 1024px) {
  .navbar-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important; 
    width: 85vw !important;       
    max-width: 300px !important;
    min-width: 180px !important;
    margin: 0 !important;
    border-radius: 0 0 0 16px !important; 
    z-index: 9999 !important;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {

  .intro-section .container,
  .needs-section .gallery-images,
  .combined-amenities-cta .gallery-images {
    padding-left: 64px;
    padding-right: 64px;
    box-sizing: border-box;
    max-width: 100% !important;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {

  .combined-amenities-cta .gallery-images {
    padding-left: 55px;
    padding-right: 55px;
    box-sizing: border-box;
    max-width: 100% !important;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {

  .combined-amenities-cta .amenities-title{
    padding-left: 55px;
    padding-right: 55px;
    box-sizing: border-box;
    max-width: 100% !important;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .combined-amenities-cta .amenities-description{
    padding-left: 55px;
    padding-right: 55px;
    box-sizing: border-box;
    max-width: 100% !important;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {

   .cta-brochure-image-placeholder{
    padding-left: 25px;
   
    box-sizing: border-box;
    max-width: 100% !important;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {

  .cta-brochure-right{
   padding-right: 70px;
   box-sizing: border-box;
   max-width: 100% !important;
   padding: 70px;
   width: 3000px;
 }
}
@media (min-width: 1024px) and (max-width: 1200px) {

  .hero-inner{
    padding-left: 0 !important;
   padding-right: 0 !important;
   box-sizing: border-box;
   max-width: 100% !important;
   justify-content: center;

 }
 @media (min-width: 1024px) and (max-width: 1200px) {
  .hero-form {
    max-width: 100% important;}
  .hero-right {
    max-width: 1200px !important;
  }
  .hero-inner {
    position: relative !important;
  }
}
}

@media (min-width: 768px) and (max-width: 1240px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
    padding-right: 40px;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 700px;
    display: block;
  }

  .hero-right-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
  }

  .hero-form,
  .hero-right {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }

  .hero-right {
    height: 340px;
    border-radius: 0;
    overflow: hidden;
    background: none !important;
  }

  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    background: none;
  }
}
@media (min-width: 469px) and (max-width: 1023px) {
  .needs-gallery {
    max-width: 950px !important;
    width: 100%;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box;
  }
  .needs-gallery .gallery-images {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px !important;
    max-width: 900px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .needs-gallery .gallery-item {
    width: 100% !important;
    height: 820px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    border-radius:0 !important;
    overflow: hidden !important;
    background: none !important;
    margin: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
  }
  .needs-gallery .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
}
@media (min-width: 469px) and (max-width: 1023px) {
  .needs-gallery .gallery-images {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    grid-auto-rows: 250px !important; 
  }
  .needs-gallery .gallery-item,
  .needs-gallery .gallery-item img,
  .needs-gallery .gallery-item.needs-item-short,
  .needs-gallery .gallery-item.needs-item-tall {
    height: 240px !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 90% !important;
    object-fit: cover !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    overflow: hidden !important;
  }
  .needs-gallery .gallery-item img {
    width: 90% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
}
@media (min-width: 250px) and (max-width: 1023px) {
  .needs-button {
    margin-top: 250px !important;
    display: block !important;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .features-section .feature-icon {
    width: 100% !important;
    max-width: 390px !important;
    height: 240px !important;
    object-fit: cover !important;
    display: block !important;
  }
}

@media (min-width: 269px) and (max-width: 1023px) {
  .features-section {
    padding-top: 10px !important;
    padding-bottom: 80px !important;
    min-height: 200px !important;
  }
  .features-section .features-grid {
    gap: 10px !important;
  }
}
@media (min-width: 369px) and (max-width: 1023px) {
  .living-section .living-image-placeholder {
    max-width: 835px !important;
    width:100% !important;
    height: 420px !important;
    margin: 0 auto !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .living-text-blocks {
    max-width: 900px !important;
    width: 100% !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .living-text-blocks {
    transform: translateX(02%) !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .intro-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .intro-section .slider-images {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto !important;
    width: 100vw !important;
    max-width: 700px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    scroll-behavior: smooth !important;
    gap: 45px !important; 
    height: 190px !important; 
    scroll-snap-type: x mandatory !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .intro-section .img-container {
    flex: 0 0 calc(50% - 22.5px) !important;
    max-width: calc(50% - 22.5px) !important;
    min-width: calc(50% - 22.5px) !important;
    height: 190px !important; 
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    scroll-snap-align: start !important;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #fff;
  }
  .intro-section .img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius:0 !important;
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body .intro-section .slider-images,
  html body .intro-section .slider-images {
    height: 190px !important;
    max-height: 190px !important;
    min-height: 60px !important;
  }
  body .intro-section .img-container,
  html body .intro-section .img-container {
    height: 190px !important;
    max-height: 190px !important;
    min-height: 60px !important;
    flex: 0 0 calc(50% - 22.5px) !important;
    max-width: calc(50% - 22.5px) !important;
    min-width: calc(50% - 22.5px) !important;
  }
  body .intro-section .img-container img,
  html body .intro-section .img-container img {
    height: 190px !important;
    max-height: 190px !important;
    min-height: 60px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .intro-section {
    padding-bottom: 40px !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .combined-amenities-cta .container,
  .combined-amenities-cta .amenities-gallery,
  .combined-amenities-cta .gallery-images,
  .combined-amenities-cta .amenidades-slide-track,
  .combined-amenities-cta .amenidades-slide-pair {
    max-width: 1100px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .combined-amenities-cta .gallery-item,
  .combined-amenities-cta .gallery-item.needs-item-tall,
  .combined-amenities-cta .gallery-item.needs-item-short {
    max-width: 720px !important;
    width: 100% !important;
    min-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 0 !important;
  }
  .combined-amenities-cta .gallery-item img {
    max-width: 720px !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .cta-brochure-image-placeholder {
    max-width: 720px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
  }
  .cta-brochure-img {
    max-width:1720px !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
}

@media (min-width: 769px) and (max-width: 1023px) {
  .gallery-item.needs-item-tall,
  .gallery-item.needs-item-short {
    max-width: 520px !important;
    width: 100% !important;
    min-width: 320px !important;
    min-height: 320px !important;
    height: 340px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 0 !important;
  }
  .gallery-item.needs-item-tall img,
  .gallery-item.needs-item-short img {
    max-width: 520px !important;
    width: 100% !important;
    min-width: 320px !important;
    min-height: 320px !important;
    height: 340px !important;
    object-fit: cover !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 0 !important;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {

  .gallery-item.needs-item-tall,
  .gallery-item.needs-item-short {
    max-width: 700px !important;
    width: 100% !important;
    min-width: 320px !important;
    min-height: 320px !important;
    height: 340px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 0 !important;
  }
  .gallery-item.needs-item-tall img,
  .gallery-item.needs-item-short img {
    max-width: 700px !important;
    width: 100% !important;
    min-width: 320px !important;
    min-height: 320px !important;
    height: 340px !important;
    object-fit: cover !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
}

@media (min-width: 769px) and (max-width: 1023px) {
  .cta-brochure-image-placeholder {
    max-width: 520px !important;
    width: 100% !important;
    min-width: 320px !important;
    height: 340px !important;
    min-height: 320px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
  .cta-brochure-img {
    max-width:1520px !important;
    width: 100% !important;
    min-width: 320px !important;
    height: 340px !important;
    min-height: 320px !important;
    object-fit: cover !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-flex {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-left: 100px !important;
    padding-right: 100px !important;
    height: 70px !important;
    gap: 0 !important;
  }
  .logo {
    margin-left: 0 !important;
    margin-right: 12px !important;
    order: 2 !important;
  }
  .menu-toggle {
    margin-left: 12px !important;
    margin-right: 0 !important;
    order: 1 !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
  }
  nav {
    order: 3 !important;
  }

  .hero-title {
    max-width: 750px !important;
    font-size: 42px !important;
    line-height: 1.1 !important; 
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-desc {
    max-width: 700px !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  .hero-form {
    max-width: 700px !important;
    width: 100% !important;
    min-width: 320px !important;
  }
  .hero-right {
    max-width: 700px !important;
    width: 100% !important;
    min-width: 320px !important;
    height: 340px !important;
  }
  .hero-right-content {
    max-width: 700px !important;
    gap: 32px !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-brochure-title, .brochure-left, .brochure-text, .brochure-title {
    max-width: 1750px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: 3.5rem !important;
    line-height: 1.15 !important;
  }
  .brochure-img {
    max-width: 1750px !important;
    width: 100% !important;
    min-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  
}
@media (min-width: 768px) and (max-width: 1024px) {
  .brochure-title br {
    display: none;
  }
  .brochure-title {
    white-space: normal !important; 
    max-width: 1200px !important;
    font-size: 2.8rem !important;
    text-align: center !important;
  }
  
}
@media (min-width: 768px) and (max-width: 1024px) {
  .brochure-description {
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cta-brochure-img {
    max-width: 1100px !important;
    width: 100% !important;
    min-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  
  .cta-brochure-right {
    max-width: 1100px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .cta-brochure-text {
    max-width: 1000px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .cta-brochure-title {
    max-width: 900px !important;
    font-size: 3.8rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .cta-brochure-description {
    max-width: 600px !important;
    font-size: 1.2rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container,
  .cta-brochure-right,
  .cta-brochure-image-placeholder {
    max-width: 1100px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
  .cta-brochure-img {
    max-width: 1100px !important;
    width: 100% !important;
    min-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    object-fit: cover !important;
  }
}
.hero-inner {
    margin-left: auto 15px!important;
    margin-right: auto !important;
  }

  @media (min-width: 500px) and (max-width: 758px) {
    .intro-section .img-container img {
      width: 400px !important;
      height: 400px !important;
      object-fit: cover !important;
    }
  }


  @media (min-width: 768px) and (max-width: 1024px) {
    .needs-gallery .gallery-item,
    .needs-gallery .gallery-item img,
    .needs-gallery .gallery-item.needs-item-short,
    .needs-gallery .gallery-item.needs-item-tall {
      height: 180px !important;
      min-height: 0 !important;
      max-height: 180px !important;

    }
    .needs-gallery .gallery-images {
      grid-auto-rows: 180px !important;

    }
    .needs-section,
    .needs-gallery {
  min-height: unset !important;
  height: auto !important;
  padding-bottom: 40px !important; 
  margin-bottom: 0 !important;

}



  .combined-amenities-cta .gallery-item.needs-item-tall {
    height: 620px !important; 
    min-height: 420px !important;
    max-height: 520px !important;
  }
  .combined-amenities-cta .gallery-item.needs-item-short {
    height: 140px !important; 
    min-height: 260px !important;
    max-height: 260px !important;
  }
  .combined-amenities-cta .gallery-item.needs-item-tall img,
  .combined-amenities-cta .gallery-item.needs-item-short img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .cta-brochure-image-placeholder .cta-brochure-img{
    max-width:2200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

@media (min-width: 769px) and (max-width: 820px) {

  .combined-amenities-cta .gallery-item,
  .combined-amenities-cta .gallery-item img,
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item,
  .amenidades-slide-pair.amenidades-slide-horizontal .gallery-item img {
    border-radius: 0 !important;
    
    box-sizing: border-box !important;


  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .combined-amenities-cta .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 10px !important;
  }
  .combined-amenities-cta .amenities-text,
  .combined-amenities-cta .amenities-gallery,
  .combined-amenities-cta .gallery-images,
  .combined-amenities-cta .cta-brochure-left,
  .combined-amenities-cta .cta-brochure-right,
  .combined-amenities-cta .cta-brochure-text {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .combined-amenities-cta .cta-brochure-title,
  .combined-amenities-cta .cta-brochure-description {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-brochure-img {
    width: 100% !important;
    max-width:1910px !important; 
    min-width: 0 !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width: 710px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cta-brochure-img,
  .cta-brochure-image-placeholder {
    max-width:1900px !important; 
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-brochure-left {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width:1910px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
  }
  .cta-brochure-img {
    width: 100% !important;
    max-width:1910px !important;
    min-width: 0 !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .combined-amenities-cta .container {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .combined-amenities-cta > .container:last-of-type {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .cta-brochure-left,
  .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .cta-brochure-img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }
  .cta-brochure-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .combined-amenities-cta > .container:last-of-type {
    max-width: 1100px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta > .container:last-of-type .cta-brochure-left,
  .combined-amenities-cta > .container:last-of-type .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta > .container:last-of-type .cta-brochure-img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta > .container:last-of-type .cta-brochure-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
.gallery-item.needs-item-tall img {
  height: 320px !important;
  border-radius: 0 !important;
  object-fit: cover !important;

}
.gallery-item.needs-item-short img {
  height: 150px !important;
  border-radius: 0 !important;
  object-fit: cover !important;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
  .combined-amenities-cta > .container:last-of-type {
    max-width: 1100px !important; 
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 22%   !important; 
    box-sizing: border-box !important;
  }
  .combined-amenities-cta > .container:last-of-type .cta-brochure-left,
  .combined-amenities-cta > .container:last-of-type .cta-brochure-image-placeholder {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta > .container:last-of-type .cta-brochure-img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }
}
@media (min-width: 368px) and (max-width: 1024px) {
  .combined-amenities-cta > .container:last-of-type .cta-brochure-title {
    margin-top: 48px !important;  
    margin-bottom: 12px !important;
  }
  .combined-amenities-cta > .container:last-of-type .cta-brochure-description {
    font-size: 0.85rem !important; 
    line-height: 1.4 !important;
    margin-bottom: 24px !important;
  }
}
@media (min-width: 1025px) {
  .hero-inner {
    max-width: 1200px;      
    margin: 0 auto;        
    padding-left: 30px;     
    padding-right: 38px;    
    box-sizing: border-box;
  }
}

@media (min-width: 1025px) {
  .logo {
    margin-left: 100px !important; 
  }
  nav {
    padding-right: 60px !important; 
  }
}

.combined-amenities-cta .gallery-item.needs-item-tall img,
.combined-amenities-cta .gallery-item.needs-item-short img,
.amenidades-slide-pair .gallery-item.needs-item-tall img,
.amenidades-slide-pair .gallery-item.needs-item-short img {
  border-radius: 0 !important;

}
@media (min-width: 258px) and (max-width: 1024px) {
  .combined-amenities-cta .amenities-gallery {
    margin-top: 48px !important;

  }
  .combined-amenities-cta .amenities-description {
    max-width: 400px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}
@media (min-width: 496px) and (max-width: 1023px) {
  .faq-right{
    transform: translateX(09%) !important;
  }
}

@media (min-width: 100px) and (max-width:596px) {
  .faq-right{
    transform: translateX(2%) !important;
  }
}
@media (max-width: 1024px) {
  .faq-item {
    max-width: 85vw !important;
    width: 85vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-form-block, .contact-image-placeholder {
    max-width: 800px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .contact-image-placeholder img {
    max-width: 800px !important;
    width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
  }
}
.hero-form {
  border-radius: 0 !important;
}
.hero-right, .hero-img {
  border-radius: 0 !important;
}
.intro-section .img-container,
.intro-section .img-container img,
.needs-section .gallery-item,
.needs-section .gallery-item img,
.gallery-item,
.gallery-item img,
.combined-amenities-cta .gallery-item,
.combined-amenities-cta .gallery-item img,
.amenidades-slide-pair .gallery-item,
.amenidades-slide-pair .gallery-item img {
  border-radius: 0 !important;
}

@media (max-width: 1024px) {
  .intro-section .img-container,
  .intro-section .img-container img,
  .needs-section .gallery-item,
  .needs-section .gallery-item img,
  .gallery-item,
  .gallery-item img,
  .combined-amenities-cta .gallery-item,
  .combined-amenities-cta .gallery-item img,
  .amenidades-slide-pair .gallery-item,
  .amenidades-slide-pair .gallery-item img {
    border-radius: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .intro-section .img-container,
  .intro-section .img-container img,
  .needs-section .gallery-item,
  .needs-section .gallery-item img,
  .gallery-item,
  .gallery-item img,
  .combined-amenities-cta .gallery-item,
  .combined-amenities-cta .gallery-item img,
  .amenidades-slide-pair .gallery-item,
  .amenidades-slide-pair .gallery-item img {
    border-radius: 0 !important;
  }
}

.intro-section .img-container,
.intro-section .img-container *,
.needs-section .gallery-item,
.needs-section .gallery-item *,
.combined-amenities-cta .gallery-item,
.combined-amenities-cta .gallery-item *,
.amenidades-slide-pair .gallery-item,
.amenidades-slide-pair .gallery-item * {
  border-radius: 0 !important;
}

.gallery-item,
.amenidades-slide-pair .gallery-item,
.combined-amenities-cta .gallery-item {
  border-radius: 0 !important;
}

@media (max-width: 1024px) {
  .features-section img,
  .features-section .feature-card img,
  .features-section .feature-icon {
    border-radius: 0 !important;
  }
}
@media (max-width: 600px) {
  .features-section img,
  .features-section .feature-card img,
  .features-section .feature-icon {
    border-radius: 0 !important;
  }
}
.features-section img,
.features-section .feature-card img,
.features-section .feature-icon {
  border-radius: 0 !important;
}
.features-section .feature-card,
.features-section .feature-card img,
.features-section .feature-icon {
  border-radius: 0 !important;
}
@media (min-width: 1025px) {
  .intro-section .slider-images {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    gap: 20px !important;
    width: 100%;
    height: 260px !important;
    justify-content: flex-start !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative !important;
  }
  .intro-section .img-container {
    flex: 0 0 400px !important;
    height: 260px !important;
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 400px !important;
    max-width: 400px !important;
    width: 400px !important;
  }
  .intro-section .slider-images .img-container:nth-child(even) {
    align-self: flex-start !important;
    margin-top: 20px !important;
  }
  .intro-section .slider-images .img-container:nth-child(odd) {
    align-self: flex-end !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .brochure-img {
    max-width: 100vw !important;
    min-width: 0 !important;
    width: 95vw !important;
    height:100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 768px) {
  .brochure-right {
    width: 100vw !important;
    max-width: 70vw !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .brochure-image-placeholder {
    width: 100vw !important;
    max-width: 80vw !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    height: auto !important;
  }
  .brochure-img {
    max-width: 100vw !important;
    min-width: 0 !important;
    width: 100vw !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 458px) {
  .brochure-right {
    width: 100vw !important;
    max-width: 70vw !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .brochure-image-placeholder {
    width: 100vw !important;
    max-width: 80vw !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    height: auto !important;
  }
  .brochure-img {
    max-width: 100vw !important;
    min-width: 0 !important;
    width: 100vw !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 768px) {
  
.combined-amenities-cta .gallery-item.needs-item-tall img,
.combined-amenities-cta .gallery-item.needs-item-short img,
.amenidades-slide-pair .gallery-item.needs-item-tall img,
.amenidades-slide-pair .gallery-item.needs-item-short img {
  width:500px !important;
  max-width:100% !important;
  min-width: 0 !important;

  object-fit: cover !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  display: block !important;
  
}

  .cta-brochure-img {
    width:195vw !important;
    max-width:195vw !important;
    min-width: 0 !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
  }
}
@media (min-width: 269px) and (max-width: 768px) {
  .combined-amenities-cta .container,
  .combined-amenities-cta .amenities-gallery,
  .combined-amenities-cta .gallery-images,
  .combined-amenities-cta .amenidades-slide-track,
  .combined-amenities-cta .amenidades-slide-pair {
    max-width: 1100px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .combined-amenities-cta .gallery-item,
  .combined-amenities-cta .gallery-item.needs-item-tall,
  .combined-amenities-cta .gallery-item.needs-item-short {
    max-width:1120px !important;
    width: 80% !important;
    min-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 0 !important;
  }
  .combined-amenities-cta .gallery-item img {
    max-width:1120px !important;
    width: 80% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .cta-brochure-image-placeholder {
    max-width:1120px !important;
    width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  
}
@media (max-width: 768px) {
  .amenities-description {
    font-size: 0.95rem !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
    line-height: 1.4 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 469px) and (max-width: 1023px) {
  .combined-amenities-cta > .container:last-of-type {
    max-width: 1020px !important;
    width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .combined-amenities-cta > .container:last-of-type .cta-brochure-left,
  .combined-amenities-cta > .container:last-of-type .cta-brochure-image-placeholder {
    max-width: 1020px !important;
    width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .combined-amenities-cta > .container:last-of-type .cta-brochure-img {
    max-width: 1020px !important;
    width: 95% !important;
    min-width: 0 !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .gallery-item.needs-item-tall,
  .gallery-item.needs-item-short {
    height: 940px !important;
    min-height: 340px !important;
    max-height: 940px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .gallery-item.needs-item-tall img,
  .gallery-item.needs-item-short img {
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .needs-gallery .gallery-images {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 50px !important;
    grid-auto-rows: 245px !important; 
  }
  .needs-gallery .gallery-item,
  .needs-gallery .gallery-item.needs-item-short,
  .needs-gallery .gallery-item.needs-item-tall {
    height: 240px !important;
    min-height: 140px !important;
    max-height: 240px !important;
    width: 100% !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    overflow: hidden !important;
  }
  .needs-gallery .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
}

@media (max-width: 768px){
  .needs-section .gallery-images {
    grid-auto-rows: 110px !important; 
    gap: 8px !important;
  }
  .needs-section .gallery-item,
  .needs-section .gallery-item.needs-item-tall,
  .needs-section .gallery-item.needs-item-short
   {
    height: 110px !important;
    min-height: 110px !important;
    max-height: 110px !important;
    aspect-ratio: 1/1 !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .needs-section .gallery-item img
  {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
  }
}
@media (min-width: 250px) and (max-width: 480px) {
  .needs-button {
    margin-top:198px !important;
    margin-bottom: 0 !important;
    display: block !important;
    width: 90%;
    max-width: 320px;
    text-align: center;
    font-size: 16px !important;
    padding: 12px 24px !important;
    border-radius: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 600px) {
  .needs-section {
    height: 900px !important;
  }
  .needs-section .needs-button {
    width: 70% !important;          /* Botón más angosto */
    max-width: 220px !important;
    
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 8px !important;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .needs-section .container {
    padding-right: 40px !important;
  }
}
@media (min-width: 909px) and (max-width: 1000px) {
  .features-section .container {
    transform: translateX(02%) !important;
  }
}
@media (min-width:1000px) and (max-width: 1023px) {
  .features-section .container {
    transform: translateX(03%) !important;
  }
}