/* ══════════════════════════════════════════
   LOCALES BARROSO — Estilos principales
   ══════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', Arial, sans-serif;
  color: #323232;
  overflow-x: hidden;
}

.h100p { height: 100%; }
.mb0 { margin-bottom: 0; }

/* ── HEADER ── */

#header {
  height: 100px;
  background: transparent;
  z-index: 1200;
  transition: background-color 0.3s ease;
}

#header.active {
  /* Sin fondo ni sombra: .active solo controla botón PROYECTOS */
}

#header .row,
#header .col-12,
#navbar_header {
  height: 100%;
}

#header .row {
  align-items: center;
}

#navbar_header {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-link {
  display: inline-flex;
  align-items: center;
  height: 80px;
}

.header__logo {
  display: block;
  height: 80px;
  width: auto;
  max-height: 100%;
}

.header__logo--blanco {
  display: block;
}

.header__logo--negro {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__btn-proyectos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  background-color: #1C9B83;
  color: #ffffff;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#header.active .header__btn-proyectos {
  opacity: 1;
  pointer-events: auto;
}

.header__btn-proyectos:hover {
  color: #ffffff;
  background-color: #167866;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}

.header__btn-proyectos:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(28, 155, 131, 0.25);
}

.header__hamburguesa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: auto;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.header__hamburguesa-icon {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
  opacity: 0;
}

#header.active .header__hamburguesa-icon {
  opacity: 1;
}

/* ── MOBILE MENU ── */

#menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  justify-content: flex-end;
  z-index: 1300;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: opacity 0.35s ease, background-color 0.35s ease, visibility 0s linear 0.35s;
}

#menu-mobile.show {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease, background-color 0.35s ease, visibility 0s linear 0s;
}

#menu-mobile > div:first-child {
  flex-basis: 60%;
  height: 100%;
  cursor: pointer;
}

#menu-mobile > div:nth-child(2) {
  flex-basis: 40%;
  height: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

#menu-mobile.show > div:nth-child(2) {
  transform: translateX(0);
}

#contenedor-interno-menu-mobile,
.header__mobile-panel {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.close-menu-mobile {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.close-menu-mobile::before,
.close-menu-mobile::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}

.close-menu-mobile::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-menu-mobile::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 65%;
  height: 80%;
  max-height: 80%;
  flex: 0 0 80%;
  text-align: center;
  box-sizing: border-box;
}

.header__mobile-link {
  display: block;
  width: 100%;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  transition: color 0.25s ease;
  text-align: start;
}

.header__mobile-link:hover {
  color: #1C9B83;
  text-decoration: none;
}

.header__mobile-link--active {
  color: #1C9B83;
  font-weight: 600;
}

.header__mobile-nav__social {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 28px;
  width: 100%;
  margin-top: 30px;
  padding-top: 24px;
  flex-shrink: 0;
}

.header__mobile-nav__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.header__mobile-nav__social-link:hover {
  opacity: 0.85;
}

.header__mobile-nav__social-icon {
  display: block;
  width: 26px;
  height: auto;
}

.header__mobile-nav__social-icon--instagram {
  width: 32px;
}

/* ── HERO / BANNER ── */

.lb-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.lb-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lb-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.lb-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  width: 100%;
}

.lb-hero__logo {
  width: 280px;
  height: auto;
  margin-bottom: 20px;
}

.lb-hero__direccion {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.lb-hero__pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lb-hero__titulo {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 300;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-top: 28px;
  margin-bottom: 28px;
  max-width: 90%;
  text-align: center;
}

.lb-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0 48px;
  height: 52px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.lb-hero__btn:hover {
  background-color: #222222;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.lb-hero__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lb-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  animation: lb-hero-bounce 2s ease-in-out infinite;
}

.lb-hero__scroll img {
  width: 24px;
  height: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

@keyframes lb-hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── PRESENTACIÓN ── */

.lb-presentacion {
  padding: 0;
  background-color: #000000;
  color: #ffffff;
}

.lb-presentacion__wrap {
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 48px);
}

.lb-presentacion__top {
  margin-bottom: 0;
}

.lb-presentacion__titulo-wrap {
  height: 100%;
}

.lb-presentacion__categoria {
  margin: 0 0 12px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ffffff;
}

.lb-presentacion__titulo {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 45px);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #ffffff;
}

