@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600&family=Poppins:wght@400;500;600&display=swap');

/*
 * Bons Ares — tema institucional autoral (nível agência).
 * Escopado sob .site-root (o renderer envolve os blocos nesse contêiner) e
 * carregado só nas páginas deste tema. Classes com prefixo .ba-.
 *
 * Build de referência: Toldos Bell. As cores-chave (navy/lime/ink) puxam de
 * --theme-* (site.settings.colors) com fallback ao default do tema, para o
 * cliente/fábrica repaletar sem tocar em bloco.
 */

.site-root {
  --ba-navy: var(--theme-primary, #070e1a);
  --ba-lime: var(--theme-accent, #92f231);
  --ba-lime-ink: #16300a;
  --ba-ink: var(--theme-text, #16181c);
  --ba-body: #5c6570;
  --ba-line: #e7e9e6;
  --ba-gray: #f3f4f1;
  --ba-white: #ffffff;
  --ba-head: "Lexend", "Inter Variable", system-ui, sans-serif;
  --ba-ui: "Poppins", "Inter Variable", system-ui, sans-serif;
  --ba-base: "Inter Variable", system-ui, -apple-system, sans-serif;
  --ba-radius: 14px;

  font-family: var(--ba-base);
  color: var(--ba-ink);
  background: var(--ba-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.site-root *,
.site-root *::before,
.site-root *::after {
  box-sizing: border-box;
}

.site-root img {
  max-width: 100%;
}

/* <picture> do ThemeImage não gera caixa: o <img> herda o layout do contêiner
   (object-fit/position/width dos seletores .ba-*), como se fosse filho direto. */
.site-root picture {
  display: contents;
}

.ba-container {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 150px;
}

/* ---------- Typography ---------- */
.ba-eyebrow {
  font-family: var(--ba-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ba-body);
  margin: 0 0 18px;
}

.ba-h2 {
  font-family: var(--ba-base);
  font-weight: 600;
  font-size: 46px;
  line-height: 66px;
  letter-spacing: -0.84px;
  color: var(--ba-ink);
  margin: 0;
}

.ba-lead {
  font-size: 17px;
  line-height: 28.5px;
  color: var(--ba-ink);
  margin: 0;
}

/* ---------- Buttons ---------- */
.ba-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ba-ui);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.ba-btn:hover { transform: translateY(-1px); }

.ba-btn--dark { background: #000000; color: #fff; }
.ba-btn--dark:hover { background: #1a1a1a; }

.ba-btn--light { background: #fff; color: var(--ba-ink); }
.ba-btn--light:hover { background: #f1f1ef; }

.ba-btn--lime { background: var(--ba-lime); color: var(--ba-lime-ink); border-radius: 6px; padding: 16px 30px; }
.ba-btn--lime:hover { background: #86e024; }

.ba-btn--outline { background: transparent; color: var(--ba-ink); border-color: var(--ba-line); }
.ba-btn--outline:hover { background: var(--ba-gray); }

.ba-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--ba-line);
  background: #fff;
  color: var(--ba-ink);
  cursor: pointer;
  flex: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.ba-circle-btn:hover { background: var(--ba-gray); transform: translateY(-1px); }

/* ---------- Nav ---------- */
.ba-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--ba-line);
}
.ba-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 80px;
}
.ba-nav__inner .ba-btn { padding: 9px 20px; font-size: 12px; font-weight: 400; }
.ba-logo { display: inline-flex; align-items: center; }
.ba-logo__img { height: 30px; width: auto; display: block; }

.ba-nav__links {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ba-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ba-ink);
  text-decoration: none;
  transition: color 0.15s ease;
}
.ba-nav__link:hover { color: var(--ba-ink); }

.ba-nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  margin: -4px;
  color: var(--ba-ink);
  cursor: pointer;
  line-height: 0;
}

.ba-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  display: flex;
  flex-direction: column;
  animation: ba-menu-in 0.16s ease-out;
}
@keyframes ba-menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.ba-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--ba-line);
}
.ba-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 0;
}
.ba-mobile-menu__link {
  font-family: var(--ba-base);
  font-size: 19px;
  font-weight: 500;
  color: var(--ba-ink);
  text-decoration: none;
  padding: 19px 0;
  border-bottom: 1px solid var(--ba-line);
}
.ba-mobile-menu__cta {
  margin: 32px 24px 0;
  align-self: flex-start;
}

