/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --color-primary:        #e94425;
  --color-primary-alt:    #ff2a00;
  --color-primary-dark:   #b41d00;
  --color-primary-shadow: rgba(180,29,0,0.2);
  --color-teal:           #c5e7e4;
  --color-teal-deep:      #456462;
  --color-teal-body:      #496866;
  --color-teal-overlay:   rgba(197,231,228,0.3);
  --color-teal-track:     rgba(197,231,228,0.5);
  --color-navy:           #130b38;
  --color-lime:           #c4f921;
  --color-brown-label:    #5b403b;
  --color-text-primary:   #402A16;
  --color-text-muted:     rgba(26,28,28,0.7);
  --color-bg-light:       #f3f3f3;
  --color-bg-lighter:     #f7f7f7;
  --color-input-bg:       #e2e2e2;
  --color-placeholder:    #6b7280;
  --font-heading:         'Plus Jakarta Sans', sans-serif;
  --font-body:            'Inter', sans-serif;
  --font-hero:            'Roboto', sans-serif;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

body::-webkit-scrollbar{width:7px;}
body::-webkit-scrollbar-thumb{-webkit-border-radius:0px;border-radius:0px;background: linear-gradient(45deg, #e94425, #fff);}

::selection{background-color: #e94425;color: #fff;}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(249,249,249,0.8);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  height: 84px;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar .logo img {
  height: 52px;
  width: auto;
}
#navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
#navbar .nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: -0.4px;
  line-height: 24px;
  transition: color 0.2s;
}
#navbar .nav-links a:hover { color: var(--color-primary); }
#navbar .nav-cta {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
#navbar a.nav-cta {
    opacity: 0 !important;
    z-index: -999999999 !important;
    height: 0px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
#navbar .nav-cta:hover { background: var(--color-primary-dark); }

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  width: 100%;
  min-height: 940px;
  padding-top: 84px;
  overflow: hidden;
}
#hero .video-hero {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#hero .video-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../imgs/sec1-banner.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
  z-index: 1;
}
#hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 32px 39px;
  min-height: 856px;
  display: flex;
  align-items: flex-start;
}
#hero .hero-text-block {
  position: absolute;
  left: 75px;
  top: 248px;
  width: 545px;
}
#hero .hero-text-block h1 {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -1.8px;
  color: #fff;
  margin-bottom: 28px;
}
#hero .hero-text-block p {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}

/* Lead Form */
#hero .lead-form-card {
    position: absolute;
    right: 5.07%;
    top: 89px;
    left: 57.92%;
    background: rgba(255, 255, 255, 0.53);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 400px;
    right: 0;
    left: unset;
}
.lead-form-card .form-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--color-brown-label);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.lead-form-card .form-control,
.lead-form-card .form-select {
  background: var(--color-input-bg);
  border: none;
  border-radius: 4px;
  height: 43px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-primary);
  padding: 0 12px;
  outline: none;
  box-shadow: none;
}
.lead-form-card .form-control::placeholder,
.lead-form-card .form-select.empty { color: var(--color-placeholder); }
.lead-form-card textarea.form-control {
  height: 70px;
  padding: 10px 12px;
  resize: none;
}
.lead-form-card .form-group { margin-bottom: 0; }
.lead-form-card .btn-form-cta {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 20px;
  border-radius: 4px;
  border: none;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(180,29,0,0.2), 0 4px 6px -4px rgba(180,29,0,0.2);
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}
.lead-form-card .btn-form-cta:hover {
  background: var(--color-primary-dark);
}

.sec2-inter {
    background: linear-gradient(180deg, #C5E7E4, transparent);
}

.sec2-inter img {
    width: 70%;
    display: block;
    margin: auto;
    z-index: 1;
    position: relative;
    margin-top: -5rem;
}

/* ============================================================
   BENTO — PROJECT PROGRESS
============================================================ */
#bento {
  background: #fff;
  padding: 80px 32px;
}
#bento .bento-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
  align-items: center;
}
#bento .bento-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#bento .bento-header {
  margin-bottom: 8px;
}
#bento .bento-header .eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
}
#bento .bento-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  color: var(--color-text-primary);
}
.bento-card {
  border-radius: 8px;
  padding: 32px;
  flex: 1;
}
.bento-card.gray { background: var(--color-bg-light); }
.bento-card.teal { background: var(--color-teal); }
.bento-card .stat-number {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 56px;
  line-height: 56px;
  margin-bottom: 6px;
}
.bento-card.gray .stat-number { color: var(--color-primary); }
.bento-card.teal .stat-number { color: var(--color-teal-deep); }
.bento-card .stat-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}
.bento-card .stat-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(26,28,28,0.65);
  line-height: 1.6;
}
.bento-card .progress-bar-track {
  background: var(--color-input-bg);
  height: 6px;
  border-radius: 9999px;
  margin-top: 12px;
  overflow: hidden;
}
.bento-card .progress-bar-fill {
  background: var(--color-teal-deep);
  height: 100%;
  border-radius: 9999px;
  width: 0;
  transition: width 1.5s ease;
}
#bento .bento-right {
  background: var(--color-input-bg);
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
}
#bento .bento-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#bento div#vjs_video_3 {
    height: auto !important;
    width: 100%;
}

