:root {
  --purple: #2e335a;
  --purple-bright: #4a5296;
  --purple-soft: rgba(46, 51, 90, 0.5);
  --purple-border: rgba(102, 112, 180, 0.38);
  --purple-glow: rgba(74, 82, 150, 0.4);
  --purple-text: rgba(196, 200, 235, 0.92);
  --red: #e11d48;
  --black: #0b0b0f;
  --white: #ffffff;
  --max-width: 1920px;
  --sitemap-arrow: #5eb0ff;
}

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;

}

a {
  color: inherit;
  text-decoration: none;
}

.bf-root {
  min-height: 100vh;
}

/* Header — dos filas (desktop): contacto + accesos | logo + menú centrado + redes + CTA */
.bf-header {
  width: 100%;
  padding: 0;
}

.bf-header-wrap {
  width: 100%;
}

.bf-header-top--desktop {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}

.bf-header-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bf-header-top-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.bf-header-top-wa:hover {
  opacity: 0.92;
}

.bf-header-top-wa-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.bf-header-top-wa-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.bf-header-top-wa-cue {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-text);
}

.bf-header-top-wa-phone {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
}

.bf-header-top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px 26px;
  flex-wrap: wrap;
}

.bf-header-top-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bf-header-top-link:hover {
  color: var(--purple-text);
}

a.bf-header-top-link.router-link-active {
  color: rgba(255, 255, 255, 0.95);
}

.bf-header-main {
  position: relative;
}

.bf-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 40px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px 28px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.bf-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  justify-self: start;
}

.bf-logo--header img {
  height: 92px;
  width: auto;
  display: block;
  margin: 0;
}

.bf-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.bf-nav-main--desktop {
  justify-self: stretch;
  justify-content: center;
  gap: 10px 26px;
  flex-wrap: wrap;
}

.bf-header-social--desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.bf-header-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bf-header-social-link:hover {
  border-color: var(--purple-border);
  background: rgba(46, 51, 90, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

.bf-nav-cta--desktop {
  justify-self: end;
}

.bf-nav-link {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 2px;
  position: relative;
}

.bf-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-bright), var(--red));
  transition: width .2s ease;
  border-radius: 2px;
  box-shadow: 0 0 12px var(--purple-glow);
}

.bf-nav-link:hover {
  color: var(--white);
}

.bf-nav-link:hover::after {
  width: 100%;
}

.bf-nav-link--active {
  color: var(--white);
}

.bf-nav-link--active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright) 45%, var(--red));
}

.bf-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-bright) 55%, #5a63b8 100%);
  border: 1px solid var(--purple-border);
  box-shadow:
    0 4px 18px rgba(46, 51, 90, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bf-nav-cta:hover {
  color: var(--white);
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 8px 26px rgba(46, 51, 90, 0.55),
    0 0 0 1px rgba(225, 29, 72, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.bf-nav-cta:active {
  transform: translateY(0);
}

/* Ocultar CTA duplicado del escritorio / móvil según viewport */
.bf-nav-cta--mobile-bar {
  display: none;
}

.bf-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--purple-border);
  border-radius: 12px;
  background: rgba(46, 51, 90, 0.35);
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bf-nav-burger:hover {
  background: rgba(46, 51, 90, 0.55);
  border-color: rgba(225, 29, 72, 0.35);
}

.bf-nav-burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
}

.bf-nav-burger--open .bf-nav-burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bf-nav-burger--open .bf-nav-burger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.bf-nav-burger--open .bf-nav-burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bf-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.bf-mobile-nav-backdrop--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bf-mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  width: min(320px, 90vw);
  height: 100%;
  max-height: 100dvh;
  background: linear-gradient(180deg, #12121a 0%, #0b0b0f 45%, #0a0a12 100%);
  border-left: 1px solid var(--purple-border);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bf-mobile-nav-panel--open {
  transform: translateX(0);
}

.bf-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.bf-mobile-nav-title {
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-text);
}

.bf-mobile-nav-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bf-mobile-nav-close:hover {
  border-color: var(--purple-border);
  background: rgba(46, 51, 90, 0.35);
}

.bf-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bf-mobile-nav-link {
  display: block;
  padding: 14px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bf-mobile-nav-link:hover {
  color: var(--white);
  background: rgba(46, 51, 90, 0.35);
  border-color: var(--purple-border);
}

.bf-mobile-nav-link--active {
  color: var(--white);
  background: rgba(46, 51, 90, 0.45);
  border-color: rgba(225, 29, 72, 0.35);
}

.bf-mobile-nav-cta {
  margin-top: 12px;
  justify-content: center;
  gap: 8px;
}

a.bf-logo {
  display: flex;
}

.bf-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 190px;
}

.bf-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.bf-icon-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
  transition: .15s ease;
}