/* ---------- Hero ---------- */
.ba-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}
.ba-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.ba-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  padding-bottom: 64px;
  padding-top: 96px;
}
.ba-hero__title {
  font-family: var(--ba-head);
  font-weight: 400;
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
  width: 526px;
  max-width: 100%;
  flex: none;
  text-align: right;
}
.ba-hero__right { max-width: 391px; padding-bottom: 4px; }
.ba-hero__body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 22px;
}

/* ---------- Hero das páginas internas (claro, título à direita) ---------- */
.ba-page-hero { padding: 225px 0 180px; }
.ba-page-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 1118px;
  margin: 0 auto;
}
.ba-page-hero__title {
  font-family: var(--ba-head);
  font-weight: 400;
  font-size: 53px;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
  color: var(--ba-ink);
  width: 695px;
  max-width: 100%;
  flex: none;
  text-align: right;
}
.ba-page-hero__right { max-width: 391px; }
.ba-page-hero__right .ba-lead { margin-bottom: 22px; }

/* ---------- Grade de serviços (3 col, gap 23) ---------- */
.ba-section-tight { padding: 0; }
.ba-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.ba-service-card {
  position: relative;
  aspect-ratio: 461 / 483;
  overflow: hidden;
  background: var(--ba-gray);
}
.ba-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ba-service-card:hover img { transform: scale(1.04); }
.ba-service-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 52%);
}
.ba-service-card__label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  font-family: var(--ba-head);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  max-width: 62%;
}

/* ---------- Contato ---------- */
.ba-channel-row {
  display: grid;
  grid-template-columns: calc(25% - 17px) calc(25% + 17px) calc(25% + 17px) calc(25% - 17px);
}
.ba-contact-sep {
  height: 1px;
  background: var(--ba-line);
  margin-top: 96px;
}
.ba-channel {
  display: flex;
  flex-direction: column;
  min-height: 152px;
  padding: 26px 0;
  border-left: 1px solid var(--ba-line);
}
.ba-channel:first-child { border-left: none; }
.ba-channel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 34px;
  margin-bottom: 10px;
}
.ba-channel__title {
  font-family: var(--ba-base);
  font-size: 17px;
  font-weight: 600;
  color: var(--ba-ink);
}
.ba-channel__num {
  font-family: var(--ba-ui);
  font-size: 13px;
  color: var(--ba-body);
}
.ba-channel__desc { margin: 0; padding: 0 34px; font-size: 14px; color: var(--ba-body); }
.ba-channel__link {
  margin-top: auto;
  padding: 20px 34px 0;
  font-family: var(--ba-base);
  font-weight: 500;
  font-size: 15px;
  color: #2f6fe0;
  text-decoration: none;
}
.ba-channel__link:hover { text-decoration: underline; }
.ba-channel:first-child .ba-channel__head,
.ba-channel:first-child .ba-channel__desc,
.ba-channel:first-child .ba-channel__link { padding-left: 0; }
.ba-channel:last-child .ba-channel__head,
.ba-channel:last-child .ba-channel__desc,
.ba-channel:last-child .ba-channel__link { padding-right: 0; }

.ba-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.ba-visit__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--ba-body);
  margin: 0 0 18px;
}
.ba-visit__address {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ba-ink);
  max-width: 34ch;
}
.ba-hours { border-top: 1px solid var(--ba-line); }
.ba-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--ba-line);
  font-size: 15px;
}
.ba-hours__day { color: var(--ba-ink); }
.ba-hours__time { color: var(--ba-body); }
.ba-map { overflow: hidden; }
.ba-map__frame {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- Portfólio (grade uniforme) ---------- */
.ba-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ba-portfolio-tile {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ba-gray);
}
.ba-portfolio-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ba-case-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 44px;
  align-items: start;
}
.ba-case__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.ba-case__text .ba-h2 { margin-bottom: 24px; }
.ba-case__media {
  aspect-ratio: 461 / 585;
  align-self: start;
  overflow: hidden;
  background: var(--ba-gray);
}
.ba-case__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-case__boxes {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
}
.ba-case__box { flex: 1; padding: 34px 36px; display: flex; flex-direction: column; }
.ba-case__box + .ba-case__box { border-top: 1px solid #e5e5e5; }
.ba-case__box-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.ba-case__box-title {
  font-family: var(--ba-base);
  font-size: 17px;
  font-weight: 600;
  color: var(--ba-ink);
}
.ba-case__box-num {
  font-family: var(--ba-ui);
  font-size: 13px;
  color: var(--ba-body);
}
.ba-case__box-text {
  margin: auto 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ba-body);
}