#bento video {
    width: 100% !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

/* ============================================================
   TIMELINE / CONSTRUCTION PROGRESS
============================================================ */
#timeline {
  background: var(--color-bg-lighter);
  padding: 112px 32px 80px;
}
#timeline .timeline-inner {
  max-width: 1024px;
  margin: 0 auto;
}
#timeline .badge-pill {
    display: block;
    align-items: center;
    border-radius: 9999px;
    padding: 6px 18px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-teal-deep);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    width: fit-content;
    margin: auto;
    margin-bottom: 24px;
}
#timeline h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 60px;
  line-height: 60px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  text-align: center;
}
#timeline h2 .accent { color: var(--color-primary-alt); }
#timeline .subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-text-primary);
  margin-bottom: 160px;
  text-align: center;
}

/* Timeline bar */
.timeline-bar-container {
  position: relative;
  margin-bottom: 48px;
}
.timeline-track {
  background: var(--color-teal-track);
  height: 4px;
  border-radius: 9999px;
  position: relative;
}
.timeline-progress {
  position: absolute;
  top: -4px;
  left: 0;
  right: 30%;
  height: 12px;
  background: var(--color-primary);
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(233,68,37,0.2), 0 4px 6px -4px rgba(233,68,37,0.2);
  width: 0;
  transition: width 2s ease;
}
.timeline-dot-start, .timeline-dot-end {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.timeline-dot-start {
  left: 20px;
  background: var(--color-primary);
}
.timeline-dot-end {
  right: -8px;
  background: var(--color-teal);
  border: 4px solid #fff;
}
.timeline-dot-icon { width: 28px; height: 28px; object-fit: contain; filter: brightness(10); }
.timeline-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  color: #402A16;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 8px;
}
.timeline-dot-start-wrap, .timeline-dot-end-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: -50px !important;
}
.timeline-dot-start-wrap { left: -8px; }
.timeline-dot-end-wrap { right: -8px; }

/* Tooltip bubble */
.timeline-tooltip {
  position: absolute;
  top: -90px;
  transform: translateX(-50%);
  background: #fff;
  border: 4px solid var(--color-primary);
  border-radius: 40px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(233,68,37,0.12);
}
.timeline-tooltip::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid var(--color-primary);
}

/* Stat pill */
.timeline-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg-lighter);
  border: 1px solid var(--color-teal);
  border-radius: 40px;
  padding: 20px 30px;
  margin-top: 32px;
}
.timeline-stat-pill .big-num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--color-primary);
}
.timeline-stat-pill .stat-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: #402A16;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.timeline-body-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-primary);
  line-height: 26px;
  margin-top: 20px;
}

/* ============================================================
   AMENITIES
============================================================ */
#amenities {
  background: rgba(197,231,228,0.3);
  padding: 96px 32px;
}
#amenities .amenities-inner {
  max-width: 1280px;
  margin: 0 auto;
}
#amenities .eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 16px;
  text-align: center;
}
#amenities h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  text-align: center;
}
#amenities .amenities-body {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-primary);
    max-width: 950px;
    line-height: 1.6;
    margin: auto;
    margin-bottom: 16px;
    text-align: center;
}
#amenities .accent-bar {
    width: 80px;
    height: 4px;
    background: var(--color-primary-dark);
    border-radius: 2px;
    margin: auto;
    margin-bottom: 40px;
}

section#amenities .col-md-12 {
    display: block;
    position: relative;

}
/* Amenity Icons Row */
.amenity-icons-row {
}

.amenity-icon-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    opacity: 0;
}
.amenity-icon-item.slick-slide.slick-active {
    opacity: 1;
}

