@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --bp6-green: #07846f;
  --bp6-green-dark: #056455;
  --bp6-green-soft: #edf8f5;
  --bp6-yellow: #f5d90a;
  --bp6-yellow-soft: #fff7bd;
  --bp6-ink: #17211f;
  --bp6-muted: #6e7a76;
  --bp6-line: #e8ecea;
  --bp6-white: #ffffff;
}

body.bp6-menu-open {
  overflow: hidden;
}

.bp6 {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  font-family: 'Manrope', sans-serif;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(222, 231, 227, 0.95);
  box-shadow: 0 8px 22px -22px rgba(15, 51, 43, 0.55);
}

.bp6__inner {
  width: min(1440px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.bp6__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.bp6__logo {
  display: block;
  width: 185px;
  height: auto;
}

.bp6__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.bp6__link {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  color: #596965;
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease;
}

.bp6__link:hover {
  color: var(--bp6-green-dark);
  background: #f4faf7;
}

.bp6__link.is-active {
  color: var(--bp6-green-dark);
  background: var(--bp6-green-soft);
}

.bp6__link.is-active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--bp6-green);
}

.bp6__search {
  width: 100%;
  min-width: 0;
}

.bp6__search-box {
  min-height: 44px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid #d8e3df;
  border-radius: 12px;
  background: #fafcfb;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.bp6__search-box:focus-within {
  background: #fff;
  border-color: rgba(7, 132, 111, 0.58);
  box-shadow: 0 0 0 3px rgba(7, 132, 111, 0.09);
}

.bp6__search-icon {
  width: 18px;
  height: 18px;
  justify-self: end;
  color: #75847f;
}

.bp6__search-icon svg,
.bp6__account svg,
.bp6__menu-button svg,
.bp6__mobile-search-button svg,
.bp6__drawer-close svg,
.bp6__drawer-icon svg {
  width: 18px;
  height: 18px;
}

.bp6__search input {
  width: 100%;
  height: 42px;
  min-width: 0;
  padding: 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--bp6-ink);
  font: 650 13px/1.2 'Manrope', sans-serif;
}

.bp6__search input::placeholder {
  color: #8b9995;
}

.bp6__search-submit {
  min-width: 82px;
  height: 36px;
  margin-right: 4px;
  padding: 0 15px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--bp6-green);
  font: 800 11px/1 'Manrope', sans-serif;
  cursor: pointer;
}

.bp6__search-submit:hover {
  background: var(--bp6-green-dark);
}

.bp6__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bp6__account {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #d9e3e0;
  border-radius: 10px;
  color: var(--bp6-ink);
  background: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.bp6__account:hover {
  color: var(--bp6-green-dark);
  border-color: rgba(7, 132, 111, 0.34);
  background: var(--bp6-green-soft);
}

.bp6__menu-button,
.bp6__mobile-search-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e3e0;
  border-radius: 10px;
  color: var(--bp6-ink);
  background: #fff;
  cursor: pointer;
}

.bp6__backdrop,
.bp6__drawer {
  display: none;
}