/* ---------- Institucional ---------- */
.ba-page-hero--about { padding-bottom: 0; }
.ba-about-hero-media {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  margin-bottom: -80px;
}
.ba-about-hero-media img {
  width: 100%;
  height: clamp(280px, 30vw, 430px);
  object-fit: cover;
  display: block;
}
.ba-section--about-top { padding-top: 220px; }
.ba-stats-row {
  display: flex;
  justify-content: center;
  gap: 120px;
  text-align: center;
  margin-bottom: 140px;
}
.ba-stat { min-width: 0; }
.ba-stat__label {
  font-size: 14px;
  color: var(--ba-body);
  margin: 0 0 6px;
}
.ba-stat__value {
  font-family: var(--ba-base);
  font-weight: 600;
  font-size: 17px;
  color: var(--ba-ink);
  margin: 0;
}

/* ---------- Section shells ---------- */
.ba-section { padding: 140px 0; }
.ba-section--alt { background: #f5f6f7; }
/* Portfólio + depoimentos formam um par visual (gap curto de 107px do
   carrossel): o mosaico fecha sem padding e o carrossel abre sem padding. */
.ba-section--flush-bottom { padding-bottom: 0; }
.ba-section--flush-top { padding-top: 0; }

.ba-split-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 22px;
}
.ba-center-head {
  max-width: 856px;
  margin: 0 auto 94px;
  text-align: center;
}
.ba-center-head .ba-lead { margin-top: 18px; }

/* ---------- Showcase ---------- */
.ba-showcase__lead {
  font-size: 16px;
  line-height: 1.62;
  color: var(--ba-body);
  max-width: 620px;
  margin: 0 0 46px;
}
.ba-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--ba-ui);
  font-size: 15px;
  color: var(--ba-ink);
  text-decoration: none;
  white-space: nowrap;
}

