/* Bisnesplas site shell v2: memorable brand, focused nav, compact responsive footer. */
.bp6__nav a[href="bolsa-trabajo.html"],
.bp6__drawer a[href="bolsa-trabajo.html"] {
  display: none !important;
}
.bp6__inner {
  grid-template-columns: auto auto minmax(280px, 1fr) auto;
}

.bp6__brand {
  width: auto;
  height: auto;
  min-width: 174px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.bp6__brand-icon {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 46px;
  object-fit: contain;
}

.bp6__brand-name {
  color: var(--bp-text);
  font-family: var(--bp-font-brand);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.bp6__link {
  border-radius: var(--bp-radius-control);
}

.footer-v2 {
  margin-top: 30px;
  padding: 25px 0 14px;
  border-top: 1px solid var(--bp-border);
  background: var(--bp-surface);
  font-family: var(--bp-font-interface);
}

.footer-v2__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(150px, .7fr) minmax(170px, .8fr) minmax(190px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 20px;
}

.footer-v2__brand {
  max-width: 330px;
}

.footer-v2__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--bp-text);
  text-decoration: none;
}

.footer-v2__brand-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-v2__brand-link span {
  font-family: var(--bp-font-brand);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-v2__brand p {
  max-width: 300px;
  margin: 9px 0 0;
  color: var(--bp-text-muted);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.55;
}

.footer-v2__toggle {
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  color: var(--bp-text);
  background: transparent;
  font: 800 12px/1.2 var(--bp-font-interface);
  text-align: left;
  cursor: default;
}

.footer-v2__toggle svg {
  display: none;
  width: 17px;
  height: 17px;
}

.footer-v2__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 7px;
}

.footer-v2__links a {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
  color: var(--bp-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: color var(--bp-motion-fast), transform var(--bp-motion-fast);
}

.footer-v2__links a:hover {
  color: var(--bp-primary-dark);
  transform: translateX(2px);
}

.footer-v2__bottom {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid var(--bp-border);
  color: var(--bp-text-muted);
  font-size: 11px;
}

@media (max-width: 1120px) {
  .bp6__inner {
    grid-template-columns: auto minmax(260px, 1fr) auto;
  }
}

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

  .bp6__brand {
    width: 48px;
    height: 48px;
    min-width: 48px;
    justify-content: center;
    gap: 0;
  }

  .bp6__brand-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .bp6__brand-name {
    display: none;
  }

  .footer-v2 {
    margin-top: 22px;
    padding: 13px 0 9px;
  }

  .footer-v2 .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-v2__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 8px;
  }

  .footer-v2__brand {
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 1px 2px 10px;
  }

  .footer-v2__brand-link img {
    width: 34px;
    height: 34px;
  }

  .footer-v2__brand-link span {
    font-size: 16px;
  }

  .footer-v2__brand p {
    max-width: 220px;
    margin: 0;
    font-size: 9px;
    line-height: 1.35;
    text-align: right;
  }

  .footer-v2__section {
    border-top: 1px solid var(--bp-border);
  }

  .footer-v2__toggle {
    min-height: 48px;
    padding: 0 3px;
    font-size: 11px;
    cursor: pointer;
  }

  .footer-v2__toggle svg {
    display: block;
    transition: transform var(--bp-motion-standard) var(--bp-ease-out);
  }

  .footer-v2__section.is-open .footer-v2__toggle svg {
    transform: rotate(180deg);
  }

  .footer-v2__links {
    max-height: 0;
    gap: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--bp-motion-standard) var(--bp-ease-out), opacity var(--bp-motion-fast), padding var(--bp-motion-standard);
  }

  .footer-v2__section.is-open .footer-v2__links {
    max-height: 330px;
    padding: 0 3px 10px;
    opacity: 1;
  }

  .footer-v2__links a {
    min-height: 40px;
    padding: 0 2px;
    font-size: 11px;
  }

  .footer-v2__bottom {
    min-height: 34px;
    padding-top: 8px;
    font-size: 9px;
  }
}

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

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

  .bp6__brand-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .footer-v2__brand p {
    max-width: 185px;
    font-size: 8.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-v2__links,
  .footer-v2__toggle svg,
  .footer-v2__links a {
    transition: none !important;
  }
}