.bp6 a:focus-visible,
.bp6 button:focus-visible,
.bp6 input:focus-visible {
  outline: 3px solid rgba(7, 132, 111, 0.22);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .bp6 {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .bp6__inner {
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 16px;
  }

  .bp6__nav {
    display: none;
  }

  .bp6__menu-button {
    display: inline-flex;
  }

  .bp6__account span {
    display: none;
  }

  .bp6__account {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .bp6__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(18, 28, 25, 0.38);
    opacity: 0;
    visibility: hidden;
    transition: opacity 170ms ease, visibility 170ms ease;
  }

  .bp6__drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1101;
    width: min(310px, 86vw);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 22px 0 50px -28px rgba(7, 30, 25, 0.55);
    transform: translateX(-102%);
    visibility: hidden;
    transition: transform 210ms cubic-bezier(.22,.8,.25,1), visibility 210ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .bp6.is-menu-open .bp6__backdrop {
    opacity: 1;
    visibility: visible;
  }

  .bp6.is-menu-open .bp6__drawer {
    transform: translateX(0);
    visibility: visible;
  }

  .bp6__drawer-head {
    min-height: 78px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 10px;
    padding: 13px 12px;
    background: linear-gradient(135deg, #f6dc09 0%, #ffe24b 100%);
    color: #202018;
  }

  .bp6__drawer-avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--bp6-green-dark);
    box-shadow: 0 3px 10px -6px rgba(0, 0, 0, 0.45);
  }

  .bp6__drawer-avatar svg {
    width: 20px;
    height: 20px;
  }

  .bp6__drawer-profile {
    min-width: 0;
    text-decoration: none;
    color: #211f14;
  }

  .bp6__drawer-profile strong,
  .bp6__drawer-profile small {
    display: block;
  }

  .bp6__drawer-profile strong {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
  }

  .bp6__drawer-profile small {
    margin-top: 3px;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    opacity: .68;
  }

  .bp6__drawer-close {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #211f14;
    background: rgba(255, 255, 255, 0.58);
    cursor: pointer;
  }

  .bp6__drawer-body {
    flex: 1;
    padding: 9px 0 14px;
  }

  .bp6__drawer-section + .bp6__drawer-section {
    margin-top: 6px;
    padding-top: 7px;
    border-top: 1px solid var(--bp6-line);
  }

  .bp6__drawer-title {
    margin: 0;
    padding: 8px 16px 5px;
    color: #939c98;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .bp6__drawer-link {
    min-height: 45px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 14px;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    color: #27312e;
    text-decoration: none;
    font-size: 11px;
    font-weight: 650;
    transition: color 140ms ease, background 140ms ease;
  }

  .bp6__drawer-link:hover {
    color: var(--bp6-green-dark);
    background: #f7faf9;
  }

  .bp6__drawer-link.is-active {
    color: var(--bp6-green-dark);
    background: linear-gradient(90deg, var(--bp6-yellow-soft), #fff 78%);
    font-weight: 800;
  }

  .bp6__drawer-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111714;
  }

  .bp6__drawer-link.is-active .bp6__drawer-icon {
    color: var(--bp6-green-dark);
  }

  .bp6__drawer-chevron {
    color: #a1aaa6;
    font-size: 16px;
    font-weight: 800;
    text-align: right;
  }

  .bp6__drawer-footer {
    padding: 10px 14px max(14px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--bp6-line);
  }

  .bp6__drawer-footer-link {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #fff;
    background: var(--bp6-green);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
  }
}

@media (max-width: 720px) {
  .bp6__inner {
    width: calc(100% - 24px);
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 0 11px;
  }

  .bp6__brand {
    grid-column: 1;
    grid-row: 1;
  }

  .bp6__logo {
    width: 148px;
  }

  .bp6__actions {
    grid-column: 2;
    grid-row: 1;
  }

  .bp6__account {
    display: none;
  }

  .bp6__mobile-search-button,
  .bp6__menu-button {
    display: inline-flex;
  }

  .bp6__search {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
  }

  .bp6.is-search-open .bp6__search {
    display: block;
  }

  .bp6__search-box {
    grid-template-columns: 36px minmax(0, 1fr) 42px;
  }

  .bp6__search-submit {
    position: relative;
    width: 38px;
    min-width: 38px;
    height: 36px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    text-indent: -9999px;
  }

  .bp6__search-submit::after {
    content: '→';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
    text-indent: 0;
  }
}