.bf-lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.bf-lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
}

/* Hero */
.bf-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bf-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bfHeroSwiper {
  width: 100%;
  height: 100%;
}

.bfHeroSwiper .swiper-wrapper,
.bfHeroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.bfHeroSwiper .swiper-slide {
  position: relative;
}

.bf-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

.bf-hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--black);
  /* background:
    linear-gradient(90deg, rgba(0,0,0,0.84), rgba(0,0,0,0.60) 35%, rgba(0,0,0,0.35)),
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.65)); */
}

.bf-services-horizontal .bfServicesHorizontalSwiper {
  padding: 4px 0 36px;
}

.bf-services-horizontal .swiper-slide {
  height: auto;
}

.bf-hero-inner {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  width: 100%;
  padding: 0px 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.bf-hero-content {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bf-hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bf-hero-logo {
  display: block;
  width: clamp(100px, 26vw, 188px);
  height: auto;
  max-height: clamp(100px, 22vw, 168px);
  object-fit: contain;
  filter: drop-shadow(0 6px 32px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 28px rgba(74, 82, 150, 0.35));
}

.bf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 2px var(--purple),
    0 0 18px rgba(225, 29, 72, 0.55),
    0 0 28px var(--purple-glow);
}

.bf-hero-title {
  margin: 14px 0 10px;
  font-size: 58px;
  line-height: 1.00;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 56px var(--purple-glow), 0 2px 20px rgba(0, 0, 0, 0.5);
}

.bf-hero-subtitle {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.bf-hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.bf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bf-btn:not(.bf-btn-primary):hover {
  border-color: var(--purple-border);
  background: rgba(46, 51, 90, 0.2);
  box-shadow: 0 0 0 1px rgba(46, 51, 90, 0.35);
}

.bf-btn-primary {
  background: var(--red);
  border-color: rgba(102, 112, 180, 0.5);
  color: #fff;
  font-weight: 800;
  box-shadow:
    0 18px 30px rgba(225, 29, 72, 0.22),
    0 0 0 1px rgba(46, 51, 90, 0.5),
    0 8px 28px rgba(46, 51, 90, 0.3);
}

.bf-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  transition: .15s ease;
}

/* Services panel */
.bf-services-panel {
  background: rgba(31, 31, 32, 0.873);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.bf-services-horizontal {
  width: 100vw;
  margin-top: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  padding: 0 80px;
}

.bfServicesHorizontalSwiper {
  width: 100%;
  padding: 4px 0 10px;
  overflow: hidden;
}

.bfServicesHorizontalSwiper .swiper-slide {
  width: 340px;
}

.bfServicesHorizontalPagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  width: 7px;
  height: 7px;
}

.bfServicesHorizontalPagination .swiper-pagination-bullet-active {
  background: var(--red);
  box-shadow:
    0 0 0 3px var(--purple-soft),
    0 0 0 6px rgba(225, 29, 72, 0.12);
}

.bf-service-card--horizontal {
  height: 100%;
}

.bf-service-card--horizontal .bf-service-card-cta {
  margin-top: auto;
}

.bfServicesSwiper {
  height: 520px;
}

.bfServicesSwiper .swiper-slide {
  height: auto;
}

.bf-services-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bf-services-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.bf-service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(102, 112, 180, 0.12);
}

