:root {
  --ball-bg: #121316;
  --ball-surface: #1d1f25;
  --ball-light: #f2f2f2;
  --ball-orange: #f68b1f;
  --ball-text: #ffffff;
  --ball-ink: #0f1115;
}

body { background: var(--ball-bg); color: var(--ball-text); font-family: Lato, sans-serif; }
.ball-container { width: min(1300px, 92%); margin: 0 auto; }
.ball-section { padding: 72px 0; }
.ball-section--light { background: #efefef; color: var(--ball-ink); }
.ball-title { font-family: Lato, sans-serif; font-size: clamp(1.75rem, 3vw, 3rem); margin: 0 0 16px; }
.ball-description { opacity: 0.85; margin: 0 0 12px; }
.ball-eyebrow { text-transform: uppercase; color: var(--ball-orange); font-weight: 700; letter-spacing: 0.08em; }

/* Header: #000000CC, padding vertical 12px */
.ball-header {
  background: #000000cc;
  position: sticky;
  top: 0;
  /* Acima do overlay do menu mobile (z-index 29). */
  z-index: 31;
  padding-top: 12px;
  padding-bottom: 12px;
}
.ball-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 0;
}
.ball-header .custom-logo-link,
.ball-header .custom-logo-link img,
.ball-header img.custom-logo {
  max-height: 80px;
  max-width: 92px;
  width: auto;
  height: auto;
  display: block;
}
.ball-nav__list {
  display: flex;
  /* gap: 24px; */
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  width: 100%;
  justify-content: space-around;
}
@media (min-width: 1024px) {
  .mb-nav-overlay {
    display: none !important;
  }

  #mb-primary-navigation.mb-primary-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
  }
}
.ball-nav__list a {
  color: #fff;
  text-decoration: none;
}
.ball-nav__list a:hover,
.ball-nav__list a:focus-visible {
  color: var(--mb-primary);
  opacity: 1;
}
.ball-burger {
  background: transparent;
  color: #fff;
  border: 0;
  display: none;
  position: relative;
  z-index: 32;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
}
.ball-header__contact .mb-social-icon,
.ball-header__contact-wrap .mb-social-icon {
  background: var(--ball-orange);
  color: #111;
  border-radius: 8px;
}
.ball-header__contact .mb-social-icon[href*='wa.me'],
.ball-header__contact-wrap .mb-social-icon[href*='wa.me'] {
  background: #5dd26e;
  color: #fff;
}
.ball-header__contact .mb-social-icon[href*='wa.me']:hover,
.ball-header__contact .mb-social-icon[href*='wa.me']:focus-visible,
.ball-header__contact-wrap .mb-social-icon[href*='wa.me']:hover,
.ball-header__contact-wrap .mb-social-icon[href*='wa.me']:focus-visible {
  background: #4bc35f;
  color: #fff;
}

.ball-hero { min-height: 520px; display: flex; align-items: center; background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.4)); }
.ball-hero__content { max-width: 700px; }
.ball-btn { background: var(--ball-orange); color: #fff; text-decoration: none; border-radius: 12px; padding: 12px 24px; display: inline-block; border: 0; cursor: pointer; }
.ball-btn--full { width: 100%; text-align: center; }

/* Hero slider */
.ball-hero-slider { position: relative; isolation: isolate; min-height: 420px; }
.ball-hero-slider__track { position: relative; min-height: inherit; }
.ball-hero-slider__slide-frame {
  position: relative;
  isolation: isolate;
  min-height: inherit;
}
.ball-hero-slider--height-minimum {
  min-height: 275px;
  max-height: 275px;
  overflow: hidden;
}
.ball-hero-slider--height-minimum .ball-hero-slider__track,
.ball-hero-slider--height-minimum .ball-hero-slider__slide-frame {
  min-height: 275px;
  max-height: 275px;
}
.ball-hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s;
  z-index: 1;
}
.ball-hero-slider__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.ball-hero-slider__arrows {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}
.ball-hero-slider__arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.ball-hero-slider__arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--ball-orange);
  color: var(--ball-orange);
}
/* Clientes: alinhamento da faixa; setas = estilo hero (visíveis só com .is-visible) */
[data-mb-clients] .mb-clients-view {
  display: flex;
  align-items: center;
  min-height: 0;
}
.mb-clients-arrow.ball-hero-slider__arrow {
  display: none;
  align-self: center;
}
.mb-clients-arrow.ball-hero-slider__arrow.is-visible {
  display: inline-flex;
}
.mb-clients-arrow.ball-hero-slider__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
/* Marcas: cartão 88px (Figma), flex centralizado, logos a cores */
[data-mb-clients] .mb-client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  min-height: 88px;
  max-height: 88px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: var(--mb-surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
[data-mb-clients] .mb-client-item__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}
.ball-hero-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 11;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.ball-hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.35);
  transition: transform 0.2s, background 0.2s;
}
.ball-hero-slider__dot[aria-current="true"] {
  background: var(--ball-orange);
  transform: scale(1.15);
}
.ball-hero-slider__dot--secondary[aria-current="false"] {
  background: rgba(255,255,255,0.2);
}

