.bt-scope{
  --bt-font-heading: var(--bt-font-body);
  --bt-font-body: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* ---------- CORE COLOR TOKENS (override per landing/theme) ---------- */
  --bt-bg: #ffffff;                 /* page background (dark landings) */
  --bt-surface: #ffffff;            /* cards/surfaces */
  --bt-surface-2: #f3efe7;          /* sand surfaces  */
  --bt-ink: #0d1b2a;                /* dark text */
  --bt-ink-soft: rgba(13,27,42,.78);
  --bt-ink-muted: rgba(13,27,42,.62);

  --bt-white: #ffffff;

  /* Brand accents */
  --bt-accent: rgb(27 96 137);      /* blue */
  --bt-accent-2: #c3c1b2;           /* warm sand/gold */
  --bt-navy: #0e243f;
  --bt-navy-2:#061c2e;

  /* Gradients / overlays */
  --bt-hero-overlay-a: rgba(0,0,0,.18);
  --bt-hero-overlay-b: rgba(0,0,0,.58);
  --bt-band-grad-a: var(--bt-navy);
  --bt-band-grad-b: var(--bt-navy-2);
	/* Hero sizing hooks */
	--bt-hero-height: 100svh;
	--bt-hero-minh: 0px;
	--bt-hero-maxh: none;

	--bt-hero-height-mobile: var(--bt-hero-height);
	--bt-hero-minh-mobile: var(--bt-hero-minh);
	--bt-hero-maxh-mobile: var(--bt-hero-maxh);
  /* Typography sizes (fluid) */
  --bt-h1-size: clamp(36px, 5vw, 56px);
  --bt-h2-size: clamp(28px, 3.2vw, 40px);
  --bt-h3-size: clamp(22px, 2.4vw, 28px);
  --bt-h4-size: 18px;

  --bt-p-size: 17px;
  --bt-p-lh: 1.75; 

  /* Text colors */
  --bt-h1-color: var(--bt-white);
  --bt-h2-color: var(--bt-white);
  --bt-h3-color: var(--bt-white);
  --bt-p-color: rgba(255,255,255,.92);

  /* Layout */
  --bt-container: min(1200px, calc(100% - (var(--bt-pad-x) * 2)));
  --bt-pad-x: clamp(16px, 4vw, 48px);
  --bt-pad-y: clamp(28px, 6vw, 88px);

  /* Radius / shadows */
  --bt-radius-xl: 44px;
  --bt-radius-lg: 28px;
  --bt-radius-md: 16px;
  --bt-shadow-1: 0 10px 30px rgba(0,0,0,.18);

  /* Shape system (override per landing) */
  --bt-radius-pill: 999px;                 
  --bt-radius-btn: 10px;                   
  --bt-radius-chip: var(--bt-radius-pill); 


  /* Buttons */
  --bt-btn-bg: var(--bt-white);
  --bt-btn-fg: var(--bt-ink);
  --bt-btn-bg-ghost: transparent;
  --bt-btn-fg-ghost: var(--bt-white);
  --bt-btn-border: rgba(255,255,255,.55);
  /* Hero*/
  --bt-hero-title-size: clamp(40px, 6vw, 90px);
	--bt-hero-title-letter-spacing: -0.047em;
	--bt-hero-title-line-height: 1.08;

  /* Hero meta spacing (works desktop + mobile) */
  --bt-heroMeta-mt: 22px;   /* space from previous element */
  /* Use: --bt-heroMeta-mt: auto; to push meta to bottom */
  --bt-heroMeta-mb: 0px;    /* space from bottom (use with flex-end if desired) */

  /* Legacy hero content positioning (bt-hero-wrap system) */
  --bt-heroContent-justify: center; /* center | flex-end */
  --bt-heroContent-pb: 0px;         /* extra bottom padding for hero content */


/* Editorial section */
  --bt-editorial-bg: #f3f1ee;
  --bt-editorial-title-color: #a89b90;
  --bt-editorial-title-size: clamp(28px, 3.2vw, 42px);
  --bt-editorial-title-tracking: .08em;
  --bt-editorial-title-lh: 1.10;

  --bt-editorial-subtitle-color: #4e4e4e;
  --bt-editorial-subtitle-size: 13px;
  --bt-editorial-subtitle-tracking: .22em;

  --bt-editorial-text-color: #2e2e2e;
  --bt-editorial-text-size: 15px;
  --bt-editorial-text-lh: 1.65;
  --bt-editorial-text-maxw: 520px;

  /* Media Frame (placa detrás) */
  --bt-mediaFrame-bg: var(--bt-navy);
  --bt-mediaFrame-pad: 18px;
  --bt-mediaFrame-radius: 20px;

  /* offset de la placa (top right bottom left) */
  --bt-mediaFrame-top: 10%;
  --bt-mediaFrame-right: -8%;
  --bt-mediaFrame-bottom: -10%;
  --bt-mediaFrame-left: 10%;
  
    --bt-cta-font-family: var(--bt-font-heading);
  --bt-cta-font-weight: 700;
  --bt-cta-letter-spacing: .06em;
  
/* ---------- ACCORDION (UNIVERSAL TOKENS) ---------- */
--bt-acc-maxw: 800px;
--bt-acc-separator: 1px solid rgba(255,255,255,.30);

--bt-acc-trigger-pad-y: 22px;
--bt-acc-trigger-pad-x: 0px;

--bt-acc-trigger-color: #ffffff;
--bt-acc-trigger-hover: var(--bt-accent-2);

--bt-acc-icon-size: 24px;
--bt-acc-icon-stroke: 2px;

--bt-acc-icon-gap: 14px; /* default gap if not defined elsewhere */

/* Icon tokenization (safe defaults = current +/− behavior) */
--bt-acc-icon-strokes-display: block;  /* block => draw +/− with strokes */
--bt-acc-icon-custom-display: none;    /* block => show custom bg/mask icon */

--bt-acc-icon-bg: transparent;         /* for bullet/mask modes, set to currentColor */
--bt-acc-icon-radius: 0px;             /* bullet => 999px */
--bt-acc-icon-mask: none;              /* closed icon mask */
--bt-acc-icon-mask-open: none;         /* open icon mask (optional) */

--bt-acc-icon-v-opacity: 1;            /* vertical stroke opacity when CLOSED (1 => +) */
--bt-acc-icon-v-opacity-open: 0;       /* vertical stroke opacity when OPEN   (0 => −) */
--bt-acc-icon-v-rotate: 0deg;
--bt-acc-icon-v-rotate-open: 90deg;


--bt-acc-panel-pad-right: 20px;
--bt-acc-panel-pad-bottom: 25px;

--bt-acc-content-color: rgba(255,255,255,.95);
--bt-acc-content-size: 16px;
--bt-acc-content-lh: 1.7;
--bt-acc-content-pad-left: 40px;

--bt-acc-duration: 300ms;
--bt-acc-ease: ease;

  --bt-splitCta-gap: clamp(18px, 4vw, 64px);
  --bt-splitCta-media-radius: var(--bt-radius-xl);
  --bt-splitCta-media-maxw: 900px;

  
  /* splitCta media slot (universal) */
  --bt-splitCta-media-justify: center;     /* flex-start | center | flex-end */
  --bt-splitCta-media-align: stretch;      /* stretch | center */
  --bt-splitCta-media-pad: 0px;
  --bt-splitCta-media-minh: auto;
  --bt-splitCta-media-child-w: 100%;
  --bt-splitCta-media-fit: cover;          /* cover | contain */
  --bt-splitCta-media-focus: 50% 50%;    /* object-position */
  --bt-splitCta-media-overflow: hidden;
  --bt-splitCta-media-shadow: var(--bt-shadow-1);
--bt-splitCta-header-mb: clamp(18px, 3vw, 34px);

  /* band skin */
  --bt-splitCta-band-bg: var(--bt-accent);
  --bt-splitCta-band-ink: rgba(255,255,255,.92);

  /* light skin */
  --bt-splitCta-light-bg: #fff;
  --bt-splitCta-light-ink: var(--bt-ink);
  --bt-splitCta-light-ink-soft: var(--bt-ink-soft);
  
  --bt-translateHover: -6px;
  --bt-agentBand-pad-x: 170px;
  --bt-agentBand-photo:250px;
  
 /* Size & layout */
  --bt-showcase-maxw: 1400px;                 /* carousel container width */
  --bt-showcase-fullbleed: 0;                 /* 1 = full-bleed */
  --bt-showcase-pad-x: clamp(16px, 3vw, 40px);

  --bt-showcase-card-maxw: 560px;             /* when only 2 cards, they look big */
  --bt-showcase-gap: 40px;

  /* Image */
  --bt-luxCard-radius: 14px;
  --bt-luxImg-h: 300px;
  --bt-luxImg-h-mobile: 240px;

  /* Overlays */
  --bt-luxOverlay-top: 22px;
  --bt-luxOverlay-inset: 26px;
  --bt-luxTitle-size: 18px;
  --bt-luxTitle-ls: .28em;

  /* Bottom badge */
  --bt-luxBadge-inset: 0px;                   /* 0 = full width band */
  --bt-luxBadge-bottom: 0px;                  /* 0 = flush to bottom */
  --bt-slideBand-radius: 12px;
  --bt-slideBand-size: 13px;
  --bt-slideBand-weight: 600;
  --bt-luxBadge-bg: rgba(110,16,16,.45);
  --bt-luxBadge-blur: 0px;
  --bt-luxBadge-ls: .30em;

  /* Arrows visibility */
  --bt-showcase-arrows: 0;                    /* 1 = show, 0 = hide */
  --bt-showcase-arrows-when-two: 0;           /* 1 = show arrows even if 2 slides */

  /* =========================================
     LOGO TOKENS
  ========================================= */

  --bt-logo-max-width: 250px;
  --bt-logo-responsive-width: 86vw;

  --bt-ctaWhite-bg: #ffffff;                    /* fondo */
  --bt-ctaWhite-fg: var(--bt-navy);             /* texto */
  --bt-ctaWhite-border: rgba(255,255,255,.75);  /* borde */
  --bt-ctaWhite-shadow: 0 12px 30px rgba(0,0,0,.18);

  /* hover */
  --bt-ctaWhite-bg-hover: #f3f1ee;              /* offwhite */
  --bt-ctaWhite-fg-hover: var(--bt-navy);
  --bt-ctaWhite-border-hover: rgba(255,255,255,.9);

  /* si quieres un radio tokenizable */
  --bt-ctaWhite-radius: 10px;
  
  --bt-cta-border-default: 2px;
  --bt-cta-border-none: 0px;
  
/* NAV */
  --bt-floorTabs-nav-bg: var(--bt-navy, #0b2a44);
  --bt-floorTabs-nav-ink: #fff;
  --bt-floorTabs-nav-gap: clamp(14px, 2.4vw, 34px);
  --bt-floorTabs-nav-pad-y: 18px;
  --bt-floorTabs-nav-pad-x: 22px;

  /* TAB text */
  --bt-floorTabs-tab-size: 14px;
  --bt-floorTabs-tab-ls: .12em;
  --bt-floorTabs-tab-weight: 800;
  --bt-floorTabs-tab-opacity: .90;
  --bt-floorTabs-tab-opacity-active: 1;

  /* Layout */
  --bt-floorTabs-content-pad: clamp(22px, 3.2vw, 44px);
  --bt-floorTabs-grid-gap: clamp(18px, 3vw, 44px);

  /* Title */
  --bt-floorTabs-title-color: #b9a89d;
  --bt-floorTabs-title-size: clamp(30px, 4.2vw, 56px);
  --bt-floorTabs-title-ls: .10em;
  --bt-floorTabs-title-weight: 800;

  /* Bullets */
  --bt-floorTabs-bullet-size: 18px;
  --bt-floorTabs-bullet-lh: 1.65;
  --bt-floorTabs-bullet-gap: 10px;

  /* Footer */
  --bt-floorTabs-footer-color: --bt-navy;
  --bt-floorTabs-footer-size: 14px;
  --bt-floorTabs-footer-pad-y: 18px;

  /* Media */
  --bt-floorTabs-media-radius: 0px;
  --bt-floorTabs-media-bg: transparent; 
  
  --bt-floorTabs-footer-size: 18px;
  
/* =========================================
   FEATURE GRID (Editorial Mosaic)
========================================= */

--bt-featureGrid-gap: 0px;
--bt-featureGrid-minh: 320px;

--bt-featureBlock-pad: clamp(28px, 4vw, 60px);

--bt-featureBlock-title-size: clamp(20px, 2.4vw, 28px);
--bt-featureBlock-title-ls: .18em;
--bt-featureBlock-title-weight: 700;

--bt-featureBlock-text-size: 15px;
--bt-featureBlock-text-lh: 1.65;

--bt-featureBlock-dark-bg: var(--bt-navy);
--bt-featureBlock-dark-ink: #ffffff;

--bt-featureBlock-light-bg: #f2eee7;
--bt-featureBlock-light-ink: var(--bt-ink);

--bt-featureBlock-overlay: rgba(0,0,0,.35);
  
  


/* ---------- HEADER CONTACT (hero email + phones) ---------- */
--bt-headerInfo-top: 26px;
--bt-headerInfo-pad-x: 40px;
--bt-headerInfo-top-mobile: 16px;
--bt-headerInfo-pad-x-mobile: 16px;



--bt-section-pad-y: 100px;
}

/* =========================================================
   RESPONSIVE TOKEN OVERRIDES
   ========================================================= */
@media (max-width: 768px){
  .bt-scope{
    --bt-pad-x: clamp(16px, 4vw, 24px);
    --bt-agentBand-pad-x: 10px;

    /* hero meta smaller */
    --bt-heroMeta-icon: 20px;
    --bt-heroMeta-value: 15px;
    --bt-heroMeta-label: 15px;

    /* header contact spacing */
    --bt-headerInfo-top: var(--bt-headerInfo-top-mobile);
    --bt-headerInfo-pad-x: var(--bt-headerInfo-pad-x-mobile);
  }
}

/* =========================================================
   SHAPE PRESETS (opt-in)
   ========================================================= */
.bt-scope.bt-shape--pill{ --bt-radius-btn: 999px; --bt-radius-pill: 999px; }
.bt-scope.bt-shape--soft{ --bt-radius-btn: 18px; --bt-radius-pill: 999px; }
.bt-scope.bt-shape--rect{ --bt-radius-btn: 10px; --bt-radius-pill: 14px; --bt-radius-chip: 14px; }

/* =========================================================
   BASE ELEMENT NORMALIZATION (scoped)
   ========================================================= */
.bt-scope, .bt-scope *{ box-sizing: border-box; }
.bt-scope{
  width: 100%;
  background: var(--bt-bg);
  color: var(--bt-p-color);
  font-family: var(--bt-font-body);
}
.bt-scope img{ max-width: 100%; height: auto; display: block; }
.bt-scope a{ color: inherit; }

.bt-container{
  width: var(--bt-container);
  margin: 0 auto;
}
.bt-section{
  position: relative;
  padding: var(--bt-pad-y) 0;
}
.bt-section--light{
  background: var(--bt-surface);
  color: var(--bt-ink);

  /* Light surface keeps global heading tokens; only ensure body text reads correctly */
  --bt-p-color: var(--bt-ink-soft);
}
.bt-section--dark{
  background: var(--bt-bg, #000);
  color: #fff;

  /* ✅ dark surface => light ink tokens */
  --bt-h1-color: #fff;
  --bt-h2-color: #fff;
  --bt-h3-color: #fff;
  --bt-title-color: #fff;
  --bt-p-color: rgba(255,255,255,.92);
}
.bt-fullbleed{
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}
.bt-section--light .bt-bullets li{ color: var(--bt-ink-soft); }
.bt-section--light .bt-bullets li::before{ background: var(--bt-accent); }
.bt-section{
  width: 100%;
}
.bt-fullbleed{
  max-width: none !important;
  box-sizing: border-box;
}
.bt-fullbleed[class*="container"],
.bt-fullbleed.container,
.bt-fullbleed.container-fluid{
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.bt-fullbleed{
  overflow-x: clip;
}
.bt-fullbleed.bt-boxed{
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.bt-fullbleed__inner{
  width: 100%;
  max-width: var(--bt-container, 1120px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bt-gutter, clamp(16px, 4vw, 40px));
  padding-right: var(--bt-gutter, clamp(16px, 4vw, 40px));
  box-sizing: border-box;
}
.bt-fullbleed__inner--full{
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.bt-fullbleed > .bt-container{
  padding-left: var(--bt-gutter, clamp(16px, 4vw, 40px));
  padding-right: var(--bt-gutter, clamp(16px, 4vw, 40px));
  box-sizing: border-box;
}
.bt-section--boxed{
  /* No hace nada agresivo: se controla con .bt-container o .bt-boxed */
}
.bt-section--fullwidth{
  /* Igual: semántico. El que manda es .bt-fullbleed */
}
.bt-section--editorial{
  background: var(--bt-editorial-bg);
  padding: clamp(80px, 10vw, 120px) 0;
}
.bt-section{
  padding: var(--bt-section-pad-y) 0;
}
.bt-section--tight{
  padding: var(--bt-section-pad-y-sm) 0;
}
.bt-section__inner{
  width: min(100%, var(--bt-container-max));
  margin: 0 auto;
  padding-left: var(--bt-container-pad-x);
  padding-right: var(--bt-container-pad-x);
  position: relative;
  z-index: 2; /* above section backgrounds/overlays */
}
.bt-section__header{
  display: grid;
  gap: var(--bt-header-gap);
  width: min(100%, var(--bt-header-max));
  margin: 0 0 32px 0;
}
.bt-fullbleed,
[data-bt-fullbleed="true"]{
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: 100vw !important;
}
[data-bt-fullbleed="true"] .bt-section__inner{
  width: min(100%, var(--bt-container-max));
}
.bt-section--light .bt-floorplanCard{
  background: #fff;
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.bt-section--dark .bt-floorplanCard__meta li{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.bt-section__inner--fluid{
  max-width: 100%;
  width: 100%;
  padding-inline: var(
    --bt-section-inner-pad-inline,
    clamp(24px, 4vw, 80px)
  );
}
@media (max-width: 680px){.bt-section__inner,
  .bt-section__inner--fluid{
    padding-left:  max(var(--bt-container-pad-x), 20px);
    padding-right: max(var(--bt-container-pad-x), 20px);
  }}
.bt-section--tightHeader{
  --bt-section-pad-y: clamp(26px, 4.2vw, 56px);
}
.bt-container--wide{
  /* más ancho que el default (1200) */
  --bt-container: min(1440px, calc(100% - (var(--bt-pad-x) * 2)));
}
.bt-container--tightX{
  /* reduce el “aire” lateral */
  --bt-pad-x: clamp(14px, 2.2vw, 28px);
}
.bt-section__inner--wide{
  --bt-container-max: 100%;
}
.bt-section__inner--tightX{
  --bt-container-pad-x: clamp(14px, 2.2vw, 28px);
}
.bt-no-x-overflow{
  overflow-x: hidden;
}
/* ===================BISYS.TECH======================================
   UNIVERSAL · LANDING SYSTEM (Multi-landing, responsive, themable)
   - Headings: Montserrat
   - Body: Open Sans
   - Use by wrapping each landing in: <div class="bt-scope bt-theme--theme-alt"> ... </div>
   - Override tokens per landing: .bt-scope{ --bt-...: ... }
   ========================================================= */
body {
    display: block;
    margin: 0px;
}
/* ---------- FONT STACKS ---------- */
@media (max-width: 768px){/* Optional: avoid extreme tracking wrapping on small screens */}
/* ---------- HEADING FONT ROUTING ----------
   Default:
   - H1/H2 use display font (Cinzel) via --bt-font-display
   - Other headings and title helpers use --bt-font-heading (typically Open Sans)
   Override per landing by setting tokens in .bt-scope:
     --bt-font-display: "Cinzel", ...;
     --bt-font-heading: "Open Sans", ...;
*/
/* ---------- SHAPE PRESETS ---------- */
/* ---------- RESET / BASE ---------- */
/* ---------- TITLES (tokenized, scoped) ---------- */
/* Variants (use when you add bt-title--h1 / --h2 / --h3 / --h4) */
/* ---------- FULL-BLEED helper (WordPress boxed) ---------- */
/* ---------- GRID / LAYOUT UTILITIES ---------- */
.bt-grid{
  display:grid;
  gap: clamp(12px, 2vw, 28px);
}
.bt-grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bt-grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bt-grid--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px){.bt-grid--4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media (max-width: 680px){.bt-grid--2, .bt-grid--3, .bt-grid--4{ grid-template-columns: 1fr; }}
/* ---------- CARD ---------- */
.bt-card{
  background: var(--bt-surface);
  border-radius: var(--bt-radius-lg);
  box-shadow: var(--bt-shadow-1);
  overflow: hidden;
}
.bt-card--soft{
  background: var(--bt-surface-2);
  box-shadow: none;
}
.bt-card__pad{ padding: clamp(16px, 3vw, 28px); }
/* ---------- BUTTONS ---------- */
/* =========================================================
   SECTION MODULES (use what you need per landing)
   ========================================================= */
/* ---------- 1) HERO w/ video or image background ---------- */
/* cada item */
/* icon */
/* value + label */
/* FT² */
/* separators */
/* Responsive: wrap + reduce sizes */
/* Legacy hero reset sets margin:0!important on *; this scoped rule restores meta spacing */
/* ---------- 2) Intro split (text + image card) ---------- */
/* =========================================================
   EDITORIAL MEDIA (MATCH TEXT HEIGHT + CENTER IMAGE)
   ========================================================= */
/* =========================================================
   Editorial split (match text height + centered image)
   ========================================================= */
/* La fila: ambas columnas misma altura */
/* Media column */
/* Frame: ocupa TODO el alto de la fila */
.bt-mediaFrame--editorial{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;      /* ✅ centra vertical */
  justify-content: center;  /* centra horizontal */

  /* “aire azul” controlable */
  padding: var(--bt-editorial-frame-pad-y, 28px)
           var(--bt-editorial-frame-pad-x, 22px);
  box-sizing: border-box;
}
/* Placa azul: alto del texto (top/bottom por variable)
   + sobresale a la derecha/izquierda por variable */
.bt-mediaFrame--editorial::before{
  content:"";
  position:absolute;

  /* ✅ si quieres exacto alto de fila: top=0, bottom=0 */
  top: var(--bt-mediaFrame-top, 0);
  bottom: var(--bt-mediaFrame-bottom, 0);

  left: var(--bt-mediaFrame-left, 18%);
  right: var(--bt-mediaFrame-right, -12%);

  background: var(--bt-mediaFrame-bg, var(--bt-navy, #0e243f));
  border-radius: var(--bt-mediaFrame-radius, 28px);
  z-index: 0;
}
/* Imagen centrada dentro de la placa */
.bt-mediaFrame__card{
  position: relative;
  z-index: 1;
  width: 100%;

  /* ✅ tamaño de imagen controlable */
  max-width: var(--bt-editorial-media-maxw, 760px);

  /* ✅ asegura que no se “achique” raro */
  flex: 0 1 auto;

  margin: 0;
  border-radius: var(--bt-mediaCard-radius, 28px);
  overflow: hidden;
}
/* Imagen */
.bt-mediaFrame__card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  /* ✅ evita gaps raros por baseline */
  vertical-align: middle;
}
/* Mobile */
@media (max-width: 980px){.bt-mediaFrame--editorial{ padding: 0; }.bt-mediaFrame--editorial::before{ display:none; }.bt-mediaFrame__card{ max-width: 100%; }}
/* ---------- 3) Band / Dark strip ---------- */
/* ---------- 4) Feature bullets ---------- */
.bt-bullets{
  margin: 16px 0 0 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 0px;
}
.bt-bullets li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,.92);
}
.bt-bullets li::before{
  content:"";
  width:10px;
  height:10px;
  border-radius: var(--bt-radius-pill);
  background: var(--bt-accent-2);
  margin-top: 10px;
  flex: 0 0 10px;
}
/* ---------- 5) Model Unit cards (3-up) ---------- */
.bt-modelCards .bt-card{
  border-radius: var(--bt-radius-xl);
}
.bt-modelCards .bt-card__pad{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
/* ---------- 6) Residences layout (tabs-like header) ---------- */
.bt-tabsHeader{
  display:flex;
  justify-content:center;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap:wrap;
  margin: 18px 0 0 0;
}
.bt-tab{
  font-family: var(--bt-font-heading);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: var(--bt-radius-pill);
  border: 1px solid rgba(0,0,0,.12);
  color: var(--bt-ink);
  background: rgba(255,255,255,.65);
}
.bt-tab.is-active{
  background: var(--bt-navy);
  color:#fff;
  border-color: transparent;
}
/* ---------- 7) Amenities 3 cards ---------- */
.bt-amenityCard{
  position:relative;
  border-radius: var(--bt-radius-xl);
  overflow:hidden;
  min-height: 240px;
}
.bt-amenityCard__media{
  position:absolute;
  inset:0;
  z-index:0;
}
.bt-amenityCard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.bt-amenityCard__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.68), rgba(0,0,0,.10));
  z-index:1;
}
.bt-amenityCard__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: clamp(16px, 3vw, 26px);
  color:#fff;
}
.bt-amenityCard__title{
  font-family: var(--bt-font-heading);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin:0 0 6px 0;
  font-size: clamp(16px, 2.2vw, 20px);
}
.bt-amenityCard__text{
  margin:0;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height:1.5;
}
/* ---------- 8) FAQ accordion (styles only; JS/plugin controls open/close) ---------- */
/* ---------- 9) Form (Let’s make this easy) ---------- */
.bt-field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 12px;
}
.bt-label{
  font-size: 12px;
  color: var(--bt-ink-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--bt-font-heading);
  font-weight: 700;
}
/* =========================================================
   FIXES FOR EMBEDSOCIAL (mobile padding removal)
   ========================================================= */
.bt-lifestyle-copy .embedsocial-hashtag{
  padding-left: clamp(16px, 4vw, 100px) !important;
  padding-right: clamp(16px, 4vw, 100px) !important;
}
@media (max-width: 768px){.bt-lifestyle-copy .embedsocial-hashtag{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }}
/* =========================================================
   LEGACY (previous brand landing CSS)
   Included below; you can progressively migrate classes.
   ========================================================= */
.bt-page-header { 
    display: none;
}
.es-widget-header-detaibt-text {
    color: #ffffff!important;
}
.section-title {
    font-size: 45px;
    font-weight: 500;
    color: rgb(27 96 137);
    margin-bottom: 10px;
    letter-spacing: -0.047em;
}
.section-subtitle {
    font-size: 25px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -0.047em;
}
.bt-content-wrapper {
    padding: 0px 0;
    overflow-x: hidden;
}
/* =========================================================
   RL · THEME TOKENS (PARAMETRIZABLES)
   - Puedes sobrescribir por página usando :root o un wrapper (.bt-scope)
   ========================================================= */
/* =========================================================
   RL · BASE OVERRIDES (para que los tokens “manden”)
   ========================================================= */
.es-widget-header-detaibt-text{ color: var(--bt-white) !important; }
.section-title{
  font-size: var(--bt-section-title-size) !important;
  color: var(--bt-accent) !important;
}
.section-subtitle{
  font-size: var(--bt-section-subtitle-size) !important;
  color: var(--bt-text-dark) !important;
}
/* =========================================================
   HERO FULL BLEED
   ========================================================= */
/* Reset scoped */
/* Full-bleed (sale del contenedor del tema) */
/* Por si el tema limita iframes */
/* Hero container */
/* Contenedor del video */
.bt-youtube-container{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  overflow: hidden !important;
}
/* VIDEO/IFRAME como background cover */
.bt-youtube-iframe{
  position: absolute !important;
  inset: 0 !important;            /* top/right/bottom/left = 0 */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;   /* CLAVE: llena el hero y recorta lo que sobre */
  z-index: 1 !important;
  pointer-events: none !important;
  border: 0 !important;
  background-color: #000 !important;
}
/* Asegurar altura correcta también en móvil */
/* Overlay */
.bt-video-overlay{
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, var(--bt-hero-overlay-a), var(--bt-hero-overlay-b)) !important;
  z-index: 2 !important;
}
/* =========================================================
   HEADER CONTACT (Email + Phones con icono)
   ========================================================= */
.bt-header-info{
  position: absolute !important;
  top: var(--bt-headerInfo-top, 26px) !important;
  left: 0 !important;
  width: 100% !important;
  padding: 0 var(--bt-headerInfo-pad-x, 40px) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  z-index: 4 !important;
  gap: 14px !important;
}
/* Pill base con icono */
.bt-contact-pill{
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  background: rgba(0,0,0,.28) !important;
  padding: 8px 18px 8px 8px !important;
  border-radius: var(--bt-radius-chip) !important;
  backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  transition: all 0.25s ease !important;
  line-height: 1 !important;
}
.bt-contact-pill:hover{
  background: rgba(0,0,0,.45) !important;
  transform: translateY(-1px) !important;
}
/* Icon circle */
.bt-icon{
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.15) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.bt-icon svg{
  width: 18px !important;
  height: 18px !important;
  fill: #fff !important;
  display: block !important;
}
/* Stack phones vertically */
.bt-phone-stack{
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  align-items: flex-end !important;
}
/* (Compat) si aún usas bt-company-pill en algún lado */
.bt-company-pill{
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  background: rgba(0, 0, 0, 0.28) !important;
  padding: 10px 18px !important;
  border-radius: var(--bt-radius-pill) !important;
  backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
/* =========================================================
   MAIN CONTENT
   ========================================================= */
.bt-divider{
  width: 150px !important;
  height: 2px !important;
  background: rgba(255,255,255,.9) !important;
  margin: 0 auto 26px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.25) !important;
}
.bt-description{
  color: var(--bt-p-color) !important;
  font-size: var(--bt-heroSubtitle-size, clamp(18px, 2.2vw, 34px)) !important;
  margin: 0 auto var(--bt-heroSubtitle-mb, 18px) !important;
  line-height: var(--bt-heroSubtitle-lh, 1.15) !important;
  text-transform: var(--bt-heroSubtitle-transform, uppercase) !important;
  letter-spacing: var(--bt-heroSubtitle-ls, .22em) !important;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.35) !important;
  opacity: .95 !important;
  position: relative !important;
  padding-bottom: var(--bt-heroSubtitle-underline-gap, 14px) !important;
}
/* =========================================================
   FALLBACK / OVERLAY / LOADING
   ========================================================= */