.bf-service-card:hover {
  border-color: var(--purple-border);
}

.bf-service-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bf-service-meta {
  padding: 2px 2px 0;
}

.bf-service-category {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-text);
}

.bf-service-name {
  margin-top: 6px;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
}

.bf-service-subtitle {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.bf-service-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(46, 51, 90, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 13px;
}

.bf-service-cta:hover {
  border-color: rgba(255, 255, 255, 0.22);
  filter: brightness(1.05);
}

.bfServicesPagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  width: 7px;
  height: 7px;
}

.bfServicesPagination .swiper-pagination-bullet-active {
  background: var(--red);
  box-shadow:
    0 0 0 3px var(--purple-soft),
    0 0 0 6px rgba(225, 29, 72, 0.12);
}

@media (max-width: 980px) {
  .bf-header {
    position: relative;
    z-index: 120;
  }

  .bf-header-top--desktop {
    display: none !important;
  }

  .bf-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 10px 14px 12px;
    grid-template-columns: unset;
  }

  .bf-nav-burger {
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .bf-nav-main--desktop,
  .bf-header-social--desktop,
  .bf-nav-cta--desktop {
    display: none !important;
  }

  .bf-logo--header {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-self: unset;
    min-width: 0;
    z-index: 1;
    pointer-events: auto;
  }

  .bf-logo--header img {
    height: 80px;
  }

  .bf-nav-cta--mobile-bar {
    display: inline-flex !important;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .bf-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .bf-services-panel {
    max-width: 520px;
  }

  .bfServicesSwiper {
    height: 420px;
  }

  .bf-hero-title {
    font-size: 44px;
  }

  .bfServicesHorizontalSwiper .swiper-slide {
    width: 280px;
  }
}

/* Discover / Landing sections */
.bf-discover {
  background: linear-gradient(180deg, rgba(11, 11, 15, 0.0), rgba(11, 11, 15, 0.88) 22%, rgba(11, 11, 15, 1) 100%);
  padding: 72px 0 96px;
}

.bf-discover-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.bf-discover-main {
  min-width: 0;
}

.bf-discover-sidebar {
  min-width: 0;
}

.bf-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 22px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(102, 112, 180, 0.16);
}

.bf-section {
  margin-top: 22px;
}

.bf-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bf-section-title {
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.bf-section-see-all {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(225, 29, 72, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(225, 29, 72, 0.35);
  padding-bottom: 2px;
}

.bf-section-see-all:hover {
  color: var(--purple-text);
  border-bottom-color: var(--purple-border);
}

.bf-destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bf-destination-card {
  flex: 1 1 300px;
  min-width: 300px;

  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.20);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bf-destination-card:hover {
  border-color: var(--purple-border);
  box-shadow: 0 12px 40px rgba(46, 51, 90, 0.25);
}

.bf-destination-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.bf-destination-body {
  padding: 12px 12px 14px;
}

.bf-destination-category {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-text);
}

.bf-destination-name {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.bf-destination-cta {
  margin: 10px auto 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
}

.bf-destination-cta:hover {
  border-color: rgba(225, 29, 72, 0.5);
  background: rgba(46, 51, 90, 0.25);
  box-shadow: 0 0 0 1px var(--purple-border);
}

.bf-highlights {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 14px;
}

.bf-highlights-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: fit-content;
}

.bf-stat {
  border-radius: 18px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.04);
}

.bf-stat-number {
  color: #fff;
  font-size: 22px;
  font-weight: 1100;
  text-shadow: 0 0 28px var(--purple-glow);
}

.bf-stat-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.bf-stat--vip {
  grid-column: 1 / -1;
  border-color: rgba(225, 29, 72, 0.35);
  border-left: 3px solid var(--red);
}

.bf-highlights-note {
  border-radius: 18px;
  padding: 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(46, 51, 90, 0.18);
}

.bf-highlights-note-title {
  font-weight: 1100;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.80);
}