.ball-rich-title--hero {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
.ball-rich-desc--hero {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
@media (max-width: 1023px) {
  .ball-rich-title--hero {
    font-size: clamp(34px, 7vw, 48px);
  }
}

/* CTA global (o botão da faixa «Imagem + CTA» usa raio 10px — ver .ball-cta-banner__btn abaixo) */
.mb-btn-primary,
.mb-btn-secondary,
.mb-btn-tertiary,
.ball-btn {
  border-radius: 50px !important;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.ball-slider-grid,
.ball-segment-grid,
.ball-brand-grid,
.ball-catalog__grid { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ball-product-card { background: #fff; color: #121316; border-radius: 14px; overflow: hidden; padding-bottom: 12px; }
.ball-product-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.ball-product-card h3 { margin: 14px 14px 8px; font-size: 20px; }
.ball-product-card p { margin: 0 14px 6px; }
.ball-price { color: var(--ball-orange); font-size: 32px; font-weight: 700; }

.ball-split { display: grid; gap: 32px; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.ball-split--reverse > :first-child { order: 2; }
.ball-image-placeholder { min-height: 320px; border-radius: 22px; background: linear-gradient(135deg, #333, #191919); }
.ball-mini-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ball-brand-item,
.ball-segment-card { background: rgba(255,255,255,0.08); border-radius: 16px; padding: 22px; }
.ball-section--light .ball-brand-item,
.ball-section--light .ball-segment-card { background: #fff; color: #121316; }

.ball-contact-band { background: #101114; }
.ball-contact-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }

/* Footer Figma */
.ball-footer {
  background: #1e1e1e;
  color: #fff;
  padding-top: 90px;
  padding-bottom: 0;
}
.ball-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
  padding-bottom: 0;
  align-items: start;
}
.ball-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: fit-content;
}
/* Logo ao alinhamento do container; ícones centrados na largura desta coluna */
.ball-footer__brand > .flex {
  box-sizing: border-box;
  width: 100%;
  justify-content: center;
  padding-inline: 0;
}
/* Títulos das colunas: h5, branco, alinhados à esquerda */
.ball-footer .ball-footer__col-title {
  margin: 0 0 14px;
  padding: 0;
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  color: #fff;
}
.ball-footer__address,
.ball-footer__hours,
.ball-footer__col--nav {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.ball-footer__address,
.ball-footer__hours {
  text-align: left;
  opacity: 0.95;
}
.ball-footer__grid ul { margin: 0; padding: 0; list-style: none; }
.ball-footer__col--nav ul {
  columns: 2;
  column-gap: 1.5rem;
}
.ball-footer__col--nav li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}
.ball-footer__grid a {
  color: #fff;
  text-decoration: none;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
.ball-footer__grid a:hover { opacity: 0.85; }
/* Ícones sociais: brancos no fundo escuro (não o quadrado laranja do .mb-social-icon do header) */
.ball-footer .mb-social-icon {
  background: transparent;
  color: #fff;
}
.ball-footer .mb-social-icon:hover,
.ball-footer .mb-social-icon:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.ball-footer .mb-social-icon:focus-visible {
  outline-color: #fff;
}
.ball-footer__logo-link {
  display: inline-block;
  margin-bottom: 15px;
}
.ball-footer__logo-img,
.ball-footer__logo-link .custom-logo-link img,
.ball-footer__logo-link img.custom-logo {
  max-height: 170px;
  max-width: 196px;
  width: auto;
  height: auto;
  display: block;
}
.ball-footer__rule {
  margin-top: 50px;
  margin-bottom: 50px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.ball-footer__bottom { padding-bottom: 60px; }
.ball-footer__bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 20px;
}
.ball-footer__bottom-left { justify-self: start; min-height: 1em; }
.ball-footer__copyright { margin: 0; text-align: center; justify-self: center; font-family: Lato, sans-serif; font-size: 14px; opacity: 0.9; max-width: 100%; }
.ball-footer__bottom-right { justify-self: end; }
.ball-footer__privacy {
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
  font-family: Lato, sans-serif;
  font-size: 16px;
}
.ball-footer__dev { display: inline-block; line-height: 0; opacity: 0.95; text-decoration: none; }
.ball-footer__dev img { height: 28px; width: auto; max-width: 160px; display: block; }
.ball-footer__dev:hover { opacity: 1; }

.ball-catalog { display: grid; gap: 24px; grid-template-columns: 280px 1fr; }
.ball-catalog__sidebar { background: var(--ball-surface); padding: 18px; border-radius: 16px; }

/* ——— Arquivo de produtos /produtos/ (Figma) ——— */
.ball-prod-archive {
  background: #f2f2f2;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .ball-prod-archive {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }
}
.ball-prod-archive__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 1023px) {
  .ball-prod-archive__layout {
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .ball-prod-archive__layout {
    flex-direction: row;
    gap: 2.75rem;
    align-items: flex-start;
  }
}
.ball-prod-archive__sidebar {
  /* Coluna de filtros sempre antes da grelha (DOM: main → aside; também em mobile). */
  order: -1;
  width: 100%;
  max-width: none;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 1.5rem 1.25rem 1.75rem;
  background: #1e1e1ee5;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 1023px) {
  .ball-prod-archive__sidebar {
    padding: 0.875rem 0.875rem 0.95rem;
    border-radius: 12px;
  }
}
@media (min-width: 1024px) {
  .ball-prod-archive__sidebar {
    position: sticky;
    top: 6.5rem;
    width: 300px;
    max-width: 300px;
  }

  .ball-prod-archive__filter-summary {
    display: block;
    padding: 0;
    min-height: 0;
    cursor: default;
  }

  .ball-prod-archive__filter-summary-glyph {
    display: none;
  }

  .ball-prod-archive__filter-summary .ball-prod-archive__filter-title {
    margin: 0 0 1rem;
  }

  .ball-prod-archive__filter-panel {
    padding: 0;
  }
}
.ball-prod-archive__filter-group--spaced {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 1023px) {
  .ball-prod-archive__filter-group--spaced {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  /* Separador apenas na linha do summary (touch target) — mais compacto */
  .ball-prod-archive__filter-group--spaced > .ball-prod-archive__filter-summary {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 0.7rem;
  }
}

/* Acordeão de filtros: mobile fecha grupos por defeito (script abre só --has-active; desktop mantém todos abertos) */
.ball-prod-archive__filter-disclosure {
  border-radius: 0;
}

.ball-prod-archive__filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  list-style: none;
  cursor: pointer;
  margin: 0;
  padding: 0.5rem 0;
  box-sizing: border-box;
  min-height: 48px;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.ball-prod-archive__filter-summary::-webkit-details-marker {
  display: none;
}

.ball-prod-archive__filter-summary .ball-prod-archive__filter-title {
  margin: 0;
  padding: 0;
}

.ball-prod-archive__filter-summary-glyph {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.25rem;
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  transform: rotate(-45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.ball-prod-archive__filter-disclosure[open] .ball-prod-archive__filter-summary-glyph {
  transform: rotate(45deg) translateY(1px);
}

.ball-prod-archive__filter-panel {
  padding: 0 0 0.15rem;
}

.ball-prod-archive__filter-title {
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: left;
  color: #fff;
}

@media (max-width: 1023px) {
  .ball-prod-archive__filter-title {
    font-size: 17px;
    line-height: 1.15;
  }
}
.ball-prod-archive__filter-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ball-prod-archive__filter-list li {
  margin: 0 0 0.45rem;
}
@media (max-width: 1023px) {
  .ball-prod-archive__filter-list li {
    margin: 0 0 0.35rem;
  }
}
.ball-prod-archive__filter-list li:last-child {
  margin-bottom: 0;
}
.ball-prod-archive__filter-link {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
  transition: color 0.15s ease;
}
.ball-prod-archive__filter-link:hover,
.ball-prod-archive__filter-link:focus-visible {
  color: var(--mb-primary);
  outline: none;
}
.ball-prod-archive__filter-link.is-active {
  font-weight: 600;
  color: var(--mb-primary);
}
.ball-prod-archive__filter-chev {
  flex-shrink: 0;
  opacity: 0.9;
  margin-top: 1px;
}
.ball-prod-archive__main {
  min-width: 0;
  flex: 1 1 0;
}
.ball-prod-archive__toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .ball-prod-archive__toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.ball-prod-archive__count {
  margin: 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #121316;
}
.ball-prod-archive__sort {
  margin: 0;
  flex-shrink: 0;
}
.ball-prod-archive__sort-select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 14rem;
  max-width: 100%;
  padding: 0.6rem 2.25rem 0.6rem 1rem;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--mb-ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6L11 1.5' stroke='%23121316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9999px;
  box-shadow: none;
  cursor: pointer;
}
.ball-prod-archive__chips {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.ball-prod-archive__chips-label {
  margin: 0 0 0.5rem;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(18, 19, 22, 0.6);
}
.ball-prod-archive__chips-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.ball-prod-archive__chip {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--mb-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.ball-prod-archive__chip:hover,
.ball-prod-archive__chip:focus-visible {
  border-color: var(--mb-primary);
  outline: none;
}
.ball-prod-archive__chip-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ball-prod-archive__chip-x {
  flex-shrink: 0;
  color: var(--mb-primary);
}
.ball-prod-archive__chip--clear {
  border-style: dashed;
  background: transparent;
  font-weight: 400;
  color: rgba(18, 19, 22, 0.75);
}
.ball-prod-archive__grid {
  display: grid;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  grid-template-columns: 1fr;
  gap: 1.5rem 1.25rem;
}
@media (min-width: 640px) {
  .ball-prod-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .ball-prod-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.5rem;
  }
}
.ball-prod-archive__grid > li {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-items: stretch;
}
.ball-prod-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ball-prod-card:hover,
.ball-prod-card:focus-visible {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  outline: none;
}
.ball-prod-card__media {
  position: relative;
  width: 100%;
  height: 190px;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.ball-prod-card__img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.ball-prod-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: Lato, sans-serif;
  font-size: 13px;
  color: rgba(18, 19, 22, 0.4);
  background: #f6f6f6;
}
.ball-prod-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 1rem 1.1rem 1.2rem;
  text-align: left;
}
.ball-prod-card__title {
  margin: 0 0 0.65rem;
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
  color: #121316;
}
.ball-prod-card__price {
  margin: 0 0 0.4rem;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--mb-primary);
}
.ball-prod-card__installments {
  margin: 0;
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #121316;
}
.ball-prod-archive__empty {
  margin: 1.5rem 0 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(18, 19, 22, 0.8);
}
.ball-prod-archive__pagination {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}
.ball-prod-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}
.ball-prod-archive__pagination .nav-links a,
.ball-prod-archive__pagination .nav-links span.page-numbers {
  display: inline-block;
  min-width: 2.25rem;
  padding: 0.4rem 0.65rem;
  font-family: Lato, sans-serif;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  color: var(--mb-ink);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  box-sizing: border-box;
}
.ball-prod-archive__pagination .nav-links a:hover,
.ball-prod-archive__pagination .nav-links a:focus-visible {
  border-color: var(--mb-primary);
  color: var(--mb-primary);
  outline: none;
}
.ball-prod-archive__pagination .nav-links span.current {
  font-weight: 600;
  border-color: var(--mb-primary);
  color: var(--mb-primary);
}

.ball-product-single { display: grid; gap: 28px; grid-template-columns: 1fr 1fr; color: var(--ball-ink); }
.ball-product-single__gallery img { border-radius: 18px; width: 100%; }

/* ——— Single produto (bloco Produto — Figma) ——— */
.mb-product-section.ball-product-page {
  background: #f2f2f2;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mb-product-section.ball-product-page {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }
}
.ball-product-page__toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .ball-product-page__toolbar {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
}
.ball-product-breadcrumb__list {
  margin: 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #6b6b6b;
}
.ball-product-breadcrumb__link {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.ball-product-breadcrumb__link:hover,
.ball-product-breadcrumb__link:focus-visible {
  color: var(--mb-ink);
  opacity: 1;
  outline: none;
}
.ball-product-breadcrumb__current {
  color: #121316;
  font-weight: 400;
}
.ball-product-back {
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #6b6b6b;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  width: max-content;
  flex-shrink: 0;
}
.ball-product-back:hover,
.ball-product-back:focus-visible {
  color: var(--mb-primary);
  outline: none;
}
.ball-product-shell {
  background: #ebebeb;
  border-radius: 32px;
  padding: 1.25rem 1.1rem 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .ball-product-shell {
    padding: 2rem 2.25rem 2.5rem;
  }
}
.ball-product-shell__inner--with-gallery {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ball-product-shell__inner--with-gallery {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}
.ball-product-shell__inner--no-gallery {
  max-width: 40rem;
}
.ball-product-gallery--thumbs-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .ball-product-gallery--thumbs-left {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .ball-product-gallery--thumbs-left .ball-product-gallery__thumbs-col {
    order: -1;
  }
}
.ball-product-gallery__main-col {
  min-width: 0;
  flex: 1 1 0;
}
.ball-product-gallery__thumbs-col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .ball-product-gallery__thumbs-col {
    flex-direction: column;
    width: 5.25rem;
    max-height: min(520px, 64vh);
  }
}
@media (max-width: 1023px) {
  .ball-product-gallery__thumbs-col .ball-product-gallery__thumbs-nav {
    display: none !important;
  }
}
.ball-product-gallery__thumbs-nav {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  color: #121316;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  opacity: 0.45;
  pointer-events: none;
  visibility: hidden;
}
.ball-product-gallery__thumbs-nav.is-mb-thumb-nav-on {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
@media (min-width: 1024px) {
  .ball-product-gallery__thumbs-nav--prev,
  .ball-product-gallery__thumbs-nav--next {
    display: flex;
  }
}
.ball-product-gallery__thumbs-nav:hover:not(:disabled) {
  border-color: var(--mb-primary);
  color: var(--mb-primary);
}
.ball-product-gallery__thumbs-scroll {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  gap: 0.5rem;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
  padding: 0.15rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
@media (min-width: 1024px) {
  .ball-product-gallery__thumbs-scroll {
    flex-direction: column;
    max-height: min(456px, 58vh);
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.ball-product-gallery__thumb {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  background: #fff;
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
@media (min-width: 1024px) {
  .ball-product-gallery__thumb {
    width: 100%;
    max-width: 4.5rem;
  }
}
.mb-product-gallery__thumb.ball-product-gallery__thumb.is-active,
.ball-product-gallery__thumb.is-active {
  border-color: var(--mb-primary);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.ball-product-hero__sku {
  margin: 0 0 0.5rem;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #121316;
}
.ball-product-hero__title {
  margin: 0 0 1.25rem;
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  color: #121316;
}
.ball-product-hero__desc {
  margin-top: 0;
  margin-bottom: 0;
}
.ball-product-hero .ball-ti-body--first.ball-product-hero__desc {
  margin-top: 1.5rem;
}
.ball-product-hero__desc .ball-ti-body__rich,
.ball-product-hero__desc .ball-ti-body__rich p,
.ball-product-hero__desc .ball-ti-body__rich li {
  font-size: 16px;
  line-height: 1.5;
  color: #121316;
  font-weight: 400;
}
.ball-product-hero__price-block {
  margin-top: 1.75rem;
  margin-bottom: 0.25rem;
}
.ball-product-hero__price-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
}
.ball-product-hero__compare {
  margin: 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #121316;
  text-decoration: line-through;
}
.ball-product-hero__price-main {
  margin: 0;
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--mb-primary);
}
.ball-product-hero__installments {
  margin: 0.4rem 0 0;
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #121316;
}
/* Botão WhatsApp: mesmo critério que .ball-cta-banner__btn (raio 10px), fundo #31A342 */
.ball-product-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  margin-top: 1.5rem;
  padding: 16px 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: #31a342;
  border-radius: 10px !important;
  border: 0;
  box-shadow: none;
  transition: background 0.15s ease, filter 0.15s ease, transform 0.1s ease;
}
@media (min-width: 768px) {
  .ball-product-whatsapp-cta {
    padding: 18px 34px;
    width: auto;
    min-width: min(100%, 22rem);
  }
}
.ball-product-whatsapp-cta:hover,
.ball-product-whatsapp-cta:focus-visible {
  background: #2a8f39;
  color: #fff;
  outline: 2px solid #31a342;
  outline-offset: 2px;
  filter: brightness(1.02);
}
.ball-product-whatsapp-cta__icon {
  display: block;
  flex-shrink: 0;
  color: #fff;
}
.ball-product-whatsapp-cta__text {
  color: #fff;
}
.ball-product-payments {
  margin-top: 1.75rem;
  padding-top: 0.25rem;
}
.ball-product-payments__label {
  margin: 0 0 0.6rem;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #121316;
}
.ball-product-payments__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ball-product-payments__item {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 50px;
}
.ball-product-payments__img {
  display: block;
  max-width: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 0.1rem 0.2rem;
  box-sizing: border-box;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.ball-product-hero__warranty {
  margin-top: 1.5rem;
}
.ball-product-hero__warranty .ball-ti-body__rich p {
  margin: 0 0 0.75em;
  font-size: 16px;
  line-height: 1.5;
  color: #121316;
  font-weight: 400;
}
.ball-product-hero__warranty .ball-ti-body__rich p:last-child {
  margin-bottom: 0;
}
.mb-product-section.ball-product-page .is-mb-product-zoomed {
  transform: scale(1.2);
  transition: transform 0.12s ease-out;
}

.ball-form-layout { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; align-items: start; }
.ball-form { display: grid; gap: 12px; background: var(--ball-surface); padding: 22px; border-radius: 16px; }
.ball-form input, .ball-form textarea { width: 100%; border: 0; border-radius: 10px; padding: 12px; }

/* Texto + Imagem (Quem Somos) — Figma, espaçamento vertical reforçado */
.ball-ti-subtitle {
  margin: 0 0 1.25rem;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--mb-primary);
}
.ball-ti-title {
  margin: 0 0 2.5rem;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--mb-ink);
}
/* Primeiro bloco de texto: afastamento do título (título com margin-bottom) ou do subtítulo/ topo */
.ball-ti-body--first {
  margin-top: 2.5rem;
}
.ball-ti-title + .ball-ti-body--first {
  margin-top: 0;
}
.ball-ti-body--next {
  margin-top: 2.25rem;
}
.ball-ti-body__rich {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--mb-ink);
  text-align: left;
  max-width: none;
}
.ball-ti-body__rich p,
.ball-ti-body__rich li {
  text-align: left;
}
.ball-ti-body__rich p {
  margin: 0 0 1.35em;
}
.ball-ti-body__rich p:last-child {
  margin-bottom: 0;
}
.ball-ti-body--accent {
  border-left: 9px solid var(--mb-primary);
  padding-left: 23px;
  box-sizing: border-box;
}
.ball-ti-body--accent-right {
  border-left: none;
  border-right: 9px solid var(--mb-primary);
  padding-left: 0;
  padding-right: 23px;
}
.ball-ti-highlights {
  margin-top: 3rem;
  padding-top: 0;
  border-top: none !important;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 640px) {
  .ball-ti-highlights {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .ball-ti-highlight {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 32px;
    padding-right: 32px;
  }
  .ball-ti-highlight:first-child {
    padding-left: 0;
  }
  .ball-ti-highlight:last-child {
    padding-right: 0;
  }
  .ball-ti-highlight + .ball-ti-highlight {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 40px;
  }
}
.ball-ti-highlight__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.ball-ti-highlight__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ball-ti-highlight__icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.ball-ti-highlight__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--mb-ink);
}
.ball-ti-highlight__desc {
  margin-top: 1rem;
  padding-left: 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--mb-ink);
}
.ball-ti-highlight__desc p {
  margin: 0 0 0.85em;
}
.ball-ti-highlight__desc p:last-child {
  margin-bottom: 0;
}

/* Texto + Imagem: copy ~55% / figura ~45% (placement por order) */
@media (min-width: 1024px) {
  .ball-ti-grid.ball-ti-grid--split {
    grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
    /* Altura da linha = coluna de texto; a figura acompanha. */
    align-items: stretch;
  }
  .ball-ti-grid.ball-ti-grid--split.ball-ti-grid--img-left {
    grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
  }
  .ball-ti-section .ball-ti-grid--split .ball-ti-figure-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
  }
  .ball-ti-section .ball-ti-grid--split .ball-ti-figure {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    /* Caixa a preencher a célula; a imagem cobre com object-fit. */
  }
  .ball-ti-section .ball-ti-grid--split .ball-ti-figure .ball-ti-figure__img,
  .ball-ti-section .ball-ti-grid--split .ball-ti-figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Product showcase (Nossos produtos) — layout Figma (~40% laranja / ~60% branco, sem cinza) */
.ball-product-showcase {
  position: relative;
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
  background-color: transparent !important;
  background-image: linear-gradient(
    to bottom,
    var(--ball-orange) 0,
    var(--ball-orange) 40%,
    #ffffff 40%,
    #ffffff 100%
  );
  background-repeat: no-repeat;
  min-height: 430px;
  padding-top: 48px;
  padding-bottom: 36px;
  /* Não esconder scroll horizontal; min-width:0 evita corte em cadeias flex/grid. */
  overflow-x: visible;
  overflow-y: visible;
  min-width: 0;
}
/* Imagem + gradiente só na faixa laranja (~40% da altura da secção) */
.ball-product-showcase__band-decoration {
  height: 40%;
}
.ball-product-showcase__foreground {
  isolation: isolate;
  /* Slider scrolls dentro do viewport; hidden aqui cortava imgs e overlap dos cards. */
  overflow-x: visible;
  min-width: 0;
}
.ball-product-showcase__head {
  margin-bottom: 0;
  padding-bottom: 40px;
}
.ball-product-showcase__intro-heading-wrap .ball-product-showcase__heading {
  margin-top: 0;
}
.ball-product-showcase__intro--split {
  display: grid;
  gap: 16px 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .ball-product-showcase__intro--split {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    column-gap: 48px;
    align-items: start;
    padding-top: 4px;
  }
}
.ball-product-showcase__heading {
  margin: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.ball-product-showcase__lead {
  margin: 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.ball-product-showcase__lead p {
  margin: 0 0 0.65em;
}
.ball-product-showcase__lead p:last-child {
  margin-bottom: 0;
}

.ball-product-showcase__slider {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding-top: 0;
  padding-bottom: 8px;
  position: relative;
  z-index: 1;
  border: 0;
  box-shadow: none;
  margin-left: 0;
  margin-right: 0;
}
.ball-product-showcase__viewport {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
  padding-top: 12px;
  padding-bottom: 8px;
  /* Mobile: 15px + safe-area; ≥768px ver media query (20px). */
  padding-left: max(15px, env(safe-area-inset-left, 0px));
  scroll-padding-left: max(15px, env(safe-area-inset-left, 0px));
  /* +80px: bleed da foto (.slide-media right:-75px) não fica cortado ao rolar até o fim */
  padding-right: calc(max(0.75rem, env(safe-area-inset-right, 0px)) + 80px);
  outline: none;
  scrollbar-width: none;
  border: 0;
}
@media (min-width: 768px) {
  .ball-product-showcase__viewport {
    padding-left: 20px;
    scroll-padding-left: 20px;
    padding-right: 80px;
  }
}
.ball-product-showcase__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.ball-product-showcase__viewport::-webkit-scrollbar {
  display: none;
}
.ball-product-showcase__track {
  gap: 20px;
}
.ball-product-showcase__slide {
  width: min(300px, 78vw);
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .ball-product-showcase__track {
    gap: 20px;
  }
  .ball-product-showcase__slide {
    width: min(300px, 42vw);
  }
}
@media (min-width: 1024px) {
  .ball-product-showcase__track {
    gap: 20px;
  }
  .ball-product-showcase__slide {
    width: 300px;
  }
}

.ball-product-showcase__slide-inner {
  position: relative;
  width: 100%;
  min-height: 530px;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 20px;
  background: var(--mb-secondary, #434343);
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
  writing-mode: horizontal-tb;
  direction: ltr;
  isolation: isolate;
}
.ball-product-showcase__slide-hit:hover .ball-product-showcase__slide-inner,
.ball-product-showcase__slide-hit:focus-visible .ball-product-showcase__slide-inner {
  transform: translateY(-2px);
}
.ball-product-showcase__slide-hit--link:focus-visible {
  outline: 2px solid var(--ball-orange, #f68b1f);
  outline-offset: 3px;
  border-radius: 22px;
}
.ball-product-showcase__slide-text {
  position: absolute;
  top: 22px;
  left: 20px;
  bottom: 22px;
  z-index: 2;
  pointer-events: none;
}
.ball-product-showcase__slide-text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-height: 100%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
}
.ball-product-showcase__slide-title {
  display: block;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}
.ball-product-showcase__slide-code {
  display: block;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}
.ball-product-showcase__slide-media {
  position: absolute;
  right: -75px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  padding: 12px 14px 16px 12px;
  box-sizing: border-box;
  pointer-events: none;
  writing-mode: horizontal-tb;
  transform: none;
}
.ball-product-showcase__slide-img {
  display: block;
  max-width: 100%;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  transform: none;
}
.ball-product-showcase__dots {
  margin-top: 18px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ball-product-showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.ball-product-showcase__dot[aria-current="true"] {
  background: var(--ball-orange);
  transform: scale(1.15);
}
.ball-product-showcase__slide-hit,
.ball-product-showcase__slide-img {
  -webkit-user-drag: none;
}

/* Faixa CTA (imagem + CTA): contacto | frase | botão */
.ball-cta-banner__icon-circle {
  display: flex;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ball-orange);
  color: #fff;
}
.ball-cta-banner__icon-circle svg {
  display: block;
}
.ball-cta-banner__contact-intro {
  margin: 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: var(--mb-section-fg, #fff);
}
.ball-cta-banner__contact-phone {
  margin: 0;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: var(--mb-section-fg, #fff);
}
.ball-cta-banner__contact-phone a {
  color: inherit;
  text-decoration: none;
}
.ball-cta-banner__contact-phone a:hover {
  text-decoration: underline;
}
.ball-cta-banner__contact-intro + .ball-cta-banner__contact-phone {
  margin-top: 0.25rem;
}
/* Única linha vertical: à direita do bloco telefone; 3px (Figma) */
.ball-cta-banner__divider {
  width: 3px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 3.5rem;
  background: rgba(255, 255, 255, 0.35);
}
.ball-cta-banner__headline {
  margin: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--mb-section-fg, #fff);
}
.ball-cta-banner__headline strong,
.ball-cta-banner__headline b {
  color: var(--ball-orange);
  font-weight: 700;
}
.ball-cta-banner__sub {
  margin: 0.65rem 0 0;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.ball-cta-banner__sub p {
  margin: 0 0 0.5em;
}
.ball-cta-banner__sub p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .ball-cta-banner__row {
    align-items: center;
    text-align: center;
  }
  .ball-cta-banner__contact {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .ball-cta-banner__contact .min-w-0 {
    text-align: center;
  }
  .ball-cta-banner__middle {
    margin-left: auto;
    margin-right: auto;
  }
  .ball-cta-banner .ball-cta-banner__headline,
  .ball-cta-banner .ball-cta-banner__sub {
    text-align: center !important;
  }
  .ball-cta-banner__actions {
    justify-content: center !important;
    width: 100%;
  }
}
/* Override exclusivo desta faixa: raio do CTA = 10px (resto do site mantém 50px) */
.ball-cta-banner__btn.mb-btn-primary,
.ball-cta-banner__btn.mb-btn-secondary,
.ball-cta-banner__btn.mb-btn-tertiary {
  border-radius: 10px !important;
}
.ball-cta-banner__btn.mb-btn-primary {
  padding: 16px 26px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .ball-cta-banner__btn.mb-btn-primary {
    padding: 18px 34px;
    font-size: 16px;
  }
}

/* Grade de ícones (Figma): #EBEBEB, sombra 0 4px 4px /40, h4 32, corpo 24, círculo 162, ícone 90 */
.ball-ig-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 25px;
  row-gap: 25px;
  width: 100%;
}
@media (min-width: 640px) {
  .ball-ig-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .ball-ig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.ball-ig-card {
  display: flex;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 1rem;
  background: #ebebeb;
  box-shadow: 0 4px 4px 0 #00000040;
  padding: 1.5rem 1.5rem 1.75rem;
  gap: 45px;
}
.ball-ig-card__title {
  margin: 0;
  max-width: 100%;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #000;
}
.ball-ig-card__icon-wrap {
  display: flex;
  width: 162px;
  height: 162px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
}
.ball-ig-card__icon-wrap--empty {
  opacity: 0.3;
}
.ball-ig-card__icon-img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.ball-ig-card__desc {
  width: 100%;
  max-width: 100%;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #000;
}
.ball-ig-card__desc p {
  margin: 0 0 0.4em;
  line-height: 1;
}
.ball-ig-card__desc p:last-child {
  margin-bottom: 0;
}
.ball-ig-card__title a,
.ball-ig-card__desc a {
  color: inherit;
}

/* Solutions / segmentos — intro + grelha manual; cartões claros, hover escuro + foto opcional */
.ball-sol-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .ball-sol-intro {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    margin-bottom: 3rem;
  }
}
.ball-sol-intro__title {
  margin: 0;
  flex: 1 1 38%;
  max-width: 100%;
  display: flex;
  align-items: center;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--mb-primary);
}
.ball-sol-intro__divider {
  display: none;
  width: 3px;
  flex-shrink: 0;
  margin: 0 1.25rem;
  align-self: stretch;
  min-height: 3rem;
  background: var(--mb-primary);
}
@media (min-width: 768px) {
  .ball-sol-intro__divider {
    display: block;
  }
}
.ball-sol-intro__lead {
  margin: 0;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--mb-ink);
}
.ball-sol-intro__lead p {
  margin: 0 0 0.65em;
}
.ball-sol-intro__lead p:last-child {
  margin-bottom: 0;
}

.ball-sol-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 30px;
  row-gap: 2rem;
}
@media (min-width: 640px) {
  .ball-sol-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .ball-sol-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ball-sol-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: box-shadow 0.25s ease;
}
a.ball-sol-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.ball-sol-card:focus-visible {
  outline: 2px solid var(--mb-primary);
  outline-offset: 3px;
}
.ball-sol-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.94) 100%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ball-sol-card--hover-photo::before {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.93) 100%),
    var(--ball-sol-card-hover-bg);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.ball-sol-card:hover::before,
.ball-sol-card:focus-within::before,
.ball-sol-card.is-sol-in-view::before {
  opacity: 1;
}
.ball-sol-card:hover,
.ball-sol-card:focus-within,
.ball-sol-card.is-sol-in-view {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.ball-sol-card__inner {
  position: relative;
  z-index: 1;
  padding: 46px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-sizing: border-box;
  height: 100%;
}
.ball-sol-card__icon {
  line-height: 0;
  flex-shrink: 0;
}
.ball-sol-card__icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}
.ball-sol-card__title {
  margin: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--mb-ink);
  transition: color 0.25s ease;
}
.ball-sol-card__desc {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--mb-ink);
  transition: color 0.25s ease;
}
.ball-sol-card:hover .ball-sol-card__title,
.ball-sol-card:focus-within .ball-sol-card__title,
.ball-sol-card:hover .ball-sol-card__desc,
.ball-sol-card:focus-within .ball-sol-card__desc,
.ball-sol-card.is-sol-in-view .ball-sol-card__title,
.ball-sol-card.is-sol-in-view .ball-sol-card__desc {
  color: #ffffff;
}
.ball-sol-card__desc p {
  margin: 0 0 0.5em;
}
.ball-sol-card__desc p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  body.is-mb-mobile-nav-open {
    overflow: hidden;
  }

  .ball-header__contact-wrap {
    display: none !important;
  }

  .ball-burger {
    margin-left: auto;
    display: inline-flex;
  }

  .mb-nav-overlay:not(.hidden) {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 29;
    cursor: pointer;
    background: rgba(5, 6, 10, 0.52);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  /* Drawer à direita (header sticky fica por cima, z-index 31+) */
  #mb-primary-navigation.mb-primary-nav:not(.hidden) {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 30;
    box-sizing: border-box;
    width: min(320px, 90vw);
    max-width: min(320px, 100vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(env(safe-area-inset-top, 0px) + 5.25rem) 1.35rem max(1.25rem, env(safe-area-inset-bottom, 0px))
      max(1rem, env(safe-area-inset-left, 0px));
    background: #0f1116;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.42);
    animation: mb-ball-nav-drawer-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes mb-ball-nav-drawer-in {
    from {
      transform: translateX(103%);
      opacity: 0.96;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .ball-nav__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.2rem;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .ball-nav__list > li > a {
    display: block;
    padding: 0.6rem 0.35rem;
    border-radius: 6px;
  }
  .ball-slider-grid,
  .ball-segment-grid,
  .ball-brand-grid,
  .ball-catalog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ball-split,
  .ball-form-layout,
  .ball-catalog,
  .ball-product-single,
  .ball-footer__grid { grid-template-columns: 1fr; }
  .ball-footer__brand {
    width: 100%;
    max-width: none;
    align-items: center;
    text-align: center;
  }
  .ball-footer__col--nav ul { columns: 1; }
  .ball-footer .ball-footer__col-title,
  .ball-footer__address,
  .ball-footer__hours {
    text-align: center;
  }
  .ball-footer__col--nav {
    text-align: center;
  }
  .ball-footer__col--nav ul {
    text-align: center;
  }
  .ball-footer__bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ball-footer__bottom-left,
  .ball-footer__bottom-right,
  .ball-footer__copyright { justify-self: center; }
  .ball-contact-band__inner { flex-direction: column; align-items: flex-start; }
}
