@font-face {
  font-family: "BV Leve Textos";
  src: url("../reference/fonts/bv-leve-textos-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BV Leve Textos";
  src: url("../reference/fonts/bv-leve-textos-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "BV Leve Textos";
  src: url("../reference/fonts/bv-leve-textos-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../reference/fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../reference/fonts/inter-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../reference/fonts/inter-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bv-blue: #002bab;
  --bv-blue-strong: #001d72;
  --bv-blue-soft: #eff4fb;
  --bv-purple: #5d1f9e;
  --bv-text: #272833;
  --bv-muted: #646578;
  --bv-line: #d9deea;
  --bv-surface: #ffffff;
  --bv-lilac: #f2f0ff;
  --bv-mint: #dff6f5;
  --bv-yellow: #f5d84b;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 28px rgba(21, 36, 91, 0.1);
  --shadow-float: 0 16px 38px rgba(0, 43, 171, 0.2);
  --container: 1184px;
  --gutter: clamp(20px, 4vw, 48px);
  --motion-fast: 120ms;
  --motion-normal: 220ms;
  --motion-slow: 420ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
  background: var(--bv-surface);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--bv-text);
  background: var(--bv-surface);
  font-family: Inter, "BV Leve Textos", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-color: currentColor;
  text-underline-offset: 0.16em;
}

a,
button {
  cursor: pointer;
}

button {
  border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--bv-yellow);
  outline-offset: 3px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--bv-blue);
  font-weight: 700;
  transition: transform var(--motion-fast) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  min-width: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--bv-text);
  background: var(--bv-blue-soft);
  border-bottom: 1px solid rgba(0, 43, 171, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 20px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 48px;
  border-radius: 50%;
}

.brand-link:hover,
.brand-link:focus-visible {
  background: rgba(0, 43, 171, 0.08);
}

.brand-link .bv-logo-svg--header {
  display: block;
  width: 40px;
  height: 40px;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: clamp(14px, 1.9vw, 28px);
}

.main-nav a {
  position: relative;
  flex: 0 0 auto;
  padding-block: 11px;
  color: #242532;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--bv-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--ease-out);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--bv-blue);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.header-search-trigger,
.client-cta,
.menu-toggle,
.mobile-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
  transition: transform var(--motion-fast) var(--ease-out), background-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out);
}

.header-search-trigger {
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(0, 43, 171, 0.12);
  border-radius: 999px;
  color: var(--bv-text);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

.header-search-trigger:hover,
.header-search-trigger:focus-visible {
  color: var(--bv-blue);
  box-shadow: 0 4px 12px rgba(0, 43, 171, 0.12);
  transform: translateY(-1px);
}

.client-cta {
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(0, 43, 171, 0.18);
  border-radius: 999px;
  color: #151621;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.client-cta:hover,
.client-cta:focus-visible {
  color: #fff;
  background: var(--bv-blue);
  box-shadow: 0 6px 15px rgba(0, 43, 171, 0.22);
  transform: translateY(-1px);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon--small {
  width: 18px;
  height: 18px;
}

.bv-search-icon {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
  border-radius: 50%;
  color: var(--bv-blue);
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 171, 0.12);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: #fff;
  background: var(--bv-blue);
  transform: translateY(-1px);
}

.mobile-shortcuts {
  display: none;
}

.site-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  display: flex;
  width: min(100vw - 28px, 392px);
  min-height: 100dvh;
  flex-direction: column;
  padding: 22px 22px 30px;
  color: #fff;
  background: var(--bv-blue);
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transform: translateX(102%);
  transition: transform var(--motion-normal) var(--ease-out), opacity var(--motion-fast) var(--ease-out), visibility var(--motion-fast) linear;
}

.site-drawer[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.site-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.site-drawer__brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
}

.site-drawer__brand .bv-logo-svg--header {
  display: block;
  width: 40px;
  height: 40px;
}

.drawer-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bv-blue);
  background: #fff;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  color: #fff;
  background: var(--bv-purple);
}

.drawer-nav {
  display: grid;
  gap: 2px;
  padding-block: 26px;
}

.drawer-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  color: var(--bv-blue);
  background: #fff;
}

.drawer-client-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--bv-blue);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.drawer-client-cta:hover,
.drawer-client-cta:focus-visible {
  color: #fff;
  background: var(--bv-purple);
}

.drawer-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  border: 0;
  background: rgba(0, 18, 80, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-normal) var(--ease-out);
}

.drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-open {
  overflow: hidden;
}

.inspire-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 43, 171, 0.16);
  background: #fff;
}

.inspire-hero__grid {
  display: grid;
  min-height: 406px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(30px, 5vw, 88px);
  padding-block: clamp(38px, 6vw, 72px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bv-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.inspire-hero h1,
.archive-intro h1,
.search-hero h1,
.single-header h1,
.not-found h1 {
  margin-bottom: 18px;
  color: var(--bv-blue);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.inspire-hero__lead {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--bv-text);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.inspire-hero__art {
  align-self: end;
  position: relative;
  isolation: isolate;
  max-width: 630px;
  margin-inline: auto;
}

.inspire-hero__art::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -9%;
  width: 72%;
  height: 82%;
  border-radius: 44% 56% 46% 54% / 58% 42% 58% 42%;
  content: "";
  background: var(--bv-blue);
}

.inspire-hero__art img {
  width: 100%;
  height: auto;
}

.content-section {
  padding-block: clamp(48px, 7vw, 86px);
}

.content-section--lilac {
  background: var(--bv-lilac);
}

.content-section--blue {
  color: #fff;
  background: var(--bv-blue);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--bv-blue);
  font-size: clamp(27px, 3vw, 37px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.section-heading p {
  max-width: 400px;
  margin-bottom: 0;
  color: var(--bv-muted);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--bv-blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--bv-purple);
  text-decoration-color: currentColor;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.topic-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(0, 43, 171, 0.1);
  border-radius: var(--radius-md);
  color: var(--bv-text);
  background: #fff;
  box-shadow: 0 2px 0 rgba(0, 43, 171, 0.03);
}

.topic-card h3 {
  margin-bottom: 10px;
  color: var(--bv-blue);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.topic-card p {
  margin-bottom: 0;
  color: var(--bv-muted);
}

.topic-card:hover,
.topic-card:focus-within {
  border-color: rgba(0, 43, 171, 0.24);
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
  transition: box-shadow var(--motion-normal) var(--ease-out), transform var(--motion-normal) var(--ease-out);
}

.editorial-feature {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--bv-blue);
  box-shadow: var(--shadow-card);
}

.editorial-feature__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vw, 60px);
}

.editorial-feature .eyebrow {
  color: #d9e6ff;
}

.editorial-feature h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.editorial-feature p {
  max-width: 550px;
  margin-bottom: 26px;
  color: #edf3ff;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform var(--motion-fast) var(--ease-out), background-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}

.button-primary {
  color: var(--bv-blue);
  background: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: var(--bv-purple);
  box-shadow: 0 8px 20px rgba(0, 15, 93, 0.28);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid currentColor;
  color: var(--bv-blue);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #fff;
  background: var(--bv-blue);
  transform: translateY(-1px);
}

.editorial-feature__media {
  min-height: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.editorial-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 43, 171, 0.12);
  border-radius: var(--radius-md);
  color: var(--bv-text);
  background: #fff;
  box-shadow: 0 2px 0 rgba(0, 43, 171, 0.03);
  transition: border-color var(--motion-normal) var(--ease-out), box-shadow var(--motion-normal) var(--ease-out), transform var(--motion-normal) var(--ease-out);
}

.post-card:hover,
.post-card:focus-within {
  border-color: rgba(0, 43, 171, 0.32);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.post-card__image,
.post-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bv-blue-soft);
}

.post-card__link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-out);
}

.post-card:hover .post-card__image img,
.post-card:focus-within .post-card__image img {
  transform: scale(1.025);
}

.post-card__body {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.post-card--featured .post-card__body {
  padding: 24px;
}

.post-card__date {
  display: block;
  margin-bottom: 12px;
  color: var(--bv-muted);
  font-size: 14px;
  font-weight: 600;
}

.post-card__title {
  display: -webkit-box;
  margin-bottom: 12px;
  overflow: hidden;
  color: var(--bv-blue);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card__title a,
.post-card__title span {
  text-decoration: none;
}

.post-card__link:hover .post-card__title,
.post-card__link:focus-visible .post-card__title,
.post-card__title a:hover,
.post-card__title a:focus-visible {
  color: var(--bv-purple);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.post-card__excerpt {
  display: -webkit-box;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--bv-muted);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.post-card__footer a,
.post-card__footer span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  color: var(--bv-blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.post-card__link:hover .post-card__footer span,
.post-card__link:focus-visible .post-card__footer span,
.post-card__footer a:hover,
.post-card__footer a:focus-visible {
  color: var(--bv-purple);
}

.archive-intro,
.search-hero {
  padding-block: clamp(44px, 6vw, 72px);
  background: linear-gradient(118deg, var(--bv-blue-soft) 0%, #fff 73%);
}

.archive-intro__inner,
.search-hero__inner {
  max-width: 820px;
}

.archive-intro p,
.search-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--bv-muted);
  font-size: 19px;
}

.search-form {
  display: flex;
  max-width: 760px;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 8px;
  border: 1px solid rgba(0, 43, 171, 0.24);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 43, 171, 0.07);
}

.search-form label {
  flex: 1 1 auto;
}

.search-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--bv-text);
  background: transparent;
}

.search-form input:focus-visible {
  outline-offset: -2px;
}

.search-form button {
  display: inline-flex;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--bv-blue);
  font-weight: 800;
}

.search-form button:hover,
.search-form button:focus-visible {
  background: var(--bv-purple);
}

.results-meta {
  margin-bottom: 24px;
  color: var(--bv-muted);
  font-weight: 600;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--bv-blue);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.pagination a {
  border: 1px solid rgba(0, 43, 171, 0.18);
}