.bf-highlights-note-text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.bf-highlights-note-badge {
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.bf-plan {
  background: rgba(255, 255, 255, 0.04);
}

.bf-plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bf-plan-time-number {
  font-size: 26px;
  font-weight: 1100;
}

.bf-plan-time-label {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.bf-plan-title {
  margin-top: 14px;
  font-weight: 1100;
  font-size: 16px;
}

.bf-plan-text {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.bf-sidebar-section {
  margin-top: 18px;
}

.bf-side-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bf-side-list-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bf-side-list-item:hover {
  border-color: var(--purple-border);
  box-shadow: inset 0 0 0 1px rgba(46, 51, 90, 0.25);
}

.bf-side-cta {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.bf-side-cta:hover {
  border-color: rgba(225, 29, 72, 0.50);
}

.bf-side-list-item--row {
  align-items: flex-start;
}

.bf-side-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 2px var(--purple),
    0 0 16px rgba(225, 29, 72, 0.45),
    0 0 22px var(--purple-glow);
}

.bf-side-story-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
}

.bf-side-testimonial {
  gap: 12px;
}

.bf-side-testimonial-thumb {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.bf-side-testimonial .fa-arrow-up-right-from-square {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.bf-side-text {
  min-width: 0;
}

.bf-side-title {
  font-weight: 1000;
  font-size: 13px;
}

.bf-side-subtitle {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

@media (max-width: 1400px) {
  .bf-discover-inner {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .bf-discover-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .bf-highlights {
    grid-template-columns: 1fr;
  }

  .bf-highlights-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact section */
.bf-contact {
  padding: 8px 0 96px;
  background: linear-gradient(180deg, rgba(11, 11, 15, 1) 0%, rgba(8, 8, 12, 1) 100%);
}

.bf-contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.bf-contact-inner>.bf-head-display {
  grid-column: 1 / -1;
}

.bf-contact-inner--no-map{
  grid-template-columns: 1fr;
}

.bf-contact-inner--no-map .bf-contact-side{
  max-width: 440px;
  width: 100%;
  justify-self: center;
}

.bf-contact-main {
  min-width: 0;
}

.bf-contact-map {
  margin-top: 12px;
  min-width: 0;
}

.bf-contact-map-title {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-text);
}

.bf-contact-map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--purple-border);
  min-height: 280px;
  box-shadow: 0 12px 36px rgba(46, 51, 90, 0.2);
}

.bf-contact-map-frame iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.bf-contact-title {
  margin: 0;
  font-size: 40px;
  font-weight: 1000;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 36px var(--purple-glow);
  border-left: 4px solid var(--purple-bright);
  padding-left: 16px;
}

.bf-contact-subtitle {
  margin: 10px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.bf-contact-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bf-contact-info-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(102, 112, 180, 0.08);
}

.bf-contact-info-card--social{
  align-items: start;
}

.bf-contact-info-card--social .bf-contact-info-icon{
  margin-top: 2px;
}

.bf-contact-side-social{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.bf-contact-side-social-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.bf-contact-side-social-link:hover{
  background: rgba(46, 51, 90, 0.35);
  color: #fff;
}

.bf-contact-side-social-link i{
  width: 1.15em;
  text-align: center;
  opacity: 0.9;
}

.bf-contact-info-card--highlight {
  border-color: rgba(225, 29, 72, 0.45);
  border-left: 3px solid var(--red);
  background: linear-gradient(135deg, rgba(46, 51, 90, 0.45), rgba(225, 29, 72, 0.14));
}

.bf-contact-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--purple-border);
  background: rgba(46, 51, 90, 0.35);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 16px rgba(46, 51, 90, 0.35);
}

.bf-contact-info-title {
  font-size: 14px;
  font-weight: 1000;
}

.bf-contact-info-text {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.bf-contact-info-note {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.bf-contact-info-link {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.93);
}

.bf-contact-info-link:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1400px) {
  .bf-contact-inner {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .bf-contact-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .bf-contact-title {
    font-size: 32px;
  }
}

/* Página dedicada /contactame: mismo bloque que la home, sin doble fondo ni doble padding horizontal */
.bf-contact-page-wrap .bf-contact--embedded {
  padding: 0 0 8px;
  background: transparent;
}

.bf-contact-page-wrap .bf-contact-inner {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 980px) {
  .bf-contact-page-wrap .bf-contact-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Encabezados con marca de agua (páginas, secciones, FAQ) */
.bf-head-display {
  position: relative;
  text-align: center;
  margin-bottom: 36px;
  /* Centra título + descripción en el eje vertical, alineado con el ghost (50%/50%) */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  /* Espacio vertical para que el ghost no se corte (ascendentes / descendentes) */
  padding: clamp(28px, 5vw, 52px) max(16px, env(safe-area-inset-right)) clamp(32px, 5.5vw, 60px) max(16px, env(safe-area-inset-left));
  min-height: clamp(168px, 30vw, 268px);
  overflow: visible;
}

.bf-head-display--page {
  margin-bottom: 32px;
  min-height: clamp(188px, 34vw, 300px);
  padding-top: clamp(32px, 5.5vw, 60px);
  padding-bottom: clamp(36px, 6vw, 64px);
}

.bf-head-display--section {
  margin-bottom: 28px;
  min-height: clamp(152px, 28vw, 240px);
}

.bf-head-display--compact {
  margin-bottom: 22px;
  min-height: clamp(132px, 24vw, 216px);
  padding: clamp(20px, 3.5vw, 40px) max(12px, env(safe-area-inset-right)) clamp(22px, 3.8vw, 44px) max(12px, env(safe-area-inset-left));
}

.bf-head-display--compact .bf-head-bg-word {
  font-size: clamp(40px, 11vw, 120px);
}

/* Sidebar: títulos sin marca de agua */
.bf-head-display--no-ghost {
  min-height: 0;
  padding: 4px 0 12px;
  margin-bottom: 10px;
  gap: 0;
  justify-content: flex-start;
}

.bf-head-display--in-panel {
  margin-bottom: 20px;
  min-height: clamp(108px, 19vw, 176px);
  padding: clamp(18px, 3vw, 36px) 12px clamp(20px, 3.2vw, 40px);
}

.bf-head-display--in-panel .bf-head-bg-word {
  font-size: clamp(36px, 9vw, 100px);
  color: rgba(255, 255, 255, 0.05);
}

.bf-head-bg-word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Jost', sans-serif;
  font-size: clamp(56px, 14vw, 160px);
  font-weight: 1000;
  letter-spacing: 0.04em;
  line-height: 1.02;
  color: rgba(255, 255, 255, 0.055);
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 0;
  user-select: none;
  overflow: visible;
}

.bf-head-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: #fff;
}

.bf-head-title--page {
  font-size: clamp(32px, 4.5vw, 46px);
}

.bf-head-title--section {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.015em;
}

.bf-head-lead {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 560px;
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.bf-head-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

/* Barra lateral: ocupar todo el ancho bajo el ghost */
.bf-head-display--toolbar {
  align-items: stretch;
}

.bf-head-display--toolbar .bf-head-title {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.bf-head-display--toolbar .bf-section-see-all {
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .bf-head-display--toolbar .bf-head-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FAQ — sección home + página */
.bf-faq-section {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, rgba(8, 8, 12, 1) 0%, rgba(11, 11, 15, 1) 40%, rgba(8, 8, 12, 1) 100%);
  overflow: visible;
}

.bf-faq-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
}

.bf-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bf-faq-list--page {
  max-width: 900px;
}

.bf-faq-item {
  border-radius: 14px;
  overflow: hidden;
}

.bf-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 18px;
  text-align: left;
  font: inherit;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bf-faq-trigger:hover {
  border-color: var(--purple-border);
  background: rgba(46, 51, 90, 0.22);
  box-shadow: inset 0 1px 0 rgba(102, 112, 180, 0.12);
}

.bf-faq-trigger:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 2px;
}

.bf-faq-trigger[aria-expanded="true"] {
  border-color: rgba(102, 112, 180, 0.45);
  border-radius: 14px 14px 0 0;
  background: rgba(46, 51, 90, 0.28);
}

.bf-faq-question {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.bf-faq-icon {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--purple-bright);
  opacity: 0.95;
  transition: transform 0.28s ease;
}

.bf-faq-trigger[aria-expanded="true"] .bf-faq-icon {
  transform: rotate(180deg);
  color: #c4c8f0;
}

.bf-faq-panel {
  border: 1px solid rgba(102, 112, 180, 0.25);
  border-top: none;
  border-radius: 0 0 14px 14px;
  background: rgba(0, 0, 0, 0.28);
}

.bf-faq-answer {
  padding: 16px 18px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  white-space: pre-line;
}

.bf-faq-section-cta {
  margin-top: 28px;
  text-align: center;
}

.bf-faq-page-note {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--purple-border);
  background: rgba(46, 51, 90, 0.18);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

@media (max-width: 980px) {
  .bf-faq-section-inner {
    padding: 0 22px;
  }
}

/* Página Mapa del sitio (panel + rejilla de tarjetas) */
.bf-sitemap-inner {
  max-width: 920px;
}

.bf-sitemap-inner>.bf-head-display .bf-head-lead {
  max-width: 640px;
}

.bf-sitemap-panel {
  margin: 0 0 24px;
  padding: 28px 32px 32px;
  border-radius: 20px;
  background: rgba(22, 26, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bf-sitemap-card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bf-sitemap-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 20px 22px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: rgba(32, 36, 56, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.bf-sitemap-card:hover {
  background: rgba(40, 45, 68, 0.98);
  border-color: rgba(94, 176, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.bf-sitemap-card.router-link-active {
  border-color: rgba(94, 176, 255, 0.45);
  background: rgba(38, 44, 68, 0.98);
}

.bf-sitemap-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.bf-sitemap-card-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}

.bf-sitemap-card-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  color: var(--sitemap-arrow);
  background: rgba(94, 176, 255, 0.12);
}

.bf-sitemap-card-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.bf-sitemap-inner .bf-services-page-back {
  margin-top: 12px;
}

@media (max-width: 720px) {
  .bf-sitemap-card-grid {
    grid-template-columns: 1fr;
  }

  .bf-sitemap-panel {
    padding: 22px 20px 26px;
  }
}

/* Página Sobre mí — hero tipo presentación + historia */
.bf-services-page.bf-about-page {
  background: linear-gradient(180deg, #0a0a0f 0%, #0e0e14 45%, #08080c 100%);
}

.bf-about-inner {
  max-width: 1180px;
}

/* Hero: texto izquierda + retrato derecha */
.bf-about-hero {
  position: relative;
  margin: 0 0 48px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--black);
}

.bf-about-hero-bg-word {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: clamp(12px, 3vw, 32px);
  font-family: 'Jost', sans-serif;
  font-size: clamp(48px, 14vw, 140px);
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  max-width: 55%;
  overflow: hidden;
}

.bf-about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 46%);
  gap: 0;
  align-items: stretch;
  min-height: min(520px, 72vh);
}

.bf-about-hero-grid--solo {
  grid-template-columns: 1fr;
  min-height: 0;
}

.bf-about-hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.bf-about-hero-kicker {
  margin: 0 0 12px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-bright);
}

.bf-about-hero-name {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: clamp(40px, 7.5vw, 76px);
  font-weight: 1000;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
}

.bf-about-hero-name-line {
  display: block;
}

.bf-about-hero-name-line--second {
  color: rgba(255, 255, 255, 0.96);
}

.bf-about-hero-tagline {
  margin: 20px 0 0;
  max-width: 420px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.bf-about-hero-lead {
  margin: 16px 0 0;
  max-width: 440px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.bf-about-hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}

.bf-about-hero-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.bf-about-hero-social-btn:hover {
  background: rgba(255, 87, 34, 0.18);
  border-color: rgba(255, 87, 34, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

.bf-about-hero-visual {
  position: relative;
  min-height: 280px;
  background: #0a0a0a;
}

.bf-about-hero-visual-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      var(--black) 0%,
      rgba(18, 18, 18, 0.75) 18%,
      rgba(18, 18, 18, 0.15) 45%,
      transparent 72%);
  pointer-events: none;
}

.bf-about-hero-portrait {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* Bloque historia */
.bf-about-story-wrap {
  margin-bottom: 40px;
}

.bf-about-story-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.bf-about-story-mark {
  width: 4px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--purple-bright), rgba(255, 87, 34, 0.35));
  flex-shrink: 0;
}

.bf-about-story-title {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.bf-about-article {
  position: relative;
  margin: 0;
}

.bf-about-body {
  position: relative;
  z-index: 1;
  font-family: 'Jost', sans-serif;
  font-size: clamp(16px, 1.12vw, 17px);
  line-height: 1.82;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.78);
}

.bf-about-body p {
  margin: 0 0 1.15em;
}

.bf-about-body p:last-child {
  margin-bottom: 0;
}

.bf-about-body strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

/* Más fotos (resto de galería) */
.bf-about-more {
  margin-bottom: 40px;
}

.bf-about-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bf-about-more-figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.bf-about-more-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bf-about-more-figure:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .bf-about-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bf-about-hero-visual {
    order: -1;
    min-height: min(320px, 42vh);
    max-height: 380px;
  }

  .bf-about-hero-visual-fade {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(18, 18, 18, 0.2) 40%,
        var(--black) 100%);
  }

  .bf-about-hero-bg-word {
    top: auto;
    bottom: 8%;
    transform: none;
    max-width: 100%;
    font-size: clamp(40px, 18vw, 90px);
    opacity: 0.9;
  }

  .bf-about-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .bf-about-more-grid {
    grid-template-columns: 1fr;
  }
}

/* Sobre mí — bloque de video YouTube */
.bf-about-video-section {
  margin-top: 44px;
  padding: clamp(40px, 6vw, 72px) clamp(22px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bf-about-video-title {
  margin: 0;
  max-width: 720px;
  font-family: 'Jost', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

.bf-about-video-lead {
  margin: 16px 0 0;
  max-width: 560px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.bf-about-video-frame {
  margin-top: 28px;
  width: 100%;
  max-width: 1400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.bf-about-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Screen reader only */
.bf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Página Servicios + filtros */
.bf-services-page {
  min-height: 60vh;
  padding: 20px 0 80px;
  background: linear-gradient(180deg, rgba(11, 11, 15, 1) 0%, rgba(8, 8, 12, 1) 100%);
}

.bf-services-page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
}

/* Desktop: columna 1 = filtros, columna 2 = resultados */
.bf-services-page-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.bf-services-page-filters-col {
  position: sticky;
  top: 96px;
}

.bf-services-filters-panel {
  padding: 18px 16px;
  margin: 0;
}

.bf-services-filters-heading {
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-text);
  margin-bottom: 14px;
  border-left: 3px solid var(--purple);
  padding-left: 10px;
}

.bf-services-page-results-col {
  min-width: 0;
}

.bf-services-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

.bf-services-filters-panel .bf-services-filters {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.bf-services-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.bf-services-select-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-text);
  opacity: 0.9;
}

.bf-services-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.55' d='M1 1.5L6 6l5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.bf-services-select:hover {
  border-color: rgba(225, 29, 72, 0.35);
}

.bf-services-select:focus {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow:
    0 0 0 2px var(--purple-soft),
    0 0 20px var(--purple-glow);
}

.bf-services-search-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 240px;
  max-width: 400px;
  padding: 0 14px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bf-services-search-label:focus-within {
  border-color: var(--purple-border);
  box-shadow: 0 0 0 2px var(--purple-soft);
}

.bf-services-filters-panel .bf-services-search-label {
  max-width: none;
  width: 100%;
  flex: none;
}

.bf-services-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  outline: none;
}

.bf-services-search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.bf-services-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  padding: 40px 16px;
}

.bf-services-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bf-services-page-card {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 100%;
}

.bf-services-page-desc {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.bf-services-page-back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Página Testimonios — estilo vertical tipo Shorts / TikTok */
.bf-testimonials-shortswrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 18px;
  padding: 4px 0 8px;
}

.bf-testimonial-shorts-card {
  position: relative;
  flex: 0 0 auto;
  width: min(500px, 86vw);
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 650px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--purple-border);
  background: #0a0a0f;
  text-decoration: none;
  color: #fff;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(46, 51, 90, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bf-testimonial-shorts-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.55),
    0 0 32px var(--purple-glow);
  border-color: rgba(102, 112, 180, 0.55);
}