@media (max-width: 360px) {
  .bp6__logo {
    width: 132px;
  }

  .bp6__actions {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bp6 *,
  .bp6 *::before,
  .bp6 *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* v6.1 Bisnesplas color alignment */
@media (max-width: 1120px) {
  .bp6__drawer-head {
    background:
      linear-gradient(135deg, #07846f 0%, #056455 100%);
    color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  }

  .bp6__drawer-head::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5d90a 0 22%, rgba(245, 217, 10, 0.18) 22% 100%);
  }

  .bp6__drawer-head {
    position: relative;
  }

  .bp6__drawer-avatar {
    background: rgba(255, 255, 255, 0.96);
    color: var(--bp6-green-dark);
    box-shadow: 0 6px 14px -10px rgba(0, 0, 0, 0.72);
  }

  .bp6__drawer-profile {
    color: #ffffff;
  }

  .bp6__drawer-profile small {
    color: rgba(255, 255, 255, 0.72);
    opacity: 1;
  }

  .bp6__drawer-close {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .bp6__drawer-close:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  .bp6__drawer-body {
    padding-top: 12px;
  }

  .bp6__drawer-title {
    padding: 8px 16px 6px;
    color: #81908a;
    letter-spacing: 0.11em;
  }

  .bp6__drawer-link {
    min-height: 47px;
    color: #33413d;
  }

  .bp6__drawer-link:hover {
    color: var(--bp6-green-dark);
    background: #f3f9f7;
  }

  .bp6__drawer-link.is-active {
    color: var(--bp6-green-dark);
    background: linear-gradient(90deg, #e8f6f1 0%, #f7fbf9 78%, #ffffff 100%);
  }

  .bp6__drawer-link.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--bp6-green);
  }

  .bp6__drawer-link {
    position: relative;
  }

  .bp6__drawer-icon {
    color: #26312e;
  }

  .bp6__drawer-link.is-active .bp6__drawer-icon,
  .bp6__drawer-link.is-active .bp6__drawer-chevron {
    color: var(--bp6-green-dark);
  }

  .bp6__drawer-footer {
    background: #fbfdfc;
  }

  .bp6__drawer-footer-link {
    background: linear-gradient(135deg, #07846f 0%, #056455 100%);
    box-shadow: 0 10px 20px -16px rgba(5, 100, 85, 0.9);
  }
}

/* v6.2 mobile single-row header: icon + search + menu */
.bp6__logo--icon {
  display: none;
}

@media (max-width: 720px) {
  .bp6__inner {
    width: calc(100% - 20px);
    min-height: 62px;
    grid-template-columns: 42px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
  }

  .bp6__brand {
    grid-column: 1;
    grid-row: 1;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
  }

  .bp6__logo--full {
    display: none;
  }

  .bp6__logo--icon {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .bp6__search {
    grid-column: 2;
    grid-row: 1;
    display: block !important;
    min-width: 0;
  }

  .bp6__search-box {
    min-height: 42px;
    grid-template-columns: 34px minmax(0, 1fr) 40px;
    border-radius: 11px;
  }

  .bp6__search input {
    height: 40px;
    padding: 0 6px;
    font-size: 12px;
  }

  .bp6__search-icon {
    width: 17px;
    height: 17px;
  }

  .bp6__search-submit {
    width: 36px;
    min-width: 36px;
    height: 34px;
    margin-right: 3px;
    border-radius: 9px;
  }

  .bp6__actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
  }

  .bp6__mobile-search-button,
  .bp6__account {
    display: none !important;
  }

  .bp6__menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    width: calc(100% - 16px);
    grid-template-columns: 40px minmax(0, 1fr) 42px;
    gap: 6px;
  }

  .bp6__brand,
  .bp6__logo--icon {
    width: 40px;
    height: 40px;
  }

  .bp6__search-box {
    grid-template-columns: 30px minmax(0, 1fr) 36px;
  }

  .bp6__search input {
    font-size: 11.5px;
  }

  .bp6__menu-button {
    width: 42px;
    height: 42px;
  }
}

/* v6.3 search presentation for desktop and mobile */
.bp6__search {
  max-width: 760px;
  justify-self: stretch;
}

.bp6__search-box {
  min-height: 46px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  border-radius: 13px;
  background: #ffffff;
  border-color: #d5e2dd;
  box-shadow: 0 8px 22px -20px rgba(7, 72, 60, 0.65), inset 0 1px 0 rgba(255,255,255,.95);
}

.bp6__search-box:focus-within {
  border-color: rgba(7, 132, 111, 0.62);
  box-shadow: 0 0 0 4px rgba(7, 132, 111, 0.08), 0 12px 24px -20px rgba(7, 72, 60, 0.72);
}

.bp6__search-icon {
  justify-self: center;
  color: var(--bp6-green);
}

.bp6__search input {
  height: 44px;
  padding: 0 12px 0 4px;
  font-size: 13px;
  font-weight: 650;
}

.bp6__search input::placeholder {
  color: #8b9995;
  opacity: 1;
}

.bp6__search-submit {
  min-width: 92px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-right: 4px;
  padding: 0 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a8c75 0%, #06705e 100%);
  box-shadow: 0 8px 16px -13px rgba(4, 91, 76, .95);
}

.bp6__search-submit:hover {
  background: linear-gradient(135deg, #087f6b 0%, #055e50 100%);
}

.bp6__submit-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.bp6__submit-icon svg {
  width: 16px;
  height: 16px;
}

.bp6__submit-label {
  display: inline-block;
}

@media (max-width: 720px) {
  .bp6__search {
    max-width: none;
  }

  .bp6__search-box {
    min-height: 42px;
    grid-template-columns: minmax(0, 1fr) 40px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 7px 18px -17px rgba(7, 72, 60, 0.7);
  }

  .bp6__search-icon {
    display: none;
  }

  .bp6__search input {
    height: 40px;
    padding: 0 10px 0 12px;
    font-size: 12px;
    min-width: 0;
  }

  .bp6__search-submit {
    position: static;
    width: 36px;
    min-width: 36px;
    height: 34px;
    margin-right: 3px;
    padding: 0;
    border-radius: 9px;
    color: #fff;
    font-size: 0;
    text-indent: 0;
    overflow: visible;
  }

  .bp6__search-submit::after {
    content: none;
  }

  .bp6__submit-label {
    display: none;
  }

  .bp6__submit-icon {
    display: inline-flex;
    width: 17px;
    height: 17px;
  }

  .bp6__submit-icon svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 380px) {
  .bp6__search input {
    padding-left: 9px;
    padding-right: 6px;
    font-size: 11.5px;
  }
}

/* v6.4 targeted spacing and text breathing */
.bp6__inner {
  gap: clamp(20px, 2.1vw, 34px);
}

.bp6__nav {
  gap: 4px;
}

.bp6__link {
  padding-inline: 14px;
}

.bp6__search-box {
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.bp6__search input {
  padding-left: 7px;
  padding-right: 14px;
}

.bp6__search-submit {
  margin-right: 5px;
}

.bp6__account {
  gap: 9px;
  padding-inline: 14px;
}

@media (max-width: 1120px) {
  .bp6__drawer-title {
    padding-left: 18px;
    padding-right: 18px;
  }

  .bp6__drawer-link {
    gap: 12px;
    padding-left: 18px;
    padding-right: 16px;
  }
}

@media (max-width: 720px) {
  .bp6__inner {
    gap: 9px;
  }

  .bp6__search-box {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .bp6__search input {
    padding-left: 15px;
    padding-right: 10px;
  }

  .bp6__search-submit {
    margin-right: 4px;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    gap: 7px;
  }

  .bp6__search input {
    padding-left: 13px;
    padding-right: 7px;
  }
}

/* v6.41 final spacing override against legacy #searchInput rules */
#bp6Nav #searchInput {
  padding: 0 14px 0 8px;
}

@media (max-width: 720px) {
  #bp6Nav #searchInput {
    padding: 0 10px 0 15px;
  }
}

@media (max-width: 380px) {
  #bp6Nav #searchInput {
    padding-left: 13px;
    padding-right: 7px;
  }
}


/* v6.4 — isotipo móvil compacto, centrado y con mejor presencia */
@media (max-width: 720px) {
  .bp6__inner {
    grid-template-columns: 48px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .bp6__brand {
    width: 46px;
    height: 46px;
    overflow: visible;
    border: 1px solid #d8eee8;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f2fbf8 100%);
    box-shadow: 0 5px 14px -10px rgba(7, 43, 87, 0.55);
  }

  .bp6__logo--icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    grid-template-columns: 44px minmax(0, 1fr) 42px;
    gap: 6px;
  }

  .bp6__brand {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .bp6__logo--icon {
    width: 33px;
    height: 33px;
  }
}


/* v6.5 — logo más limpio en escritorio y móvil */
.bp6__logo--full {
  width: 218px;
}

@media (max-width: 720px) {
  .bp6__inner {
    grid-template-columns: 50px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .bp6__brand {
    width: 48px;
    height: 48px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .bp6__logo--icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    grid-template-columns: 46px minmax(0, 1fr) 42px;
    gap: 6px;
  }

  .bp6__brand {
    width: 44px;
    height: 44px;
  }

  .bp6__logo--icon {
    width: 42px;
    height: 42px;
  }
}


/* v6.6 — separación real entre etiqueta, flecha y texto */
.bp6__logo--full {
  width: 224px;
}

@media (max-width: 720px) {
  .bp6__inner {
    grid-template-columns: 46px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .bp6__brand {
    width: 44px;
    height: 44px;
  }

  .bp6__logo--icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    grid-template-columns: 43px minmax(0, 1fr) 42px;
    gap: 6px;
  }

  .bp6__brand {
    width: 41px;
    height: 41px;
  }

  .bp6__logo--icon {
    width: 39px;
    height: 39px;
  }
}


/* v6.7 — presencia final del isotipo en móvil */
@media (max-width: 720px) {
  .bp6__inner {
    grid-template-columns: 50px minmax(0, 1fr) 44px;
  }

  .bp6__brand {
    width: 48px;
    height: 48px;
  }

  .bp6__logo--icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    grid-template-columns: 46px minmax(0, 1fr) 42px;
  }

  .bp6__brand {
    width: 44px;
    height: 44px;
  }

  .bp6__logo--icon {
    width: 42px;
    height: 42px;
  }
}


/* v6.8 — ajuste final del nuevo isotipo */
.bp6__logo--full {
  width: 232px;
}

@media (max-width: 720px) {
  .bp6__inner {
    grid-template-columns: 52px minmax(0, 1fr) 44px;
  }

  .bp6__brand {
    width: 50px;
    height: 50px;
  }

  .bp6__logo--icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    grid-template-columns: 48px minmax(0, 1fr) 42px;
  }

  .bp6__brand {
    width: 46px;
    height: 46px;
  }

  .bp6__logo--icon {
    width: 44px;
    height: 44px;
  }
}

/* v6.9 — logo centrado y estable */
.bp6__brand {
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
}

.bp6__logo {
  flex: 0 0 auto;
  vertical-align: middle;
}

.bp6__logo--full {
  width: 218px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 720px) {
  .bp6__inner {
    grid-template-columns: 48px minmax(0, 1fr) 44px;
  }

  .bp6__brand {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .bp6__logo--icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    grid-template-columns: 45px minmax(0, 1fr) 42px;
  }

  .bp6__brand {
    width: 43px;
    height: 43px;
  }

  .bp6__logo--icon {
    width: 39px;
    height: 39px;
  }
}

/* v7.0 - icon-only Bisnesplas logo */
.bp6__brand {
  width: 62px;
  height: 62px;
  justify-content: center;
}

.bp6__logo--full {
  width: 58px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 720px) {
  .bp6__inner {
    grid-template-columns: 50px minmax(0, 1fr) 44px;
  }

  .bp6__brand {
    width: 48px;
    height: 48px;
  }

  .bp6__logo--icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  .bp6__inner {
    grid-template-columns: 46px minmax(0, 1fr) 42px;
  }

  .bp6__brand {
    width: 44px;
    height: 44px;
  }

  .bp6__logo--icon {
    width: 42px;
    height: 42px;
  }
}