.pagination a:hover,
.pagination a:focus-visible {
  color: #fff;
  background: var(--bv-blue);
}

.pagination .is-current {
  color: #fff;
  background: var(--bv-blue);
}

.single-header {
  padding: 56px 0 28px;
}

.single-header__inner {
  display: grid;
  width: min(100% - 120px, 1290px);
  max-width: none;
  grid-template-columns: 48px minmax(0, 760px) minmax(280px, 312px);
  gap: 49px;
  margin-inline: auto;
}

.single-header__copy {
  grid-column: 2;
}

.single-published {
  margin: 0 0 42px;
  color: #292929;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.single-published a {
  color: var(--bv-blue);
  font-weight: 700;
  text-decoration: none;
}

.single-published a:hover,
.single-published a:focus-visible {
  text-decoration: underline;
}

.single-header h1 {
  max-width: 760px;
  margin: 0;
  color: var(--bv-blue);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 40px;
}

.single-reading-time {
  margin: 30px 0 0;
  color: var(--bv-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.single-figure {
  width: min(100% - 120px, 1290px, var(--single-image-source-width));
  max-width: 1290px;
  margin: 0 auto 82px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  aspect-ratio: auto;
}

.single-figure--compact {
  width: min(100% - 120px, 760px, var(--single-image-source-width));
  max-width: 760px;
}

.single-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.single-content-shell {
  display: grid;
  width: min(100% - 120px, 1290px);
  max-width: 1290px;
  grid-template-columns: 48px minmax(0, 760px) minmax(280px, 312px);
  align-items: start;
  gap: 49px;
  margin-inline: auto;
  padding-bottom: clamp(50px, 7vw, 88px);
}

.single-article {
  min-width: 0;
}

.single-share {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.single-share__link {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  color: #606060;
  background: #fff;
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out);
}

.single-share__link:hover,
.single-share__link:focus-visible {
  color: var(--bv-blue);
  border-color: var(--bv-blue);
}

.single-share__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.single-article__content {
  color: #292929;
  font-size: 16px;
  line-height: 24px;
}

.single-article__content h2 {
  margin: 40px 0 16px;
  color: #292929;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 32px;
}

.single-article__content h3 {
  margin: 32px 0 12px;
  color: #292929;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.single-article__content p,
.single-article__content ul,
.single-article__content ol {
  margin-bottom: 16px;
}

.single-article__content li + li {
  margin-top: 8px;
}

.single-article__content a {
  color: var(--bv-blue);
  font-weight: 700;
}

.single-article__content a:hover,
.single-article__content a:focus-visible {
  color: var(--bv-purple);
}

.table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--bv-line);
  border-radius: var(--radius-sm);
}

.single-article table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 16px;
}

.single-article caption {
  padding: 14px 16px;
  color: var(--bv-text);
  background: var(--bv-blue-soft);
  font-weight: 800;
  text-align: left;
}

.single-article th,
.single-article td {
  padding: 14px 16px;
  border-top: 1px solid var(--bv-line);
  text-align: left;
}

.single-article th {
  color: var(--bv-blue);
  background: #fafbff;
}

.not-found {
  overflow: hidden;
  padding-block: clamp(52px, 8vw, 104px) 0;
  background: var(--bv-lilac);
}

.not-found__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 7vw, 96px);
}

.not-found__grid > :first-child {
  padding-bottom: clamp(28px, 5vw, 64px);
}