.lb-presentacion__content {
  line-height: 1.4;
}

.lb-presentacion__precio-label {
  margin: 0 0 4px;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.lb-presentacion__precio {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ffffff;
}

.lb-presentacion__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.lb-presentacion__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: default;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.lb-presentacion__pill--verde {
  background-color: #1C9B83;
  color: #ffffff;
  border: 2px solid #1C9B83;
  cursor: pointer;
}

.lb-presentacion__pill--verde:hover {
  background-color: #17856f;
  transform: translateY(-1px);
  color: #ffffff;
  text-decoration: none;
}

.lb-presentacion__pill--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* ── INVERSIÓN ── */

.lb-inversion {
  padding: 0;
  background-color: #ffffff;
  margin-top: 100px;
}

.lb-inversion__wrap {
  /* padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 48px); */
}

.lb-inversion__top {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.lb-inversion__titulo {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.lb-inversion__texto {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  margin: 0;
  max-width: 400px;
}

.lb-inversion__img-wrap {
  max-width: 1152px;
  margin: 0 auto;
}

.lb-inversion__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CONOCE ── */

.lb-conoce {
  padding: 0;
  background-color: #1a1a1a;
}

.lb-conoce__wrap {
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 48px);
}

.lb-conoce__titulo-col {
  margin-bottom: 0;
}

.lb-conoce__titulo {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

.lb-conoce__subtitulo {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin: 4px 0 0;
  text-transform: uppercase;
}

.lb-conoce__desc {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

/* ── COTIZADOR ── */

.lb-cotizador {
  padding: 0;
  background-color: #ffffff;
}

.lb-cotizador__wrap {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 48px);
}

.lb-cotizador__titulo {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #000000;
  margin: 0 0 clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  font-style: normal;
}

.lb-cotizador__plano-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lb-cotizador__plano {
  width: 100%;
  max-width: 90%;
  height: auto;
  display: block;
}

.lb-cotizador__info-col {
  display: flex;
  flex-direction: column;
}

.lb-cotizador__select-wrap {
  position: relative;
  margin-bottom: 28px;
}

.lb-cotizador__select {
  width: 100%;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #323232;
  background-color: #ffffff;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  padding: 12px 40px 12px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
  transition: border-color 0.2s ease;
}

.lb-cotizador__select:focus {
  border-bottom-color: #1C9B83;
}

.lb-cotizador__detalle {
  display: flex;
  flex-direction: column;
}

.lb-cotizador__campo {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}

.lb-cotizador__label {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 2px;
}

.lb-cotizador__valor {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #323232;
}

.lb-cotizador__superficies {
  display: flex;
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.lb-cotizador__precio {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: #000000;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.lb-cotizador__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1C9B83;
  color: #ffffff;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0 36px;
  height: 44px;
  width: fit-content;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
  margin-bottom: 28px;
}

.lb-cotizador__btn:hover {
  background-color: #17856f;
  transform: translateY(-1px);
  color: #ffffff;
  text-decoration: none;
}

.lb-cotizador__desc {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  color: #999999;
  margin: 0;
}

/* ── UBICACIÓN ── */

.lb-ubicacion {
  padding: 0;
  background-color: #ffffff;
  color: #323232;
}

.lb-ubicacion__grid {
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 48px);
}

.lb-ubicacion__info {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.lb-ubicacion__mapa {
  width: 100%;
}

.lb-ubicacion__mapa-img {
  display: block;
  width: 100%;
  height: auto;
}

.lb-ubicacion__titulo {
  margin: 0;
  color: #000000;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
}

.lb-ubicacion__subtitulo {
  margin: 0 0 50px;
  color: #666666;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.35;
  text-transform: uppercase;
}

.lb-ubicacion__lista {
  margin: 0 0 clamp(24px, 3vw, 28px);
  padding: 0;
  list-style: none;
}

.lb-ubicacion__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.lb-ubicacion__item:last-child {
  margin-bottom: 0;
}

.lb-ubicacion__bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border: 2px solid #000000;
  border-radius: 50%;
}

.lb-ubicacion__item-texto {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.4;
}

.lb-ubicacion__item-texto strong {
  font-weight: 700;
}

.lb-ubicacion__direccion {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 55px 0 45px;
  color: #000000;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.35;
}

.lb-ubicacion__pin {
  width: 14px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0);
}

.lb-ubicacion__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lb-ubicacion__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 50px;
  border: 1px solid #000000;
  border-radius: 999px;
  background-color: #ffffff;
  color: #000000;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.lb-ubicacion__btn:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* ── GALERÍA ── */

.lb-galeria {
  padding: 0;
  background-color: #e8e8e8;
}

.lb-galeria__wrap {
  padding:  0;
}

.lb-galeria__carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.lb-galeria__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-galeria__img {
  width: 100%;
  height: auto;
  display: block;
}

.lb-galeria__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
}

.lb-galeria__nav--prev {
  left: 16px;
  background-color: rgba(150, 150, 150, 0.7);
  color: #ffffff;
}

.lb-galeria__nav--next {
  right: 16px;
  background-color: #000000;
  color: #ffffff;
}

.lb-galeria__nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lb-galeria__cta-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.lb-galeria__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(180, 180, 180, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0 40px;
  height: 44px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.lb-galeria__btn:hover {
  background-color: rgba(150, 150, 150, 0.85);
  transform: translateY(-1px);
  color: #ffffff;
  text-decoration: none;
}

/* ── VIDEO ── */

.lb-video {
  padding: 0;
}

.lb-video__wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.lb-video__media {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lb-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.lb-video__texto {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.lb-video__numero {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 800;
  line-height: 1;
}

.lb-video__label {
  display: flex;
  flex-direction: column;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(22px, 3vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── SECCIÓN CONTACTO ── */

.pi-contacto {
  background-color: #323232 !important;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pi-contacto__titulo {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.pi-contacto__row {
  padding-top: 28px;
}

.pi-contacto__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pi-contacto__logo {
  width: 280px;
  height: auto;
  display: block;
}

.pi-contacto__dato {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(16px, 0.9vw, 16px);
  font-weight: 400;
  color: #ffffff;
}

.pi-contacto__icono {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pi-contacto__link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.pi-contacto__link:hover {
  opacity: 0.8;
  color: #ffffff;
}

.pi-contacto__titulo-mobile-wrap {
  margin-bottom: 20px;
}

/* ── FOOTER ── */

.site-footer {
  width: 100%;
  padding: 0;
  background-color: #000000;
}

.site-footer__main {
  background-color: #000000 !important;
  height: 370px;
}

.site-footer__col-content {
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}

.site-footer__col-logo {
  display: flex;
  align-items: flex-start;
}

.site-footer__logo {
  width: 194px;
  height: auto;
  margin-top: -50px;
}

.site-footer__col {
  padding-top: 4px;
}

.site-footer__heading {
  font-size: 12px;
  font-weight: 400;
  color: #1C9B83;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.site-footer__text {
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 12px;
}

.site-footer__text a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__text a:visited {
  color: #ffffff;
}

.site-footer__text a:hover {
  color: #1C9B83;
}

.site-footer__text a:focus-visible {
  outline: 1px solid #1C9B83;
  outline-offset: 2px;
}

.site-footer__link {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: #1C9B83;
}

.site-footer__col-social {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 4px;
}

.site-footer__social {
  display: flex;
  gap: 16px;
  margin-top: -20px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.site-footer__social-link:hover {
  opacity: 0.7;
}

.site-footer__social-icon {
  width: 24px;
  height: 24px;
}

.site-footer__bottom {
  background-color: #000000 !important;
  height: 100px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.125);
}

.site-footer__copy {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin: 0 0 2px;
}

.site-footer__disclaimer {
  font-size: 9px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.275);
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   MEDIA QUERIES — de más grande a más pequeña
   ══════════════════════════════════════════ */

@media (min-width: 992px) {
  .header__hamburguesa-icon {
    opacity: 1;
  }

  #header.header--logo-blanco .header__logo--blanco {
    display: block;
  }

  #header.header--logo-blanco .header__logo--negro {
    display: none;
  }

  #header.header--logo-negro .header__logo--blanco {
    display: none;
  }

  #header.header--logo-negro .header__logo--negro {
    display: block;
  }

  #header.header--logo-blanco .header__hamburguesa-icon {
    filter: brightness(0) invert(1);
    mix-blend-mode: normal;
  }

  #header.header--logo-negro .header__hamburguesa-icon {
    filter: brightness(0);
    mix-blend-mode: normal;
  }

  .header__mobile-panel {
    padding: 80px 48px 48px;
  }

  .header__mobile-link {
    font-size: 16px;
    padding: 14px 0;
  }

  .lb-presentacion__pills {
    justify-content: flex-end;
    gap: 16px;
  }

  .lb-presentacion__pill {
    min-height: 48px;
    padding: 12px 28px;
    font-size: clamp(11px, 0.85vw, 13px);
  }
}

@media (max-height: 700px) {
  .header__mobile-panel {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .header__mobile-nav {
    height: 85%;
    max-height: 85%;
    flex: 0 0 85%;
    gap: 4px;
  }

  .header__mobile-link {
    padding: 7px 0;
    font-size: 13px;
  }

  .header__mobile-nav__social {
    margin-top: 14px;
    padding-top: 10px;
    gap: 22px;
  }
}

@media (max-width: 1699.98px) {
  .lb-inversion__titulo {
   
    font-size: clamp(32px, 4.2vw, 45px);
    
}
}

@media (max-width: 1499.98px) {
  .lb-inversion__titulo {
   
    font-size: clamp(32px, 4.2vw, 38px);
    
}
}

@media (max-width: 1399.98px) {
  #header {
    height: 80px;
  }

  .header__logo-link {
    height: 64px;
  }

  .header__logo {
    height: 64px;
  }

  .site-footer__logo {
    width: 165px;
    height: auto;
    margin-top: -40px;
  }
}

@media (max-width: 1199.98px) {
  .site-footer {
    width: 100%;
    padding: 0 24px;
    background-color: #000000;
  }
}

@media (max-width: 991.98px) {
  html {
    overflow-x: hidden;
  }
  #header {
    height: 80px;
    background: #000;
  }

  .header__btn-proyectos {
    display: none;
  }

  .header__hamburguesa-icon {
    opacity: 1;
    filter: brightness(0) invert(1);
  }

  #menu-mobile > div:first-child {
    flex-basis: 20%;
  }

  #menu-mobile > div:nth-child(2) {
    flex-basis: 80%;
  }

  .header__mobile-panel {
    padding: 76px 20px 36px;
  }

  .header__mobile-link {
    font-size: 14px;
    padding: 11px 0;
  }

  .close-menu-mobile {
    top: 28px;
    right: 28px;
  }

  .lb-hero {
    min-height: 100vh;
  }

  .lb-hero__logo {
    width: 200px;
    margin-bottom: 16px;
  }

  .lb-hero__direccion {
    font-size: 13px;
    margin-bottom: 32px;
    flex-direction: column;
    gap: 8px;
  }

  .lb-hero__titulo {
    font-size: clamp(20px, 5vw, 28px);
    margin-bottom: 40px;
    max-width: 320px;
  }

  .lb-hero__btn {
    font-size: 12px;
    padding: 0 40px;
    height: 48px;
  }

  .lb-presentacion__titulo-wrap {
    margin-bottom: clamp(20px, 3vw, 32px);
  }

  .lb-presentacion__content {
    margin-bottom: 24px;
  }

  .lb-inversion__wrap {
    padding: clamp(40px, 6vw, 60px) 24px;
  }

  .lb-inversion__titulo {
    margin-bottom: 20px;
  }

  .lb-inversion__texto {
    max-width: 100%;
    margin-bottom: 0;
  }

  .lb-inversion__top {
    margin-bottom: 24px;
  }

  .lb-conoce__titulo-col {
    margin-bottom: 16px;
  }

  .lb-conoce__desc {
    font-size: 13px;
  }

  .lb-ubicacion__grid > [class*=col-] {
    margin-bottom: clamp(28px, 4vw, 40px);
  }

  .lb-ubicacion__grid > [class*=col-]:first-child {
    margin-bottom: 0;
  }

  .lb-ubicacion__btns {
    justify-content: center;
  }

  .lb-ubicacion__info {
    text-align: left;
  }

  .lb-galeria__nav {
    width: 40px;
    height: 40px;
  }

  .lb-galeria__nav--prev {
    left:20px;
  }

  .lb-galeria__nav--next {
    right: 20px;
  }

  .lb-cotizador__wrap {
    padding: clamp(40px, 6vw, 60px) 24px;
  }

  .lb-cotizador__titulo {
    text-align: center;
  }

  .lb-cotizador__plano-col {
    margin-bottom: 32px;
  }

  .lb-cotizador__superficies {
    flex-wrap: wrap;
    gap: 16px;
  }

  .lb-cotizador__superficies .lb-cotizador__campo {
    flex: 1 1 calc(50% - 16px);
  }

  .pi-contacto {
    padding-top: 36px;
    padding-bottom: 36px;
    text-align: center;
  }

  .pi-contacto__row {
    border-top: none;
    padding-top: 0;
  }

  .pi-contacto__logo-wrap {
    justify-content: center;
    margin-bottom: 28px;
  }

  .pi-contacto__logo {
    width: 220px;
  }

  .pi-contacto__dato {
    justify-content: center;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .site-footer__main {
    height: auto;
    padding: 50px 20px 36px;
  }

  .site-footer__main .site-footer__col-logo,
  .site-footer__main .site-footer__col,
  .site-footer__main .site-footer__col-social {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .site-footer__col-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
  }

  .site-footer__logo {
    margin-top: 0;
    width: 105px;
  }

  .site-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 0;
  }

  .site-footer__col-content {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__col-social {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    padding-top: 0;
  }

  .site-footer__heading {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .site-footer__text,
  .site-footer__link {
    font-size: 14px;
  }

  .site-footer__text {
    margin-bottom: 10px;
  }

  .site-footer__link {
    margin-bottom: 8px;
  }

  .site-footer__social {
    justify-content: center;
    margin-top: 0;
    gap: 20px;
  }

  .site-footer__social-icon {
    width: 28px;
    height: 28px;
  }

  .site-footer__bottom {
    height: auto;
    padding: 28px 20px 36px;
  }

  .site-footer__copy {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .site-footer__disclaimer {
    font-size: 14px;
    padding: 0 12px;
    line-height: 1.5;
  }
}

@media (max-width: 767.98px) {
  .lb-hero__direccion {
    font-size: 13px;
    margin-bottom: 32px;
    flex-direction: row;
    gap: 8px;
}
  #header {
    height: 65px;
  }

  #navbar_header {
    padding: 0 16px;
  }

  .header__logo-link {
    height: 58px;
  }

  .header__logo {
    height: 58px;
  }

  .site-footer__main {
    padding: 44px 16px 32px;
  }

  .site-footer__logo {
    width: 105px;
  }

  .site-footer__bottom {
    padding: 24px 16px 32px;
  }

  .lb-presentacion__wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .lb-conoce__wrap {
    padding-left: 24px;
    padding-right: 24px;
}
  .lb-inversion {
    padding: 0;
    background-color: #ffffff;
    margin-top: 50px;
}
}

@media (max-width: 575.98px) {
  .lb-hero__logo {
    width: 260px;
  }

  .lb-hero__titulo {
    font-size: 20px;
    max-width: 280px;
  }

  .lb-presentacion__pills {
    gap: 10px;
  }

  .lb-presentacion__pill {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding: 10px 14px;
    font-size: 11px;
    white-space: normal;
  }
}