.amenity-icon-item.slick-current.slick-active.slick-center {
    filter: grayscale(1);
}
.amenity-icon-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.amenity-icon-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-primary);
  text-align: center;
  white-space: nowrap;
}
.amenity-icon-item.active span { color: var(--color-teal-deep); }

/* Amenities Image Carousel */
.amenity-carousel-wrap {
}
.amenity-carousel-wrap img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    object-position: bottom;
}
.amenity-icons-row .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: background 0.2s;
    color: transparent;
    font-size: 0px;
    border: solid 2px #ff2a00;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.amenity-icons-row .slick-prev { left: 16px; background-image: url(../imgs/sec4-icon-arrow-l.png);}
.amenity-icons-row .slick-next { right: 16px; background-image: url(../imgs/sec4-icon-arrow-r.png);}

/* ============================================================
   UNITS AVAILABLE
============================================================ */
#units {
  background: var(--color-bg-light);
  padding: 64px 44px;
}
#units .units-inner > .row {
    margin-bottom: 3rem;
}
#units .units-inner > .row .col-md-6{
    margin: auto;
}
#units .units-inner {
  max-width: 1280px;
  margin: 0 auto;
}
#units .eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary-alt);
  text-transform: uppercase;
  letter-spacing: 3.2px;
  margin-bottom: 16px;
}
#units h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 56px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
#units .units-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #402A16;
  margin-bottom: 0px;
}
.unit-card {
  background: var(--color-bg-light);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26,28,28,0.04);
  overflow: hidden;
  display: block;
  position: relative;
}
.unit-card .unit-image-side {
    position: relative;
    margin: auto;
}
.unit-card .unit-image-side img.unit-photo {
  width: 100%;
  display: block;
}
.unit-card .unit-image-side .unit-overlay-name {
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.unit-card .unit-image-side .unit-overlay-name .model-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--color-text-primary);
}
.unit-card .unit-image-side .unit-overlay-name .model-size {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-primary-alt);
}
.unit-card .unit-info-side {
    flex: 1;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.unit-card .floor-plan-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}
.unit-card .floor-plan-wrap img {
    width: 100%;
}
.unit-card .unit-footer {
}
.unit-card .unit-footer .footer-row-top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
}
.unit-card .footer-model {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-text-primary);
}
.unit-card .footer-size {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--color-primary-alt);
}
.unit-specs-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 60%;
    margin: auto;
    padding: 2rem 0px;
    row-gap: 15px;
}
.unit-spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 33%;
}
.unit-spec-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.unit-spec-item span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: #402A16;
}
.btn-ver-plano {
  border: 1px solid rgba(144,112,105,0.2);
  border-radius: 6px;
  background: transparent;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.35px;
  color: var(--color-text-primary);
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-ver-plano:hover { background: rgba(144,112,105,0.06); }

/* Unit carousel arrows */
.units-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    position: absolute;
    right: 20px;
    top: 0px;
    z-index: 99999;
}
.units-nav .unit-arrow {
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.units-nav .unit-arrow:hover { background: var(--color-bg-light); }
.units-nav .unit-arrow img { width: 50px; height: 50px; object-fit: contain; }

/* ============================================================
   VISTAS / STATS (RED SECTION)
============================================================ */
#vistas {
  background: var(--color-primary-alt);
  padding: 54px 30px;
}
#vistas .vistas-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
#vistas h2 {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 48px;
  line-height: 52px;
  color: #fff;
  margin-bottom: 16px;
}
#vistas .vistas-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin-bottom: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0 48px;
}
.stat-item {
  border-left: 4px solid #ffb4a5;
  padding-left: 16px;
}
.stat-item .stat-num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  color: #fff;
}
.stat-item .stat-lbl {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 20px;
}
#vistas .vista-image-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 480px;
    display: block;
    position: relative;
}
#vistas .vista-image-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
#vistas .vista-image-card .vista-caption {
    padding: 14px 20px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}
#vistas .vista-image-card .vista-caption .location-label {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
}
#vistas .vista-image-card .vista-caption img { width: 18px; height: 18px; }
#vistas .vista-image-card .vista-caption span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}
#vistas .image-sub-caption {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-top: 14px;
  text-align: center;
}