.not-found p {
  max-width: 590px;
  color: var(--bv-muted);
  font-size: 19px;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.not-found__art {
  align-self: end;
  position: relative;
  max-width: 470px;
  margin-inline: auto;
}

.not-found__shape {
  position: absolute;
  z-index: 0;
  top: 10%;
  right: -4%;
  bottom: 10%;
  left: 16%;
  border-radius: 48% 52% 44% 56% / 42% 55% 45% 58%;
  background: var(--bv-blue);
}

.not-found__art img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.site-footer {
  color: #fff;
  background: #061a65;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 58px);
  padding-block: 52px 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand__logo {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #fff;
}

.footer-brand__logo img {
  width: 40px;
  height: 40px;
}

.footer-brand p {
  margin-bottom: 20px;
  color: #dce6ff;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.footer-grid > section:not(.footer-brand) ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid a,
.footer-bottom a {
  color: #e9efff;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color var(--motion-fast) var(--ease-out), text-decoration-color var(--motion-fast) var(--ease-out);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
  text-decoration-line: underline;
  text-decoration-color: var(--bv-yellow);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
  text-decoration-line: underline;
  text-decoration-color: var(--bv-yellow);
}

.footer-social {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social li {
  display: flex;
}

.footer-social a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}

.footer-social__icon {
  display: block;
  width: 35px;
  height: 35px;
}

.footer-social__icon * {
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--bv-blue);
  background: #fff;
  border-color: #fff;
  text-decoration: none;
}

.social-links a:hover img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(61%) saturate(4203%) hue-rotate(224deg) brightness(80%) contrast(112%);
}

.social-links a:focus-visible img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(61%) saturate(4203%) hue-rotate(224deg) brightness(80%) contrast(112%);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #dce6ff;
  font-size: 14px;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-search-trigger {
    padding-inline: 12px;
  }

  .editorial-feature,
  .inspire-hero__grid,
  .single-header__inner,
  .single-content-shell,
  .not-found__grid {
    gap: 36px;
  }

  .single-header__inner,
  .single-content-shell {
    width: min(100% - 60px, 860px);
    grid-template-columns: 1fr;
  }

  .single-header__copy {
    grid-column: 1;
  }

  .single-share {
    display: none;
  }

  .single-sidebar {
    margin-top: 32px;
  }

  .single-figure,
  .single-figure--compact {
    width: min(100% - 60px, 860px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 859px) {
  .site-header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .site-header__tools {
    margin-left: auto;
  }

  .header-search-trigger {
    width: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .header-search-trigger span {
    display: none;
  }

  .client-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-shortcuts {
    display: flex;
    min-height: 48px;
    border-top: 1px solid rgba(0, 43, 171, 0.08);
  }

  .mobile-shortcuts .container {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-shortcuts .container::-webkit-scrollbar {
    display: none;
  }

  .mobile-shortcut {
    min-width: max-content;
    min-height: 44px;
    padding: 0 4px;
    color: var(--bv-blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-shortcut + .mobile-shortcut {
    padding-left: 18px;
    border-left: 1px solid rgba(0, 43, 171, 0.18);
  }

  .inspire-hero__grid,
  .not-found__grid {
    grid-template-columns: 1fr;
  }

  .inspire-hero__grid {
    padding-top: 42px;
  }

  .inspire-hero__art {
    width: min(100%, 520px);
  }

  .topic-list,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-feature {
    grid-template-columns: 1fr;
  }

  .editorial-feature__media {
    min-height: 0;
  }

  .footer-grid {
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .client-cta .icon {
    display: none;
  }

  .inspire-hero h1,
  .archive-intro h1,
  .search-hero h1,
  .not-found h1 {
    font-size: 38px;
  }

  .single-header {
    padding: 40px 0 24px;
  }

  .single-header__inner,
  .single-content-shell,
  .single-figure,
  .single-figure--compact {
    width: min(100% - 40px, 760px);
  }

  .single-header h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .single-published {
    margin-bottom: 30px;
  }

  .single-reading-time {
    margin-top: 24px;
  }

  .single-figure {
    margin-bottom: 44px;
  }

  .inspire-hero__lead,
  .archive-intro p,
  .search-hero p,
  .not-found p {
    font-size: 17px;
  }

  .section-heading {
    display: block;
    margin-bottom: 22px;
  }

  .section-heading p {
    margin-top: 10px;
  }

  .topic-list,
  .post-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .topic-card {
    padding: 21px;
  }

  .editorial-feature__content {
    padding: 28px 24px;
  }

  .post-card__body {
    padding: 20px;
  }

  .search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px;
    padding: 5px;
  }

  .search-form input {
    min-width: 0;
    padding-inline: 10px;
  }

  .search-form button {
    width: 48px;
    padding: 0;
  }

  .search-form button span {
    display: none;
  }

  .pagination {
    gap: 6px;
  }

  .pagination a,
  .pagination span {
    min-width: 42px;
    padding-inline: 11px;
  }

  .single-article__content {
    font-size: 16px;
    line-height: 24px;
  }

  .single-article__content h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .not-found__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .not-found__actions a {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-block: 42px 30px;
  }

  .footer-grid > section:nth-child(n + 4) {
    display: none;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p {
    margin: 0 0 12px;
  }
}

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

/* BV Inspira shell parity pass, captured 2026-08-06. */
.bv-shell-header.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  border-bottom: 0;
  background: #eff4fb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  font-family: "BV Leve Textos", sans-serif;
}

.page-shell {
  padding-top: 60px;
}

.bv-header__container.site-header__inner {
  width: min(100% - 184px, 1096px);
  margin-inline: auto;
  min-height: 60px;
  gap: 12px;
}

.bv-shell-header .brand-link {
  width: 40px;
  min-height: 40px;
  border-radius: 0;
  color: #292929;
  text-decoration: none;
}

.bv-shell-header .brand-link:hover,
.bv-shell-header .brand-link:focus-visible {
  background: transparent;
  text-decoration: none;
}

.bv-shell-header .brand-link .bv-logo-svg--header {
  display: block;
  width: 40px;
  height: 40px;
}

.bv-shell-header .main-nav {
  flex: 0 1 auto;
  gap: 4px;
  margin-left: 0;
}

.bv-shell-header .main-nav a {
  display: inline-flex;
  height: 36px;
  align-items: center;
  gap: 5.625px;
  padding: 6px 11px;
  border-radius: 60px;
  color: #292929;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  transition: background-color 0.3s, color 0.3s;
}

.bv-shell-header .main-nav a::after {
  position: absolute;
  right: auto;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background-color: var(--bv-blue);
  transform: none;
  transition: width 0.3s ease-in-out;
}

.bv-shell-header .main-nav a:hover::after,
.bv-shell-header .main-nav a:focus-visible::after {
  width: 95%;
}

.bv-shell-header .main-nav a:hover,
.bv-shell-header .main-nav a:focus-visible {
  color: #292929;
  background: transparent;
}

.bv-shell-header .main-nav__trigger {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border: 0;
  border-radius: 22px;
  color: #292929;
  background: transparent;
  font-family: "BV Leve Textos", Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.bv-shell-header .main-nav__trigger[aria-expanded="true"],
.bv-shell-header .main-nav__trigger:hover,
.bv-shell-header .main-nav__trigger:focus-visible {
  color: #292929;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #006bff;
}

.mega-menu {
  position: absolute;
  z-index: 19;
  top: 100%;
  right: 0;
  left: 0;
  color: #ffffff;
  background: #002bab;
}

.mega-menu__grid {
  display: grid;
  gap: 42px;
  padding-block: 58px 72px;
}

.mega-menu__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu__grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mega-menu h2 {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-family: Inter, "BV Leve Textos", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.mega-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  color: #ffffff;
  font-family: Inter, "BV Leve Textos", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  text-decoration: underline;
}

.drawer-accordion {
  border-bottom: 1px solid #d9deea;
}

.drawer-accordion summary {
  min-height: 52px;
  color: #292929;
  font-family: "BV Leve Textos", Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.drawer-accordion summary::-webkit-details-marker {
  display: none;
}

.drawer-accordion__body {
  display: grid;
  gap: 10px;
  padding: 0 0 18px;
}

.drawer-accordion__body h3 {
  margin: 16px 0 2px;
  color: #002bab;
  font-size: 15px;
  font-weight: 700;
}

.drawer-nav .drawer-accordion__body a {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  color: #292929;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.drawer-nav .drawer-accordion__body a:hover,
.drawer-nav .drawer-accordion__body a:focus-visible {
  color: #002bab;
  background: transparent;
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .mega-menu,
  .main-nav {
    display: none;
  }
}

.icon--chevron {
  width: 12px;
  height: 12px;
  stroke-width: 2;
}

.bv-shell-header .site-header__tools {
  margin-left: auto;
  margin-right: 30px;
  gap: 8px;
}

.bv-header-search.header-search-trigger {
  width: 210px;
  min-height: 40px;
  height: 40px;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px 0 18px;
  border: 0;
  border-radius: 32px;
  background: #fff;
  color: #6b6c7e;
  box-shadow: none;
  transform: none;
}

.bv-header-search.header-search-trigger:hover,
.bv-header-search.header-search-trigger:focus-within {
  color: #6b6c7e;
  box-shadow: none;
  transform: none;
}

.bv-header-search input {
  width: 100%;
  min-width: 0;
  height: 25px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #4b5968;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
}

.bv-header-search input::placeholder {
  color: #6b6c7e;
  opacity: 1;
}

.bv-shell-header .client-cta {
  width: 140px;
  min-height: 39px;
  height: 39px;
  padding: 0 16px;
  border: 0;
  border-radius: 32px;
  color: #292929;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  box-shadow: none;
  transition: all;
}

.bv-shell-header .client-cta:hover,
.bv-shell-header .client-cta:focus-visible {
  color: #292929;
  background: #e0e0e0;
  box-shadow: none;
  transform: none;
}

.bv-shell-header .menu-toggle {
  width: 44px;
  min-height: 44px;
  height: 44px;
  border-radius: 100px;
  color: #002bab;
  background: #fff;
  box-shadow: none;
}

.bv-shell-header .menu-toggle:hover,
.bv-shell-header .menu-toggle:focus-visible {
  color: #002bab;
  background: #fff;
  transform: none;
}

.bv-mobile-switcher.mobile-shortcuts {
  display: none;
}

.site-drawer {
  background: #001a6b;
}

.drawer-nav a {
  justify-content: space-between;
}

.drawer-client-cta {
  border-radius: 32px;
}

.inspire-hero .eyebrow {
  display: none;
}

.inspire-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1.08;
}

.inspire-hero__lead {
  max-width: 380px;
  font-size: clamp(21px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.35;
}

.bv-shell-footer.site-footer {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #001a6b;
  font-family: "BV Leve Textos", sans-serif;
}

.bv-shell-footer .container {
  width: min(100% - 120px, 1344px);
  max-width: 1344px;
}

.bv-shell-footer .footer-grid {
  grid-template-columns: 263px 0.7fr 1.1fr 1.1fr 1.1fr;
  align-items: start;
  gap: 28px;
  padding-block: 60px 58px;
}

.bv-shell-footer .footer-brand {
  max-width: none;
}

.bv-shell-footer .footer-grid h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.bv-shell-footer .footer-grid h2 + .footer-app-button {
  margin-bottom: 36px;
}

.footer-app-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 32px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-app-button:hover,
.footer-app-button:focus-visible {
  color: #001a6b;
  background: #fff;
  text-decoration: none;
}

.footer-social-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.bv-shell-footer .footer-social {
  gap: 8px;
  margin-top: 10px;
}

.bv-shell-footer .footer-social a {
  width: 44px;
  height: 44px;
  border: 0;
  color: #fff;
  background: transparent;
  text-decoration: none;
}

.bv-shell-footer .footer-social__icon {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.bv-shell-footer .footer-social__icon use {
  fill: currentColor;
}

.bv-shell-footer .footer-social a:hover,
.bv-shell-footer .footer-social a:focus-visible {
  color: #cbd5ff;
  background: transparent;
  text-decoration: none;
}

.bv-shell-footer .footer-grid > section:not(.footer-brand) ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bv-shell-footer .footer-grid a,
.bv-shell-footer .footer-bottom a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  text-decoration-color: #fff;
  transition: color 0.2s ease-in-out;
}

.bv-shell-footer .footer-grid a:hover,
.bv-shell-footer .footer-grid a:focus-visible,
.bv-shell-footer .footer-bottom a:hover,
.bv-shell-footer .footer-bottom a:focus-visible {
  color: #fff;
  text-decoration-line: underline;
  text-decoration-color: #fff;
}

.footer-legal {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px;
  padding-block: 72px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.footer-legal__logo {
  display: inline-flex;
  width: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  text-decoration: none;
}

.footer-legal__logo .bv-logo-svg--footer {
  display: block;
  width: 144px;
  height: 144px;
}

.footer-legal__logo span {
  margin-top: -14px;
  font-size: 18px;
  font-weight: 800;
}

.footer-legal__text {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.35;
}

.footer-legal__text p {
  margin: 0;
}

.footer-security {
  grid-column: 2;
  margin-top: 42px;
}

.footer-security h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.footer-security__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.security-badge {
  display: inline-flex;
  width: 96px;
  height: 86px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  border-right-width: 2px;
  border-left-width: 2px;
  border-radius: 50%;
  color: #fff;
  font-size: 7px;
  line-height: 1.1;
  text-align: center;
}

.security-badge strong {
  display: block;
  width: 108px;
  margin-top: 5px;
  padding-block: 4px;
  color: #001a6b;
  background: #fff;
  font-size: 9px;
  text-transform: uppercase;
}

.security-badge--fraud {
  width: 72px;
  height: 92px;
  border: 0;
  border-radius: 24px 24px 24px 0;
  color: #001a6b;
  background: #fff;
}

.security-badge--fraud strong {
  width: auto;
  margin: 0 0 4px;
  padding: 0;
  color: #001a6b;
  background: transparent;
  font-size: 8px;
}

.security-badge--fraud span {
  font-size: 7px;
}

.bv-shell-footer .footer-bottom {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding-block: 22px 30px;
  border-top: 0;
}

.bv-whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 18px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #1a9d32;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

.bv-whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .bv-header__container.site-header__inner,
  .bv-shell-footer .container {
    width: min(100% - 72px, 1344px);
    max-width: 1344px;
  }

  .bv-shell-header .main-nav a {
    padding-inline: 9px;
  }

  .bv-header-search.header-search-trigger {
    width: 188px;
  }

  .bv-shell-footer .footer-grid {
    grid-template-columns: 245px repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 859px) {
  .bv-shell-header.site-header {
    box-shadow: 0 4px 8px rgba(12, 12, 12, 0.07);
  }

  .bv-header__container.site-header__inner {
    width: 100%;
    min-height: 60px;
    gap: 8px;
    padding: 0 32px 0 35px;
  }

  .bv-shell-header .brand-link {
    flex: 0 0 40px;
  }

  .bv-shell-header .site-header__tools {
    margin-left: auto;
    gap: 8px;
  }

  .bv-shell-header .client-cta {
    order: 1;
    width: 148px;
    min-height: 42px;
    height: 42px;
    font-size: 14px;
    font-weight: 500;
  }

  .bv-header-search.header-search-trigger {
    order: 2;
    width: 44px;
    min-height: 45px;
    height: 45px;
    justify-content: center;
    padding: 0;
    border-radius: 100px;
    color: #000;
  }

  .bv-header-search input,
  .bv-header-search label {
    display: none;
  }

  .bv-shell-header .menu-toggle {
    order: 3;
    display: inline-flex;
    flex: 0 0 44px;
  }

  .bv-mobile-switcher.mobile-shortcuts {
    display: grid;
    min-height: 56px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(0, 43, 171, 0.08);
    background: #cdd2fb;
  }

  .bv-mobile-switcher .mobile-shortcut {
    display: inline-flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    color: #292929;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
  }

  .bv-mobile-switcher .mobile-shortcut--categories {
    color: #002bab;
    font-weight: 800;
  }

  .bv-mobile-switcher .mobile-shortcut + .mobile-shortcut {
    padding-left: 0;
    border-left: 2px solid #fff;
  }

  .bv-mobile-switcher .icon {
    width: 24px;
    height: 24px;
    color: #292929;
  }

  .inspire-hero__grid {
    min-height: 0;
    padding-top: 8px;
  }

  .inspire-hero h1 {
    margin-bottom: 14px;
    font-size: 44px;
  }

  .inspire-hero__lead {
    max-width: 330px;
    font-size: 24px;
  }

  .bv-shell-footer {
    border-radius: 24px 24px 0 0;
  }

  .bv-shell-footer .container {
    width: min(100% - 72px, 1344px);
    max-width: 1344px;
  }

  .bv-shell-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 40px 34px;
  }

  .bv-shell-footer .footer-grid > section:nth-child(n + 4) {
    display: block;
  }

  .bv-shell-footer .footer-grid > section:not(.footer-brand) ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
  }

  .bv-shell-footer .footer-grid h2 {
    margin-bottom: 8px;
  }

  .bv-shell-footer .footer-grid h2 + .footer-app-button {
    margin-bottom: 30px;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 36px 28px;
  }

  .footer-legal__logo {
    width: 112px;
  }

  .footer-legal__logo .bv-logo-svg--footer {
    width: 112px;
    height: 112px;
  }

  .footer-legal__text {
    font-size: 15px;
  }

  .footer-security {
    grid-column: 1;
    margin-top: 20px;
  }

  .footer-security h2 {
    text-align: left;
  }

  .footer-security__badges {
    justify-content: flex-start;
    gap: 18px 24px;
  }

  .bv-shell-footer .footer-bottom {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 24px;
    padding-block: 18px 34px;
  }

  .bv-whatsapp-float {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 360px) {
  .bv-header__container.site-header__inner {
    padding-right: 16px;
    padding-left: 20px;
  }

  .bv-shell-header .client-cta {
    width: 132px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .bv-shell-header .site-header__tools {
    gap: 7px;
  }

  .bv-shell-footer .container {
    width: min(100% - 40px, 1344px);
    max-width: 1344px;
  }
}

/* BV Inspira selected-region pixel parity pass, captured 2026-08-06. */
html {
  scrollbar-gutter: auto;
}

.inspire-hero .container,
.trending-grid.container,
.bv-recent-layout.container {
  width: min(100% - 238px, 1043px);
}

.inspire-hero {
  position: relative;
  z-index: 1;
  height: 350px;
  overflow: visible;
  border-bottom: 0;
}

.inspire-hero__grid {
  height: 350px;
  min-height: 0;
  grid-template-columns: 332px minmax(0, 1fr);
  align-items: center;
  gap: 201px;
  padding: 10px 0 0;
}

.inspire-hero__grid > div:first-child {
  transform: translateY(-21px);
}

.inspire-hero h1 {
  margin: 0 0 8px;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.4px;
  line-height: 64px;
}

.inspire-hero__lead {
  max-width: 332px;
  margin: 0 0 5px;
  color: #272833;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 32px;
}

.inspire-hero__art {
  align-self: start;
  justify-self: end;
  width: 509px;
  height: 377px;
  margin-top: 0;
  overflow: visible;
}

.inspire-hero__art::before {
  display: none;
}

.inspire-hero__art img {
  width: 509px;
  max-width: none;
  height: 377px;
  object-fit: contain;
}

.trending-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 210px repeat(3, minmax(0, 1fr));
  column-gap: 56px;
  align-items: start;
}

.content-section--lilac:has(.trending-grid) {
  position: relative;
  z-index: 2;
  min-height: 193px;
  padding-block: 46px 42px;
  background: #f0f1ff;
}

.trending-grid .section-heading {
  display: block;
  margin: 20px 0 0;
}

.trending-grid .section-heading h2 {
  max-width: 160px;
  color: #002bab;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 32px;
}

.trending-grid .topic-list {
  display: contents;
}

.trending-grid .topic-card {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.trending-grid .topic-card__link {
  display: block;
  width: 256px;
  max-width: 100%;
  color: #0b5fff;
  text-decoration: none;
  transform: translateY(-5.67px);
}

.trending-grid .topic-card__category {
  display: block;
  margin: 0 0 12px;
  color: #0b5fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.trending-grid .topic-card:hover,
.trending-grid .topic-card:focus-within {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.trending-grid .topic-card h3 {
  margin: 0 0 5px;
  color: #292929;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 24px;
}

.trending-grid .topic-card p {
  margin: 0;
  color: #292929;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.bv-recent-section {
  padding-block: 120px 86px;
  background: #fff;
}

.bv-recent-layout {
  display: grid;
  grid-template-columns: 722px 296px;
  column-gap: 24px;
  align-items: start;
}

.bv-reference-heading {
  margin-bottom: 31px;
}

.bv-reference-heading h2 {
  margin: 0;
  color: #292929;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 32px;
}

.bv-reference-heading span {
  color: #002bab;
}

.bv-reference-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 349px));
  gap: 36px 24px;
}

.bv-reference-post {
  min-width: 0;
  padding: 24px;
  color: #292929;
  background: #fff;
}

.bv-reference-post__image {
  display: block;
  overflow: hidden;
  width: 301px;
  height: 201px;
  margin-bottom: 14px;
  border-radius: 8px 8px 0 0;
}

.bv-reference-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bv-reference-post__category {
  display: inline-block;
  margin-bottom: 4px;
  color: #002bab;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.bv-reference-post h3 {
  margin: 0;
  color: #292929;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 24px;
}

.bv-reference-post h3 a {
  text-decoration: none;
}

.bv-reference-sidebar {
  padding-top: 59px;
}

.bv-reference-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  width: 296px;
  height: 49px;
  margin-bottom: 63px;
  border-radius: 8px;
  background: #f5f5f5;
}

.bv-reference-search input {
  min-width: 0;
  padding: 0 0 0 13px;
  border: 0;
  outline: 0;
  color: #6b6c7e;
  background: transparent;
  font-size: 16px;
  line-height: 24px;
}

.bv-reference-search button {
  display: inline-flex;
  width: 44px;
  height: 49px;
  align-items: center;
  justify-content: center;
  color: #6b6c7e;
  background: transparent;
}

.bv-reference-sidebar h2 {
  margin: 0 0 28px;
  color: #292929;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.bv-reference-sidebar details {
  overflow: hidden;
  border-bottom: 1px solid #d6d6d6;
}

.bv-reference-sidebar summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  list-style: none;
  cursor: pointer;
}

.bv-reference-sidebar summary::-webkit-details-marker {
  display: none;
}

.bv-reference-sidebar summary::after {
  margin: 13px;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease-out;
}

.bv-reference-sidebar details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.bv-reference-links {
  display: grid;
  gap: 6px;
  padding: 0 0 15px;
  margin: -2px 0 0;
  list-style: none;
}

.bv-reference-links a {
  color: #292929;
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
}

.bv-reference-links a:hover,
.bv-reference-links a:focus-visible {
  color: #002bab;
  text-decoration: underline;
}

.bv-recent-main > .pagination,
.bv-popular-main > .pagination {
  margin-top: 64px;
}

.bv-load-more {
  display: flex;
  width: 240px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin: 64px auto 0;
  border-radius: 6px;
  color: #fff;
  background: #002bab;
  font-weight: 700;
  text-decoration: none;
}

.bv-load-more:hover,
.bv-load-more:focus-visible {
  color: #fff;
  background: #001a6b;
}

.bv-listing-page {
  padding-block: clamp(56px, 7vw, 88px);
}

.bv-listing-page .bv-reference-heading h1 {
  margin: 0 0 34px;
  color: #292929;
  font-family: Inter, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.bv-results-meta {
  margin: 30px 0 0;
  color: #292929;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.page-link--ellipsis {
  color: #292929;
  background: transparent;
}

@media (max-width: 859px) {
  .inspire-hero .container,
  .bv-recent-layout.container {
    width: min(100% - 48px, 1043px);
  }

  .trending-grid.container {
    width: min(100% - 24px, 1043px);
  }
  .inspire-hero {
    height: 390px;
  }

  .inspire-hero__grid {
    height: 390px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .inspire-hero__grid > div:first-child {
    transform: none;
  }

  .inspire-hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 64px;
  }

  .inspire-hero__lead {
    max-width: 327px;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
  }

  .inspire-hero__art {
    justify-self: start;
    width: 327px;
    height: 242px;
    margin-top: 5px;
  }

  .inspire-hero__art img {
    width: 327px;
    height: 242px;
  }

  .content-section--lilac:has(.trending-grid) {
    min-height: 585px;
    padding-block: 45px 54px;
  }

  .trending-grid {
    display: block;
  }

  .trending-grid .section-heading {
    margin: 0 0 27px;
  }

  .trending-grid .section-heading h2 {
    max-width: none;
    font-size: 24px;
    line-height: 32px;
  }

  .trending-grid .topic-list {
    display: grid;
    gap: 25px;
  }

  .trending-grid .topic-card__link {
    width: 100%;
    transform: none;
  }

  .trending-grid .topic-card__category {
    margin-bottom: 13px;
  }

  .trending-grid .topic-card h3 {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
  }

  .trending-grid .topic-card p {
    font-size: 16px;
    line-height: 24px;
  }

  .bv-recent-section {
    padding-block: 0 80px;
  }

  .bv-recent-layout {
    display: block;
  }

  .bv-reference-heading {
    margin-bottom: 56px;
  }

  .bv-reference-heading h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .bv-reference-post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 97px;
  }

  .bv-reference-post {
    padding: 0 24px;
  }

  .bv-reference-post__image {
    width: 279px;
    height: 186px;
    margin-bottom: 14px;
  }

  .bv-reference-post__category {
    margin-bottom: 4px;
  }

  .bv-reference-post h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .bv-reference-sidebar,
  .bv-load-more {
    display: none;
  }
}

/* BV live pixel parity correction, captured 2026-08-06. */
.content-section--lilac:has(.trending-grid) {
  height: 193px;
  min-height: 0;
  padding-block: 46px 42px;
  background: #edeffc;
}

.trending-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
}

.trending-grid .section-heading {
  margin-top: 16px;
}

.trending-grid .section-heading h2 {
  font-size: 24px;
  line-height: 32px;
}

.trending-grid .topic-card h3 {
  margin-bottom: 5px;
}

.bv-reference-post__image {
  width: 301px;
  height: auto;
}

.bv-reference-post__image img {
  height: auto;
  object-fit: contain;
}

.bv-reference-post h3 {
  letter-spacing: -0.56px;
  line-height: 26px;
}

.bv-shell-footer .container {
  width: min(100% - 120px, 1344px);
  max-width: 1344px;
}

.bv-shell-footer .footer-grid {
  display: grid;
  grid-template-columns: 263px 0.7fr 1.1fr 1.1fr 1.1fr;
  column-gap: 52px;
  padding-block: 60px 56px;
}

.footer-app-qr {
  width: 245px;
  height: 245px;
  margin: 0 0 26px 28px;
}

.footer-app-stores {
  display: none;
}

.bv-shell-footer .footer-brand h2,
.bv-shell-footer .footer-brand .footer-social {
  margin-left: 28px;
}

.bv-shell-footer .footer-follow-title {
  margin-top: 0;
}

.bv-shell-footer .footer-grid h2 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.bv-shell-footer .footer-help-title {
  margin-top: 93px;
}

.bv-shell-footer .footer-grid > section:not(.footer-brand) ul {
  gap: 13px;
}

.bv-shell-footer .footer-grid a,
.bv-shell-footer .footer-bottom a {
  font-size: 14px;
  line-height: 20px;
}

.bv-shell-footer .footer-social {
  gap: 6px;
}

.bv-shell-footer .footer-social a {
  color: #fff;
  background: transparent;
  border-radius: 0;
  font-size: 24.5px;
  line-height: 21px;
  text-decoration: none;
}

.bv-shell-footer .footer-social a:hover,
.bv-shell-footer .footer-social a:focus-visible {
  color: #fff;
  background: transparent;
  text-decoration-line: underline;
  text-decoration-color: #fff;
}

.bv-shell-footer .footer-social__icon {
  width: 32.667px;
  height: 32.667px;
  border-radius: 0;
  color: #fff;
  background: transparent;
}

.footer-legal {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 26px;
  padding-block: 72px 46px;
}

.footer-legal__logo {
  width: 144px;
  margin-left: 92px;
}

.footer-legal__logo .bv-logo-svg--footer {
  width: 144px;
  height: 144px;
}

.footer-legal__text {
  max-width: 820px;
  font-size: 14px;
  line-height: 20px;
}

.footer-security {
  grid-column: 2;
  max-width: 490px;
  margin-top: 14px;
}

.footer-security h2 {
  margin: 0 0 18px;
  font-weight: 500;
  text-align: center;
}

.footer-security__badges {
  gap: 8px;
}

.footer-security__badges img {
  width: auto;
  height: auto;
}

.bv-shell-footer .footer-bottom {
  gap: 25px;
  padding-block: 30px 68px;
  padding-right: 14px;
  padding-left: 14px;
}

.bv-shell-footer .footer-bottom a {
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

#onetrust-banner-sdk,
#onetrust-pc-sdk {
  font-family: Inter, "sans-serif";
}

#onetrust-banner-sdk {
  position: fixed;
  z-index: 99;
  right: auto;
  bottom: 50px;
  left: 50px;
  display: table;
  width: min(1134px, calc(100vw - 100px));
  min-height: 0;
  padding: 0;
  color: #fff;
  background: rgb(23, 39, 140);
  border-radius: 6.5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 18px 0;
}

#onetrust-banner-sdk .ot-sdk-container {
  width: 100%;
  padding: 22px 28px;
}

#onetrust-banner-sdk .ot-sdk-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

#onetrust-banner-sdk p,
#onetrust-banner-sdk .ot-notice-text {
  margin: 0;
  color: #fff;
  font-family: Inter, "sans-serif";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px;
}

#onetrust-banner-sdk a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#onetrust-banner-sdk .ot-sdk-button-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

#onetrust-banner-sdk button,
#onetrust-pc-sdk button {
  font-family: Inter, "sans-serif";
}

#onetrust-accept-btn-handler {
  width: 192px;
  min-height: 43px;
  padding: 0 22px;
  color: rgb(23, 39, 140);
  background: rgb(237, 239, 251);
  border: 1px solid rgb(237, 239, 251);
  border-radius: 50px;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

#onetrust-pc-btn-handler {
  width: 160px;
  min-height: 41px;
  padding: 0 20px;
  color: #fff;
  background: rgb(23, 39, 140);
  border: 1px solid #fff;
  border-radius: 50px;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

#onetrust-pc-sdk {
  position: fixed;
  z-index: 2147483647;
  top: 50%;
  left: 50%;
  width: min(575px, calc(100vw - 32px));
  max-height: min(554px, calc(100vh - 32px));
  overflow: hidden;
  color: rgb(41, 41, 41);
  background: #fff;
  border-radius: 2.5px;
  box-shadow: rgb(153, 153, 153) 0 2px 10px -3px;
  transform: translate(-50%, -50%);
}

#onetrust-pc-sdk .ot-sdk-container {
  display: flex;
  max-height: inherit;
  flex-direction: column;
}