.bt-fallback-image{
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 1 !important;
  display: none;
}
.bt-play-overlay{
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.45) !important;
  display: none;
  justify-content: center !important;
  align-items: center !important;
  z-index: 5 !important;
  cursor: pointer !important;
}
.bt-play-button{
  width: 86px !important;
  height: 86px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 2.4rem !important;
  color: white !important;
  border: 3px solid rgba(255,255,255,.92) !important;
  transition: all 0.25s ease !important;
  line-height: 1 !important;
  user-select: none !important;
}
.bt-play-overlay:hover .bt-play-button{
  transform: scale(1.06) !important;
  background: rgba(255, 255, 255, 0.26) !important;
}
.bt-loading{
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: white !important;
  font-size: 1rem !important;
  z-index: 6 !important;
  background: rgba(0, 0, 0, 0.68) !important;
  padding: 14px 22px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  backdrop-filter: blur(6px) !important;
}
/* =========================================================
   SCROLL HIDDEN PARA CONTENEDOR ESPECÍFICO
   ========================================================= */
.bt-content-wrapper.px--safe {
    overflow: hidden !important;
    -ms-overflow-style: none !important;  /* IE y Edge */
    scrollbar-width: none !important;     /* Firefox */
}
.bt-content-wrapper.px--safe::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
.tw-px-\[2rem\] {
     padding-left: 0rem!important; 
     padding-right: 0rem!important; 
     max-width: 500px!important;
}
/* Responsive hero header / textos en móvil */
@media (max-width: 768px){
  /* Header (email + phones) - mantiene el layout original, solo compacta padding */
  .bt-header-info{
    top: var(--bt-headerInfo-top, 16px) !important;
    padding: 0 var(--bt-headerInfo-pad-x, 16px) !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }
  .bt-phone-stack{
    align-items: flex-end !important;
  }
  .bt-contact-pill{
    font-size: 0.90rem !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    padding: 8px 14px 8px 8px !important;
    background: rgba(0,0,0,.28) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    backdrop-filter: blur(6px) !important;
    white-space: nowrap !important;
  }
  .bt-icon{
    width: 30px !important;
    height: 30px !important;
  }
  .bt-icon svg{
    width: 16px !important;
    height: 16px !important;
  }
  .bt-description{
    font-size: clamp(14px, 3.6vw, 16px) !important;
    line-height: 1.2 !important;
  }
}
/* Logo centrado arriba del contenido (sobre el overlay) */
/* CTA blanco estilo mockup */
/* Botón universal token-driven */
/* =========================================================
   CTA · NAVY (universal, opt-in)
   - No pisa bt-cta-button--white (se usa mucho en hero)
   - Útil para secciones claras (como SplitCta light)
   ========================================================= */
/* SOLID (como imagen 1): navy + texto blanco. Hover mantiene navy (solo lift/shadow). */
/* OUTLINE (como imagen 2) con hover invertido (relleno navy + texto blanco) */
/* (Opcional) espacio entre tu descripción y el CTA para que respire */
/* ==========================================
   SECTION: Lifestyle
   ========================================== */
/* Full-bleed como el hero (sale del contenedor del tema) */
.bt-lifestyle{
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
/* Layout */
.bt-lifestyle-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 620px;
}
/* LEFT: media grid */
.bt-lifestyle-media{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0px 0px 0px 0px;
  align-items: stretch;
      background: #ffffff00;
}
/* Image cards */
.bt-img-card{
  width: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: #f3f3f3;
}
.bt-img-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* proportions like the example */
.bt-img-card--tall{ 
  height: 520px;  
  align-self: flex-start; 
  margin-top: 0;
}
.bt-img-card--short{ 
  height: 420px; 
  align-self: flex-end; 
  margin-bottom: 0;
}
/* RIGHT: copy block */
.bt-lifestyle-copy{
  background: linear-gradient(180deg, var(--bt-panel-grad-a) 0%, var(--bt-panel-grad-b) 100%);
  color: #fff;
  padding: 78px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bt-lifestyle-copy h2{
  font-size: var(--bt-h2-size) !important;
  line-height: var(--bt-h2-lh, 1.05) !important;
  letter-spacing: var(--bt-h2-ls, -0.02em) !important;
  margin: 0 0 20px 0;
  font-weight: var(--bt-h2-weight, 600) !important;
  color: var(--bt-h2-color);
}
.bt-lifestyle-copy p{
  margin: 0 0 14px 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.95;
}
/* Responsive lifestyle */
@media (min-width: 1025px){/* Izquierda: sin bordes arriba */.bt-img-card--tall{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 44px !important;
    border-bottom-right-radius: 44px !important;
  }/* Derecha: sin bordes abajo */.bt-img-card--short{
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 44px !important;
    border-top-right-radius: 44px !important;
  }}
@media (max-width: 1024px){.bt-lifestyle-inner{
    grid-template-columns: 1fr;
  }.bt-img-card--tall,
  .bt-img-card--short{
    border-radius: 34px !important; 
  }.bt-lifestyle-media{
    padding: 44px 18px;
    gap: 14px;
	    background: #ffffff00;
  }.bt-img-card{ border-radius: 34px; }.bt-img-card--tall{ height: 360px; }.bt-img-card--short{ height: 320px; }.bt-lifestyle-copy{
    padding: 46px 22px;
  }.bt-lifestyle-copy p{
    max-width: none;
  }}
@media (max-width: 520px){.bt-lifestyle-media{
    grid-template-columns: 1fr;
  }.bt-img-card--tall{ height: 320px; }.bt-img-card--short{ height: 280px; }}
/* ==========================================
   TWO COLUMNS + BUTTON BELOW INSIDE RL-LIFESTYLE SECTION
   ========================================== */
/* LEFT COLUMN - Content */
/* RIGHT COLUMN - Video Container */
/* VIDEO BUTTON - Centered below columns */
.bt-video-button-container {
    text-align: center;

}
/* Botón completamente redondeado sin enlace */
.bt-video-button {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #0b3a5d !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    min-width: 220px;
    font-family: inherit;
    outline: none;
}
.bt-video-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.bt-video-button:active {
    transform: translateY(-1px);
}
.bt-video-button:focus {
    outline: 2px solid #c3c1b2;
}
/* RESPONSIVE */
@media (max-width: 1024px) {.bt-video-button-container {
        margin-top: 50px;
        padding-top: 30px;
    }}
@media (max-width: 768px) {.bt-video-button-container {
        margin-top: 40px;
        padding-top: 30px;
    }.bt-video-button {
        padding: 16px 35px;
        font-size: 14px;
        min-width: 200px;
    }}
@media (max-width: 480px) {.bt-video-button {
        width: 100%;
        min-width: auto;
        text-align: center;
        padding: 14px 20px;
    }}
/* ============================================
   GRID DE 4 COLUMNAS EN UNA FILA
   ============================================ */
/* CONTENEDOR PRINCIPAL */
.prop-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}
/* ENCABEZADO */
.prop-grid-header {
    margin-bottom: 50px;
}
.prop-grid-title {
    font-size: 42px;
    font-weight: 300;
    color: #000;
    margin-bottom: 10px;
}
.prop-grid-subtitle {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
/* 4 COLUMNAS EN UNA FILA */
.prop-grid-wrapper .grid.grid--flexCells {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 25px !important;
    width: 100% !important;
    overflow: visible !important;
}
/* (100% - (3 gaps de 25px)) / 4 = 25% - 18.75px */
.prop-grid-wrapper .grid.grid--flexCells .cell {
    flex: 0 0 calc(25% - 18.75px) !important;
    width: calc(25% - 18.75px) !important;
    max-width: calc(25% - 18.75px) !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}
/* ESTILOS VISUALES DE LAS TARJETAS */
.prop-grid-wrapper .bt-listing-teaser {
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    background: white !important;
    border: 1px solid #eee !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}
.prop-grid-wrapper .bt-listing-teaser:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
}
/* IMAGEN Y OVERLAY DE PRECIO */
.prop-grid-wrapper .bt-listing-teaser__image-container {
    height: 200px !important;
    position: relative !important;
}
.prop-grid-wrapper .listing-card__image {
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
}
.prop-grid-wrapper .listing-card__cover-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent) !important;
    padding: 15px 20px !important;
}
.prop-grid-wrapper .listing-card__price {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
}
/* ETIQUETA "NEW ON SITE" */
.prop-grid-wrapper .bt-sash--listing-card .bt-sash--new {
    background: #c3c1b2!important;
    color: #000 !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}
/* INFORMACIÓN */
.prop-grid-wrapper .listing-card__info {
    padding: 20px !important;
    flex-grow: 1 !important;
}
/* OCULTAR ELEMENTOS */
.prop-grid-wrapper .grid.grid--center.mb-16,
.prop-grid-wrapper .bt-listing-teaser__image-cta,
.prop-grid-wrapper .bt-listing__favorite-container,
.prop-grid-wrapper .bt-listing__slide-count-pill,
.prop-grid-wrapper .listing-card__disclaimer-wrapper {
    display: none !important;
}
/* BOTÓN "VIEW ALL" */
.prop-grid-view-all {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.prop-grid-view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #0a588e!important;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.prop-grid-view-all-btn:hover {
    background: #333;
    color: #fff!important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* ============================================
   CARRUSEL RESPONSIVE
   ============================================ */
@media (max-width: 600px){/* Que el carrusel use todo el ancho disponible */.bt-card-slider.bt-listing-teaser--vertical-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }/* Cada tarjeta de listing al 100% del ancho */.bt-card-slider .bt-card-wrapper,
  .bt-card-slider .bt-listing-teaser {
    width: 100% !important;
    max-width: 100%;
  }/* Imagen: que no quede "aplastada" ni cortada raro */.bt-card-slider .bt-cover__wrapper.listing-card__image {
    background-size: cover;
    background-position: center;
    height: 220px;   /* ajusta este valor según lo que te guste */
  }/* Zona de los botones de navegación debajo del slide */.bt-card-slider__prev-next--below {
    text-align: center;
    padding-top: 10px;
  }/* Botones prev/next más compactos y centrados */.bt-card-slider__prev-next--below .flickity-prev-next-button {
    position: static !important;   /* que no se muevan raro */
    transform: none !important;
    display: inline-flex;
    width: 36px;
    height: 36px;
    margin: 0 6px;
  }/* Opcional: quitar fondo gris y dejar solo el borde */.bt-card-slider__prev-next--below .flickity-prev-next-button {
    background: transparent;
  }}
/* ============================================
   FORMULARIO GETRESPONSE
   ============================================ */
.gr-form-section getresponse-form {
  display: block;
  width: 100% !important;
  max-width: 100% !important;

}
/* RESPONSIVE - GRID 4→2→1 */
@media (max-width: 1024px) {.prop-grid-wrapper .grid.grid--flexCells {
        flex-wrap: wrap !important;
    }.prop-grid-wrapper .grid.grid--flexCells .cell {
        flex: 0 0 calc(50% - 12.5px) !important;
        width: calc(50% - 12.5px) !important;
        max-width: calc(50% - 12.5px) !important;
        margin-bottom: 25px !important;
    }}
@media (max-width: 768px) {.prop-grid-wrapper .grid.grid--flexCells .cell {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }.prop-grid-title {
        font-size: 32px !important;
    }.prop-grid-wrapper {
        padding: 40px 15px !important;
    }}
/* ==========================================
   NEW: FAQ SECTION - WHITE BACKGROUND WITH BLUE TEXT
   ========================================== */
/* Contenedor principal del FAQ */
/* Título del FAQ - Azul */
/* Descripción del FAQ - Azul */
/* Botón de contacto - Azul con texto blanco */
/* Icono de contacto opcional */
/* Versión alternativa del contenedor para usar dentro de bt-lifestyle-copy */
/* ==========================================
   BT · ACCORDION
   ========================================== */
/* Tokens (puedes moverlos a .bt-scope si lo prefieres) */
/* Contenedor del acordeón */
/* Item */
/* Botón/encabezado */
/* Ícono (tokenizable): default = + / - */
/* Strokes for +/− (on by default) */
/* Open state: hide/rotate vertical stroke = “−” by default */
/* Open state: swap custom icon mask if provided */
/* Contenido (panel) */
/* En open: solo padding; el height lo controla JS (scrollHeight) */
/* Responsive */
/* =========================================================
   BT · GRID UTILITY (PADDING CONTROL)
   ========================================================= */
.bt-grid--edgePad{
  padding-left: var(--bt-grid-pad-l, 0px);
  padding-right: var(--bt-grid-pad-r, 0px);
}
/* =========================================================
   BT · ACCORDION (DETAILS/SUMMARY SUPPORT + ICON LEFT OPTION)
   ========================================================= */
/* Si el item es <details>, permite abrir/cerrar sin JS */
/* Soporta [open] además de .is-open (para compatibilidad) */
/* Panel con animación sin JS (max-height).
   Nota: es más robusto que el “grid trick” (evita casos donde el texto no aparece) */
/* Altura máxima configurable (por si hay respuestas largas) */
/* Título del trigger (para que el icono no empuje) */
/* Variante: icono +/- a la izquierda */
/* =========================================================
   BT · AGENT BAND (REUTILIZABLE)
   ========================================================= */
@media (max-width: 640px){/* 1) Layout: apilar en este orden *//* 2) Quitar offsets en móvil (para que no se “descuadre”) *//* 3) Foto arriba, centrada, con aire *//* 4) Nombre + rol más compactos y elegantes *//* 5) Botón debajo del nombre *//* 6) Contacto hasta abajo, en bloque “tarjeta” *//* Si tienes wrapper grid: lo hacemos 1 columna en móvil *//* Labels más pequeños (para que no griten) *//* Links legibles pero sin gigantismo */}
/* ==========================================
   INVEST WITH CONFIDENCE SECTION
   ========================================== */
/* Sección completa con imagen de fondo */
.bt-invest-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
       background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px; /* Reducido de 500px */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px; /* Reducido de 80px */
}
/* Overlay para mejor legibilidad del texto */
.bt-invest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 58, 93, 0.85), rgba(6, 37, 63, 0.9));
    z-index: 1;
}
/* Contenedor del contenido (encima del overlay) */
.bt-invest-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}
/* Título - TODO EN MAYÚSCULAS */
.bt-invest-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0; /* Reducido de 24px */
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase; /* Todo en mayúsculas */
}
/* Texto - TODO EN MAYÚSCULAS */
.bt-invest-text {
    font-size: 16px; /* Reducido de 18px */
    line-height: 1.6; /* Reducido de 1.7 */
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase; /* Todo en mayúsculas */
    letter-spacing: 0.5px; /* Mejor legibilidad en mayúsculas */
}
.bt-invest-text p {
    margin: 0 0 10px 0; /* Reducido de 15px */
}
.bt-invest-text p:last-child {
    margin-bottom: 0;
}
/* Texto strong - CURSIVA, NO AMARILLO */
.bt-invest-strong {
    font-weight: 700;
    font-size: 18px; /* Reducido de 20px */
    font-style: italic; /* Cursiva */
    color: rgba(255, 255, 255, 0.95) !important; /* Blanco, no amarillo */
    margin-top: 8px !important; /* Reducido de 10px */
}
/* ==========================================
   FAQ SCROLL CONTAINER
   ========================================== */