.ba-cards {
  display: flex;
  gap: 23px;
  height: clamp(360px, 34vw, 523px);
}
.ba-card-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: flex-grow 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.ba-card-col:nth-child(2) { flex-grow: 2.4; }
.ba-cards:hover .ba-card-col { flex-grow: 1; }
.ba-cards:hover .ba-card-col:hover { flex-grow: 2.4; }
.ba-card-num {
  font-family: var(--ba-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ba-body);
  text-align: right;
}
.ba-card {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--ba-gray);
}
.ba-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.05) 55%);
}
.ba-card__foot {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.ba-card-col:nth-child(2) .ba-card__foot { opacity: 1; transform: none; }
.ba-cards:hover .ba-card-col .ba-card__foot { opacity: 0; transform: translateY(8px); }
.ba-cards:hover .ba-card-col:hover .ba-card__foot { opacity: 1; transform: none; }
.ba-card__label {
  font-family: var(--ba-head);
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.ba-card__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ba-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* ---------- Benefits ---------- */
.ba-benefits-grid {
  display: grid;
  grid-template-columns: 365px 1fr;
  gap: 118px;
  align-items: start;
}
.ba-benefits__text {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 28px;
}
.ba-benefits__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.ba-benefits__media {
  overflow: hidden;
  aspect-ratio: 460 / 585;
  align-self: start;
}
.ba-benefits__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ba-benefit-item {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 0 28px;
  font-size: 16px;
  color: #212121;
  background: transparent;
}

/* ---------- Experience ---------- */
.ba-exp-grid {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 118px;
  align-items: stretch;
}
.ba-exp-grid--narrow { grid-template-columns: 0.58fr 1fr; }
.ba-exp-grid--narrow .ba-exp__media {
  aspect-ratio: 481 / 572;
  align-self: start;
}
.ba-exp-grid--narrow .ba-exp__text { max-width: 571px; }
.ba-exp-grid--narrow .ba-exp__text .ba-h2 { margin-bottom: 43px; }
.ba-exp-grid--narrow .ba-exp__text .ba-lead { margin-bottom: 20px; }
.ba-exp-grid--narrow .ba-exp__points { margin-bottom: 20px; }
.ba-exp__media {
  overflow: hidden;
}
.ba-exp__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-exp__text { display: flex; flex-direction: column; }
.ba-exp__text .ba-h2 { margin-bottom: 50px; }
.ba-exp__text .ba-lead { margin-bottom: 40px; }
.ba-exp__points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.ba-exp__point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}
.ba-exp__point-num {
  font-family: var(--ba-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--ba-body);
}
.ba-exp__point-text { font-size: 16px; font-weight: 500; color: var(--ba-ink); }
.ba-exp__text .ba-text-arrow { margin-top: auto; align-self: flex-start; }

/* ---------- Portfolio mosaic (masonry deslizante em loop) ---------- */
.ba-mosaic { overflow: hidden; }
.ba-mosaic__track {
  display: flex;
  width: max-content;
  height: 628px;
  will-change: transform;
}
.ba-mosaic__track--slide { animation: ba-slide-left 90s linear infinite; }
.ba-mosaic__col {
  flex: 0 0 auto;
  height: 100%;
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-mosaic__col--tall { width: 340px; }
.ba-mosaic__col--wide { width: 628px; }
.ba-mosaic__row {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 16px;
}
.ba-mosaic__tile {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  background: var(--ba-gray);
}
.ba-mosaic__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes ba-slide-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ba-mosaic__track--slide { animation: none; }
}

/* ---------- Testimonials (carrossel full-width) ---------- */
.ba-carousel { margin-top: 107px; }
.ba-carousel__track {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.ba-carousel__track::-webkit-scrollbar { display: none; }
.ba-testi {
  flex: 0 0 336px;
  min-height: 383px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px 36px;
  border-radius: 12px;
  background: transparent;
  opacity: 0.4;
  transition: opacity 0.45s ease, background 0.45s ease;
}
.ba-testi--active { background: var(--ba-gray); opacity: 1; }
.ba-testi__quote { color: var(--ba-lime); flex: none; }
.ba-testi__text { font-size: 16px; line-height: 1.6; color: var(--ba-ink); flex: 1; }
.ba-testi__author { font-size: 13px; color: var(--ba-body); }
.ba-testi__author strong { display: block; color: var(--ba-ink); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.ba-carousel__arrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.ba-carousel__arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--ba-line);
  background: #fff;
  color: var(--ba-ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.ba-carousel__arrow:hover { background: var(--ba-gray); }

/* ---------- FAQ ---------- */
.ba-faq-head {
  max-width: 1036px;
  margin: 0 auto 94px;
  text-align: center;
}
.ba-faq-head .ba-lead { margin-top: 50px; }
.ba-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  interpolate-size: allow-keywords;
}
.ba-faq-item::details-content {
  height: 0;
  overflow: hidden;
  transition: height 0.32s ease, content-visibility 0.32s;
  transition-behavior: allow-discrete;
}
.ba-faq-item[open]::details-content {
  height: auto;
}
.ba-faq-item {
  background: #f7f8f6;
  border-radius: 10px;
  padding: 30px;
}
.ba-faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--ba-base);
  font-size: 17px;
  font-weight: 600;
  color: var(--ba-ink);
}
.ba-faq-item__summary::-webkit-details-marker { display: none; }
.ba-faq-item__icon { flex: none; color: var(--ba-ink); display: inline-flex; }
.ba-faq-item__minus { display: none; }
.ba-faq-item[open] .ba-faq-item__plus { display: none; }
.ba-faq-item[open] .ba-faq-item__minus { display: inline-flex; }
.ba-faq-item__answer {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ba-body);
  max-width: 90ch;
}

/* ---------- CTA band ---------- */
.ba-cta-band {
  background: var(--ba-navy);
  color: #fff;
  text-align: center;
  padding: 84px 0;
}
.ba-cta-band__title {
  font-family: var(--ba-head);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 16ch;
}
.ba-cta-band__body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 58ch;
  margin: 0 auto 30px;
}