#onetrust-pc-sdk .ot-pc-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid #d8d8d8;
}

#onetrust-pc-sdk .ot-pc-logo {
  width: 92px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M37.9995%2014.1866L33.8961%2014.2039C32.9027%2014.2039%2032.0199%2014.817%2031.664%2015.737L28.0703%2025.2418L30.9857%2032.8061L37.9999%2014.1866H37.9995Z%22%20fill%3D%22%23002BAB%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M23.9424%2012.1334C23.9424%208.54304%2020.6435%207%2018.3648%207H7.35243V14.1717H3L4.17646%2017.2516C4.4581%2017.9889%205.1657%2018.4763%205.95536%2018.4763H7.35243V26.3684H18.0168C18.9805%2026.3672%2020.9582%2026.2958%2021.8855%2025.5416L24.0966%2031.3125C24.4405%2032.2214%2025.3246%2032.823%2026.2945%2032.823H30.4448L25.5044%2019.915C24.805%2018.0891%2024.3345%2016.3366%2022.3746%2015.4781C22.3746%2015.4781%2023.942%2014.0571%2023.942%2012.1334H23.9424ZM13.144%2011.2848H17.4593C18.2568%2011.2848%2018.903%2011.931%2018.903%2012.7285C18.903%2013.526%2018.2568%2014.1721%2017.4593%2014.1721H13.144V11.2848ZM19.2766%2020.2771C19.2766%2021.2717%2018.4704%2022.0778%2017.4758%2022.0778H13.1436V18.4767H17.4758C18.4704%2018.4767%2019.2766%2019.2829%2019.2766%2020.2775V20.2771Z%22%20fill%3D%22%23002BAB%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") left center / contain no-repeat;
}