/* Estilos personalizados para el scrollbar */
/* Para Firefox */
/* Ajustar el acordeón dentro del contenedor */
/* ==========================================
   TESTIMONIALS+FORM & FAQ SECTIONS FULL WIDTH
   ========================================== */
/* Aplica full-bleed a las secciones TESTIMONIALS+FORM y FAQ */
/* Asegura que el contenedor interior también use todo el ancho */
/* Para la sección FAQ específicamente, ajusta el contenedor del acordeón */
/* Asegura que el embed de testimonios también ocupe todo el ancho */
.bt-lifestyle-copy .embedsocial-hashtag{
  /* Desktop/general: padding fluido (ya no fijo) */
  padding-left: var(--bt-embed-pad-x) !important;
  padding-right: var(--bt-embed-pad-x) !important;
}
/* Móvil: sin padding (o mínimo) */
@media (max-width: 768px){.bt-lifestyle-copy .embedsocial-hashtag{
    padding-left: var(--bt-embed-pad-x-mobile) !important;
    padding-right: var(--bt-embed-pad-x-mobile) !important;
  }}
/* Ajusta el formulario GetResponse para que use todo el ancho disponible */
/* Responsive adjustments */
/* Responsive */
/* Responsive */
@media (max-width: 768px) {.bt-invest-section {
        min-height: 250px; /* Reducido proporcionalmente */
        padding: 30px 15px; /* Reducido de 60px */
    }.bt-invest-title {
        font-size: clamp(28px, 5vw, 36px);
        margin-bottom: 15px; /* Reducido de 20px */
    }.bt-invest-text {
        font-size: 14px; /* Reducido de 16px */
    }.bt-invest-strong {
        font-size: 16px; /* Reducido de 18px */
    }}
@media (max-width: 480px) {.bt-invest-section {
        min-height: 220px; /* Reducido de 350px */
        padding: 25px 15px; /* Reducido de 50px */
    }}
/* Responsive: Ajustar altura en pantallas más pequeñas */
/* =========================================================
   RL · THEME OVERRIDES (parametrizables)
   Cambia variables en :root (o en un wrapper) y listo.
   ========================================================= */