/* ============================================================
   PROCESS STEPS
============================================================ */
#process {
    background: #fff;
    padding: 96px 32px;
    text-align: center;
    place-self: anchor-center;
    background-image: url(../imgs/sec7-img.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto;
}
#process .process-inner {
  max-width: 1280px;
  margin: 0 auto;
}
#process h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}
#process .process-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-primary);
  margin-bottom: 48px;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 896px;
  margin-bottom: 40px;
}
.process-card {
    background: rgba(249, 249, 249, 0.76);
    border: 1px solid rgba(233, 68, 37, 0.2);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.process-card .step-badge {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--color-teal);
  box-shadow: 0 10px 15px -3px rgba(180,29,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  margin:auto;
}
.process-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: var(--color-text-primary);
}
.process-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-primary);
  line-height: 24px;
}
.process-divider {
  height: 1px;
  background: rgba(228,190,182,0.3);
  max-width: 896px;
  margin-bottom: 32px;
}
.btn-process-cta {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  padding: 12px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-process-cta:hover { background: var(--color-primary-dark); color: #fff; }

/* ============================================================
   LOCATION / MAP
============================================================ */
#location {
  background: var(--color-bg-light);
  padding: 96px 64px 96px 44px;
}
#location .location-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 64px;
  align-items: center;
}
#location .eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #402A16;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
}
#location h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: var(--color-primary-alt);
  margin-bottom: 28px;
}
.location-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.location-item {
  padding-left: 18px;
  border-left: 2px solid rgba(180,29,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.location-item:nth-child(2) { border-left-color: rgba(69,100,98,0.2); }
.location-item:nth-child(3),
.location-item:nth-child(4),
.location-item:nth-child(5) { border-left-color: rgba(26,28,28,0.2); }
.location-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: #402A16;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-item h4 img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(17%) saturate(1732%) hue-rotate(347deg) brightness(97%) contrast(91%);
}
.location-item p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-brown-label);
  line-height: 22px;
}
#location .map-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    height: 100%;
}
#location .map-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
#location .map-image-wrap .map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(69,100,98,0.1);
  border-radius: 16px;
}


@media(min-width: 1201px){
  .mobile-v {
    display: none
  }
  .desktop-v {
    display: block;
  }
  .desktop-v .video-js {
    display: contents
  }
}
@media(max-width: 1200px){
  .mobile-v {
    display: block
  }
  .desktop-v {
    display: none;
  }
}


/* ============================================================
   BROKER BANNER
============================================================ */
#broker {
  background: var(--color-primary-alt);
  padding: 54px 30px;
  text-align: center;
}
#broker .broker-inner {
  max-width: 1280px;
  margin: 0 auto;
}
#broker h2 {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  margin-bottom: 16px;
}
#broker p {
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: 28px;
  line-height: 48px;
  color: #fff;
}
.btn-broker-cta {
  margin-top: 28px;
  display: inline-block;
  background: #fff;
  color: var(--color-primary-alt);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 48px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-broker-cta:hover { opacity: 0.92; color: var(--color-primary-alt); }

/* ============================================================
   POP INVESTMENTS
============================================================ */
#pop {
  background: var(--color-navy);
  padding: 71px 96px 40px;
  position: relative;
  overflow: hidden;
}
#pop .pop-deco {
  display: none !important;
  position: absolute;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: var(--color-lime);
}
#pop .pop-deco.pop-deco-1 {
    left: -107px;
}
#pop .pop-deco.pop-deco-2 {
    top: -70px;
    right: -70px;
}
#pop .pop-deco.pop-deco-3 {
    left: 50%;
    bottom: -135px;
    transform: translateX(-50%);
}
#pop .pop-deco.tl { top: -40px; left: -40px; }
#pop .pop-deco.br { bottom: -40px; right: -40px; }
#pop .pop-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#pop .pop-logo-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
#pop .pop-logo-row img.pop-logo {
  height: 56px;
  width: auto;
}
#pop .pop-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2.8px;
  margin-bottom: 40px;
}
.pop-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pop-feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pop-feature .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pop-feature .icon-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.pop-feature h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-lime);
}
.pop-feature p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 26px;
}

/* ============================================================
   CTA SECTION (HABLEMOS)
============================================================ */
#cta-section {
    background: #FF2A00;
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
}
#cta-section:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 16rem;
    background: #c5e7e4;
    clip-path: polygon(0 75%, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}