#onetrust-pc-sdk .ot-close-icon {
  width: 36px;
  height: 36px;
  color: #333;
  background: transparent;
  border-radius: 2px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

#onetrust-pc-sdk .ot-pc-scrollbar {
  overflow-y: auto;
  padding: 18px 24px;
}

#onetrust-pc-sdk #ot-pc-title {
  margin: 0 0 14px;
  color: rgb(41, 41, 41);
  font-family: Inter, "sans-serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

#onetrust-pc-sdk #ot-pc-desc {
  margin: 0 0 18px;
  color: rgb(41, 41, 41);
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}

#onetrust-pc-sdk .ot-accordion-panel {
  border-top: 1px solid #d8d8d8;
}

#onetrust-pc-sdk .ot-accordion-header {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  color: #111;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}

#onetrust-pc-sdk .ot-accordion-header strong {
  color: rgb(23, 39, 140);
  font-size: 12px;
  font-weight: 700;
}

#onetrust-pc-sdk .ot-switch {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
}

#onetrust-pc-sdk .ot-switch input {
  position: absolute;
  opacity: 0;
}

#onetrust-pc-sdk .ot-switch span {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #6f7177;
}

#onetrust-pc-sdk .ot-switch span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  content: "";
  background: #fff;
  border-radius: 50%;
  transition: transform 160ms ease;
}

#onetrust-pc-sdk .ot-switch input:checked + span {
  background: rgb(34, 58, 210);
}

#onetrust-pc-sdk .ot-switch input:checked + span::after {
  transform: translateX(20px);
}

#onetrust-pc-sdk .ot-pc-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid #d8d8d8;
}

#onetrust-pc-sdk #accept-recommended-btn-handler,
#onetrust-pc-sdk #onetrust-reject-all-handler,
#onetrust-pc-sdk .save-preference-btn-handler {
  width: 100%;
  min-height: 39px;
  padding: 12px 30px;
  color: #fff;
  background: rgb(34, 58, 210);
  border: 1px solid rgb(34, 58, 210);
  border-radius: 2px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
}

#onetrust-pc-sdk .ot-pc-footer-logo {
  display: block;
  padding: 0 24px 16px;
  color: #555;
  font-size: 10px;
  text-align: right;
  text-decoration: none;
}

.bv-popular-section {
  padding-block: 0 76px;
  background: #fff;
}

.bv-popular-layout.container,
.bv-simulation-card.container {
  width: min(100% - 238px, 1043px);
}

.bv-popular-layout {
  display: block;
}

.bv-popular-main .bv-reference-heading {
  margin-bottom: 31px;
}

.bv-popular-main {
  width: 722px;
}

.bv-category-browser {
  display: none;
  padding-top: 8px;
}

.bv-category-browser .bv-reference-search {
  margin-bottom: 24px;
}

.bv-category-browser details {
  border-bottom: 1px solid #d6d6d6;
}