/* ---------- Footer ---------- */
.ba-footer {
  background: var(--ba-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ba-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: 86px;
}
.ba-footer__logo { height: 28px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.95; }
.ba-footer__tag { font-size: 14px; line-height: 1.6; max-width: 34ch; margin: 0 0 22px; }
.ba-socials { display: flex; gap: 12px; }
.ba-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.15s ease, color 0.15s ease;
}
.ba-social-btn:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.ba-footer__col-title {
  font-family: var(--ba-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 18px;
}
.ba-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ba-footer__list a, .ba-footer__list span { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 14px; line-height: 1.5; }
.ba-footer__list a:hover { color: #fff; }
.ba-footer__list strong { color: rgba(255,255,255,0.92); font-weight: 600; }

.ba-footer__addr { font-size: 14px; line-height: 24px; color: rgba(255, 255, 255, 0.7); max-width: 260px; margin: 0 0 20px; }
.ba-footer__contacts { display: flex; flex-direction: column; }
.ba-footer__contacts p { font-size: 14px; line-height: 20px; color: rgba(255, 255, 255, 0.7); margin: 0; }
.ba-footer__contacts strong { font-weight: 500; color: rgba(255, 255, 255, 0.92); }

.ba-footer__bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.ba-footer__bottom .ba-footer__links { display: flex; gap: 24px; }
.ba-footer__bottom a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.ba-footer__bottom a:hover { color: #fff; }

/* ---------- Páginas legais ---------- */
.ba-legal-hero { padding: 96px 0 40px; }
.ba-legal__title {
  font-family: var(--ba-head);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--ba-ink);
}
.ba-legal__intro {
  font-size: 17px;
  line-height: 28.5px;
  color: var(--ba-body);
  max-width: 760px;
  margin: 0;
}
.ba-legal__body { max-width: 760px; padding-bottom: 40px; }
.ba-legal__section { margin-bottom: 40px; }
.ba-legal__heading {
  font-family: var(--ba-head);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--ba-ink);
}
.ba-legal__text { font-size: 16px; line-height: 1.7; color: var(--ba-body); margin: 0 0 12px; }
.ba-legal__text:last-child { margin-bottom: 0; }
.ba-legal__updated { font-size: 14px; color: #9aa0a8; margin: 8px 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .ba-container { padding: 0 24px; }
  .ba-nav__inner { padding: 14px 24px; }
  .ba-nav__links { display: none; }
  .ba-nav__cta { display: none; }
  .ba-nav__burger { display: inline-flex; }
  .ba-page-hero { padding: 90px 0 70px; }
  .ba-page-hero__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ba-page-hero__title { width: auto; font-size: 34px; text-align: left; }
  .ba-page-hero__right { max-width: none; }
  .ba-service-grid { grid-template-columns: 1fr; }
  .ba-channel-row { grid-template-columns: 1fr 1fr; }
  .ba-channel { padding: 22px 0; }
  .ba-channel__head, .ba-channel__desc { padding: 0 22px; }
  .ba-channel__link { padding: 18px 22px 0; }
  .ba-channel__num { display: none; }
  .ba-channel:nth-child(odd) { border-left: none; }
  .ba-channel:nth-child(odd) .ba-channel__head,
  .ba-channel:nth-child(odd) .ba-channel__desc,
  .ba-channel:nth-child(odd) .ba-channel__link { padding-left: 0; }
  .ba-channel:nth-child(even) .ba-channel__head,
  .ba-channel:nth-child(even) .ba-channel__desc,
  .ba-channel:nth-child(even) .ba-channel__link { padding-right: 0; }
  .ba-visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .ba-map__frame { height: 300px; }
  .ba-portfolio-grid { grid-template-columns: 1fr 1fr; }
  .ba-case-grid { grid-template-columns: 1fr; gap: 28px; }
  .ba-case__media { max-width: 360px; }
  .ba-about-hero-media { margin-top: 40px; margin-bottom: -40px; }
  .ba-section--about-top { padding-top: 110px; }
  .ba-stats-row { flex-direction: column; gap: 28px; margin-bottom: 64px; }
  .ba-hero__inner { flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 24px; padding-bottom: 48px; }
  .ba-hero__title { font-size: 38px; width: auto; text-align: left; }
  .ba-hero__right { max-width: none; }
  .ba-h2 { font-size: 28px; line-height: 1.2; letter-spacing: -0.01em; }
  .ba-split-head { grid-template-columns: 1fr; }
  .ba-cards { flex-direction: column; height: auto; }
  .ba-card-col { flex: none; }
  .ba-card-col:hover { flex-grow: 0; }
  .ba-card { height: 300px; }
  .ba-benefits-grid, .ba-exp-grid { grid-template-columns: 1fr; gap: 32px; }
  .ba-benefits__right { grid-template-columns: 1fr; height: auto; }
  .ba-benefits__media { height: 260px; }
  .ba-benefit-item { flex: none; padding: 18px 24px; }
  .ba-mosaic__track { height: 440px; }
  .ba-mosaic__col--tall { width: 232px; }
  .ba-mosaic__col--wide { width: 440px; }
  .ba-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ba-section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .ba-hero__title { font-size: 32px; }
}