#cta-section .cta-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url('../imgs/sec1-banner.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
#cta-section .cta-mask {
  position: absolute;
  inset: 0;
  background-image: url('../imgs/sec1-banner.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.3;
}
#cta-section .cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
#cta-section h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -3.6px;
  color: #fff;
  margin-bottom: 24px;
}
#cta-section .cta-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}
.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  padding: 20px 40px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(216,56,26,0.2), 0 8px 10px -6px rgba(216,56,26,0.2);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-cta-white:hover {
  box-shadow: 0 25px 30px -5px rgba(216,56,26,0.3);
  transform: translateY(-2px);
  color: var(--color-primary-dark);
}
#cta-section .cta-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
#cta-section .cta-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--color-teal);
  padding: 30px 50px;
}
#footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .footer-logo img { height: 52px; width: auto; }
#footer .footer-copy {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: #402A16;
    line-height: 22.75px;
    margin: 0px;
    margin-top: 15px;
}
#footer .footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding: 0px;
}
#footer .footer-links button {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: #402A16;
    text-decoration: none;
    transition: color 0.2s;
    background-color: transparent;
    border: none;
    outline: none;
}

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

.modal-contenido {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#visorPDF {
  border: none;
  border-radius: 4px;
}

.cerrar-modal {
  color: #555;
  float: right;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: #eee;
  border-radius: 4px;
  transition: 0.3s;
}

.cerrar-modal:hover {
  background: #ff4c4c;
  color: white;
}

#footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
#footer .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #c4e6e3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
#footer .social-btn img { width: 20px; height: 20px; object-fit: contain; }
.btn-footer-cta {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-footer-cta:hover { background: var(--color-primary-dark); color: #fff; }

/* ============================================================
   ANIMATION HELPERS
============================================================ */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-left { opacity: 0; transform: translateX(-40px); }
.fade-right { opacity: 0; transform: translateX(40px); }
.scale-in { opacity: 0; transform: scale(0.92); }

/* ============================================================
   RESPONSIVE GUARDS (basic)
============================================================ */
@media (max-width: 1100px) {
  #hero .hero-text-block { left: 40px; width: 440px; }
  #hero .lead-form-card { left: 52%; right: 2%; }
  #bento .bento-inner { grid-template-columns: 1fr 1fr; }
  .pop-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  #hero { min-height: auto; }
  #hero .hero-content { flex-direction: column; min-height: auto; padding-bottom: 40px; }
  #hero .hero-text-block,
  #hero .lead-form-card {
    position: static;
    width: 100%;
    transform: none;
  }
  #hero .lead-form-card { margin-top: 32px; bottom: auto; top: auto; left: auto; right: auto; }
  #bento .bento-inner { grid-template-columns: 1fr; }
  #vistas .vistas-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  #location .location-inner { grid-template-columns: 1fr; }
  #cta-section .cta-inner { grid-template-columns: 1fr; }
  #cta-section h1 { font-size: 48px; line-height: 52px; }
  #pop { padding: 60px 32px 40px; }
  .pop-features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

#crmWebToEntityForm form .zcwf_row {
    margin-bottom: 10px;
}
#crmWebToEntityForm label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    color: var(--color-brown-label);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}
#crmWebToEntityForm input, #crmWebToEntityForm select {
    background: var(--color-input-bg);
    border: none;
    border-radius: 4px;
    height: 43px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-primary);
    padding: 0 12px;
    outline: none;
    box-shadow: none;
    WIDTH: 100%;
}

#crmWebToEntityForm #formsubmit {
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 16px 20px;
    border-radius: 4px;
    border: none;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(180, 29, 0, 0.2), 0 4px 6px -4px rgba(180, 29, 0, 0.2);
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 4px;
}

#footer .footer-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

#footer .footer-logo img.pop-logo-azul {
    width: 12rem;
    height: auto;
}

.precios {
    color: #fff;
    padding: 8px;
    font-size: 20px;
    margin-bottom: 1em;
    display: inline-block;
    background: #ff2a00;
    font-weight: 500;
}

.global__fixed-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: fixed;
    left: 15px;
    bottom: 10px;
    z-index: 99;
}

.global__fixed-btns .global__fixed-btn {
    background: #ff2a00;
    padding: 8px 15px;
    margin-top: 5px;
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
}

.float-redes {
    position: fixed;
    top: 80%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 99;
}
.float-redes a {
    display: block;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 100px;
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, .16);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, .16);
}

.float-redes .wa img {
    width: 50px;
}