.bv-category-browser summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  color: #292929;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  list-style: none;
  cursor: pointer;
}

.bv-category-browser summary::-webkit-details-marker {
  display: none;
}

.bv-category-browser summary::after {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease-out;
}

.bv-category-browser details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.bv-category-browser ul {
  display: grid;
  gap: 6px;
  padding: 0 0 15px;
  margin: -2px 0 0;
  list-style: none;
}

.bv-category-browser a {
  color: #292929;
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
}

.bv-category-browser a:hover,
.bv-category-browser a:focus-visible {
  color: #002bab;
  text-decoration: underline;
}

.bv-simulation-section {
  display: none;
  padding-block: 0 86px;
  background: #fff;
}

.bv-simulation-card {
  padding: 39px 42px 40px;
  border-radius: 16px;
  color: #292929;
  background: #f4f5ff;
}

.bv-simulation-card h2 {
  max-width: 550px;
  margin: 0 0 26px;
  color: #292929;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 32px;
}

.bv-simulation-form {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.bv-simulation-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1 1 auto;
  gap: 16px 24px;
  padding: 0;
  margin: 0;
  border: 0;
}

.bv-simulation-form label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: #292929;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.bv-simulation-form input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: #002bab;
}

.bv-simulation-form button {
  display: inline-flex;
  min-width: 164px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 32px;
  color: #fff;
  background: #002bab;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.bv-simulation-form button:hover,
.bv-simulation-form button:focus-visible {
  background: #001a6b;
}

@media (max-width: 859px) {
  .page-shell {
    padding-top: 116px;
  }

  .bv-shell-header .site-header__tools {
    gap: 12px;
    margin-right: 0;
  }

  .bv-shell-header .menu-toggle {
    color: #292929;
  }

  .bv-mobile-switcher .mobile-shortcut--categories {
    font-weight: 700;
  }

  .content-section--lilac:has(.trending-grid) {
    height: 585px;
    padding-block: 45px 54px;
  }

  .trending-grid .section-heading {
    margin-top: 0;
  }

  .trending-grid .topic-card h3 {
    margin-bottom: 9px;
  }

  .trending-grid .topic-card p {
    max-width: 289px;
  }

  .bv-reference-post__image {
    width: 279px;
    height: auto;
  }

  .bv-reference-post h3 {
    max-width: 250px;
    line-height: 26px;
  }

  .bv-popular-section {
    padding-block: 0 56px;
  }

  .bv-popular-layout.container,
  .bv-simulation-card.container {
    width: min(100% - 48px, 1043px);
  }

  .bv-popular-layout {
    display: block;
  }

  .bv-popular-main .bv-reference-heading {
    margin-bottom: 56px;
  }

  .bv-category-browser {
    display: none;
  }

  .bv-simulation-section {
    display: none;
    padding-block: 0 64px;
  }

  .bv-simulation-card {
    padding: 33px 24px 32px;
    border-radius: 0;
  }

  .bv-simulation-card h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
  }

  .bv-simulation-form {
    display: grid;
    gap: 22px;
  }

  .bv-simulation-form fieldset {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .bv-simulation-form label {
    min-height: 44px;
  }

  .bv-simulation-form button {
    width: 100%;
  }

  .bv-shell-footer .container {
    width: min(100% - 96px, 1344px);
    max-width: 1344px;
  }

  .bv-shell-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 40px 34px;
  }

  .footer-app-qr,
  .bv-shell-footer .footer-brand h2,
  .bv-shell-footer .footer-brand .footer-social {
    margin-left: 0;
  }

  .bv-shell-footer .footer-brand {
    width: 245px;
    max-width: 245px;
  }

  .footer-app-qr {
    width: 245px;
    height: 245px;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 36px 28px;
  }

  .footer-legal__logo {
    margin-left: 0;
  }

  .footer-security {
    grid-column: 1;
    max-width: 279px;
    margin-top: 21px;
  }

  .footer-security h2 {
    text-align: left;
  }

  .footer-security__badges {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    gap: 24px 20px;
  }

  .bv-shell-footer .footer-bottom {
    display: grid;
    justify-content: start;
    gap: 23px;
    padding-block: 18px 28px;
    padding-right: 0;
    padding-left: 0;
  }

  .bv-shell-footer .footer-bottom a {
    white-space: normal;
  }

  .bv-whatsapp-float {
    z-index: 130;
  }
}

@media (min-width: 1334px) {
  .inspire-hero .container,
  .trending-grid.container,
  .bv-recent-layout.container,
  .bv-popular-layout.container {
    width: 1096px;
  }

  .inspire-hero {
    height: 357px;
  }

  .inspire-hero__grid {
    height: 357px;
    grid-template-columns: 349px minmax(0, 1fr);
    gap: 211px;
    padding-top: 0;
    margin-top: 10px;
  }

  .inspire-hero__grid > div:first-child {
    transform: translateY(-19.34px);
  }

  .inspire-hero__lead {
    max-width: 349px;
  }

  .inspire-hero__art {
    width: 536px;
    height: 396px;
  }

  .inspire-hero__art img {
    width: 536px;
    height: 396px;
  }

  .bv-recent-layout {
    grid-template-columns: 760px 296px;
    column-gap: 40px;
  }

  .bv-reference-post-grid {
    grid-template-columns: repeat(2, minmax(0, 368px));
    column-gap: 24px;
  }

  .bv-reference-post__image {
    width: 320px;
  }

  .bv-popular-main {
    width: 760px;
  }

  .footer-app-qr,
  .bv-shell-footer .footer-brand h2,
  .bv-shell-footer .footer-brand .footer-social {
    margin-left: 0;
  }

  .footer-legal.container,
  .bv-shell-footer .footer-bottom.container {
    width: min(100% - 120px, 1320px);
  }

  .footer-legal {
    grid-template-columns: 132px 728px 418px;
    gap: 28px;
    align-items: start;
    padding-block: 44px 36px;
  }

  .footer-legal__logo {
    margin-left: 0;
  }

  .footer-legal__text {
    max-width: 716px;
  }

  .footer-security {
    grid-column: 3;
    grid-row: 1;
    max-width: 418px;
    margin-top: 0;
  }

  .footer-security__badges {
    justify-content: flex-start;
    gap: 8px;
  }

  .bv-shell-footer .footer-bottom {
    justify-content: flex-start;
    gap: 31px;
    padding-left: 100px;
  }
}