.bf-testimonial-shorts-card--static {
  pointer-events: none;
}

.bf-testimonial-shorts-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transition: transform 0.45s ease;
}

.bf-testimonial-shorts-card:hover .bf-testimonial-shorts-bg {
  transform: scale(1.06);
}

.bf-testimonial-shorts-bg--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(46, 51, 90, 0.5) 0%, rgba(8, 8, 12, 0.95) 100%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 48px;
}

.bf-testimonial-shorts-scrim {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.bf-testimonial-shorts-scrim--top {
  top: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
}

.bf-testimonial-shorts-scrim--bottom {
  bottom: 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
}

.bf-testimonial-shorts-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 0;
}

.bf-testimonial-shorts-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.bf-testimonial-shorts-top-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bf-testimonial-shorts-kicker {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.bf-testimonial-shorts-handle {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bf-testimonial-shorts-play-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.bf-testimonial-shorts-play-badge {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bf-testimonial-shorts-card:hover .bf-testimonial-shorts-play-badge {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(225, 29, 72, 0.35);
}

.bf-testimonial-shorts-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bf-testimonial-shorts-bottom-title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.bf-testimonial-shorts-bottom-caption {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .bf-services-horizontal {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .bf-services-horizontal {
    padding: 0 20px;
  }

  .bf-testimonials-shortswrap {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 22px;
    gap: 14px;
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .bf-testimonial-shorts-card {
    scroll-snap-align: start;
    width: min(240px, 78vw);
  }

  .bf-testimonials-shortswrap::-webkit-scrollbar {
    height: 6px;
  }

  .bf-testimonials-shortswrap::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
  }
}

a.bf-btn {
  display: inline-flex;
}

@media (max-width: 1400px) {
  .bf-services-page-inner {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .bf-services-page-inner {
    padding: 0 20px;
  }


  .bf-head-title--page {
    font-size: clamp(28px, 7vw, 36px);
  }

  .bf-services-page-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bf-services-page-filters-col {
    position: static;
    top: auto;
  }

  .bf-services-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .bf-services-search-label {
    max-width: none;
  }
}

/* Ancla para enlace "Artículos" del footer */
.bf-jump-target {
  scroll-margin-top: 100px;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  position: absolute;
  width: 1px;
}

/* Footer */
.bf-footer {
  position: relative;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  padding: 64px 0 48px;
  margin-top: 0;
  overflow: hidden;
}

.bf-footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 40px 32px;
  align-items: start;
}

.bf-footer-brand-title {
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.bf-footer-brand-text {
  margin: 0 0 20px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

.bf-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bf-footer-social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bf-footer-social-btn:hover {
  border-color: var(--purple-border);
  background: rgba(46, 51, 90, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.bf-footer-heading {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.bf-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bf-footer-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.bf-footer-link:hover {
  color: var(--purple-text);
}

a.bf-footer-link.router-link-active {
  color: #fff;
}

.bf-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--purple-bright) 0%, var(--purple) 100%);
  box-shadow:
    0 10px 28px rgba(46, 51, 90, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, filter 0.2s ease;
}

.bf-scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.bf-scroll-top:hover {
  filter: brightness(1.12);
}

.bf-scroll-top:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .bf-footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 32px;
    gap: 36px 28px;
  }

  .bf-footer-brand {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .bf-footer {
    padding: 48px 0 40px;
  }

  .bf-footer-inner {
    grid-template-columns: 1fr;
    padding: 0 22px;
    gap: 28px;
  }

  .bf-scroll-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}