p.lightbox-caption em {
    text-transform: uppercase;
    font-style: normal;
    font-family: 'Inter';
    font-size: 20px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.wa-float svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

@media (min-width: 320px) and (max-width: 575px){
  #navbar .nav-links {display: none;}

  #hero .hero-text-block h1 {font-size: 45px;line-height: 1.1;letter-spacing: 0px;}

  #timeline h2 {font-size: 40px;line-height: 40px;}

  #units h2 {font-size: 40px;}

  #vistas .vista-image-card {width: 100%;}

  #footer .footer-links {flex-direction: row;flex-wrap: wrap;}

  #location {padding: 20px;}
  #hero .hero-content {padding: 20px;}
  #bento {padding: 20px;}
  #timeline {padding: 20px;}
  .timeline-dot-start-wrap, .timeline-dot-end-wrap {top: 20px !important;}
  .mt-5 {margin-top: 6rem !important;}
  #amenities {padding: 20px;}
  .amenity-icon-item {display: none;}
  .amenity-icon-item.active {display: flex;}
  #units {padding: 20px;}
  .unit-specs-row {width: 100%;}
  .units-nav {right: auto;left: 50%;bottom: 0px;z-index: 1;width: 100%;transform: translateX(-50%);justify-content: space-between;top: auto;}
  #vistas {padding: 20px;}
  #process {padding: 20px;}
  #broker {padding: 20px}
  #pop {padding: 20px;}
  #cta-section {padding: 20px;}
  #footer {padding: 20px;}
  .sec2-inter img {width: 100%;margin-top: 0rem;}

  .th-page .th-logo {padding-top: 3rem;}
  .th-page .th-logo img {width: 15rem;}
  .th-page .th-txt1 {margin-top: 3rem;}
  .th-page .th-txt1 h1 {font-size: 28px;letter-spacing: 2px;}
  .th-page .th-txt2 {margin-top: 3rem;}
}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    #navbar .nav-links {display: none;}

  #hero .hero-text-block h1 {font-size: 45px;line-height: 1.1;letter-spacing: 0px;}

  #timeline h2 {font-size: 40px;line-height: 40px;}

  #units h2 {font-size: 40px;}

  #vistas .vista-image-card {width: 100%;}

  #footer .footer-links {flex-direction: row;flex-wrap: wrap;}

  #location {padding: 20px;}
  #hero .hero-content {padding: 20px;}
  #bento {padding: 20px;}
  #timeline {padding: 20px;}
  .timeline-dot-start-wrap, .timeline-dot-end-wrap {top: 20px !important;}
  .mt-5 {margin-top: 6rem !important;}
  #amenities {padding: 20px;}
  .amenity-icon-item {display: none;}
  .amenity-icon-item.active {display: flex;}
  #units {padding: 20px;}
  .unit-specs-row {width: 100%;}
  .units-nav {right: auto;left: 50%;bottom: 0px;z-index: 1;width: 100%;transform: translateX(-50%);justify-content: space-between;top: auto;}
  #vistas {padding: 20px;}
  #process {padding: 20px;}
  #broker {padding: 20px}
  #pop {padding: 20px;}
  #cta-section {padding: 20px;}
  #footer {padding: 20px;}
  .sec2-inter img {width: 100%;margin-top: 0rem;}

  .th-page .th-logo {padding-top: 3rem;}
  .th-page .th-logo img {width: 15rem;}
  .th-page .th-txt1 {margin-top: 3rem;}
  .th-page .th-txt1 h1 {font-size: 28px;letter-spacing: 2px;}
  .th-page .th-txt2 {margin-top: 3rem;}
}

/*Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .sec2-inter img {width: 90%;margin-top: -1rem;}

  .unit-specs-row {width: 100%;}

  .th-page .th-logo {padding-top: 3rem;}
  .th-page .th-txt1 {margin-top: 3rem;}
  .th-page .th-txt2 {margin-top: 3rem;}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

  .th-page .th-logo {padding-top: 3rem;}
  .th-page .th-txt1 {margin-top: 3rem;}
  .th-page .th-txt2 {margin-top: 3rem;}
}

/* Bigger devices (desktops, 992px and up) */
@media (min-width: 1200px) and (max-width: 1299.98px) {

  .th-page .th-logo {padding-top: 3rem;}
  .th-page .th-txt1 {margin-top: 3rem;}
  .th-page .th-txt2 {margin-top: 3rem;}
}

@media (min-width: 1400px) and (max-width: 1599.98px) {

}

/* Extra large devices  */
@media (min-width: 1600px) {

}