@media (max-width: 859px) {
  body.mobile-shell-scrolled .bv-mobile-switcher.mobile-shortcuts {
    display: none;
  }

  .footer-app-qr {
    display: none;
  }

  .footer-app-stores {
    display: grid;
    width: 134px;
    gap: 20px;
    margin: 17px 0 20px;
  }

  .footer-store-badge {
    position: relative;
    display: grid;
    width: 134px;
    min-height: 42px;
    align-content: center;
    padding: 4px 9px 5px 37px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 5px;
    color: #fff;
    background: #050505;
    font-size: 8px;
    line-height: 1;
    text-decoration: none;
  }

  .footer-store-badge::before {
    position: absolute;
    width: 19px;
    height: 22px;
    margin-left: -27px;
    align-self: center;
    content: "";
    background: #fff;
    clip-path: polygon(50% 0, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
  }

  .footer-store-badge--play::before {
    background: linear-gradient(90deg, #00d084 0 34%, #2db7ff 34% 67%, #ffd43b 67% 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }

  .footer-store-badge span {
    font-size: 8px;
    font-weight: 400;
    line-height: 10px;
  }

  .footer-store-badge strong {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
  }

  .bv-shell-footer .footer-grid {
    gap: 0;
  }

  .bv-shell-footer .footer-brand {
    min-height: 266px;
  }

  .bv-shell-footer .footer-brand h2 {
    margin-bottom: 0;
    font-weight: 500;
  }

  .bv-shell-footer .footer-follow-title {
    margin-top: 0;
  }

  .bv-shell-footer .footer-social {
    width: min(100%, 276px);
    gap: 0;
    margin-top: 17px;
    margin-inline: auto;
    justify-content: space-between;
  }

  .bv-shell-footer .footer-social a {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .bv-shell-footer .footer-social__icon {
    width: 25px;
    height: 25px;
    max-width: none;
    flex: 0 0 25px;
  }

  .bv-shell-footer .footer-grid > section:not(.footer-brand) {
    display: block;
  }

  .bv-shell-footer .footer-grid > section:not(.footer-brand) h2 {
    position: relative;
    display: flex;
    min-height: 73px;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .bv-shell-footer .footer-grid > section:not(.footer-brand) h2::after {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: rotate(45deg) translateY(-2px);
  }

  .bv-shell-footer .footer-help-title {
    margin-top: 0;
  }

  .bv-shell-footer .footer-grid > section:not(.footer-brand) ul {
    display: none;
  }

  .bv-shell-footer .footer-grid > section:not(.footer-brand) h2 + ul:not([hidden]) {
    display: grid;
    padding-block: 12px 20px;
  }

  .bv-shell-footer .footer-grid > section:not(.footer-brand) h2[aria-expanded="true"]::after {
    transform: rotate(225deg) translateY(-2px);
  }

  .bv-shell-footer .footer-grid > section:last-child h2:last-of-type {
    border-bottom: 0;
  }

  .footer-legal {
    padding-top: 40px;
  }
}

/* BV mobile shell refinement, aligned to the live footer rhythm. */
@media (max-width: 859px) {
  .bv-shell-header .client-cta {
    line-height: 22px;
  }

  .bv-shell-footer .footer-app-stores {
    width: min(100%, 270px);
    margin-inline: auto;
  }

  .bv-shell-footer .footer-store-badge {
    width: 270px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .bv-shell-footer .footer-store-badge::before {
    display: none;
  }

  .bv-shell-footer .footer-store-badge__art {
    display: block;
    width: 100%;
    height: auto;
  }

  .bv-shell-footer .container {
    width: min(100% - 48px, 1344px);
    max-width: 1344px;
  }

  .bv-shell-footer .footer-brand {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .bv-shell-footer .footer-app-stores {
    margin-inline: auto;
  }

  .bv-shell-footer .footer-social {
    justify-content: center;
  }

  .bv-shell-footer .footer-brand .footer-social {
    width: min(100%, 276px);
    gap: 0;
    margin: 17px auto 0;
    justify-content: space-between;
  }

  .bv-shell-footer .footer-grid > section:not(.footer-brand) h2 {
    min-height: 56px;
    align-items: center;
    padding-block: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .footer-legal {
    justify-items: center;
    text-align: center;
  }

  .footer-legal__logo {
    margin-inline: auto;
  }

  .footer-legal__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .footer-security {
    justify-self: center;
  }

  .footer-security h2 {
    text-align: center;
  }

  .footer-security__badges {
    justify-content: center;
  }

  .bv-shell-footer .footer-bottom {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    padding-inline: 0;
    text-align: center;
  }

  .bv-shell-footer .footer-bottom a {
    max-width: 100%;
    text-align: center;
  }

}

@media (max-width: 767px) {
  #onetrust-banner-sdk {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }

  #onetrust-banner-sdk .ot-sdk-container {
    padding: 18px;
  }

  #onetrust-banner-sdk .ot-sdk-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #onetrust-banner-sdk .ot-sdk-button-group {
    flex-direction: column;
    align-items: stretch;
  }

  #onetrust-accept-btn-handler,
  #onetrust-pc-btn-handler {
    width: 100%;
  }
}

/* Final mobile parity pass for content rhythm and the navigation drawer. */
@media (max-width: 859px) {
  .bv-shell-header .bv-header-search {
    display: none;
  }

  .content-section--lilac:has(.trending-grid) {
    height: auto;
    min-height: 0;
    padding-block: 45px;
  }

  .bv-recent-section {
    padding-top: 12px;
  }

  .bv-shell-footer .footer-legal {
    border-top: 0;
  }

  .bv-reference-post-grid {
    gap: 87px;
  }

  .bv-popular-main {
    width: 100%;
  }

  .bv-recent-main .bv-reference-post,
  .bv-popular-main .bv-reference-post {
    padding-inline: 0;
  }

  .bv-recent-main .bv-reference-post__image,
  .bv-popular-main .bv-reference-post__image {
    width: 100%;
    max-width: none;
  }

  .bv-recent-main .bv-reference-post h3,
  .bv-popular-main .bv-reference-post h3 {
    max-width: none;
  }

  .site-drawer {
    top: 116px;
    width: calc(100vw - 40px);
    min-height: calc(100dvh - 116px);
    padding: 14px 24px 24px;
    border-radius: 0;
    box-shadow: -8px 0 18px rgba(0, 18, 80, 0.2);
  }

  .site-drawer__top,
  .drawer-client-cta {
    display: none;
  }

  .drawer-nav {
    gap: 0;
    padding: 0;
  }

  .drawer-nav a {
    min-height: 68px;
    padding: 0;
    border-radius: 0;
    font-size: 22px;
    line-height: 28px;
  }

  .drawer-nav a .icon--chevron {
    width: 16px;
    height: 16px;
  }

  .drawer-backdrop {
    top: 116px;
  }
}

/* Mobile drawer parity with the live BV card navigation. */
@media (max-width: 859px) {
  .site-drawer {
    z-index: 120;
    top: 0;
    right: 0;
    width: 100vw;
    min-height: 100dvh;
    height: 100dvh;
    padding: 38px 24px 16px;
    border-radius: 0;
    background: #002bab;
    box-shadow: none;
  }

  .site-drawer__top {
    display: flex;
    min-height: 40px;
    padding: 0;
    margin-inline: 9px;
    border: 0;
  }

  .site-drawer__brand {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-drawer__brand .bv-logo-svg--header {
    display: block;
    width: 36px;
    height: 36px;
  }

  .drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 0;
    color: #fff;
    background: transparent;
  }

  .drawer-close:hover,
  .drawer-close:focus-visible {
    color: #fff;
    background: transparent;
  }

  .drawer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
    row-gap: 17px;
    padding: 67px 0 0;
  }

  .drawer-nav a {
    min-height: 165px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 20px 20px;
    border-radius: 16px;
    color: #fff;
    background: #1a41b4;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }

  .drawer-tile {
    flex-direction: column;
  }

  .drawer-nav a:hover,
  .drawer-nav a:focus-visible {
    color: #fff;
    background: #1a41b4;
  }

  .drawer-search {
    display: flex;
    min-height: 68px !important;
    height: 68px;
    grid-column: 1 / -1;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px;
    padding: 0 28px !important;
    border-radius: 34px !important;
    flex-direction: row;
  }

  .drawer-search__icon,
  .drawer-search__close {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .drawer-search span {
    color: #e6ebff;
    font-size: 16px;
    line-height: 24px;
  }

  .drawer-search__close {
    margin-left: auto;
  }

  .drawer-tile--wide {
    grid-column: 1 / -1;
    margin-top: 28px;
  }

  .drawer-tile__icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .drawer-backdrop {
    top: 0;
    background: transparent;
  }

  .drawer-client-cta {
    display: none;
  }

}

.footer-legal__logo {
  width: 150px;
  align-items: flex-start;
}

.footer-legal__logo .bv-logo-svg--footer {
  width: 144px;
  height: 144px;
}

.footer-security {
  align-items: flex-start;
  text-align: left;
}

.footer-security h2 {
  width: 100%;
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "BV Leve Textos", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.footer-security__badges {
  justify-content: flex-start;
}

.bv-whatsapp-float {
  display: inline-flex;
}

@media (max-width: 859px) {
  .footer-legal {
    justify-items: start;
    text-align: left;
  }

  .footer-legal__logo {
    margin-inline: 0;
  }

  .footer-security {
    justify-self: start;
    text-align: left;
  }

  .footer-security h2 {
    text-align: left;
  }

  .footer-security__badges {
    justify-content: flex-start;
  }

  .bv-whatsapp-float {
    right: 20px;
    bottom: 20px;
  }
}

.trending-grid .topic-card__category {
  color: #002bab;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.trending-grid .section-heading h2 {
  font-family: Inter, Arial, sans-serif;
}

.trending-grid .topic-card h3 {
  color: #292929;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

.bv-reference-post h3 {
  color: #292929;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.bv-reference-sidebar h2,
.bv-category-browser h2 {
  color: #292929;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.bv-shell-header .client-cta,
.drawer-client-cta {
  font-family: "BV Leve Textos", Inter, Arial, sans-serif;
  font-size: 14px;
}

.bv-reference-search {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #697386;
  background: #f5f6fa;
  box-shadow: none;
}

.bv-reference-search input {
  min-height: 56px;
  padding: 0;
  color: #292929;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.bv-reference-search input::placeholder {
  color: #697386;
  opacity: 1;
}

.bv-reference-search button {
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  color: #697386;
  background: transparent;
}

.inspire-hero__art {
  width: min(100%, 630px);
  margin-inline: auto;
}

.inspire-hero__art img {
  width: 100%;
  max-width: 630px;
  height: auto;
  object-fit: contain;
}

/* BV measured header/search correction, 2026-08-10.
   Source: official `main-header-2` CSS from bv.com.br, plus local overlap measurement. */
.bv-header__container.site-header__inner {
  width: min(100% - 184px, 1096px);
  min-height: 60px;
  padding: 10px 0;
  gap: 0;
}

.bv-shell-header .brand-link {
  flex: 0 0 40px;
  margin-right: 12px;
}

.bv-shell-header .main-nav {
  flex: 0 0 auto;
  gap: 0;
  margin-right: 35px;
}

.bv-shell-header .main-nav__trigger {
  position: relative;
  min-height: 36px;
  height: 36px;
  gap: 4px;
  padding: 6px 11px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.bv-shell-header .main-nav__trigger::after {
  position: absolute;
  right: auto;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background-color: #002bab;
  transition: width 0.3s ease-in-out;
}

.bv-shell-header .main-nav__trigger[aria-expanded="true"],
.bv-shell-header .main-nav__trigger:hover,
.bv-shell-header .main-nav__trigger:focus-visible {
  background: transparent;
  box-shadow: none;
}

.bv-shell-header .main-nav__trigger[aria-expanded="true"]::after,
.bv-shell-header .main-nav__trigger:hover::after,
.bv-shell-header .main-nav__trigger:focus-visible::after {
  width: 95%;
}

.bv-shell-header .main-nav__trigger .icon--chevron {
  margin-left: 0;
}

.bv-shell-header .site-header__tools {
  margin-left: auto;
  margin-right: 0;
  gap: 10px;
}

.bv-header-search.header-search-trigger {
  width: 196px;
  height: 40px;
  min-height: 40px;
  margin-left: 14px;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 100px;
}

.bv-header-search.header-search-trigger .icon {
  width: 24px;
  height: 24px;
}

.bv-header-search input {
  height: 24px;
  font-size: 16px;
  line-height: 24px;
}

.bv-shell-header .client-cta {
  width: 140px;
  height: 40px;
  min-height: 40px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.bv-reference-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  width: 296px;
  height: 49px;
  min-height: 49px;
  max-width: 100%;
  gap: 0;
  padding: 0;
  border-radius: 8px;
  background: #f5f5f5;
}

.bv-reference-search input {
  min-height: 49px;
  height: 49px;
  padding: 0 0 0 13px;
  color: #6b6c7e;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.bv-reference-search input::placeholder {
  color: #6b6c7e;
}

.bv-reference-search button {
  width: 44px;
  min-width: 44px;
  height: 49px;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  color: #6b6c7e;
}

.bv-reference-search button .icon {
  width: 18px;
  height: 18px;
}

.bv-reference-heading h1,
.bv-reference-heading h2,
.bv-reference-heading span,
.bv-results-meta,
.bv-reference-post__category,
.bv-reference-post h3,
.bv-reference-post h3 a,
.bv-reference-sidebar h2,
.bv-reference-sidebar summary,
.bv-reference-links a,
.bv-category-browser h2,
.bv-category-browser summary,
.bv-category-browser a,
.bv-reference-search input {
  font-family: Inter, Arial, sans-serif;
}

@media (max-width: 1199px) {
  .mega-menu,
  .main-nav {
    display: none;
  }

  .page-shell {
    padding-top: 117px;
  }

  .bv-header__container.site-header__inner {
    width: 100%;
    padding: 0 32px 0 35px;
    gap: 8px;
  }

  .bv-shell-header .site-header__tools {
    margin-left: auto;
    margin-right: 0;
    gap: 12px;
  }

  .bv-shell-header .bv-header-search {
    display: none;
  }

  .bv-shell-header .menu-toggle {
    display: inline-flex;
  }

  .mobile-shortcuts {
    display: block;
  }
}

@media (max-width: 480px) {
  .bv-header__container.site-header__inner {
    padding-inline: 24px;
  }

  .bv-shell-header .client-cta {
    width: auto;
    min-width: 148px;
  }
}

/* BV measured desktop dropdown parity, 2026-08-10.
   Source: official `main-header-2--dropdown` DOM/CSS from bv.com.br/bv-inspira. */
.bv-menu-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.bv-shell-header .mega-menu[hidden] {
  display: none !important;
}

.bv-shell-header .mega-menu {
  position: fixed;
  z-index: 99;
  top: 60px;
  right: auto;
  left: 0;
  display: flex;
  width: 100vw;
  flex-direction: column;
  padding-top: 50px;
  color: #eff4fb;
  background: #002bab;
  border-bottom: 10px solid #001a6b;
}

.bv-shell-header .mega-menu__grid.container {
  display: flex;
  width: max-content;
  max-width: calc(100vw - 96px);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto 50px;
  padding: 0;
}

.bv-shell-header .mega-menu__grid--two,
.bv-shell-header .mega-menu__grid--three,
.bv-shell-header .mega-menu__grid--five,
.bv-shell-header .mega-menu__grid--empresas {
  grid-template-columns: none;
}

.bv-shell-header .mega-menu section {
  display: flex;
  width: 240px;
  max-width: 240px;
  flex-direction: column;
}

.bv-shell-header .mega-menu h2 {
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #eff4fb;
  color: #eff4fb;
  font-family: "BV Leve Textos", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.bv-shell-header .mega-menu h2.mega-menu__subheading {
  margin-top: 32px;
}

.bv-shell-header .mega-menu a {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 20px 8px;
  border-radius: 8px;
  color: #eff4fb;
  font-family: "BV Leve Textos", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: padding 0.3s ease;
}

.bv-shell-header .mega-menu a:hover,
.bv-shell-header .mega-menu a:focus-visible {
  padding: 20px 12px;
  color: #eff4fb;
  background-color: #001a6b;
  text-decoration: none;
}

.bv-shell-header .mega-menu__link-main {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: #eff4fb;
  font-family: "BV Leve Textos", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.bv-shell-header .mega-menu .menu-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  color: #eff4fb;
}

.bv-shell-header .mega-menu .align_span {
  display: inline-block;
  margin-top: 1px;
  color: #eff4fb;
  font-family: "BV Leve Textos", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
}

.bv-shell-header .mega-menu .icon-hover {
  width: 16px;
  min-width: 16px;
  height: 16px;
  color: #eff4fb;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bv-shell-header .mega-menu a:hover .icon-hover,
.bv-shell-header .mega-menu a:focus-visible .icon-hover {
  opacity: 1;
}

@media screen and (min-width: 1366px) {
  .bv-shell-header .mega-menu section {
    width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 1199px) {
  .bv-shell-header .mega-menu,
  .bv-shell-header .mega-menu:not([hidden]) {
    display: none;
  }
}

.whatsapp-link-wrapper:focus-visible,
.bv-fixed-panel__close:focus-visible,
.bv-fixed-panel a:focus-visible,
.bv-fixed-panel button:focus-visible {
  outline: 2px solid #ffd83d;
  outline-offset: 2px;
}

.bv-whatsapp-link {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  cursor: pointer;
}

.bv-whatsapp-link .whatsapp-link-wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
  font-family: "BV Leve Textos", Inter, Arial, sans-serif;
  text-decoration: none;
}

.bv-whatsapp-link .sidebar-desktop {
  position: relative;
  right: -5px;
}

.bv-whatsapp-link .whatsapp-icon {
  z-index: 2000;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-left: -24px;
  padding: 12px;
  border-radius: 50%;
  color: #ffffff;
  background: #1a9d32;
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.16);
}

.bv-whatsapp-link .whatsapp-icon svg {
  width: 32px;
  height: 32px;
  margin-bottom: 1px;
}

.bv-whatsapp-link .whatsapp-text {
  max-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}

.bv-whatsapp-link .whatsapp-link-wrapper:hover .whatsapp-text,
.bv-whatsapp-link .whatsapp-link-wrapper:focus-visible .whatsapp-text,
.bv-whatsapp-link .whatsapp-link-wrapper[aria-expanded="true"] .whatsapp-text {
  max-width: 200px;
  padding: 4px 28px 4px 12px;
  border-radius: 20px;
  background: #1a9d32;
  opacity: 1;
  visibility: visible;
}

.bv-whatsapp-link .link-mobile {
  display: none;
}

.bv-whatsapp-float {
  display: none;
}

.bv-fixed-panel-backdrop {
  position: fixed;
  z-index: 1000002;
  inset: 0;
  background: rgba(0, 18, 80, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bv-fixed-panel-backdrop.is-visible {
  opacity: 1;
}

.bv-fixed-panel {
  position: fixed;
  z-index: 1000003;
  top: 0;
  right: 0;
  display: flex;
  width: clamp(480px, 34vw, 680px);
  height: 100dvh;
  flex-direction: column;
  gap: 22px;
  padding: 72px 48px 48px;
  overflow-y: auto;
  color: #292929;
  background: #ffffff;
  box-shadow: -10px 0 28px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.24s ease, opacity 0.16s ease;
  visibility: hidden;
}

.bv-fixed-panel.is-open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.bv-fixed-panel__close {
  position: absolute;
  top: 68px;
  right: 44px;
  align-self: flex-end;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #292929;
  background: transparent;
  line-height: 1;
  cursor: pointer;
}

.bv-fixed-panel__close .fechar,
.bv-fixed-panel__close svg {
  width: 24px;
  height: 24px;
}

.bv-fixed-panel h2,
.bv-fixed-panel__title {
  max-width: calc(100% - 56px);
  margin: 0 0 18px;
  color: #292929;
  font-family: Inter, "BV Leve Textos", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.bv-fixed-panel p {
  margin: 0;
  color: #292929;
  font-family: Inter, "BV Leve Textos", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.bv-fixed-panel__qr {
  width: 300px;
  height: 300px;
  align-self: center;
  margin: 0 auto 16px;
  object-fit: contain;
}

.bv-fixed-panel__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 38px;
}

.bv-fixed-panel__actions button,
.bv-fixed-panel__actions a,
.bv-fixed-panel__primary {
  display: inline-flex;
  min-width: 220px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #293de0;
  font-family: Inter, "BV Leve Textos", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
}

.bv-fixed-panel__primary {
  color: #ffffff;
  background: #293de0;
}

body.fixed-control-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .bv-whatsapp-link {
    right: 20px;
    bottom: 20px;
  }

  .bv-whatsapp-link .sidebar-desktop {
    display: none;
  }

  .bv-whatsapp-link .link-mobile {
    display: flex;
  }
}

@media (max-width: 859px) {
  .bv-fixed-panel {
    width: 100vw;
    padding: 72px 24px 32px;
  }

  .bv-fixed-panel__close {
    top: 64px;
    right: 20px;
  }

  .bv-fixed-panel h2,
  .bv-fixed-panel__title {
    font-size: 20px;
    line-height: 28px;
  }

  .bv-fixed-panel__primary {
    min-height: 56px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bv-whatsapp-link .whatsapp-text,
  .bv-fixed-panel,
  .bv-fixed-panel-backdrop {
    transition: none;
  }
}

/* WP template guardrails: accessibility, performance and pagination */
.skip-link:focus,
.skip-link:focus-visible {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: #ffffff;
    color: #111111;
    outline: 3px solid currentColor;
}

:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.footer-brand > img {
    height: auto;
}

.drawer__links .menu {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.drawer__links .menu-item {
    margin: 0;
    list-style: none;
}

.pagination,
.pagination.wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pagination a,
.pagination span {
    min-height: 44px;
    padding-inline: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination a:focus,
.pagination a:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.pagination .page-link .inline-icon {
    filter: brightness(0) invert(1);
}

.pagination .page-link:hover .inline-icon,
.pagination .page-link[aria-current="page"] .inline-icon {
    filter: none;
}

.pagination .page-link--prev .inline-icon {
    transform: rotate(180deg);
}

.post-card__image img,
.post-card__thumb,
.featured-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-cover {
    margin: 1em 40px;
}

.article-cover .article-image__media {
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: cover;
}

.search-layout--without-taxonomy {
    grid-template-columns: minmax(0, 1fr);
}

.search-layout--without-taxonomy > :last-child {
    width: min(100%, 920px);
    margin-inline: auto;
}

@media (max-width: 820px) {
    .quick-actions[data-taxonomy-limit-justification] .button {
        min-height: 56px;
        padding-inline: 8px;
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.15;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 859px) {
    .inspire-hero + .bv-listing-page.bv-recent-section {
        padding-top: 48px;
    }

    .bv-listing-page .bv-reference-heading {
        margin-bottom: 32px;
    }
}