/* Titulares genéricos */
.bt-lifestyle-copy h2{ font-size: var(--bt-h2-size) !important; color: var(--bt-h2-color) !important; }
.bt-lifestyle-copy p{ font-size: var(--bt-p-size) !important; color: var(--bt-p-color) !important; }
/* Bloque 2 columnas */
/* FAQ (versión blanca con texto azul) */
/* Botones principales */
/* Sash "NEW" y acentos */
.prop-grid-wrapper .bt-sash--listing-card .bt-sash--new{
  background: var(--bt-accent-2) !important;
}
/* View all button */
.prop-grid-view-all-btn{
  background: var(--bt-accent) !important;
}
/* TEMP: enable carousel styles even without .bt-scope (compatibility) */
.bt-card{ flex-shrink:0; display:block; text-decoration:none; color:inherit; border-radius: 28px; background:#fff; box-shadow: 0 10px 30px rgba(0,0,0,.18); overflow:hidden; transition: transform .25s ease, box-shadow .25s ease; }
.bt-card:hover{ /*transform: translateY(var(--bt-translateHover)); box-shadow: 0 18px 44px rgba(0,0,0,.20); */}
.bt-card__pad{ padding: clamp(14px, 2.6vw, 22px); }
/* ============================================
   Carousel · Variants (generic)
   - Use variantClass in JS to apply.
   ============================================ */
/* Hide dots on any breakpoint */
/* Remove the default vertical margins (useful when the carousel acts as media) */
/* Overlay arrows over the viewport (no extra side gutters) */
/* Media fill: makes the carousel behave like a full-bleed <figure><img> (100% width/height, cover) */
/* ============================================
   Carousel en móvil
   ============================================ */
/* Variant: keep carousel logic but lock visuals to the stage background image */
/* =========================================================
   BT BUTTON SYSTEM (Generic)
   Use:
   - bt-btn bt-btn--primary  (light backgrounds)
   - bt-btn bt-btn--inverse  (dark backgrounds)
   Legacy aliases are mapped without duplicating styles.
   ========================================================= */
/* Alias mapping (no duplicate rules) */
/* ---------- BUTTON CONTRAST FIXES ON DARK BACKGROUNDS ---------- */
/* When primary button sits on hero/band (dark), keep contrast on hover */
/* Inverse button: keep border visible when background turns translucent on hover */
/* Ghost button: slightly stronger border for dark video/image backgrounds */
/* =========================================================
   BT · FULLWIDTH vs BOXED (EXTENSIÓN UNIVERSAL)
   - No rompe nombres existentes
   - Estándar: fondo fullwidth + contenido boxed (o full opcional)
   ========================================================= */
/* --- A) HARDEN bt-fullbleed (ya existe en tu CSS, aquí lo reforzamos) --- */
/* Si el tema/Bootstrap mete padding o max-width, esto ayuda a que el fullbleed sea real */
/* Evita “jitter” horizontal por subpixel en algunos temas */
/* --- B) FORZAR BOXED aunque el padre esté fullbleed (override con !important) --- */
.bt-boxed{
  width: 100% !important;
  max-width: var(--bt-container, 1120px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Si por error combinas bt-boxed + bt-fullbleed, bt-boxed gana */
/* --- C) WRAPPER UNIVERSAL DE CONTENIDO dentro de secciones fullbleed --- */
/* Úsalo cuando NO quieras depender de .bt-container directamente */
/* Contenido full (carruseles, grids grandes, etc.) */
/* Si dentro ya usas .bt-container, garantizamos gutters consistentes */
/* --- D) TOGGLE por sección (opcional, por si quieres semántica) --- */
/* --- E) “ANTI-OVERFLOW” (úsalo en el wrapper principal si tu tema hace scroll-x) --- */
/* =========================================================
   ADDON · Editorial Section Variant (reusable)
   ========================================================= */
/* Reusa bt-title--h1 pero lo “afina” solo aquí */
/* =========================================================
   ADDON · bt-mediaFrame 
   ========================================================= */
/* Defaults seguros (si no existen tokens) */
.bt-mediaFrame{
  --bt-mediaFrame-radius: 24px;
  --bt-mediaCard-radius: 24px;
  --bt-mediaFrame-bg: var(--bt-navy, #0e243f);
}
.bt-mediaFrame--editorial{
  position: relative;
}
/* Bloque navy detrás */
.bt-mediaFrame--editorial::before{
  content:"";
  position:absolute;
  top: var(--bt-mediaFrame-top);
  right: var(--bt-mediaFrame-right);
  bottom: var(--bt-mediaFrame-bottom);
  left: var(--bt-mediaFrame-left);
  background: var(--bt-mediaFrame-bg);
  border-radius: var(--bt-mediaFrame-radius);
  z-index: 0;
}
/* Card real de la imagen (sin bt-card) */
.bt-mediaFrame__card{
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: var(--bt-mediaCard-radius);
  overflow: hidden;
  background: transparent;
  box-shadow: none;

  /* evita que el rounded se “deforme” */
  transform: translateZ(0);
}
/* Imagen */
.bt-mediaFrame__card img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Responsive */
@media (max-width: 980px){.bt-mediaFrame--editorial::before{ display:none; }}
/* ==========================================
   BT · SCROLLBOX (UNIVERSAL)
   - Use for constrained-height content with custom scrollbar
   ========================================== */
.bt-scrollbox{
  width: 100%;
  max-height: var(--bt-scrollbox-maxh, 500px);
  overflow-y: auto;
  padding-right: var(--bt-scrollbox-pad-right, 10px);
}
/* Webkit scrollbar */
.bt-scrollbox::-webkit-scrollbar{ width: var(--bt-scrollbox-bar, 8px); }
.bt-scrollbox::-webkit-scrollbar-track{ background: var(--bt-scrollbox-track, rgba(255,255,255,.10)); border-radius: 10px; }
.bt-scrollbox::-webkit-scrollbar-thumb{ background: var(--bt-scrollbox-thumb, rgba(195,193,178,.80)); border-radius: 10px; }
.bt-scrollbox::-webkit-scrollbar-thumb:hover{ background: var(--bt-scrollbox-thumb-hover, rgba(195,193,178,1)); }
/* Firefox */
.bt-scrollbox{
  scrollbar-width: thin;
  scrollbar-color: var(--bt-scrollbox-thumb, rgba(195,193,178,.80)) var(--bt-scrollbox-track, rgba(255,255,255,.10));
}
/* =========================================================
   BT · SECTION SHELL (universal inner + header + fullbleed)
   Usage:
     <section class="bt-section bt-section--dark" data-bt-fullbleed="true">
       <div class="bt-section__inner">
         <header class="bt-section__header">
           <p class="bt-eyebrow">Eyebrow</p>
           <h2 class="bt-h2">Title</h2>
           <p class="bt-lead">Lead text</p>
         </header>
         ...
       </div>
     </section>
   ========================================================= */
.bt-eyebrow{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  opacity: .85;
}
/* Full-bleed helper (for boxed themes) */
/* Optional: full-bleed background, keep inner centered */
/* =========================================================
   BT · FLOORPLANS (cards grid + optional lightbox)
   Usage:
     <section class="bt-section bt-section--light bt-floorplans" data-bt-fullbleed="true">
       <div class="bt-section__inner">
         <header class="bt-section__header">...</header>
         <div class="bt-floorplans__grid">
           <article class="bt-floorplanCard" data-bt-lightbox="true" data-bt-lightbox-src="...">
             <div class="bt-floorplanCard__media"><img ...></div>
             <div class="bt-floorplanCard__body">
               <h3 class="bt-floorplanCard__title">Plan A</h3>
               <ul class="bt-floorplanCard__meta">
                 <li><strong>2</strong> Beds</li>
                 ...
               </ul>
             </div>
           </article>
         </div>
       </div>
     </section>
   ========================================================= */
.bt-floorplans__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bt-floorplan-gap);
}
@media (max-width: 980px){.bt-floorplans__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media (max-width: 640px){.bt-floorplans__grid{ grid-template-columns: 1fr; }}
.bt-floorplanCard{
  border-radius: var(--bt-floorplan-radius);
  overflow: hidden;
  background: var(--bt-floorplan-card-bg);
  border: 1px solid var(--bt-floorplan-border);
  box-shadow: var(--bt-floorplan-shadow);
  display: grid;
  grid-template-rows: auto 1fr;
  cursor: default;
}
.bt-floorplanCard[data-bt-lightbox="true"]{
  cursor: zoom-in;
}
.bt-floorplanCard__media{
  position: relative;
  height: var(--bt-floorplan-img-h);
  overflow: hidden;
  background: rgba(0,0,0,.08);
}
.bt-floorplanCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bt-floorplanCard__body{
  padding: 18px 18px 20px 18px;
  display: grid;
  gap: 12px;
}
.bt-floorplanCard__title{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}
.bt-floorplanCard__meta{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bt-floorplanCard__meta li{
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--bt-floorplan-meta-bg);
  border: 1px solid rgba(0,0,0,.06);
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}
.bt-floorplanCard__meta strong{
  font-weight: 900;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
/* =========================================================
   BT · LIGHTBOX (used by floorplans and any image cards)
   ========================================================= */
.bt-lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
  z-index: 999999;
}
.bt-lightbox.is-open{ display: flex; }
.bt-lightbox__panel{
  width: min(1080px, 100%);
  max-height: 88vh;
  background: rgba(10,10,10,.92);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
  position: relative;
}
.bt-lightbox__img{
  width: 100%;
  height: 88vh;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  background: #000;
}
.bt-lightbox__close{
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bt-lightbox__close:hover{
  background: rgba(255,255,255,.18);
}
/* Base */
/* Media slot (universal) */
/* When using band-style split sections, allow the media column to stretch (needed for media carousels to fill). */
/* Any direct child works: figure, div, video, iframe, etc. */
/* Optional decorator (back-compat): use on the media child when you want “card” styling */
/* Variant: mediaCrop (fixed media height + vertical centering) */
/* Opt-in: allow the media card/item to overlap the content column.
   This is intentionally scoped so it never affects carousels or other SplitCta instances. */
/* Variant: panel behind media (tokenized, non-invasive)
   ✅ Supports responsive overrides with *-sm variables (so inline desktop tokens don't block mobile fixes). */
/* Ensure content sits above the band */
/* =========================================================
   BT · splitCta MOBILE defaults for panelRight + mediaOverlap
   - No HTML changes required
   - Desktop inline tokens stay intact
   ========================================================= */
@media (max-width: 768px){/* ✅ Blue panel covers full width on mobile *//* ✅ Neutralize desktop shifts on mobile (even if defined inline) *//* ✅ Center the media card */}
/* =========================================================
   BT · UNIVERSAL PATCHES (generated)
   ========================================================= */
/* =========================================================
   BT · RADIUS EXTENSION
   ========================================================= */
/* =========================================================
   BT · INNER WIDTH MODES
   - Use .bt-section__inner--fluid to remove max-width boxing
   ========================================================= */
/* =========================================================
   BT · SPLIT CTA (Layout engine)
   - Reverse support (image right)
   - Media modes: card vs full (50% real)
   - Ratio tokens
   ========================================================= */
/* Default tokens (override per landing/section) */
/* Grid: two columns with parametric ratio */
/* Allow shrink */
/* Reverse: image right */
/* Header alignment */
/* ---------------------------------------------------------
   Media mode presets (token-only)
   - CARD: constrain max-width (optional)
   - FULL: occupy full column width + cover with min-height
   --------------------------------------------------------- */
/* If FULL needs a fixed visual height, set --bt-splitCta-media-minh on the section */
/* Base image safety (only when NOT using mediaCrop)
   Prevents the generic rule from overriding mediaCrop's 100% height (needed for object-position focus). */
/* Responsive: stack */
/* =========================================================
   bt-splitCta BAND — match mockup (amenities)
   ========================================================= */
/* Band: title/ink */
/* Band: list ink */
/* Band: force wide media like reference (default 60/40; override via tokens) */
/* Band: commonly flat media */
/* Band outline buttons (use class bt-splitCta__btn--outlineOnBand) */
/* =========================================================
   BT · CAROUSEL OVERLAY PANEL (generic, reusable)
   ========================================================= */
/* asegura “hero” alto bonito (ajusta si quieres) */
/* hace que el host/slider llene la altura del stage */
/* overlay centrado */
/* grid de filas */
/* fila (label + value) */
.bt-ovRow{
  display: grid;
  grid-template-columns: minmax(160px, var(--bt-overlay-label-w, 220px)) 1fr;
  gap: 12px;
  align-items: stretch;
}
.bt-ovKey,
.bt-ovVal{
  border: 1px solid var(--bt-overlay-cell-border, rgba(255,255,255,.40));
  border-radius: var(--bt-overlay-cell-radius, 10px);
  background: var(--bt-overlay-cell-bg, rgba(255,255,255,.06));
  padding: 12px 14px;
  line-height: 1.25;
}
.bt-ovKey{
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--bt-overlay-text, rgba(255,255,255,.92));
  display: grid;
  place-items: center;
  text-align: center;
}
.bt-ovVal{
  font-size: 14px;
  color: var(--bt-overlay-text-soft, rgba(255,255,255,.78));
}
/* responsive: en mobile stack */
@media (max-width: 720px){.bt-ovRow{
    grid-template-columns: 1fr;
  }.bt-ovKey{
    place-items: start;
    text-align: left;
  }}
/* =========================================================
   BT · RESPONSIVE SPACING POLISH (mobile-first safety)
   - Más “aire” vertical en secciones de texto en móvil
   - Mejor gutter lateral en móvil
   - NO rompe desktop (solo aplica <=680px)
   ========================================================= */
@media (max-width: 680px){/* Base gutters/padding *//* Si alguna sección pone --bt-section-inner-pad-inline:0, aún así dejamos gutter *//* Ritmo de texto (evita “amontonado” en móvil) *//* ===========================
     Split sections (bt-splitCta)
     =========================== *//* Cuando las columnas ya se apilan, fuerza un gap vertical mínimo aunque venga en 0 *//* Band sections: da aire vertical mínimo aunque el inline style lo ponga en 0 *//* Si el contenido del split usa padding-inline grande, limítalo a algo más cómodo en móvil */}
/* =========================================================
   BT · STAGE (genérico) — ALTURA INDEPENDIENTE DEL CONTENIDO
   - El stage manda el alto (height) por token
   - El contenido NO estira la sección
   - Política de overflow: scroll o clip
   ========================================================= */
/* Stage base */
/* Modo “alto fijo” explícito (recomendado para control total) */
/* Modo “auto” explícito (si quieres que crezca por contenido) */
/* Capa de background (para modo imagen fija) */
/* Si usas <img> o <video> como bg */
/* ✅ Contenido: ocupa TODO el stage y no lo estira */
/* ✅ Política de overflow del contenido */
/* Overlay (centrado). Por default no bloquea el scroll del contenido */
/* Si quieres que el overlay sea interactivo (links, botones, scroll) */
/* Si tu panel overlay debe poder scrollear dentro (cuando es grande) */
/* =========================================================
   BT · splitCta MOBILE — panel background ONLY behind MEDIA block
   - Keeps light content area visible
   - Blue panel follows the media stack (not whole section)
   ========================================================= */
@media (max-width: 768px){/* Disable the section-wide band on mobile *//* Create a band only behind the media block *//* Keep media card above the band *//* Ensure content stays readable on light background */}
/* =========================================================
   BT · splitCta actions — mobile spacing + centering
   ========================================================= */
@media (max-width: 768px){/* Centra la fila de CTAs en móvil aunque sea --left *//* Opcional: que cada botón tenga ancho cómodo y quede centrado */}
/* =========================================================
   BT · Carousel Overlay — FIX REAL (Mobile + double padding)
   The overlay element has BOTH: .bt-stage__overlay and .bt-carouselOverlay
   Each one adds padding, which reduces available height and causes clipping.
   This override forces a single padding source and correct max-height.
   ========================================================= */
/* Ensure scroll-panel max-height matches the actual inset padding */
@media (max-width: 768px){/* Use small-viewport height to avoid iOS/Chrome URL bar vh bugs *//* Stack rows to avoid squish + allow natural height */.bt-ovRow{ grid-template-columns: 1fr !important; gap: 10px; }}
/* =========================================================
   FIX MÓVIL · SECCIÓN "INTERIOR FEATURES" (bt-carouselOverlaySection)
   - Pisamos variables inline con !important
   - Compactamos tipografía/paddings para evitar scroll
   - Mantiene panel centrado como tu imagen 2
   ========================================================= */
@media (max-width: 768px){/* 1) Altura full screen real en móvil + menos padding del overlay *//* 2) El overlay que te mete padding extra (no depende del token anterior) *//* 3) Compacta celdas (menos alto = menos scroll) */}
/* =========================================================
   BT · AGENT BAND · MODIFIER
   Goal:
   - Keep AVATAR + NAME alignment exactly as before
   - Make MID column slightly narrower to free space
   - PHONE + EMAIL in 2 real columns
   - Contacts aligned to the TOP of the NAME (not the top of the whole band)

   Usage:
   <div class="bt-agentBand bt-agentBand--topContacts">...</div>
   ========================================================= */
/* mid stays visually aligned with avatar as before, just narrower */
/* right becomes the flexible column; we align it to the end (right) */
/* 2 real columns for PHONE | EMAIL */
/* each contact column */
/* Larger, premium links (doesn't touch the NAME styles) */
/* =========================================================
   BT · AGENT BAND (CARDS VARIANT)
   - Allows multiple agent "cards" inside .bt-agentBand__inner
   - Keeps existing typography (.bt-agentBand__name / __role / __label / __link)
   Markup:
   <div class="bt-agentBand bt-agentBand--cards ...">
     <div class="bt-agentBand__inner">
       <article class="bt-agentBandCard"> ... </article>
       <article class="bt-agentBandCard"> ... </article>
     </div>
   </div>
   ========================================================= */
/* Each card replicates old LEFT + MID (+ contacts moved into mid) */
/* reuse the same avatar styles */
/* content column */
/* =========================================================
   ✅ CONTACT GRID (FIX)
   Goal:
   - NO ellipsis on .bt-agentBand__link (email/phone should wrap)
   - If it doesn't fit, the whole .bt-agentBand__col should naturally
     flow to the next row (responsive “drop down” behavior)
   ========================================================= */
/* ensure inner items can shrink */
/* labels: slightly scalable, safe */
/* ✅ links: NEVER ellipsis, ALWAYS wrap */
/* Button aligns like your existing CTA */
/* =========================================================
   Responsive: stack cards
   ========================================================= */
/* Safety: cancel translate on smaller widths to avoid overlaps */
/* Mobile: center align like current agentBand mobile behavior */
/* =========================================================
   BT · AGENT BAND · MOBILE POLISH (bt-agentBand--topContacts)
   - Fix: avatar overlapping PHONE/EMAIL in small screens
   - Keep desktop exactly as-is; only affects <= 640px
   ========================================================= */
@media (max-width: 640px){/* 1) Stack cleanly + comfortable padding *//* 2) Center avatar + reduce size *//* 3) Keep name block centered; cancel inline offsets *//* Role spacing gets too wide on mobile *//* 4) Contacts become their own card-row under the CTA *//* 5) Typography tuned for mobile (prevents huge PHONE/EMAIL) */}
/* Extra-small devices */
/* =========================================================
   MODULE · HEADING STACK (Luxury / Serif caps)
   - For sections without background image (like "SIMILAR PROPERTIES")
   - Safe: only affects elements when classes below are used
   ========================================================= */
/* Optional display font token (fallback serif) */
/* Wrapper for title/subtitle/paragraph */
/* Comfortable vertical rhythm inside stack */
/* Title variant: uppercase + wide tracking (use on H2) */
/* Preset: “luxury header” like screenshot */
/* Helper: tight vertical padding for “just a header” sections */
/* =========================================================
   BT · FINAL OVERRIDES (do not remove)
   - Ensures H1/H2 use display font (Cinzel via --bt-font-display)
   - Ensures HeadingStack can align left reliably (bt-headingStack--left)
   Place at end to avoid "patch over patch" conflicts.
   ========================================================= */
/* H1/H2 routing to display font (tokenizable) */
/* HeadingStack tokenization + left modifier (robust) */
/* =========================================================
   BT · CONTAINER MODIFIERS (safe, per-section)
   - No rompe el bt-container global
   ========================================================= */
/* =========================================================
   BT · HEADINGSTACK COLOR MODIFIERS (safe, per-section)
   - Use when background is light and you want "brand ink" instead of soft gray
   ========================================================= */
/* Para el “section shell” nuevo (bt-section__inner) */
/* ==========================================
   ACCORDION ICONS

   DEFAULT (sin clase extra) = + / − con strokes.
   Si quieres cambiar a punto/bullet, agrega la clase:

     - en el scope:    <div class="bt-scope bt-accIcon--bullet">...
       o
     - en el acordeón: <div class="bt-accordion bt-accIcon--bullet">...

   Así evitamos romper el default en otras landings.
   ========================================== */
/* Tokens para bullet (no afectan el default mientras no se use la clase) */
/* BULLET MODE: apaga strokes (+/−) y dibuja punto */
/* =========================================================
   BT · AGENT CARDS (VARIANTE TRANSPARENTE · 2 AGENTES)
   - Reutiliza tipografías/tamaños de bt-agentBand (name/role/labels/links/button)
   - Sin fondo en tarjeta (deja ver el fondo de la sección)
   ========================================================= */
.bt-agentCards{
  width: 100%;
}
.bt-agentCards__inner{
  width: min(var(--bt-wrap, 1200px), calc(100% - 2*clamp(18px, 4vw, 60px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}
.bt-agentCard{
  /* IMPORTANTE: sin fondo para que se vea lo de atrás */
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}
/* Avatar circular (misma lógica visual que bt-agentBand, pero aislado al card) */
.bt-agentCard__avatar{
  width: var(--bt-agentBand-photo, 190px);
  height: var(--bt-agentBand-photo, 190px);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), rgba(0,0,0,.0) 55%),
              radial-gradient(circle at 60% 65%, rgba(0,0,0,.25), rgba(0,0,0,0) 60%),
              var(--bt-agentBand-avatar-bg, #1a2f49);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bt-agentCard__photo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform:
    translateY(var(--bt-agentBand-photo-shiftY, 0px))
    scale(var(--bt-agentBand-photo-scale, 1));
  transform-origin: center bottom;
  display: block;
}
/* meta: reutiliza estructura de bt-agentBand__contactGrid si lo aplicas en el HTML */
.bt-agentCard__meta{
  display: flex;
  gap: clamp(22px, 3vw, 46px);
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}
/* Responsive */
@media (max-width: 980px){.bt-agentCards__inner{
    grid-template-columns: 1fr;
  }}
@media (max-width: 640px){.bt-agentCard{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }.bt-agentCard__avatar{
    margin: 0 auto;
  }.bt-agentCard__meta{
    justify-content: center;
    text-align: left;
  }/* usa el mismo botón universal, solo lo centramos */}
/* =========================================================
   BT · CAROUSEL bgOnly (templates change, background stays fixed)
   - Use with a .bt-stage__bg layer + --bt-stage-image on the stage
   - Slides become blank blocks (no <img>) so nothing “parpadea”
   ========================================================= */
/* FIX: no bloquear clicks a los arrows del carrusel cuando hay overlay */
/* ...pero el panel del overlay sí debe ser interactivo */
/* por si acaso, asegurar que arrows estén arriba en el stack */
/* ==========================================================
   bt-universal-landing-system.responsive-patch.v7.css
   Reusable responsive fix via .bt-splitCta--overlapFix:
   - Problem range: 981px–1270px (buttons getting covered / overlap too aggressive)
   - Problem range: <=980px (panel covers text on stacked layout)
   This patch is intentionally narrow to avoid breaking desktop >1270 or mobile <768.
   Load AFTER bt-universal-landing-system.css
   ========================================================== */
/* Safety: prevent horizontal scroll from shifted media */
/* ----------------------------------------------------------
   981–1270px: keep 2 cols but reduce overlap aggression + protect CTA buttons
   ---------------------------------------------------------- */
@media (max-width: 1270px) and (min-width: 981px){/* Soften the overlap using the existing *-sm override hooks *//* Ensure content (and especially actions) stays above anything overlapped *//* Buttons: keep them readable & not cramped */}
/* ----------------------------------------------------------
   <=980px: stacked layout is active, but the panel pseudo-element
           still covers half the content area. Disable panel + neutralize overlap.
   ---------------------------------------------------------- */
@media (max-width: 980px){/* Kill the side panel for stacked layout (it’s designed for 2-col only) *//* Neutralize overlap shift when stacked (prevents image from drifting under text) *//* Let media span full width cleanly *//* Actions: nicer stacking */}
/* ----------------------------------------------------------
   <=768: keep your existing mobile behavior, just ensure no panel leaks in
   ---------------------------------------------------------- */
/* ============================================================
   SECTION 3 ONLY: aire vertical en contenido (NO universal)
   Breakpoints estándar: 481 / 769 / 981 / 1201 (solo min-width)
   ============================================================ */
/* Tablets horizontal / escritorio pequeño (a partir de 769px) */
@media (min-width: 768px) {/* Ajusta el selector si tu section3 no tiene id="section3" en producción *//* Separación extra para los CTAs para que no “toquen” el borde inferior */}
/* Escritorio (a partir de 981px) */
/* Escritorio grande (a partir de 1201px) */
/* === Villa Blanca specific responsive refinements (Section 3) ===
   Goal: keep desktop (>=1465px) intact, fix overlap between 769–1464px,
   and avoid the "panel eating content/buttons" around ~980–1270px.
   Apply by adding .bt-splitCta--overlapFix to the section (universal). */
@media (min-width: 769px) and (max-width: 980px){/* keep readable order: content first, media second */}
@media (min-width: 981px) and (max-width: 1200px){/* prevent button crowding on narrower desktop */}
/* ============================================================
   UNIVERSAL SplitCta Content Spacing
   - Mismo "aire" arriba/abajo en TODOS los bt-splitCta__content
   - Breakpoints estándar: 481 / 769 / 981 / 1201 (solo min-width)
   ============================================================ */
/* Base: móvil (0–480) */
/* A partir de 481px */
/* Tablets horizontal / escritorio pequeño (a partir de 769px) */
@media (min-width: 769px) {/* y aseguramos que los CTAs no queden pegados al borde inferior */}
/* Escritorio (a partir de 981px) */
/* Escritorio grande (a partir de 1201px) */
/* -------------------------
   Card
   ------------------------- */
/* -------------------------
   Track layout (center + gap)
   ------------------------- */
/* -------------------------
   Overlays
   ------------------------- */
/* -------------------------
   Arrows visibility (tokenized)
   Default: hidden
   - Show arrows if:
       --bt-showcase-arrows = 1 AND (slide-count > 2 OR --bt-showcase-arrows-when-two = 1)
   Needs data-slide-count on the carousel host OR wrapper.
   ------------------------- */
/* Show always if landing forces arrows on */
/* If you set slide count, we can hide when 1-2 even if arrows on */
/* -------------------------
   Mobile
   ------------------------- */
/* =========================================================
   OVERLAP WRAPPERS (tokenized)
   - Full-bleed optional via --bt-showcase-fullbleed
   ========================================================= */
.carousel-container-overlap{
  max-width: var(--bt-showcase-maxw);
  margin: 0 auto;
  width: 100%;
}
/* Ensure carousel aligns with container padding tokens */
/* If you want the light top section to create room for overlap */
.bt-overlapTop{
  padding-bottom: var(--bt-luxOverlap-topPadBottom, var(--bt-pad-y));
}
.bt-overlapBottom{
  margin-top: var(--bt-luxOverlap-bottomMarginTop, 0px);
  padding-top: var(--bt-luxOverlap-bottomPadTop, var(--bt-pad-y));
}
/* Force center alignment (luxShowcase only) */
/* ===== Arrows mobile only ===== */
/* ===== Responsive visibility helpers (strong) ===== */
/* Ajusta breakpoint si tu “mobile” es <= 768 */
/* ==============================
   NAV FULL WIDTH + INNER BOXED
   ============================== */
/* Wrapper */
/* inner boxed (esto es lo que centra tabs aunque el azul sea full width) */
/* Tabs */
/* ==============================
   PANELS
   ============================== */
/* Grid */
/* Media */
/* Content */
/* Footer */
/* ==============================
   RESPONSIVE
   - Móvil: tabs con scroll horizontal (una sola fila)
   - Contenido: una columna
   ============================== */
/* ==============================
   NAV FULL WIDTH (fondo 100vw) + INNER BOXED (tabs centrados)
   ============================== */
/* NAV vive dentro del container, pero el fondo se pinta a 100vw con ::before */
/* azul FULL WIDTH (aunque el nav esté dentro de .bt-container) */
/* inner boxed (esto lo dejas: centra tabs y controla el ancho) */
/* móvil: 1 sola fila con scroll (para que NO baje “MULEGE ORO”) */
/* =========================================================
   FEATURE GRID · UNIVERSAL
   ========================================================= */
.bt-featureGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bt-featureGrid-gap);
}
@media (max-width: 768px){.bt-featureGrid{
    grid-template-columns: 1fr;
  }}
.bt-featureBlock{
  position:relative;
  min-height: var(--bt-featureGrid-minh);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: var(--bt-featureBlock-pad);
  overflow:hidden;
}
/* MEDIA */
.bt-featureBlock__media{
  position:absolute;
  inset:0;
  z-index:0;
}
.bt-featureBlock__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.bt-featureBlock__overlay{
  position:absolute;
  inset:0;
  background: var(--bt-featureBlock-overlay);
  z-index:1;
}
/* CONTENT */
.bt-featureBlock__content{
  position:relative;
  z-index:2;
  max-width: 420px;
}
.bt-featureBlock__title{
  font-size: var(--bt-featureBlock-title-size);
  letter-spacing: var(--bt-featureBlock-title-ls);
  font-weight: var(--bt-featureBlock-title-weight);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bt-featureBlock__text{
  font-size: var(--bt-featureBlock-text-size);
  line-height: var(--bt-featureBlock-text-lh);
}
/* VARIANTS */
.bt-featureBlock--dark{
  background: var(--bt-featureBlock-dark-bg);
  color: var(--bt-featureBlock-dark-ink);
}
.bt-featureBlock--light{
  background: var(--bt-featureBlock-light-bg);
  color: var(--bt-featureBlock-light-ink);
}
.bt-featureBlock--media{
  color:#fff;
}
.bt-featureBlock--media .bt-featureBlock__title,
.bt-featureBlock--media .bt-featureBlock__text{
  color:#fff;
}
/* =========================================================
   FEATURE MOSAIC · 3 columns stacked tiles (universal)
   ========================================================= */
/* cada columna es un stack vertical (arriba/abajo/arriba/abajo...) */
/* tile base */
/* media tile */
/* content */
/* skins */
/* responsive */
/* =========================================================
   FEATURE MOSAIC · 3 cols x 2 rows (NUEVA VARIANTE)
   - NO rompe el bt-featureMosaic existente (stack por columnas).
   - Requiere markup con items (6 celdas) en lugar de 3 columnas stack.
========================================================= */
/* cada celda contiene 2 tiles (img+text o text+img) */
/* asegura altura consistente (si quieres ajustar alto global, token) */
/* Mobile: 1 columna */
/* =========================================================
   OVERRIDE SAFE (TOKEN-GATED)
   - Solo aplica si existen --bt-ovPanel-w / --bt-ovPanel-h
   - No toca otras landings
========================================================= */
/* Para que el 100% tenga referencia, sin tocar global:
   Solo en secciones que activan el token */
/* =========================================================
   Overlay Mode: FULL (solo cuando se activa)
   No afecta otros sliders
========================================================= */
/* Mata el scroll del content solo en modo full */
/* ✅ Capas: carrusel arriba para que flechas se vean (SIN tocar arrows) */
/* ✅ Clicks: overlay no tapa carrusel; panel sí es interactivo */
.bt-scope h3,
.bt-scope h4,
.bt-scope h5,
.bt-scope h6,
.bt-scope .bt-title{
  font-family: var(--bt-font-heading) !important;
}
.bt-scope h1,
.bt-scope h2,
.bt-scope .bt-main-title,
.bt-scope .bt-title--h1,
.bt-scope .bt-title--h2{
  font-family: var(--bt-font-display, var(--bt-font-heading)) !important;
}
.bt-section--light .bt-title{ color: var(--bt-ink); }
.bt-section--light .bt-subtitle,
.bt-section--light p{ color: var(--bt-ink-soft); }
.bt-scope .bt-title{
  font-family: var(--bt-title-font, var(--bt-font-heading)) !important;
  font-weight: var(--bt-title-weight, 700) !important;
  line-height: var(--bt-title-lh, 1.18) !important;
  letter-spacing: var(--bt-title-ls, -0.02em) !important;
  text-transform: var(--bt-title-transform, none) !important;
  font-size: var(--bt-title-size, var(--bt-h2-size)) !important;
  margin: 0 0 var(--bt-title-mb, 14px) 0 !important;
  color: var(--bt-title-color, var(--bt-h2-color)) !important;}
.bt-scope .bt-title--h1{
  font-size: var(--bt-h1-size) !important;
  color: var(--bt-h1-color) !important;
  line-height: var(--bt-h1-lh, 1.08) !important;
  letter-spacing: var(--bt-h1-ls, var(--bt-title-ls, -0.02em)) !important;
  font-weight: var(--bt-h1-weight, var(--bt-title-weight, 700)) !important;}
.bt-scope .bt-title--h2{
  font-size: var(--bt-h2-size) !important;
  color: var(--bt-h2-color) !important;
  line-height: var(--bt-h2-lh, var(--bt-title-lh, 1.18)) !important;
  letter-spacing: var(--bt-h2-ls, var(--bt-title-ls, -0.02em)) !important;
  font-weight: var(--bt-h2-weight, var(--bt-title-weight, 700)) !important;}
.bt-scope .bt-title--h3{
  font-size: var(--bt-h3-size) !important;
  color: var(--bt-h3-color) !important;
  line-height: var(--bt-h3-lh, 1.2) !important;
  letter-spacing: var(--bt-h3-ls, var(--bt-title-ls, -0.02em)) !important;
  font-weight: var(--bt-h3-weight, var(--bt-title-weight, 100)) !important;}
.bt-scope .bt-title--h4{
  font-size: var(--bt-h4-size) !important;
  color: var(--bt-h4-color, var(--bt-h3-color)) !important;
  line-height: var(--bt-h4-lh, 1.25) !important;
  letter-spacing: var(--bt-h4-ls, var(--bt-title-ls, -0.02em)) !important;
  font-weight: var(--bt-h4-weight, var(--bt-title-weight, 700)) !important;}
.bt-scope .bt-subtitle{
  font-family: var(--bt-font-heading) !important;

  /* H3 coherente */
  font-size: var(--bt-h3-size) !important;
  line-height: var(--bt-h3-lh, 1.2) !important;
  font-weight: var(--bt-subtitle-weight, var(--bt-h3-weight, 600)) !important;

  /* por defecto NO forzamos caps/tracking amplio (para no romper otros usos) */
  text-transform: var(--bt-subtitle-transform, none) !important;
  letter-spacing: var(--bt-subtitle-ls, var(--bt-h3-ls, -0.01em)) !important;

  margin: 0 0 var(--bt-subtitle-mb, 10px) 0 !important;
  color: var(--bt-subtitle-color, var(--bt-h3-color)) !important;
}
.bt-scope .bt-subtitle--capsWide{
  text-transform: uppercase !important;
  letter-spacing: var(--bt-subtitle-capsWide-ls, .32em) !important;
  font-weight: var(--bt-subtitle-capsWide-weight, 500) !important;
}
.bt-text{
  font-size: var(--bt-p-size);
  line-height: var(--bt-p-lh, 1.75);
  margin: var(--bt-p-margin, 0);
  color: var(--bt-p-color);
  text-align: var(--bt-p-align, left);
}
.bt-input, .bt-textarea{
  width:100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--bt-radius-pill);
  padding: 12px 14px;
  font-size: 14px;
  outline:none;
}
.bt-textarea{
  border-radius: 18px;
  min-height: 120px;
  resize: vertical;
}
@media (max-width: 768px){.bt-main-title{
    font-size: clamp(26px, 7.5vw, 42px) !important;
    margin-bottom: 4px !important;
    line-height: 1.02 !important;
  }}
.prop-grid-wrapper .listing-card__info .bt-text--block {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-bottom: 12px !important;
}
.bt-main-title{ font-size: var(--bt-h1-size) !important; color: var(--bt-h1-color) !important; }
.bt-section--editorial .bt-title--h1{
  color: var(--bt-editorial-title-color) !important;
  font-size: var(--bt-editorial-title-size) !important;
  line-height: var(--bt-editorial-title-lh) !important;
  letter-spacing: var(--bt-editorial-title-tracking) !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
}
.bt-section--editorial .bt-subtitle{
  color: var(--bt-editorial-subtitle-color) !important;
  font-size: var(--bt-editorial-subtitle-size) !important;
  letter-spacing: var(--bt-editorial-subtitle-tracking) !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}
.bt-section--editorial .bt-text{
  color: var(--bt-editorial-text-color) !important;
  font-size: var(--bt-editorial-text-size) !important;
  line-height: var(--bt-editorial-text-lh) !important;
  max-width: var(--bt-editorial-text-maxw);
}
@media (max-width: 680px){.bt-scope .bt-text{ margin: 0 0 var(--bt-text-gap, 16px) 0; }.bt-scope .bt-text:last-child{ margin-bottom: 0; }}
.bt-scope .bt-title--capsWide{
  text-transform: uppercase !important;
  letter-spacing: var(--bt-title-capsWide-ls, .22em) !important;
  font-weight: var(--bt-title-capsWide-weight, var(--bt-title-weight, 500)) !important;
}
.bt-scope h1,
.bt-scope h2,
.bt-scope .bt-main-title,
.bt-scope .bt-title--h1,
.bt-scope .bt-title--h2{
  font-family: var(--bt-font-display, var(--bt-font-heading)) !important;
}
.bt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  
  /* CTA text wrapping + centering */
  text-align:center;
  line-height:1.35;
  white-space:normal;
  flex-wrap:wrap;
gap:10px;
  padding: 12px 22px;
  border-radius: var(--bt-radius-btn);
  font-family: var(--bt-font-heading);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  transition: transform .15s ease, opacity .15s ease;
}
.bt-btn:hover{ transform: translateY(-1px); opacity:.95; }
.bt-btn--solid{
  background: var(--bt-btn-bg);
  color: var(--bt-btn-fg);
}
.bt-btn--ghost{
  background: var(--bt-btn-bg-ghost);
  color: var(--bt-btn-fg-ghost);
  border-color: var(--bt-btn-border);
}
.bt-btn--dark{
  background: var(--bt-navy);
  color: #fff;
}
.bt-modelCards .bt-btnRow{
  margin-top:auto;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}
.bt-form .bt-btn{ width: 100%; }
.bt-cta-row{
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}
.bt-cta-button{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  
  text-align: center !important;
  white-space: normal !important;
  flex-wrap: wrap !important;
  row-gap: 6px !important;
padding: var(--bt-cta-pad-y, 16px) var(--bt-cta-pad-x, 34px) !important;

  background: var(--bt-cta-bg, rgba(255, 255, 255, 0.16)) !important;
  color: var(--bt-cta-color, #fff) !important;

  text-decoration: none !important;
  border-radius: var(--bt-cta-radius, var(--bt-radius-pill)) !important;

  font-family: var(--bt-cta-font-family, inherit) !important;
  font-weight: var(--bt-cta-font-weight, 700) !important;
  font-size: var(--bt-cta-font-size, 1.05rem) !important;
  letter-spacing: var(--bt-cta-letter-spacing, .04em) !important;
  line-height: var(--bt-cta-line-height, 1.35) !important;

  text-transform: var(--bt-cta-transform, uppercase) !important;

  border: var(--bt-cta-border-width, 2px) solid var(--bt-cta-border-color, rgba(255, 255, 255, 0.28)) !important;

  backdrop-filter: var(--bt-cta-blur, blur(10px)) !important;

  transition: var(--bt-cta-transition, all 0.25s ease) !important;
}
.bt-cta-button:hover{
  background: rgba(255, 255, 255, 0.26) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22) !important;
}
.bt-cta-secondary{
  background: rgba(0,0,0,0.18) !important;
}
.bt-cta-button--white{
  background: var(--bt-ctaWhite-bg) !important;
  color: var(--bt-ctaWhite-fg) !important;
  border: 2px solid var(--bt-ctaWhite-border) !important;
  box-shadow: var(--bt-ctaWhite-shadow) !important;
  border-radius: var(--bt-ctaWhite-radius) !important;
  letter-spacing: var(--bt-cta-letter-spacing, .22em) !important;
}
.bt-cta-button--white:hover{
  background: var(--bt-ctaWhite-bg-hover) !important;
  color: var(--bt-ctaWhite-fg-hover) !important;
  border-color: var(--bt-ctaWhite-border-hover) !important;
}
.bt-scope .bt-cta-button--token{
  background: var(--bt-cta-bg, transparent) !important;
  color: var(--bt-cta-fg, var(--bt-navy)) !important;

  border-style: solid !important;
  border-width: var(--bt-cta-border-w, var(--bt-cta-border-default, 2px)); 
  border-color: var(--bt-cta-border, rgba(13,32,59,.25)) !important;

  border-radius: var(--bt-cta-radius, 10px) !important;
  box-shadow: var(--bt-cta-shadow, none) !important;
}
.bt-scope .bt-cta-button--token:hover{
  background: var(--bt-cta-bg-hover, var(--bt-offwhite)) !important;
  color: var(--bt-cta-fg-hover, var(--bt-navy)) !important;
  border-color: var(--bt-cta-border-hover, rgba(13,32,59,.35)) !important;
}
.bt-cta-button--solidNavy{
  background: var(--bt-navy, #0b2a44) !important;
  color: #fff !important;
  border-color: var(--bt-navy, #0b2a44) !important;
  backdrop-filter: none !important;
  letter-spacing: .22em !important;
  border-radius: 10px !important;
  padding: 14px 30px !important;
}
.bt-cta-button--solidNavy:hover{
  background: #ffffff !important;
  color: var(--bt-navy, #0e243f) !important;
  border-color: var(--bt-navy, #0e243f) !important;
}
.bt-cta-button--outlineNavy{
  background: #fff !important;
  color: var(--bt-navy, #0b2a44) !important;
  border-color: var(--bt-navy, #0b2a44) !important;
  backdrop-filter: none !important;
  letter-spacing: .22em !important;
  border-radius: 10px !important;
  padding: 14px 30px !important;
  box-shadow: none !important;
}
.bt-cta-button--outlineNavy:hover{
  background: var(--bt-navy, #0e243f) !important;
  color: #ffffff !important;
  border-color: var(--bt-navy, #0e243f) !important;
}
.bt-contact-button {
    display: inline-block;
    padding: 18px 45px;
    background: rgb(27 96 137) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 3px solid rgb(27 96 137) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(27, 96, 137, 0.2);
    cursor: pointer;
    font-family: inherit;
    outline: none;
    position: relative;
}
.bt-contact-button:hover {
    background: transparent !important;
    color: rgb(27 96 137) !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(27, 96, 137, 0.25);
}
.bt-contact-button:active {
    transform: translateY(-1px);
}
.bt-contact-button:focus {
    outline: 2px solid rgb(27 96 137);
}
.bt-contact-button::after {
    /*content: "✉";*/
    margin-left: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
}
.bt-contact-button:hover::after {
    transform: scale(1.1);
}
.bt-contact-button{
  background: var(--bt-accent) !important;
  border-color: var(--bt-accent) !important;
}
.bt-contact-button:hover{
  color: var(--bt-accent) !important;
}
.bt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 40px;

  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  text-decoration:none;
  cursor:pointer;
  border:3px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  line-height:1;
}
.bt-btn:hover{ transform: translateY(-3px) scale(1.03); }
.bt-btn--primary{
  background: var(--ls-accent, rgb(27 96 137));
  color:#fff;
  border-color: var(--ls-accent, rgb(27 96 137));
  box-shadow:0 4px 15px rgba(0,0,0,.12);
}
.bt-btn--primary:hover{ background:transparent; color: var(--ls-accent, rgb(27 96 137)); }
.bt-btn--inverse{
  background:#0b3a5d;
  color: var(--ls-panel-grad-a, #0b3a5d);
  border-color:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,.20);
}
.bt-btn--inverse:hover{ background: rgba(255,255,255,.12); color:#fff; }
:is(.bt-btn.bt-btn--primary, .prop-grid-view-all-btn, .bt-contact-button){}
:is(.bt-btn.bt-btn--inverse, .bt-video-button){}
.bt-btn--inverse:hover{
  border-color: rgba(255,255,255,.65);
}
.bt-btn--ghost{
  border-color: rgba(255,255,255,.55);
}
@media (max-width: 640px){.bt-agentCard .bt-cta-button{
    margin: 0 auto;
    width: min(320px, 100%);
  }}
.bt-accordion{
  width: 100%;
  max-width: var(--bt-acc-maxw);
  margin: 0 auto;
}
.bt-accordion__item{
  border-bottom: var(--bt-acc-border);
  margin-bottom: 0;
  overflow: hidden;
}
.bt-accordion__item:first-child{
  border-top: var(--bt-acc-border);
}
.bt-accordion__trigger{
  width: 100%;
  padding: var(--bt-acc-q-pad-y) var(--bt-acc-q-pad-x);
  text-align: left;
  background: transparent;
  border: none;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  cursor: pointer;
  font-family: inherit;
  transition: color var(--bt-acc-dur) var(--bt-acc-ease);

  color: var(--bt-acc-q-color) !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;

  margin: 0 !important;
}
.bt-accordion__trigger:hover{
  color: var(--bt-acc-q-color-hover) !important;
}
.bt-accordion__item.is-open .bt-accordion__trigger{
  color: var(--bt-acc-q-color-hover) !important;
}
.bt-accordion__icon{
  flex-shrink: 0;
  width: var(--bt-acc-icon-size);
  height: var(--bt-acc-icon-size);
  position: relative;
  margin-left: var(--bt-acc-icon-gap);
  transition: transform var(--bt-acc-dur) var(--bt-acc-ease);
  color: currentColor;

  /* Custom icon surface (off by default) */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bt-acc-icon-bg);
  border-radius: var(--bt-acc-icon-radius);

  -webkit-mask: var(--bt-acc-icon-mask);
  mask: var(--bt-acc-icon-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.bt-accordion__icon::before,
.bt-accordion__icon::after{
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform var(--bt-acc-dur) var(--bt-acc-ease),
              opacity var(--bt-acc-dur) var(--bt-acc-ease);

  display: var(--bt-acc-icon-strokes-display);
}
.bt-accordion__icon::before{
  top: 50%;
  left: 0;
  right: 0;
  height: var(--bt-acc-icon-stroke);
  transform: translateY(-50%);
}
.bt-accordion__icon::after{
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--bt-acc-icon-stroke);
  transform: translateX(-50%) rotate(var(--bt-acc-icon-v-rotate));
  opacity: var(--bt-acc-icon-v-opacity);
}
.bt-accordion__item.is-open .bt-accordion__icon::after{
  transform: translateX(-50%) rotate(var(--bt-acc-icon-v-rotate-open));
  opacity: var(--bt-acc-icon-v-opacity-open);
}
.bt-accordion__item.is-open .bt-accordion__icon{
  -webkit-mask: var(--bt-acc-icon-mask-open, var(--bt-acc-icon-mask));
  mask: var(--bt-acc-icon-mask-open, var(--bt-acc-icon-mask));
}
.bt-accordion__panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease-out, padding var(--bt-acc-dur) var(--bt-acc-ease);
  padding: 0 var(--bt-acc-a-pad-x);
}
.bt-accordion__item.is-open .bt-accordion__panel{
  padding: 0 var(--bt-acc-a-pad-x) var(--bt-acc-a-pad-bottom) 0;
}
.bt-accordion__content{
  color: var(--bt-acc-a-color) !important;
  font-size: var(--bt-acc-a-size);
  line-height: var(--bt-acc-a-lh);
  padding-left: var(--bt-acc-a-indent);
}
.bt-accordion__content p{
  margin: 0 0 15px 0;
}
.bt-accordion__content p:last-child{
  margin-bottom: 0;
}
@media (max-width: 768px){.bt-accordion__trigger{
    padding: 18px 0;
    font-size: 16px;
  }.bt-accordion__icon{
    width: 20px;
    height: 20px;
  }.bt-accordion__content{
    padding-left: 20px;
    font-size: 15px;
  }}
@media (max-width: 480px){.bt-accordion__trigger{
    padding: 16px 0;
    font-size: 15px;
  }.bt-accordion__content{
    padding-left: 15px;
  }}

/* =========================================================
   BT · ACCORDION (DETAILS/SUMMARY SUPPORT + ICON LEFT OPTION)
   ========================================================= */
.bt-accordion__item{
  display: block;
}
.bt-accordion__item > summary.bt-accordion__trigger{
  list-style: none;
}
.bt-accordion__item > summary.bt-accordion__trigger::-webkit-details-marker{
  display:none;
}
.bt-accordion__item[open] .bt-accordion__trigger{
  color: var(--bt-acc-q-color-hover) !important;
}
.bt-accordion__item[open] .bt-accordion__icon::after{
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.bt-accordion__panel{
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--bt-acc-a-pad-x);
  transition: max-height 420ms ease, padding var(--bt-acc-dur) var(--bt-acc-ease);
}
.bt-accordion__item[open] .bt-accordion__panel,
.bt-accordion__item.is-open .bt-accordion__panel{
  max-height: var(--bt-acc-maxh);
  padding: 0 var(--bt-acc-a-pad-x) var(--bt-acc-a-pad-bottom) 0;
}
.bt-accordion__title{
  flex: 1 1 auto;
}
.bt-accordion--qa .bt-accordion__trigger{
  justify-content: flex-start;
}
.bt-accordion--qa .bt-accordion__icon{
  margin-left: 0;
  margin-right: var(--bt-acc-icon-gap);
}
.bt-accIcon--bullet .bt-accordion__icon::before,
.bt-accIcon--bullet .bt-accordion__icon::after{
  display: none !important;
}
.bt-accIcon--bullet .bt-accordion__icon{
  width: var(--bt-acc-bullet-size) !important;
  height: var(--bt-acc-bullet-size) !important;
  border-radius: 999px !important;
  background: var(--bt-acc-bullet-color) !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.bt-form{
  background: var(--bt-surface);
  border-radius: var(--bt-radius-xl);
  box-shadow: var(--bt-shadow-1);
  padding: clamp(16px, 3vw, 30px);
}
.gr-form-section,
.gr-form-section .bt-lifestyle-inner,
.gr-form-section .bt-lifestyle-copy,
.gr-form-section .bt-lifestyle-media {
  max-width: 100%;
  overflow-x: hidden;
}
.gr-form-section .bt-lifestyle-media {
  display: block;
}
.gr-form-section .bt-form-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  display: flex;
    justify-content: center;
}
@media (max-width: 768px) {.gr-form-section .bt-form-wrapper {
    max-height: none;      
    overflow-y: visible;   
    padding: 1rem 0;       
  }}
.bt-section.bt-lifestyle.gr-form-section {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}
.bt-section.bt-lifestyle.gr-form-section .bt-lifestyle-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.bt-form-wrapper getresponse-form {
    width: 100% !important;
    max-width: 100% !important;
}
.bt-split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  align-items:center;
  gap: clamp(16px, 3vw, 46px);
}
.bt-split__media .bt-card{ border-radius: var(--bt-radius-xl); }
@media (max-width: 980px){.bt-split{ grid-template-columns: 1fr; }}
.bt-split--editorial{
  align-items: stretch;
  grid-template-columns: .95fr 1.05fr; /* opcional */
}
.bt-split--editorial .bt-split__media{
  width: 100%;
  overflow: visible;
  align-self: stretch;
}
@media (max-width: 980px){.bt-split--editorial{ grid-template-columns: 1fr; }}
.bt-two-columns-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 78px 40px 78px 40px;
    box-sizing: border-box;
}
.bt-two-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}
.bt-two-columns-content {
    text-align: left;
}
.bt-two-columns-title {
    font-size: var(--bt-h2-size) !important;
    font-weight: var(--bt-h2-weight, 600) !important;
    line-height: var(--bt-h2-lh, 1.1) !important;
    letter-spacing: var(--bt-h2-ls, -0.02em) !important;
    margin: 0 0 24px 0;
    color: #ffffff !important;
}
.bt-two-columns-description {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 0.95;
}
.bt-two-columns-video-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: #000;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}
.bt-two-columns-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 1024px) {.bt-two-columns-container {
        max-width: 900px;
        padding: 60px 30px 30px 30px;
    }.bt-two-columns-grid {
        gap: 40px;
        min-height: auto;
    }}
@media (max-width: 768px) {.bt-two-columns-container {
        padding: 50px 20px 20px 20px;
    }.bt-two-columns-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }.bt-two-columns-video-wrapper {
        order: -1;
    }.bt-two-columns-title {
        font-size: var(--bt-h2-size) !important;
    }.bt-two-columns-description {
        font-size: 16px;
    }}
@media (max-width: 480px) {.bt-two-columns-container {
        padding: 40px 15px 15px 15px;
    }.bt-two-columns-video-wrapper {
        border-radius: 12px;
    }}
.bt-two-columns-title{ color: var(--bt-h2-color) !important; }
.bt-two-columns-description{ color: var(--bt-p-color) !important; }
.bt-split--editorial{
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.bt-splitCta{ width:100%;}
.bt-splitCta__grid{
  gap: var(--bt-splitCta-gap);
  align-items: center;
}
.bt-splitCta__header{
  text-align: center;
  margin: 0 0 var(--bt-splitCta-header-mb) 0;
}
.bt-splitCta__header .bt-subtitle{ margin: 0; }
.bt-splitCta__actions{margin-top:50px; text-align:left;}
.bt-splitCta__media{
  display:flex;
  justify-content: var(--bt-splitCta-media-justify);
  align-items: var(--bt-splitCta-media-align);
  padding: var(--bt-splitCta-media-pad);
  min-height: var(--bt-splitCta-media-minh);
  min-width: 0;
}
.bt-splitCta--band .bt-splitCta__media{ align-self: stretch; }
.bt-splitCta--band .bt-splitCta__media :where(.bt-splitCta__mediaCard, .bt-splitCta__mediaItem){ height:100%; }
.bt-splitCta__media > :where(*){
  width: var(--bt-splitCta-media-child-w);
  max-width: var(--bt-splitCta-media-maxw);
  margin: 0;
  min-width: 0;
}
.bt-splitCta__mediaCard,
.bt-splitCta__mediaItem{
  border-radius: var(--bt-splitCta-media-radius);
  overflow: var(--bt-splitCta-media-overflow);
  box-shadow: var(--bt-splitCta-media-shadow);
}
.bt-splitCta--mediaCrop .bt-splitCta__media :where(.bt-splitCta__mediaCard, .bt-splitCta__mediaItem){
  height: var(--bt-splitCta-media-h);

  /* ✅ allow mobile overrides without fighting inline variables */
  transform: translate(
    var(--bt-splitCta-media-shiftX-sm, var(--bt-splitCta-media-shiftX, 0px)),
    var(--bt-splitCta-media-shiftY-sm, var(--bt-splitCta-media-shiftY, 0px))
  );

  will-change: transform;
}
@media (max-width: 768px){.bt-splitCta--mediaCrop .bt-splitCta__media :where(.bt-splitCta__mediaCard){
    height:auto;
    aspect-ratio: 4 / 3;
  }.bt-splitCta--mediaCrop .bt-splitCta__media :where(.bt-splitCta__mediaItem){
    height: var(--bt-splitCta-media-h-sm, var(--bt-splitCta-media-h));
  }}
.bt-splitCta--mediaCrop .bt-splitCta__media :where(img, video, iframe){
  height: 100%;
  object-fit: cover;
  object-position: var(--bt-splitCta-media-focus);
}
.bt-splitCta--mediaOverlap .bt-splitCta__grid,
.bt-splitCta--mediaOverlap .bt-splitCta__media{
  overflow: visible;
}
.bt-splitCta--mediaOverlap .bt-splitCta__content{
  position: relative;
  z-index: 2;
}
.bt-splitCta--mediaOverlap .bt-splitCta__media :where(.bt-splitCta__mediaCard, .bt-splitCta__mediaItem){
  position: relative;
  z-index: 3;
}
.bt-splitCta--panelRight,
.bt-splitCta--panelLeft{
  position: relative;
}
.bt-splitCta--panelRight::before,
.bt-splitCta--panelLeft::before{
  content:"";
  position:absolute;

  top: var(
    --bt-splitCta-panel-inset-top-sm,
    var(--bt-splitCta-panel-inset-top, var(--bt-splitCta-panel-top, 0px))
  );

  bottom: var(
    --bt-splitCta-panel-inset-bottom-sm,
    var(--bt-splitCta-panel-inset-bottom, var(--bt-splitCta-panel-bottom, 0px))
  );

  width: var(
    --bt-splitCta-panel-width-sm,
    var(--bt-splitCta-panel-width, 42%)
  );

  background: var(--bt-splitCta-panel-bg, var(--bt-navy));
  border-radius: var(--bt-splitCta-panel-radius, 0px);

  z-index: 0;
  pointer-events:none;
}
.bt-splitCta--panelRight::before{
  right: var(
    --bt-splitCta-panel-inset-right-sm,
    var(--bt-splitCta-panel-inset-right, 0px)
  );
}
.bt-splitCta--panelLeft::before{
  left: var(
    --bt-splitCta-panel-inset-left-sm,
    var(--bt-splitCta-panel-inset-left, 0px)
  );
}
.bt-splitCta--panelRight .bt-section__inner,
.bt-splitCta--panelLeft  .bt-section__inner{
  position: relative;
  z-index: 1;
}
@media (max-width: 768px){.bt-splitCta--panelRight{
    --bt-splitCta-panel-width-sm: 100%;
    --bt-splitCta-panel-inset-right-sm: 0px;
    --bt-splitCta-panel-inset-top-sm: 0px;
    --bt-splitCta-panel-inset-bottom-sm: 0px;
  }.bt-splitCta{
    --bt-splitCta-media-shiftX-sm: 0px;
    --bt-splitCta-media-shiftY-sm: 0px;
  }.bt-splitCta__media{
    justify-content: center;
  }.bt-splitCta__media > :where(*){
    margin-inline: auto;
    max-width: 100%;
  }}
.bt-splitCta__grid{
  display: grid;
  grid-template-columns: minmax(0, var(--bt-splitCta-col-media)) minmax(0, var(--bt-splitCta-col-content));
  gap: var(--bt-splitCta-gap);
  align-items: center;
}
.bt-splitCta__media,
.bt-splitCta__content{
  min-width: 0;
}
.bt-splitCta__content{
  min-width: 0;
  padding-inline: var(--bt-splitCta-content-pad-inline, 0px);
  padding-block: var(--bt-splitCta-content-pad-block, 0px);
}
.bt-splitCta--reverse .bt-splitCta__media{ order: 2; }
.bt-splitCta--reverse .bt-splitCta__content{ order: 1; }
.bt-splitCta__header{
  text-align: center;
  margin: 0 0 clamp(16px, 3vw, 28px) 0;
}
.bt-splitCta--mediaCard{
  --bt-splitCta-media-maxw: var(--bt-splitCta-media-maxw, 900px);
  --bt-splitCta-media-shadow: var(--bt-splitCta-media-shadow, var(--bt-shadow-1));
}
.bt-splitCta--mediaFull{
  --bt-splitCta-media-maxw: none;
  --bt-splitCta-media-child-w: 100%;
  --bt-splitCta-media-shadow: none;
  --bt-splitCta-media-fit: cover;
}
.bt-splitCta--mediaFull .bt-splitCta__media > :where(*){
  min-height: var(--bt-splitCta-media-minh);
}
.bt-splitCta--mediaFull .bt-splitCta__media :where(img, video, iframe){
  height: 100%;
  min-height: var(--bt-splitCta-media-minh);
}
.bt-splitCta:not(.bt-splitCta--mediaCrop) .bt-splitCta__mediaCard img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 980px){.bt-splitCta__grid{ grid-template-columns: 1fr; }.bt-splitCta__header{ text-align: left; }.bt-splitCta--mediaFull .bt-splitCta__mediaCard,
  .bt-splitCta--mediaFull .bt-splitCta__mediaCard img{
    min-height: 320px;
  }}
.bt-splitCta--band{
  background: var(--bt-splitCta-band-bg, var(--bt-accent, #1b6089));
  color: var(--bt-splitCta-band-ink, rgba(255,255,255,.92));
   padding-block: var(--bt-splitCta-band-pad-block, clamp(34px, 5vw, 64px));
}
.bt-splitCta--band .bt-title,
.bt-splitCta--band .bt-subtitle,
.bt-splitCta--band .bt-text{
  color: var(--bt-splitCta-band-ink, rgba(255,255,255,.92));
}
.bt-splitCta--band .bt-dashList li,
.bt-splitCta--band .bt-dashList li::before{
  color: var(--bt-splitCta-band-ink, rgba(255,255,255,.92));
}
.bt-splitCta--band{
  --bt-splitCta-col-media: 1.2fr;
  --bt-splitCta-col-content: .8fr;
}
.bt-splitCta--band{
  --bt-splitCta-media-radius: var(--bt-radius-none, 0px);
}
.bt-splitCta__btn--outlineOnBand{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
  padding: 18px 46px;
  letter-spacing: .18em;
  border-radius: 14px;
}
.bt-splitCta__btn--outlineOnBand:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 680px){.bt-splitCta__grid{
    gap: max(var(--bt-splitCta-gap, clamp(18px, 4vw, 64px)), 18px);
  }.bt-splitCta--band{
    padding-block: max(var(--bt-splitCta-band-pad-block, clamp(34px, 5vw, 64px)), 28px);
  }.bt-splitCta__content{
    padding-inline: clamp(18px, 6vw, 28px);
  }}
@media (max-width: 768px){.bt-splitCta--panelRight::before,
  .bt-splitCta--panelLeft::before{
    width: 0 !important;
    content: none !important;
  }.bt-splitCta--panelRight .bt-splitCta__media,
  .bt-splitCta--panelLeft  .bt-splitCta__media{
    position: relative;
    z-index: 0;
    padding: clamp(18px, 5vw, 26px);
    margin-inline: calc(-1 * max(var(--bt-container-pad-x, 20px), 20px)); /* full-bleed inside gutters */
  }.bt-splitCta--panelRight .bt-splitCta__media::before,
  .bt-splitCta--panelLeft  .bt-splitCta__media::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bt-splitCta-panel-bg, var(--bt-navy));
    z-index: -1;
    pointer-events: none;
  }.bt-splitCta__media :where(.bt-splitCta__mediaCard, .bt-splitCta__mediaItem){
    position: relative;
    z-index: 1;
    margin: 0 auto;
  }.bt-splitCta__content{
    position: relative;
    z-index: 1;
  }}
@media (max-width: 768px){.bt-splitCta__actions,
  .bt-splitCta__actions--left{
    justify-content: center !important;
  }.bt-splitCta__actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;              /* separación horizontal y vertical */
    row-gap: 12px;          /* por si tu navegador separa */
    width: 100%;

  }.bt-splitCta__actions .bt-cta-button{
    min-width: min(320px, 100%);
    text-align: center;
  }}
.bt-scope, .bt-section, .bt-splitCta { overflow-x: clip; }
@supports not (overflow-x: clip){.bt-scope, .bt-section, .bt-splitCta { overflow-x: hidden; }}
@media (max-width: 1270px) and (min-width: 981px){.bt-splitCta.bt-splitCta--overlapFix{
    --bt-splitCta-media-shiftX-sm: clamp(-140px, -10vw, -70px);
    --bt-splitCta-media-shiftY-sm: clamp(-40px, -3.5vw, -12px);
    --bt-splitCta-media-maxw: min(720px, 52vw);
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__content{
    position: relative;
    z-index: 5;
    padding-bottom: clamp(28px, 3vw, 64px);
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__actions{
    position: relative;
    z-index: 6;
    margin-top: clamp(18px, 2.2vw, 40px);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }.bt-splitCta.bt-splitCta--overlapFix .bt-cta-button{
    min-width: 170px;
    text-align: center;
    white-space: nowrap;
  }}
@media (max-width: 980px){.bt-splitCta.bt-splitCta--overlapFix.bt-splitCta--panelRight::before,
  .bt-splitCta.bt-splitCta--overlapFix.bt-splitCta--panelLeft::before{
    display: none !important;
  }.bt-splitCta.bt-splitCta--overlapFix.bt-splitCta--mediaCrop .bt-splitCta__media :where(.bt-splitCta__mediaCard, .bt-splitCta__mediaItem){
    transform: translate(0px, 0px) !important;
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__media > :where(*){ 
	/* max-width: 100% !important; */
	width: 100% !important; 
}.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__actions{
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 22px;
  }.bt-splitCta.bt-splitCta--overlapFix .bt-cta-button{ min-width: 160px; }}
@media (max-width: 768px){.bt-splitCta.bt-splitCta--overlapFix.bt-splitCta--panelRight::before,
  .bt-splitCta.bt-splitCta--overlapFix.bt-splitCta--panelLeft::before{
    display:none !important;
  }}
@media (min-width: 768px) {.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__content{
    /* Aire elegante sin romper layout */
    padding-top: clamp(18px, 2.1vw, 44px) !important;
    padding-bottom: clamp(18px, 2.2vw, 52px) !important;
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__actions{
    margin-top: clamp(14px, 1.6vw, 26px) !important;
  }}
@media (min-width: 981px) {.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__content{
    /* En este rango suele sentirse “apretado”: subimos un poco la base */
    padding-top: clamp(22px, 1.6vw, 46px) !important;
    padding-bottom: clamp(24px, 1.9vw, 56px) !important;
  }}
@media (min-width: 1201px) {.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__content{
    /* A partir de aquí lo hacemos más sutil para no alterar tu desktop “bonito” */
    padding-top: clamp(18px, 1.1vw, 36px) !important;
    padding-bottom: clamp(20px, 1.2vw, 40px) !important;
  }}
@media (min-width: 769px) and (max-width: 980px){.bt-splitCta.bt-splitCta--overlapFix{
    /* stack to avoid overlap while still above the mobile breakpoint */
    --bt-splitCta-panel-width-sm: 0%;
    --bt-splitCta-media-shiftX-sm: 0px;
    --bt-splitCta-media-shiftY-sm: 0px;
    --bt-splitCta-media-maxw: 100%;
    --bt-splitCta-content-pad-block: clamp(20px, 3vw, 36px);
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__content{ order: 1; }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__media{
    order: 2;
    margin-top: clamp(18px, 3vw, 32px);
    justify-content: center;
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__actions{
    margin-top: clamp(22px, 4vw, 38px);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }}
@media (min-width: 981px) and (max-width: 1200px){.bt-splitCta.bt-splitCta--overlapFix{
    /* reduce aggressive overlap + give content breathing room */
    --bt-splitCta-panel-width-sm: 44%;
    --bt-splitCta-media-shiftX-sm: -90px;
    --bt-splitCta-media-shiftY-sm: -28px;
    --bt-splitCta-content-pad-block: clamp(16px, 2vw, 30px);
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__actions{
    margin-top: clamp(22px, 3vw, 40px);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }.bt-splitCta.bt-splitCta--overlapFix .bt-cta-button{
    padding: var(--bt-cta-pad-y, 14px) var(--bt-cta-pad-x, 28px) !important;
    font-size: clamp(.95rem, 1vw, 1.05rem) !important;
  }}
@media (min-width: 1201px) and (max-width: 1464px){.bt-splitCta.bt-splitCta--overlapFix{
    /* mild overlap, keep the elegant look without clipping the content */
    --bt-splitCta-panel-width-sm: 48%;
    --bt-splitCta-media-shiftX-sm: -140px;
    --bt-splitCta-media-shiftY-sm: -44px;
    --bt-splitCta-content-pad-block: clamp(14px, 1.6vw, 26px);
  }.bt-splitCta.bt-splitCta--overlapFix .bt-splitCta__actions{
    margin-top: clamp(24px, 3vw, 44px);
  }}
.bt-splitCta .bt-splitCta__content{
  /* aire elegante, compacto en móvil */
  padding-top: clamp(16px, 4vw, 26px);
  padding-bottom: clamp(18px, 4.5vw, 30px);

  /* seguridad anti overflow por textos largos */
  min-width: 0;
}
@media (min-width: 481px) {.bt-splitCta .bt-splitCta__content{
    padding-top: clamp(18px, 2.6vw, 34px);
    padding-bottom: clamp(20px, 2.9vw, 38px);
  }}
@media (min-width: 769px) {.bt-splitCta .bt-splitCta__content{
    /* aquí es donde te quedaba “al límite”: le damos más respiración */
    padding-top: clamp(24px, 2.2vw, 44px);
    padding-bottom: clamp(26px, 2.4vw, 52px);
  }.bt-splitCta .bt-splitCta__actions{
    margin-top: clamp(14px, 1.4vw, 24px);
  }}
@media (min-width: 981px) {.bt-splitCta .bt-splitCta__content{
    padding-top: clamp(26px, 1.6vw, 46px);
    padding-bottom: clamp(28px, 1.8vw, 56px);
  }}
@media (min-width: 1201px) {.bt-splitCta .bt-splitCta__content{
    /* grande pero fino: que se vea premium, no “inflado” */
    padding-top: clamp(26px, 1.1vw, 44px);
    padding-bottom: clamp(30px, 1.2vw, 54px);
  }}
@media (max-width: 768px){.bt-headingStack--lux{
    --bt-title-capsWide-ls: .18em;
    --bt-subtitle-capsWide-ls: .26em;
  }}
.bt-headingStack{
  max-width: var(--bt-headingStack-maxw, 980px);
  margin: var(--bt-headingStack-margin, 0 auto);
  text-align: var(--bt-headingStack-align, center);
}
.bt-headingStack--left{
  --bt-headingStack-margin: 0;
  --bt-headingStack-align: left;
  margin: 0 !important;
  text-align: left !important;
  width: 100% !important;
  align-items: flex-start !important;
}
.bt-headingStack > .bt-title{ margin-bottom: var(--bt-headingStack-title-mb, 14px) !important; }
.bt-headingStack > .bt-subtitle{ margin-bottom: var(--bt-headingStack-subtitle-mb, 10px) !important; }
.bt-headingStack > .bt-text{ margin: 0 !important; }
.bt-headingStack--lux{
  --bt-title-font: var(--bt-font-display);
  --bt-title-weight: 500;
  --bt-title-transform: uppercase;
  --bt-title-capsWide-ls: .24em;
  --bt-title-lh: 1.02;

  --bt-subtitle-transform: uppercase;
  --bt-subtitle-capsWide-ls: .34em;
  --bt-subtitle-capsWide-weight: 500;

  /* Light ink defaults (works in bt-section--light) */
  --bt-title-color: var(--bt-ink);
  --bt-subtitle-color: var(--bt-ink-soft);
  --bt-p-color: var(--bt-ink-muted);
}
.bt-headingStack{
  max-width: var(--bt-headingStack-maxw, 980px);
  margin: var(--bt-headingStack-margin, 0 auto);
  text-align: var(--bt-headingStack-align, center);
}
.bt-headingStack--left{
  --bt-headingStack-maxw: 100%;
  --bt-headingStack-margin: 0;
  --bt-headingStack-align: left;

  margin: 0 !important;
  text-align: left !important;
  width: 100% !important;
  align-items: flex-start !important;
}
.bt-headingStack--inkNavy{
  --bt-title-color: var(--bt-navy, #0e243f);
  --bt-subtitle-color: var(--bt-navy, #0e243f);
  --bt-p-color: var(--bt-ink-muted, rgba(13,27,42,.78));
}
.bt-headingStack--inkSoft{
  /* explicit reset to default light-ink behavior */
  --bt-title-color: var(--bt-ink, #0b1b2a);
  --bt-subtitle-color: var(--bt-ink-soft, rgba(13,27,42,.60));
  --bt-p-color: var(--bt-ink-muted, rgba(13,27,42,.78));
}
.bt-featureMosaic{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bt-featureMosaic-gap, 0px);
}
.bt-featureMosaic__col{
  display: flex;
  flex-direction: column;
  gap: var(--bt-featureMosaic-gap, 0px);
}
.bt-featureTile{
  position: relative;
  overflow: hidden;
  min-height: var(--bt-featureTile-minh, 240px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--bt-featureTile-pad, clamp(22px, 3vw, 54px));
}
.bt-featureTile--media .bt-featureTile__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bt-featureTile--media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bt-featureTile--media .bt-featureTile__overlay{
  position: absolute;
  inset: 0;
  background: var(--bt-featureTile-overlay, rgba(0,0,0,.35));
  z-index: 1;
}
.bt-featureTile__content{
  position: relative;
  z-index: 2;
  max-width: var(--bt-featureTile-content-maxw, 520px);
}
.bt-featureTile__title{
  font-size: var(--bt-featureTile-title-size, clamp(18px, 2.1vw, 26px));
  letter-spacing: var(--bt-featureTile-title-ls, .18em);
  font-weight: var(--bt-featureTile-title-weight, 700);
  text-transform: uppercase;
  margin: 0 0 12px 0;
}
.bt-featureTile__text{
  font-size: var(--bt-featureTile-text-size, 15px);
  line-height: var(--bt-featureTile-text-lh, 1.65);
  margin: 0;
}
.bt-featureTile--dark{
  background: var(--bt-featureTile-dark-bg, var(--bt-navy));
  color: var(--bt-featureTile-dark-ink, #fff);
}
.bt-featureTile--light{
  background: var(--bt-featureTile-light-bg, #f2eee7);
  color: var(--bt-featureTile-light-ink, var(--bt-ink));
}
.bt-featureTile--media{
  color: #fff;
}
@media (max-width: 980px){.bt-featureMosaic{ grid-template-columns: 1fr; }.bt-featureTile{ min-height: var(--bt-featureTile-minh-mobile, 220px); }}
.bt-featureMosaic.bt-featureMosaic--2rows{
  /* tokens */
  --bt-featureMosaic-cols: 3;
  --bt-featureMosaic-gap: var(--bt-featureMosaic-gap, 0px);

  display: grid;
  grid-template-columns: repeat(var(--bt-featureMosaic-cols), minmax(0, 1fr));
  gap: var(--bt-featureMosaic-gap);
}
.bt-featureMosaic--2rows .bt-featureMosaic__item{
  display: grid;
  grid-template-rows: 1fr 1fr; /* 2 filas dentro de la celda */
  gap: var(--bt-featureMosaic-gap);
}
.bt-featureMosaic--2rows .bt-featureTile{
  min-height: var(--bt-featureTile-minh, 240px);
}
@media (max-width: 768px){.bt-featureMosaic.bt-featureMosaic--2rows{
    --bt-featureMosaic-cols: 1;
  }}
 
 /* =========================================
   community
========================================= */
    .bt-community-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      column-gap: 18px;
      row-gap: 60px;
    }

    .bt-community-card {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 18px;
      text-decoration: none;
      min-height: 365px;
      background: #d9d9d9;
    }

    .bt-community-card img {
      width: 100%;
      height: 365px;
      object-fit: cover;
      display: block;
    }

    .bt-community-card__shade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, .35) 0%,
          rgba(0, 0, 0, .45) 38%,
          rgba(0, 0, 0, .75) 100%);
      z-index: 1;
      transition: opacity 0.4s ease;
    }

    .bt-community-card:hover .bt-community-card__shade {
      opacity: 0;
    }

    .bt-community-card__content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      padding: 48px 22px 44px;
      text-align: center;
    }

    .bt-community-card__title {
      color: #fff;
      font-size: 18px;
      letter-spacing: .28em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .bt-community-card .btn-main {
      min-width: 280px;
      justify-content: center;
    }

    @media (max-width: 991px) {
      .bt-community-grid {
        grid-template-columns: 1fr;
      }

      .bt-community-card,
      .bt-community-card img {
        min-height: 320px;
        height: 320px;
      }

      .bt-community-card .btn-main {
        min-width: 220px;
      }


    }
.bt-community-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.bt-community-card__actions .bt-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
/* =========================================================
   BT Band + AgentBand
   - Added: configurable columns for .bt-agentBand--cards
   Tokens:
     --bt-agentCards-cols:    desktop columns (default 2)
     --bt-agentCards-cols-md: tablet columns  (default = desktop)
     --bt-agentCards-cols-sm: mobile columns  (default 1)
========================================================= */

.bt-band{
  background: linear-gradient(180deg, var(--bt-band-grad-a) 0%, var(--bt-band-grad-b) 100%);
  color:#fff;
  --bt-h2-color:#fff;
  --bt-title-color:#fff;
  --bt-p-color: rgba(255,255,255,.92);
}
.bt-band .bt-title{ color:#fff; }
.bt-band .bt-text{ color: rgba(255,255,255,.92); }

.bt-agentBand{
  width: 100%;
}

.bt-agentBand__inner{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);

  background: var(--bt-agentBand-bg, #2f4a66);
  padding: var(--bt-agentBand-pad-y, 32px) var(--bt-agentBand-pad-x, clamp(31px, 17vw, 200px));
}

.bt-agentBand__avatar{
  width: var(--bt-agentBand-photo, 190px);
  height: var(--bt-agentBand-photo, 190px);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), rgba(0,0,0,.0) 55%),
              radial-gradient(circle at 60% 65%, rgba(0,0,0,.25), rgba(0,0,0,0) 60%),
              var(--bt-agentBand-avatar-bg, #1a2f49);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bt-agentBand__photo{
  width: var(--bt-agentBand-photo-w, 100%);
  height: var(--bt-agentBand-photo-h, 100%);
  object-fit: contain;
  object-position: center bottom;
  transform:
    translateY(var(--bt-agentBand-photo-shiftY, 0px))
    scale(var(--bt-agentBand-photo-scale, 1));
  transform-origin: center bottom;
  display: block;
}

.bt-agentBand__name{
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 100;
  letter-spacing: 0.18em;
  font-size: clamp(20px, 2.2vw, 45px);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 8px 0;
}

.bt-agentBand__role{
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.9em;
  font-size: 20px;
  color: rgba(255,255,255,.82);
  margin: 0 0 18px 0;
  text-transform: uppercase;
}

.bt-agentBand__cta{
  display: inline-flex;
}

.bt-agentBand__right{
  display: flex;
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
}

.bt-agentBand__col{
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.bt-agentBand__label{
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.22em;
  font-size: 30px;
  color: rgba(255,255,255,.72);
}

.bt-agentBand__link{
  color:#fff;
  text-decoration: none;
  font-size: 15px;
}

.bt-agentBand__link:hover{
  text-decoration: underline;
}

/* ---------- Responsive base (default layout) ---------- */
@media (max-width: 980px){
  .bt-agentBand__inner{
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "avatar mid"
      "right  right";
  }
  .bt-agentBand__left{ grid-area: avatar; }
  .bt-agentBand__mid{ grid-area: mid; }
  .bt-agentBand__right{
    grid-area: right;
    justify-content: flex-start;
  }
  .bt-agentBand__col{ min-width: 0; }
}

@media (max-width: 640px){
  .bt-agentBand{
    margin-top: 34px !important;   /* separación con FAQ */
    padding-top: 18px !important;  /* aire interno arriba */
  }

  .bt-agentBand__inner{
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "avatar"
      "mid"
      "right" !important;
    text-align: center !important;
    gap: 18px !important;
  }

  .bt-agentBand__left  { grid-area: avatar !important; }
  .bt-agentBand__mid   { grid-area: mid !important; }
  .bt-agentBand__right { grid-area: right !important; }

  .bt-agentBand__left,
  .bt-agentBand__mid,
  .bt-agentBand__right{
    transform: none !important;
  }

  .bt-agentBand__avatar{
    margin: 0 auto !important;
  }

  .bt-agentBand__name{
    margin: 0 0 8px 0 !important;
    font-size: clamp(22px, 6.2vw, 34px) !important;
  }

  .bt-agentBand__role{
    margin: 0 0 14px 0 !important;
    font-size: 14px !important;
    letter-spacing: .45em !important; /* menos exagerado en móvil */
  }

  .bt-agentBand__mid .bt-cta-button{
    margin: 0 auto !important;
    width: min(320px, 100%) !important;
  }

  .bt-agentBand__right{
    justify-content: center !important;
    width: 100% !important;
    padding-top: 14px !important;
    margin-top: 8px !important;
    /*border-top: 1px solid rgba(255,255,255,.18) !important;*/
  }

  .bt-agentBand__contactGrid{
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 14px !important;
  }

  .bt-agentBand__col{
    align-items: center !important;
    text-align: center !important;
  }

  .bt-agentBand__label{
    font-size: 12px !important;
    letter-spacing: .28em !important;
    opacity: .75 !important;
  }

  .bt-agentBand__link{
    font-size: 16px !important;
    letter-spacing: .04em !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}

/* =========================================================
   AgentBand --topContacts
========================================================= */

.bt-agentBand--topContacts .bt-agentBand__inner{
  align-items: center;
  grid-template-columns: auto minmax(260px, 520px) 1fr;
}

.bt-agentBand--topContacts .bt-agentBand__mid{
  max-width: 520px;
}

.bt-agentBand--topContacts .bt-agentBand__right{
  display: block;
  --bt-agentBand-right-shiftY: -34px;
}

.bt-agentBand--topContacts .bt-agentBand__contactGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: clamp(18px, 2.6vw, 44px);
  align-items: start;
}

.bt-agentBand--topContacts .bt-agentBand__col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 190px;
}

.bt-agentBand--topContacts .bt-agentBand__link{
  /* FIX: removed stray ';' inside var() fallback list */
  font-family: var(--bt-font-heading, "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: clamp(10px, 1.35vw, 18px);
  font-weight: 100;
  letter-spacing: .06em;
  line-height: 1.1;

  white-space: normal;
  word-break: break-word;
}

@media (max-width: 980px){
  .bt-agentBand--topContacts .bt-agentBand__inner{
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "avatar mid"
      "right  right";
  }
  .bt-agentBand--topContacts .bt-agentBand__right{
    justify-self: start;
    --bt-agentBand-right-shiftY: 0px;
  }
  .bt-agentBand--topContacts .bt-agentBand__contactGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .bt-agentBand--topContacts .bt-agentBand__contactGrid{
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .bt-agentBand--topContacts .bt-agentBand__col{
    align-items: center;
    text-align: center;
    min-width: 0;
  }
}

/* =========================================================
   AgentBand --cards  ✅ configurable columns
========================================================= */

/* Desktop default: uses --bt-agentCards-cols */
.bt-agentBand--cards .bt-agentBand__inner{
  grid-template-columns: repeat(var(--bt-agentCards-cols, 2), minmax(0, 1fr));
  align-items: stretch;
  padding: var(--bt-agentBand-pad-y, 32px) var(--bt-agentBand-pad-x, clamp(24px, 6vw, 96px));
}

/* Card structure */
.bt-agentBandCard{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);

  background: transparent;
  padding: var(--bt-agentCard-pad, 0px);
  min-width: 0;
}

.bt-agentBandCard .bt-agentBand__avatar{
  width: var(--bt-agentBand-photo, 190px);
  height: var(--bt-agentBand-photo, 190px);
}

.bt-agentBandCard__content{
  min-width: 0;
  transform: translateY(var(--bt-agentBand-avatar-shiftY));
}

.bt-agentBandCard__contactGrid{
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(12px, 1.8vw, 28px);
  align-items: start;
  margin-top: 16px;
  min-width: 0;
  margin-bottom:50px;
}

.bt-agentBandCard__contactGrid .bt-agentBand__col,
.bt-agentBandCard__contactGrid > *{
  min-width: 0;
}

.bt-agentBandCard__contactGrid .bt-agentBand__label{
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: clamp(.14em, .9vw, .34em);
  line-height: 1.1;
  white-space: normal;
}

.bt-agentBandCard__contactGrid .bt-agentBand__link{
  font-size: clamp(13px, 1.05vw, 16px);
  letter-spacing: clamp(.02em, .35vw, .08em);
  line-height: 1.25;

  white-space: normal;
  overflow: visible;
  text-overflow: clip;

  overflow-wrap: anywhere;
  word-break: break-word;

  max-width: 100%;
}

.bt-agentBandCard__cta{
  margin-top: 18px;
  display: inline-flex;
}

/* Tablet: uses --bt-agentCards-cols-md (fallback = desktop) */
@media (max-width: 1024px){
  .bt-agentBand--cards .bt-agentBand__inner{
    grid-template-columns: repeat(var(--bt-agentCards-cols-md, var(--bt-agentCards-cols, 2)), minmax(0, 1fr));
    gap: 18px;
  }

  .bt-agentBand--cards .bt-agentBandCard{
    padding: 18px;
    border-radius: 16px;
    min-height: 0;
  }

  .bt-agentBand--cards .bt-agentBand__avatar{
    transform: none !important;
    margin-bottom: 12px;
    width: 120px;
    height: 120px;
  }

  .bt-agentBand--cards .bt-agentBand__photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
  }

  .bt-agentBand--cards .bt-agentBand__name{
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0.18em;
  }

  .bt-agentBand--cards .bt-agentBand__role{
    font-size: 12px;
    letter-spacing: 0.24em;
    margin-top: 8px;
  }

  .bt-agentBand--cards .bt-agentBandCard__contactGrid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .bt-agentBand--cards .bt-agentBand__label{
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .bt-agentBand--cards .bt-agentBand__link{
    font-size: 14px;
    word-break: break-word;
  }

  .bt-agentBand--cards .bt-agentBandCard__cta{
    margin-top: 14px;
    width: 100%;
    max-width: 280px;
  }
}

/* <= 980px: uses --bt-agentCards-cols-sm (default 1) */
@media (max-width: 980px){
  .bt-agentBand--cards .bt-agentBand__inner{
    grid-template-columns: repeat(var(--bt-agentCards-cols-sm, 1), minmax(0, 1fr));
    gap: clamp(22px, 4vw, 44px);
  }
}

@media (max-width: 1100px){
  .bt-agentBandCard__content{
    transform: none;
  }
}

@media (max-width: 640px){
  .bt-agentBand--cards .bt-agentBand__inner{
    text-align: center;
    padding: var(--bt-agentBand-pad-y, 28px) var(--bt-agentBand-pad-x, 18px);
  }

  .bt-agentBandCard{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .bt-agentBandCard__content{
    margin-top: 20px;
  }

  .bt-agentBandCard__contactGrid{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
	margin-bottom:0px;
  }

  .bt-agentBandCard__cta{
    width: min(320px, 100%);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================
   TopContacts mobile overrides (as you had)
========================================================= */

@media (max-width: 640px){
  .bt-agentBand--topContacts .bt-agentBand__inner{
    grid-template-columns: 1fr !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 26px 18px !important;
    text-align: center;
  }

  .bt-agentBand--topContacts .bt-agentBand__left{
    justify-self: center;
  }

  .bt-agentBand--topContacts .bt-agentBand__avatar{
    width: 150px;
    height: 150px;
    transform: none !important;
  }

  .bt-agentBand--topContacts .bt-agentBand__mid{
    justify-self: center;
    max-width: 520px;
    transform: none !important;
  }

  .bt-agentBand--topContacts .bt-agentBand__role{
    letter-spacing: .55em;
    font-size: 16px;
    margin-bottom: 14px;
  }

  .bt-agentBand--topContacts .bt-agentBand__right{
    width: 100%;
    justify-self: center;
    transform: none !important;
    margin-top: 6px;
  }

  .bt-agentBand--topContacts .bt-agentBand__contactGrid{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    justify-items: center;
    width: 100%;
    padding-top: 18px;
    /*border-top: 1px solid rgba(255,255,255,.16);*/
  }

  .bt-agentBand--topContacts .bt-agentBand__col{
    min-width: 0 !important;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .bt-agentBand--topContacts .bt-agentBand__label{
    font-size: 16px !important;
    letter-spacing: .22em;
    white-space: normal;
  }

  .bt-agentBand--topContacts .bt-agentBand__link{
    font-size: 15px !important;
    letter-spacing: .06em;
    line-height: 1.25;

    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    word-break: break-word;

    max-width: 92vw;
  }
}

@media (max-width: 420px){
  .bt-agentBand--topContacts .bt-agentBand__avatar{
    width: 132px;
    height: 132px;
  }
  .bt-agentBand--topContacts .bt-agentBand__name{
    font-size: 28px;
  }
}

/* AgentBand CTA: forzar una sola línea */
.bt-agentBand--cards .bt-agentBandCard a.bt-cta-button.bt-agentBandCard__cta{
  white-space: nowrap !important;
  display: inline-flex !important;
  width: auto !important;
  flex-wrap: nowrap !important;
}

@media (max-width: 1024px){
  .bt-agentBand--cards .bt-agentBandCard a.bt-cta-button.bt-agentBandCard__cta{
    padding: 10px 18px !important;
    font-size: 13px !important;
    letter-spacing: .12em;
    min-height: 0 !important;
  }
}

/* Expandir ancho útil en tablet */
@media (max-width: 1024px){
  .bt-agentBand .bt-agentBand__inner{
    max-width: 100% !important;
    padding-left: clamp(14px, 2.2vw, 22px) !important;
    padding-right: clamp(14px, 2.2vw, 22px) !important;
  }

  .bt-agentBand{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


.bt-hero{
  position: relative;
  min-height: min(86vh, 820px);
  display:flex;
  align-items:flex-end;
  padding: 0;
  overflow:hidden;
}
.bt-hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}
.bt-hero__media video,
.bt-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.bt-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, var(--bt-hero-overlay-a), var(--bt-hero-overlay-b));
  z-index:1;
}
.bt-hero__content{
  position:relative;
  z-index:2;
  width:100%;
  padding: clamp(22px, 4vw, 46px) 0;
}
.bt-hero__topbar{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:3;
  padding: 10px 0;
}
.bt-hero__topbar .bt-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 0 var(--bt-pad-x);
}
.bt-hero__contacts{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 18px;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}
.bt-hero__ctaRow{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}
@media (max-width: 680px){.bt-hero{ min-height: 74vh; }.bt-hero__topbar .bt-container{ flex-direction:column; align-items:flex-start; }}
.bt-hero-body{
  flex: 1 1 auto !important;              
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;

  justify-content: var(--bt-heroBody-justify, center) !important;  
  align-items: center !important;
  text-align: center !important;

  padding-top: var(--bt-heroBody-pt, 0px) !important;
  padding-bottom: var(--bt-heroBody-pb, 0px) !important;

  transform: translateY(var(--bt-heroBody-shiftY, 0px)) !important; 
}
.bt-hero-meta{
  margin-top: var(--bt-heroMeta-mt, 22px) !important;
  margin-bottom: var(--bt-heroMeta-mb, 0px) !important;
  padding-bottom: var(--bt-heroMeta-pad-bottom, 0px) !important; 
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--bt-heroMeta-gap) !important;
  color: var(--bt-heroMeta-ink) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.30) !important;

  /* “look” tipo screenshot 
  background: var(--bt-heroMeta-bg) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: var(--bt-heroMeta-radius) !important;
  padding: var(--bt-heroMeta-pad-y) var(--bt-heroMeta-pad-x) !important;
  backdrop-filter: blur(6px) !important;
  box-shadow: var(--bt-heroMeta-shadow) !important;*/
}
.bt-hero-meta__item{
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.bt-hero-meta__icon{
  width: var(--bt-heroMeta-icon) !important;
  height: var(--bt-heroMeta-icon) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  opacity: .95 !important;
}
.bt-hero-meta__icon svg{
  width: 100% !important;
  height: 100% !important;
  fill: #fff !important;
  display: block !important;
}
.bt-hero-meta__value{
  font-family: var(--bt-font-heading, "Montserrat", system-ui) !important;
  font-weight: 200 !important;
  font-size: var(--bt-heroMeta-value) !important;
  letter-spacing: .02em !important;
}
.bt-hero-meta__label{
  font-family: var(--bt-font-heading, "Montserrat", system-ui) !important;
  font-weight: 600 !important;
  font-size: var(--bt-heroMeta-label) !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--bt-heroMeta-ink-soft) !important;
}
.bt-hero-meta__sup{
  font-family: var(--bt-font-heading, "Montserrat", system-ui) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  margin-left: -6px !important;
  top: -0.45em !important;
  position: relative !important;
  color: var(--bt-heroMeta-ink-soft) !important;
}
.bt-hero-meta__sep{
  width: var(--bt-heroMeta-sep-w) !important;
  height: var(--bt-heroMeta-sep-h) !important;
  background: var(--bt-heroMeta-sep) !important;
  opacity: .85 !important;
}
@media (max-width: 768px){.bt-hero-meta{
    gap: 14px !important;
    padding: 10px 14px !important;
    max-width: calc(100vw - 24px) !important;
    flex-wrap: wrap !important;
  }.bt-hero-meta__sep{ display:none !important; }}
.bt-hero-wrap .bt-hero-meta{
  margin-top: var(--bt-heroMeta-mt, 22px) !important;
  margin-bottom: var(--bt-heroMeta-mb, 0px) !important;
}
/* =========================================
   HERO WRAP (clean, non-destructive)
========================================= */

/* Safe box sizing */
.bt-hero-wrap,
.bt-hero-wrap *{
  box-sizing: border-box !important;
}

/* Full-bleed wrapper */
.bt-hero-wrap{
  position: relative !important;
  display: block !important;

  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow-x: clip !important;
}

/* Optional aggressive reset (opt-in) */
.bt-hero-wrap.bt-hero-wrap--reset,
.bt-hero-wrap.bt-hero-wrap--reset *{
  margin: 0 !important;
  padding: 0 !important;
}

/* Iframes (YouTube bg) */
.bt-hero-wrap iframe,
.bt-hero-wrap iframe.bt-youtube-iframe{
  max-width: none !important;
}

/* Intro hero */
.bt-intro-hero{
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;

  height: var(--bt-hero-height, 100svh) !important;
  min-height: var(--bt-hero-minh, 0px) !important;
  max-height: var(--bt-hero-maxh, none) !important;

  overflow: hidden !important;
  background: #000 !important;
}

@media (max-width: 768px){
  .bt-intro-hero,
  .bt-youtube-container{
    height: 100vh !important;
    height: 100svh !important;
  }
    .bt-intro-hero{
    height: var(--bt-hero-height-mobile, var(--bt-hero-height, 100svh)) !important;
    min-height: var(--bt-hero-minh-mobile, var(--bt-hero-minh, 0px)) !important;
    max-height: var(--bt-hero-maxh-mobile, var(--bt-hero-maxh, none)) !important;
  }

  .bt-youtube-container{
    height: 100% !important;
  }
}


.bt-hero-content{
  position: relative !important;
  z-index: 3 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important; /* body handles vertical positioning */
  align-items: center !important;
  text-align: center !important;
  color: #fff !important;
  padding: 0 20px var(--bt-heroContent-pb, 0px) 20px !important;
}
.bt-hero-content .bt-main-title{
  color: var(--bt-h1-color) !important;
  font-size: var(--bt-hero-title-size) !important;
  font-weight: var(--bt-heroTitle-weight, 300) !important;
  text-transform: var(--bt-heroTitle-transform, uppercase) !important;
  font-family: var(--bt-heroTitle-font, inherit) !important;
  margin-bottom: 20px !important;
  letter-spacing: var(--bt-hero-title-letter-spacing) !important;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.55) !important;
  line-height: var(--bt-hero-title-line-height) !important;
}
@media (max-width: 768px){.bt-hero-content{
    padding-top: 42px !important;
  }}
.bt-hero-logo{
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  width: min(var(--bt-logo-max-width), var(--bt-logo-responsive-width)) !important;
  height: auto !important;
  margin: 0 auto !important;
  margin-top: clamp(90px, 12vh, 140px) !important; /* ajusta si quieres más arriba/abajo */
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.28)) !important;
}
.bt-hero-content .bt-cta-row{
  margin-top: 18px !important;
}

:is(.bt-hero, .bt-invest-section, .bt-band, .bt-section--dark, .bt-lifestyle__panel, .bt-two-columns, .bt-video-section) .bt-btn--primary:hover{
  background: rgba(255,255,255,.12);
  color:#fff;
  border-color: rgba(255,255,255,.65);

}
.bt-hero-logo{
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  width: min(var(--bt-logo-max-width), var(--bt-logo-responsive-width)) !important;
  height: auto !important;
  margin: 0 auto !important;
  margin-top: clamp(90px, 12vh, 140px) !important; /* ajusta si quieres más arriba/abajo */
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.28)) !important;
}
.bt-hero-content .bt-cta-row{
  margin-top: 18px !important;
}
:is(.bt-hero, .bt-invest-section, .bt-band, .bt-section--dark, .bt-lifestyle__panel, .bt-two-columns, .bt-video-section) .bt-btn--primary:hover{
  background: rgba(255,255,255,.12);
  color:#fff;
  border-color: rgba(255,255,255,.65);
}
.bt-floorTabs{
  width: 100%;
  background: var(--bt-surface, #fff);
}
.bt-floorTabs__navInner{
  width: var(--bt-container, 1200px);
  margin: 0 auto;
  padding: var(--bt-floorTabs-nav-pad-y) var(--bt-floorTabs-nav-pad-x);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bt-floorTabs-nav-gap);
  flex-wrap: wrap; /* desktop: puede saltar si no cabe */
}
.bt-floorTabs__tab{
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;

  font-family: var(--bt-font-heading, inherit);
  font-weight: var(--bt-floorTabs-tab-weight);
  font-size: var(--bt-floorTabs-tab-size);
  letter-spacing: var(--bt-floorTabs-tab-ls);
  text-transform: uppercase;
  opacity: var(--bt-floorTabs-tab-opacity);

  padding: 6px 4px;
  line-height: 1;
  
  white-space: nowrap;
  flex: 0 0 auto;
}
.bt-floorTabs__tab.is-active{
  opacity: var(--bt-floorTabs-tab-opacity-active);
}
.bt-floorTabs__panel{ display: none; }
.bt-floorTabs__panel.is-active{ display: block; }
.bt-floorTabs__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bt-floorTabs-grid-gap);
  align-items: start;
  padding: var(--bt-floorTabs-content-pad);
}
.bt-floorTabs__media{ width: 100%; }
.bt-floorTabs__imgWrap{
  width: 100%;
  background: var(--bt-floorTabs-media-bg);
  border-radius: var(--bt-floorTabs-media-radius);
  overflow: hidden;
  margin: 0;
  cursor: zoom-in;
}
.bt-floorTabs__imgWrap img{
  width: 100%;
  height: auto;
  display: block;
}
.bt-floorTabs__title{
  margin: 0 0 14px 0;
  font-family: var(--bt-font-display, var(--bt-font-heading, inherit));
  font-weight: var(--bt-floorTabs-title-weight);
  font-size: var(--bt-floorTabs-title-size);
  letter-spacing: var(--bt-floorTabs-title-ls);
  text-transform: uppercase;
  color: var(--bt-floorTabs-title-color);
}
.bt-floorTabs__bullets{
  margin: 0;
  padding: 0;
  list-style: disc;
  padding-left: 18px;
}
.bt-floorTabs__bullets li{
  font-size: var(--bt-floorTabs-bullet-size);
  line-height: var(--bt-floorTabs-bullet-lh);
  margin: 0 0 var(--bt-floorTabs-bullet-gap) 0;
  color: var(--bt-ink, #0b1a27);
}
.bt-floorTabs__footer{
  padding: 0 var(--bt-floorTabs-content-pad) var(--bt-floorTabs-footer-pad-y) var(--bt-floorTabs-content-pad);
  font-size: var(--bt-floorTabs-footer-size);
  color: var(--bt-floorTabs-footer-color);
  text-align: center;
}
@media (max-width: 980px){.bt-floorTabs__grid{
    grid-template-columns: 1fr;
  }.bt-floorTabs__footer{
    text-align: left;
  }}
@media (min-width: 981px){.bt-floorTabs__tab{
    flex: 1 1 auto;      /* se reparten el ancho */
    text-align: center;
  }}
.bt-floorTabs__nav{
  position: relative;
  z-index: 1;

  background: transparent; /* el azul va en ::before */
  color: var(--bt-floorTabs-nav-ink);

  /* el layout de tabs puede quedarse aquí o en navInner, pero tú ya usas navInner */
}
.bt-floorTabs__nav::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;

  background: var(--bt-floorTabs-nav-bg);

  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}
.bt-floorTabs__navInner{
  width: var(--bt-container, 1200px);
  margin: 0 auto;
  padding: var(--bt-floorTabs-nav-pad-y) var(--bt-floorTabs-nav-pad-x);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bt-floorTabs-nav-gap);
  flex-wrap: nowrap;              /* <-- clave: no permite salto */
  overflow-x: auto;               /* <-- si no caben, scroll horizontal */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
}
@media (max-width: 768px){.bt-floorTabs__navInner{
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }.bt-floorTabs__navInner::-webkit-scrollbar{ display:none; }.bt-floorTabs__tab{
    white-space: nowrap;
    flex: 0 0 auto;
  }}
  
  .bt-floorTabs__tab{
  position: relative;
}

.bt-floorTabs__tab::after{
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -10px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  opacity: 0;
}

.bt-floorTabs__tab.is-active::after{
  transform: scaleX(1);
  opacity: 1;
}
.bt-floorTabs__tab.is-active{
  opacity: 1;
  font-weight: 700;
}
.bt-floorTabs__nav{
  position: relative;
}

.bt-floorTabs__chevron{
  display: none;
}

@media (max-width: 768px){
  .bt-floorTabs__nav{
    padding-inline: 36px;
  }

  .bt-floorTabs__chevron{
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.14);
    color: var(--bt-floorTabs-nav-ink);
    cursor: pointer;
    line-height: 1;
    font-size: 22px;
  }

  .bt-floorTabs__chevron--prev{
    left: 6px;
  }

  .bt-floorTabs__chevron--next{
    right: 6px;
  }

  .bt-floorTabs__navInner{
    scroll-behavior: smooth;
  }
}

.bt-floorTabs__tab{
  position: relative;
}

.bt-floorTabs__tab::after{
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.bt-floorTabs__tab.is-active::after{
  transform: scaleX(1);
  opacity: 1;
}

.bt-floorTabs__chevron{
  display: none;
}

@media (max-width: 768px){
  .bt-floorTabs__nav{
    position: relative;
    padding-inline: 38px;
  }

  .bt-floorTabs__chevron{
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.14);
    color: inherit;
    cursor: pointer;
    line-height: 1;
    font-size: 20px;
  }

  .bt-floorTabs__chevron--prev{
    left: 6px;
  }

  .bt-floorTabs__chevron--next{
    right: 6px;
  }

  .bt-floorTabs__navInner{
    scroll-behavior: smooth;
  }
}
.bt-carousel{ width:100%; margin: clamp(28px, 6vw, 80px) 0 clamp(18px, 4vw, 48px); position:relative; isolation:isolate; }
.bt-carousel *{ box-sizing:border-box; }
.bt-carousel__wrap{ display:flex; align-items:center; gap: clamp(12px, 2vw, 24px); padding: 0 clamp(12px, 3vw, 32px); position:relative; }
.bt-carousel__viewport{ flex:1; overflow:hidden; padding:16px 0; }
.bt-carousel__track{ display:flex; gap: var(--bt-carousel-gap, 30px); transition: transform .5s ease; will-change: transform; padding:0; }
.bt-carousel__arrow{ background:#fff; border:none; width:60px; height:60px; border-radius: var(--bt-radius-pill); font-size:2rem; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 5px 20px rgba(0,0,0,.2); transition:.2s; color:#0d1b2a; z-index:5; }
.bt-carousel__arrow:hover{ transform: scale(1.06); }
.bt-carousel__dots{ display:flex; justify-content:center; gap:10px; margin-top:22px; position:relative; z-index:5; }
.bt-carousel__dot{ width:10px; height:10px; border-radius: var(--bt-radius-pill); border:none; cursor:pointer; background: rgba(13,27,42,.18); }
.bt-carousel__dot.is-active{ background: rgb(27 96 137); transform: scale(1.2); }
.bt-carousel--noDots .bt-carousel__dots{ display:none !important; }
.bt-carousel--noMargin{ margin:0 !important; }
.bt-carousel--overlayArrows .bt-carousel__wrap{ padding:0 !important; gap:0 !important; }
.bt-carousel--overlayArrows .bt-carousel__viewport{ padding:0 !important; }
.bt-carousel--overlayArrows .bt-carousel__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
}
.bt-carousel--overlayArrows .bt-carousel__arrow[data-bt-action="prev"]{ left: 10px; }
.bt-carousel--overlayArrows .bt-carousel__arrow[data-bt-action="next"]{ right: 10px; }
.bt-carousel--mediaFill{ height:100%; margin:0; }
.bt-carousel--mediaFill .bt-carousel__wrap,
.bt-carousel--mediaFill .bt-carousel__viewport,
.bt-carousel--mediaFill .bt-carousel__track{ height:100%; }
.bt-carousel--mediaFill .bt-carousel__wrap{ padding:0 !important; gap:0 !important; }
.bt-carousel--mediaFill .bt-carousel__viewport{ padding:0 !important; }
.bt-carousel--mediaFill .bt-carousel__track{ gap:0 !important; }
.bt-carousel--mediaFill .bt-card{
  height:100%;
  border-radius:0;
  overflow:hidden;
  box-shadow:none;
  background:transparent;
}
.bt-carousel--mediaFill .bt-card :where(img, video){
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.bt-carousel--agents .bt-card{ background: transparent; box-shadow:none; border-radius:20px; }
.bt-carousel--agents .bt-card:hover{ box-shadow:0 20px 40px rgba(0,0,0,.15); }
.bt-carousel--agents .bt-agent-image-wrapper{ width:200px; height:200px; margin:0 auto 18px; background:transparent; padding:0; overflow:visible; }
.bt-carousel--agents .bt-agent-image{ width:100%; height:100%; object-fit:contain; object-position:center; display:block; }
.bt-carousel--agents .bt-agent-name{ font-weight:800; font-size:20px; color: rgb(27 96 137); margin:0 0 10px; min-height:48px; display:flex; align-items:center; justify-content:center; padding:0 10px; }
@media (max-width: 768px){.bt-carousel__dots{ display: none !important; }.bt-carousel__wrap{
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 0 !important;
  }.bt-carousel__arrow{
    width: 44px !important;
    height: 44px !important;
    font-size: 1.4rem !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.25) !important;
  }.bt-carousel__arrow[data-bt-action="prev"]{ left: 6px !important; }.bt-carousel__arrow[data-bt-action="next"]{ right: 6px !important; }.bt-carousel__viewport{ padding: 0 !important; }.bt-carousel__track{ gap: 18px !important; }.bt-carousel .bt-card{
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: none !important;   
    margin: 0 !important;         
  }.bt-carousel--agents .bt-agent-image-wrapper{
    width: min(200px, 62vw) !important;
    height: min(200px, 62vw) !important;
    margin: 0 auto 14px !important;
  }}
.bt-carousel--bgOnly .bt-card{
  background: transparent !important;
}
.bt-carousel--bgOnly .bt-card :where(img, video){
  opacity: 0 !important;
  visibility: hidden !important;
}
.bt-carouselStage{
  position: relative;
  width: 100%;
}
.bt-carousel--bgOnly .bt-card,
.bt-carousel--bgOnly .bt-card--blank{
  height: 100%;
}
.bt-carousel--luxShowcase .bt-card{
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;

  background: transparent;
  border-radius: var(--bt-luxCard-radius);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);

  /* Optional: make cards big + consistent */
  width: 100%;
  max-width: var(--bt-showcase-card-maxw);
}
.bt-carousel--luxShowcase .bt-card > img{
  width: 100%;
  height: var(--bt-luxImg-h);
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .45s ease;
}
.bt-carousel--luxShowcase .bt-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.05) 55%, rgba(0,0,0,0) 75%);
  opacity: .85;
  transition: opacity .25s ease;
}
.bt-carousel--luxShowcase .bt-card:hover > img{ transform: scale(1.03); }
.bt-carousel--luxShowcase .bt-card:hover::after{ opacity: .95; }
.bt-carousel--luxShowcase .bt-carousel__track{
  justify-content: center;
  gap: var(--bt-showcase-gap);
}
.bt-carousel--luxShowcase .bt-luxOv{
  position:absolute;
  z-index: 3;
  left: var(--bt-luxOverlay-inset);
  right: var(--bt-luxOverlay-inset);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;

  font-family: var(--bt-font-heading, var(--bt-font-body));
  font-weight: 600;
  font-size: var(--bt-luxTitle-size);
  letter-spacing: var(--bt-luxTitle-ls);

  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.bt-carousel--luxShowcase .bt-luxOv--top{
  top: var(--bt-luxOverlay-top);
}
.bt-carousel--luxShowcase .bt-luxOv--bottom{
  /* Allow full-width band when inset = 0 */
  left: var(--bt-luxBadge-inset);
  right: var(--bt-luxBadge-inset);
  bottom: var(--bt-luxBadge-bottom);

  padding: 12px 14px;
  border-radius: var(--bt-slideBand-radius);

  background: var(--bt-luxBadge-bg);
  -webkit-backdrop-filter: blur(var(--bt-luxBadge-blur));
  backdrop-filter: blur(var(--bt-luxBadge-blur));

  font-size: var(--bt-slideBand-size);
  font-weight: var(--bt-slideBand-weight);
  letter-spacing: var(--bt-luxBadge-ls);
}
.bt-carousel--luxShowcase .bt-carousel__arrow{ display: none !important; }
.bt-scope[data-showcase-arrows="1"] .bt-carousel--luxShowcase .bt-carousel__arrow{
  display: flex !important;
}
.bt-scope[data-showcase-arrows="1"][data-showcase-arrows-when-two="0"] [data-slide-count="1"] .bt-carousel--luxShowcase .bt-carousel__arrow,
.bt-scope[data-showcase-arrows="1"][data-showcase-arrows-when-two="0"] [data-slide-count="2"] .bt-carousel--luxShowcase .bt-carousel__arrow{
  display: none !important;
}
@media (max-width: 768px){.bt-carousel--luxShowcase .bt-card > img{
    height: var(--bt-luxImg-h-mobile);
  }.bt-carousel--luxShowcase .bt-luxOv{
    font-size: 15px;
    letter-spacing: .18em;
  }.bt-carousel--luxShowcase .bt-luxOv--bottom{
    font-size: 12px;
    letter-spacing: .22em;
  }}
.carousel-container-overlap .bt-carousel{
  margin: 0 !important;
}
.bt-carousel--luxShowcase .bt-carousel__viewport{
  display: flex;
  justify-content: center;
}
.bt-carousel--luxShowcase .bt-carousel__track{
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media (max-width: 768px){.bt-carousel--luxShowcase .bt-carousel__arrow{
    display: flex !important;
  }}
  
  /* =========================================================
   SplitCta / Carousel with arrows at full section edges
   Uso:
   - agregar .bt-splitCta--sectionEdgeCarousel a la section
   - usar variantClass: bt-carousel--sectionEdgeArrows
   ========================================================= */

.bt-splitCta--sectionEdgeCarousel{
  position: relative;
  overflow: visible !important;
}

.bt-splitCta--sectionEdgeCarousel .bt-section__inner,
.bt-splitCta--sectionEdgeCarousel .bt-splitCta__grid,
.bt-splitCta--sectionEdgeCarousel .bt-splitCta__media,
.bt-splitCta--sectionEdgeCarousel .bt-splitCta__mediaItem,
.bt-splitCta--sectionEdgeCarousel .bt-carousel,
.bt-splitCta--sectionEdgeCarousel .bt-carousel__wrap{
  position: relative;
  overflow: visible !important;
}

/* Mantenemos mediaFill, pero sin que recorte flechas */
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows.bt-carousel--mediaFill,
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows.bt-carousel--mediaFill .bt-carousel__wrap,
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows.bt-carousel--mediaFill .bt-carousel__viewport,
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows.bt-carousel--mediaFill .bt-carousel__track{
  height: 100%;
}

/* Para este caso ya no queremos el comportamiento overlayArrows */
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-carousel__wrap{
  padding: 0 !important;
  gap: 0 !important;
}

.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-carousel__viewport{
  padding: 0 !important;
  overflow: hidden;
}

.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-carousel__track{
  gap: 0 !important;
}

.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-card{
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
}

.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-card img,
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-card video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Flechas relativas a TODA la sección */
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-carousel__arrow{
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
}

/* izquierda: inicio visual de toda la sección */
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-carousel__arrow[data-bt-action="prev"]{
  left: calc(-1 * var(--bt-sectionEdge-arrow-offset, 38px)) !important;
}

/* derecha: final visual de toda la sección */
.bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-carousel__arrow[data-bt-action="next"]{
  right: calc(-1 * var(--bt-sectionEdge-arrow-offset, 38px)) !important;
}

/* móvil/tablet: regresarlas al media para no romper layout */
@media (max-width: 980px){
  .bt-splitCta--sectionEdgeCarousel{
    --bt-sectionEdge-arrow-offset: 12px;
  }

  .bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-carousel__arrow[data-bt-action="prev"]{
    left: var(--bt-sectionEdge-arrow-offset) !important;
  }

  .bt-splitCta--sectionEdgeCarousel .bt-carousel--sectionEdgeArrows .bt-carousel__arrow[data-bt-action="next"]{
    right: var(--bt-sectionEdge-arrow-offset) !important;
  }
}
.carousel-overlap-wrapper{
  position: relative;
  z-index: 4;
  margin: var(--bt-luxOverlap-carouselMarginY, 0px) 0;

  /* full-bleed option (0/1) */
  width: calc(var(--bt-showcase-fullbleed, 0) * 100vw + (1 - var(--bt-showcase-fullbleed, 0)) * 100%);
  margin-left: calc(var(--bt-showcase-fullbleed, 0) * (50% - 50vw));
  margin-right: calc(var(--bt-showcase-fullbleed, 0) * (50% - 50vw));
  padding-left: var(--bt-showcase-pad-x);
  padding-right: var(--bt-showcase-pad-x);
  box-sizing: border-box;
}
.bt-carouselOverlaySection .bt-carouselStage{
  min-height: clamp(520px, 62vh, 820px);
}
.bt-carouselOverlaySection .bt-carouselHost,
.bt-carouselOverlaySection .bt-carouselHost .bt-carousel,
.bt-carouselOverlaySection .bt-carouselHost .bt-carousel__viewport,
.bt-carouselOverlaySection .bt-carouselHost .bt-carousel__track{
  height: 100%;
}
.bt-carouselOverlay{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none; /* no bloquea flechas del carrusel */
  padding: clamp(16px, 4vw, 44px);
  z-index: 5;
}
.bt-carouselOverlay__panel{
  width: min(var(--bt-overlay-maxw, 860px), 92vw);
  background: var(--bt-overlay-bg, rgba(8,29,55,.72));
  border-radius: var(--bt-overlay-radius, 18px);
  padding: var(--bt-overlay-pad, 28px);
  color: var(--bt-overlay-text, rgba(255,255,255,.92));
  backdrop-filter: blur(var(--bt-overlay-blur, 6px));
  -webkit-backdrop-filter: blur(var(--bt-overlay-blur, 6px));
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.bt-carouselOverlay__title{
  margin: 0 0 18px 0;
  text-align: center;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: var(--bt-overlay-title-tracking, .18em);
  font-size: var(--bt-overlay-title-size, 48px);
  color: var(--bt-overlay-text, rgba(255,255,255,.92));
}
.bt-carouselOverlay__grid{
  display: grid;
  gap: var(--bt-overlay-grid-gap, 12px);
}
.bt-stage{
  position: relative;
  width: 100%;

  /* ✅ fallback tema */
  background: var(--bt-stage-bg, var(--bt-bg, #000));

  /* ✅ el alto lo manda el stage (independiente del contenido) */
  height: var(--bt-stage-h, auto);

  /* si no definiste height, puedes usar min-height como “modo auto” */
  min-height: var(--bt-stage-minh, clamp(520px, 62vh, 820px));

  /* ✅ clave: evita que el contenido empuje el stage */
  overflow: hidden;
}
.bt-stage[data-bt-height="fixed"]{
  height: var(--bt-stage-h, 680px);
  min-height: 0;
}
.bt-stage[data-bt-height="auto"]{
  height: auto;
  min-height: var(--bt-stage-minh, clamp(520px, 62vh, 820px));
  overflow: visible; /* aquí sí dejas crecer por contenido */
}
.bt-stage__bg{
  position: absolute;
  inset: 0;
  z-index: 1;

  background-color: var(--bt-stage-bg, var(--bt-bg, #000));
  background-image: var(--bt-stage-image, none);
  background-size: var(--bt-stage-size, cover);
  background-position: var(--bt-stage-focus, 50% 50%);
  background-repeat: no-repeat;
}
.bt-stage__bgMedia{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

  object-fit: var(--bt-stage-fit, cover);
  object-position: var(--bt-stage-focus, 50% 50%);
}
.bt-stage__content{
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0; /* importante para scroll interno en flex/grid */
}
.bt-stage--scroll .bt-stage__content{ overflow: auto; }
.bt-stage--clip   .bt-stage__content{ overflow: hidden; }
.bt-stage__overlay{
  position: absolute;
  inset: 0;
  z-index: 3;

  display: grid;
  place-items: center;

  padding: var(--bt-stage-overlay-pad, clamp(16px, 3vw, 36px));

  pointer-events: none; /* permite interactuar/scroll con el contenido debajo */
}
.bt-stage__overlay--interactive{
  pointer-events: auto;
}
.bt-stage__overlay--scroll .bt-carouselOverlay__panel,
.bt-stage__overlay--scroll .bt-stagePanel{
  max-height: calc(100% - (2 * var(--bt-stage-overlay-pad, clamp(16px, 3vw, 36px))));
  overflow: auto;
}
.bt-stage__overlay.bt-carouselOverlay{
  /* override .bt-carouselOverlay padding (declared later) */
  padding: var(--bt-stage-overlay-pad, clamp(16px, 3vw, 36px)) !important;
}
.bt-stage__overlay--scroll.bt-carouselOverlay .bt-carouselOverlay__panel{
  max-height: calc(100% - (2 * var(--bt-stage-overlay-pad, clamp(16px, 3vw, 36px)))) !important;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px){.bt-carouselOverlaySection{ --bt-stage-h: 100svh !important; }.bt-carouselOverlay__panel{ width: 94vw; }}
@media (max-width: 420px){.bt-carouselOverlay__panel{ width: 80vw; }}
@media (max-width: 768px){.bt-carouselOverlaySection{
    --bt-stage-h: 100svh !important;              /* reemplaza clamp(720px...) inline */
    --bt-stage-overlay-pad: 12px !important;      /* controla el max-height del panel scroll */
    --bt-overlay-maxw: 92vw !important;
    --bt-overlay-pad: 14px !important;            /* reduce padding interno */
    --bt-overlay-title-size: 22px !important;     /* baja el título */
    --bt-overlay-grid-gap: 10px !important;
  }.bt-carouselOverlaySection .bt-carouselOverlay{
    padding: 12px !important; /* antes: clamp(16px,4vw,44px) */
  }.bt-carouselOverlaySection .bt-ovKey,
  .bt-carouselOverlaySection .bt-ovVal{
    padding: 10px 12px !important;
  }.bt-carouselOverlaySection .bt-ovKey{
    font-size: 10.5px !important;
    letter-spacing: .14em !important;
  }.bt-carouselOverlaySection .bt-ovVal{
    font-size: 12.5px !important;
    line-height: 1.32 !important;
  }}
@media (max-width: 420px){.bt-carouselOverlaySection{
    --bt-stage-overlay-pad: 10px !important;
    --bt-overlay-pad: 12px !important;
    --bt-overlay-title-size: 20px !important;
    --bt-overlay-grid-gap: 9px !important;
  }.bt-carouselOverlaySection .bt-ovVal{
    font-size: 12px !important;
  }}
.bt-stage__overlay--interactive{
  pointer-events: none; /* deja pasar clicks */
}
.bt-stage__overlay--interactive :is(.bt-carouselOverlay__panel, .bt-stagePanel){
  pointer-events: auto;
}
.bt-stage .bt-carousel__arrow{
  z-index: 50;
}
.bt-carouselOverlaySection .bt-carouselOverlay__panel{
  width: var(--bt-ovPanel-w, auto);
  height: var(--bt-ovPanel-h, auto);
}
.bt-carouselOverlaySection[style*="--bt-ovPanel-h"] .bt-stage__overlay,
.bt-carouselOverlaySection[style*="--bt-ovPanel-h"] .bt-carouselOverlay{
  height: 100%;
}
.bt-carouselOverlaySection[style*="--bt-ovPanel-h"] .bt-stage{
  /* usa tu token existente de stage height como referencia */
  min-height: var(--bt-stage-h, 720px);
}
.bt-carouselOverlaySection[data-bt-overlay-mode="full"] .bt-stage__overlay{
  place-items: stretch;
  padding: var(--bt-stage-overlay-pad, 0px);
}
.bt-carouselOverlaySection[data-bt-overlay-mode="full"] .bt-stage--scroll .bt-stage__content{
  overflow: var(--bt-stage-content-overflow, auto);
}
.bt-carouselOverlaySection[data-bt-overlay-mode="full"] .bt-stage__content{
  position: relative;
  z-index: 4;
}
.bt-carouselOverlaySection[data-bt-overlay-mode="full"] .bt-stage__overlay{
  z-index: 3;
}
.bt-carouselOverlaySection[data-bt-overlay-mode="full"] .bt-stage__overlay.bt-carouselOverlay{
  pointer-events: none;
}
.bt-carouselOverlaySection[data-bt-overlay-mode="full"] .bt-carouselOverlay__panel{
  pointer-events: auto;
}
/* Overlay full: flechas siempre visibles arriba del panel */
.bt-carouselOverlaySection .bt-carousel__arrow{
  z-index: 80 !important;
}

/* Si el overlay full está tapando visualmente, bájalo un poco */
.bt-carouselOverlaySection .bt-carouselOverlay{
  z-index: 20 !important;
}
/* =========================================================
   Variant: overlay FULL safe (opt-in)
   Use on sections that run full-cover overlay + carousel arrows
   ========================================================= */
.bt-stage.bt-stage--overlayFullSafe{
  --bt-stage-content-overflow: visible;
  isolation: isolate;
}

/* ✅ Content debe cubrir todo el stage (reemplaza el fix local) */
.bt-stage.bt-stage--overlayFullSafe .bt-stage__content{
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  z-index: 30;
}

.bt-stage.bt-stage--overlayFullSafe .bt-stage__overlay{
  position: absolute;
  z-index: 20;
}

/* Flechas arriba */
.bt-stage.bt-stage--overlayFullSafe .bt-carousel__arrow{
  z-index: 60;
}

/* Si overlay bloquea clicks */
.bt-stage.bt-stage--overlayFullSafe .bt-stage__overlay{
  pointer-events: none;
}
.bt-stage.bt-stage--overlayFullSafe .bt-carouselOverlay__panel{
  pointer-events: auto;
}