header {
  background-color: rgba(250, 250, 250, 0.95);
}
header .logo-desktop,
header .logo-mobile-menu {
  width: 300px;
  margin: 1rem 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
}

/* FOOTER */
.footer {
  background-color: #242424;
  color: var(--light);
  padding: 7.5rem 0 0;
  overflow-x: hidden !important;
}
.footer__top {
  padding-bottom: 2rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__logo {
  display: inline-block;
}
.footer__logo .logo-desktop {
  max-width: 150px;
}
.logo-desktop {
  max-width: 150px;
}
.footer__description {
  font-size: 13px;
  line-height: 1.5;
  color: var(--light);
  margin: 0;
}

.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--light);
  font-size: 1rem;
  transition: 0.3s;
}
.footer__social-icon:hover {
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer__title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--light);
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__nav-list li a {
  display: block;
  font-size: 0.875rem;
  color: var(--light);
  text-decoration: none;
  transition: 0.3s;
}
.footer__nav-list li a:hover {
  color: var(--primary-color-light);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--light);
  text-decoration: none;
  transition: 0.3s;
}
.footer__contact-item i {
  font-size: 0.875rem;
  width: 18px;
  text-align: center;
}
.footer__contact-item:hover {
  color: var(--primary-color-light);
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #fafafa;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.footer__cta:hover {
  background-color: var(--light);
  color: #000;
}

.footer__location {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__location-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--light);
}
.footer__location-address i {
  margin-top: 0.3rem;
}
.footer__map {
  width: 100%;
  aspect-ratio: 280/219;
  border: 0;
  border-radius: 8px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__copy {
  font-size: 13px;
  color: var(--light);
}
.footer__seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.footer__seal {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #c3c3c3;
  text-decoration: none;
  min-height: unset;
}
.footer__mpi-seal {
  height: 26px;
  width: 32px;
}
.footer__backtotop {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #c3c3c3;
  text-decoration: none;
}
.footer__backtotop i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fafafa;
  color: #1a1a1a;
  border-radius: 8px;
}

@media screen and (max-width: 992.05px) {
  .footer {
    padding-top: 4rem;
    text-align: center;
  }
  .footer__brand {
    align-items: center;
  }
  .footer__location-address,
  .footer__contact-item {
    justify-content: center;
  }
  .footer__bottom {
    justify-content: center;
  }
  .footer__social-icon {
    justify-content: center;
  }
}

.card.card--23 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: column nowrap;
  gap: 1rem;
  background-color: var(--dark);
  background-image:
    linear-gradient(-45deg, var(--dark), var(--grey)), var(--card-background);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply, normal;
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  height: 100%;
}
.card.card--23:focus-within,
.card.card--23:hover {
  box-shadow: 0 0 0 2px var(--secondary-color);
}
.card.card--23 .card__title {
  color: #fff;
  font-size: 1.25rem;
  text-shadow: 0 0 0.25rem var(--dark);
  margin: 0;
  min-height: calc(1.25rem * 2 * 1.3);
}
.card.card--23 .card__link {
  z-index: 1;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: var(--transition);
  color: var(--light);
  font-weight: 600;
  border: 2px solid currentColor;
  border-radius: 99px;
}
.card.card--23 .card__link > span {
  width: 0;
  max-width: fit-content;
  opacity: 0;
  transition: var(--transition);
}
.card.card--23 .card__link:focus > span,
.card.card--23 .card__link:hover > span {
  width: 100px;
  opacity: 1;
  margin-right: 0.5rem;
}
.card.card--23 .card__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  backface-visibility: visible;
}
.card.card--23 .card__link:focus,
.card.card--23 .card__link:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.shadow-19 {
  box-shadow:
    rgba(50, 50, 93, 0.25) 0 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
}

.title-subtitle {
  margin-bottom: 0;
}
.title-subtitle span {
  display: block;
  font-size: 0.9rem;
  color: #000;
  line-height: 1rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

/* ================= SERVIÇOS ================= */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  background-color: #fafafa;
  border: 1px solid #fafafa;
  border-radius: 8px;
  box-shadow:
    0 1px 4px rgba(27, 27, 27, 0.05),
    0 1px 4px rgba(27, 27, 27, 0.05);
}
.service-card__image {
  width: 100%;
  aspect-ratio: 342/324;
  overflow: hidden;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 32px 24px;
}
.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.service-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #6c6c6c;
}
.service-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #6c6c6c;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__divider {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background-color: #eee;
  opacity: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.3s;
}
.service-card__link:hover {
  color: #fafafa;
  background-color: #1d1d1d;
}

/* ================= CLIENTES ================= */
.clientes .clientes__item {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}
.clientes .clientes__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.75;
  border-radius: var(--bs-border-radius-sm);
  transition: opacity var(--transition);
}
.clientes .clientes__item:hover img {
  opacity: 1;
}

/* ================= DEPOIMENTOS ================= */
.testimonial .testimonial-author-image {
  width: 100%;
  max-width: 64px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 999px;
}
/* ================= Empresa ================= */

/* barra preta no topo, igual ao print */
.bp-topbar {
  height: 6px;
  background-color: var(--bp-black);
  width: 100%;
}

/* ================= BRANDS SECTION (Black Pack / Mountpack) ================= */
.brands-section {
  padding: 56px 0;
  background-color: var(--bp-bg);
}

.brand-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--bp-bg);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 rgba(27, 27, 27, 0.05);
}

.brand-card__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: linear-gradient(to bottom, #414141, #1b1919);
}

.brand-card--mountpack .brand-card__box {
  background:
    linear-gradient(
      -87deg,
      rgba(50, 106, 169, 0.65) 19%,
      rgba(37, 78, 133, 0.65) 44%,
      rgba(21, 44, 88, 0.65) 76%
    ),
    #242424;
}

.brand-card__logo {
  width: auto;
  max-width: 220px;
  height: 42px;
}

.brand-card__logo--mountpack {
  height: 38px;
}

.brand-card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fafafa;
}

.brand-card__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #c3c3c3;
}

.brand-card__text:last-of-type {
  margin-bottom: 0;
}

.brand-card__btn {
  margin-top: 8px;
}

.brand-card__solutions {
  padding: 32px;
}

.brand-card__solutions-title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #4a4848;
}

.brand-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-card__list li {
  display: flex;
  flex: 1 1 260px;
  align-items: center;
  gap: 16px;
}

.brand-card__list--compact li {
  flex-basis: 200px;
}

.brand-card__list img {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.brand-card__list span {
  font-size: 14px;
  line-height: 1.5;
  color: #6c6c6c;
}

@media (max-width: 767.98px) {
  .brands-section {
    padding: 40px 0;
  }
  .brand-card__box,
  .brand-card__solutions {
    padding: 24px;
  }
  .brand-card__title {
    font-size: 24px;
  }
}

/* seção hero com fundo cinza clarinho */
.bp-hero {
  background-color: var(--bp-bg);
  padding-top: 90px;
  padding-bottom: 90px;
}

/* eyebrow: linha vertical + texto pequeno */
.bp-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.bp-eyebrow-line {
  width: 3px;
  height: 16px;
  background-color: var(--bp-black);
  display: inline-block;
}

.bp-eyebrow-text {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--bp-eyebrow-gray);
  letter-spacing: 0.2px;
}

.bp-eyebrow-text .bp-caps {
  text-transform: uppercase;
}

/* título principal */
.bp-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  color: var(--bp-text-dark);
  margin-bottom: 22px;
  max-width: 780px;
}

/* parágrafo descritivo */
.bp-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bp-text-gray);
  max-width: 950px;
  margin-bottom: 0;
}
.bp-hero-logo {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* seção "Nossos diferenciais" com fundo em gradiente azul escuro */
.diferenciais-section {
  width: 100%;
  padding: 90px 0;
  background-color: #242424;
  background-image:
    linear-gradient(
      -83.26deg,
      rgba(50, 106, 169, 0.65) 19.447%,
      rgba(37, 78, 133, 0.65) 44.445%,
      rgba(21, 44, 88, 0.65) 76.001%
    ),
    linear-gradient(90deg, #242424 0%, #242424 100%);
  color: #fafafa;
}

.diferenciais-section__header {
  margin-bottom: 48px;
  text-align: center;
}

.diferenciais-section__title {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fafafa;
}

.diferenciais-section__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.diferenciais-card {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 260px;
  padding: 16px 2px;
  text-align: center;
}

.diferenciais-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.diferenciais-card__title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #fafafa;
}

.diferenciais-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #c3c3c3;
}

@media (max-width: 767.98px) {
  .diferenciais-section {
    padding: 56px 0;
  }
  .diferenciais-section__title {
    font-size: 1.8rem;
  }
  .diferenciais-section__list {
    gap: 32px;
  }
  .diferenciais-card {
    max-width: 100%;
  }
}

/* seção "Soluções completas em embalagens e processos" com imagem de fundo */
.solutions-hero-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
  background-color: #242424;
  background-image:
    linear-gradient(
      -82.7deg,
      rgba(50, 106, 169, 0.4) 19.447%,
      rgb(37, 78, 133) 44.445%,
      rgb(21, 44, 88) 76.001%
    ),
    var(--solutions-hero-bg);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  color: #fafafa;
}

.solutions-hero-section__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solutions-hero-section__title {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fafafa;
}

.solutions-hero-section__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #c3c3c3;
}

/* variação espelhada: imagem à esquerda, texto à direita */
.solutions-hero-section--reverse {
  background-image:
    linear-gradient(
      -84.77deg,
      rgb(21, 44, 88) 19.391%,
      rgb(37, 78, 133) 58.934%,
      rgba(50, 106, 169, 0.4) 90.26%
    ),
    var(--solutions-hero-bg);
  background-position: left center;
}

.solutions-hero-section--reverse .solutions-hero-section__content {
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .solutions-hero-section {
    padding: 56px 0;
    background-position: center;
  }
  .solutions-hero-section__title {
    font-size: 1.8rem;
  }
  .solutions-hero-section--reverse .solutions-hero-section__content {
    margin-left: 0;
  }
}

.solutions-section {
  width: 100%;
  padding: 80px 0;
  background-color: #4c6ca7;
  color: #fff;
}

.solutions-section__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.solutions-section h2 {
  margin: 0 0 24px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: #fff;
}

.solutions-section p {
  margin: 0 auto 16px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.solutions-section p:last-child {
  margin-bottom: 0;
}

.main-solutions {
  padding: 88px 0;
  background: #f5f7fa;
}

.main-solutions__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.main-solutions__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4c6ca7;
}

.main-solutions__header h2 {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #202938;
}

.main-solutions__header p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #667085;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background-color: #fafafa;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  box-shadow:
    0 1px 4px rgba(27, 27, 27, 0.05),
    0 1px 4px rgba(27, 27, 27, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  will-change: transform;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(76, 108, 167, 0.35);
  box-shadow: 0 20px 42px rgba(32, 41, 56, 0.14);
}

.solution-card__image {
  width: 100%;
  height: 219px;
  overflow: hidden;
}

.solution-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 32px 24px;
}

.solution-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #6c6c6c;
}

.solution-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #6c6c6c;
}

@media (prefers-reduced-motion: reduce) {
  .solution-card {
    transition: none;
  }
  .solution-card:hover {
    transform: none;
  }
}
@media (max-width: 767.98px) {
  .bp-title {
    font-size: 1.8rem;
  }
  .bp-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .solutions-section {
    padding: 56px 0;
  }
  .main-solutions {
    padding: 60px 0;
  }
  .main-solutions__header {
    margin-bottom: 32px;
  }
}

/* ================= CTA DEFAULT (Contato) ================= */
.cta-default {
  background-color: #181717;
  background-image:
    linear-gradient(rgba(24, 23, 23, 0.6), rgba(24, 23, 23, 0.6)), var(--bg-cta);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 0;
  padding: 5rem 0;
}

.cta-default__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  overflow: hidden;
}

.cta-default__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-default__eyebrow {
  font: 400 14px/1.5 var(--primary-font);
  color: #c3c3c3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-default__heading {
  font: 600 32px/1.2 var(--primary-font);
  color: #fafafa;
  margin: 0;
}

.cta-default__divider {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  border-radius: 16px;
  background-color: #6c6c6c;
  opacity: 0.4;
}

.cta-default__rows {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-default__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.cta-default__label {
  flex: 0 0 120px;
  font: 400 14px/1.5 var(--primary-font);
  color: #c3c3c3;
  text-transform: uppercase;
}

.cta-default__value {
  flex: 1 1 0;
  font: 500 16px/1.5 var(--primary-font);
  color: #fafafa;
}

.cta-default__value a,
.cta-default__value address a {
  display: block;
  color: #fafafa;
  text-decoration: none;
}

.cta-default__value a:hover {
  text-decoration: underline;
  color: #c3c3c3;
}

.cta-default__value address {
  font: inherit;
  color: inherit;
  font-style: normal;
}

/* seção "Fale com a BlackPack / MountPack" (inc/cta.php) */
.cta-brands {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
  background-color: #1a1a1a;
  background-image:
    linear-gradient(
      -84.57deg,
      rgba(50, 106, 169, 0.65) 19.447%,
      rgba(37, 78, 133, 0.65) 44.445%,
      rgba(21, 44, 88, 0.65) 76.001%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    var(--cta-brands-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fafafa;
}

.cta-brands__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-brands__box {
  flex: 1 1 0;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 56px 32px;
  background-color: rgba(158, 144, 144, 0.1);
  border-radius: 16px;
}

.cta-brands__title {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-brands__heading {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fafafa;
}

.cta-brands__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #c3c3c3;
}

.cta-brands__divider {
  margin: 0;
  border: 0;
  border-radius: 16px;
  background-color: #6c6c6c;
  opacity: 0.4;
  height: 1px;
}

.cta-brands__rows {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-brands__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.cta-brands__label {
  flex: 0 0 120px;
  font: 400 14px/1.5 var(--primary-font);
  color: #c3c3c3;
  text-transform: uppercase;
}

.cta-brands__value {
  flex: 1 1 0;
  font: 400 16px/1.4 var(--primary-font);
  color: #fafafa;
}

.cta-brands__value a {
  display: block;
  color: #fafafa;
  text-decoration: none;
}

.cta-brands__value a:hover {
  text-decoration: underline;
  color: #c3c3c3;
}

@media (max-width: 991.98px) {
  .cta-brands__box {
    flex: 1 1 100%;
  }
}

@media (max-width: 767.98px) {
  .cta-brands {
    padding: 56px 0;
  }
  .cta-brands__box {
    padding: 40px 24px;
  }
  .cta-brands__heading {
    font-size: 1.8rem;
  }
}

.cta-default__form-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  height: 100%;
  padding: 32px 24px;
  background-color: #fafafa;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(27, 27, 27, 0.05);
}

.cta-default__form-title {
  width: 100%;
}

.cta-default__form-subtitle-main {
  font: 500 16px/1.5 var(--primary-font);
  color: #4a4848;
  margin: 0;
}

.cta-default__form-subtitle {
  font: 400 14px/1.5 var(--primary-font);
  color: #6c6c6c;
  margin: 0;
}

.cta-default__form-label {
  display: block;
  font: 400 14px/1.5 var(--primary-font);
  color: #6c6c6c;
  margin-bottom: 12px;
}

.cta-default__form-control {
  width: 100%;
  padding: 16px 12px;
  background-color: #f6f6f6;
  border: 1px solid #eee;
  border-radius: 12px;
  font: 350 14px/1.5 var(--primary-font);
  color: #242424;
}

.cta-default__form-control::placeholder {
  color: #6c6c6c;
}

.cta-default__form-control:focus {
  background-color: #f6f6f6;
  border-color: #181717;
  box-shadow: none;
  color: #242424;
}

.cta-default__form-control--textarea {
  min-height: 130px;
  resize: vertical;
}

.cta-default__form-footer {
  display: flex;
  width: 100%;
}

.cta-default__form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 16px 24px;
  background-color: #181717;
  border: 1px solid #181717;
  border-radius: 8px;
  font: 500 18px/1.4 var(--primary-font);
  color: #fafafa;
  white-space: nowrap;
}

.cta-default__form-submit:hover {
  background-color: #4a4848;
  border-color: #4a4848;
  color: #fafafa;
}

@media (max-width: 767.98px) {
  .cta-default {
    padding: 3rem 0;
  }
  .cta-default__heading {
    font-size: 32px;
  }
  .cta-default__row {
    flex-wrap: wrap;
    gap: 4px;
  }
  .cta-default__label {
    flex-basis: 100%;
  }
}

/* seção "Breadcrumb Black Pack" (inc/breadCrumbBlackpack.php) */
.bread-blackpack {
  position: relative;
  width: 100%;
  padding: 140px 0 140px;
  overflow: hidden;
  background-color: #000;
  background-image: linear-gradient(180deg, #414141 0%, #1b1919 100%);
}

.bread-blackpack::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.85) 30%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.1) 78%,
      rgba(0, 0, 0, 0) 100%
    ),
    var(--bread-blackpack-bg);
  background-size: cover, cover;
  background-position: right center, right center;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
}

.bread-blackpack__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.bread-blackpack__title {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fafafa;
}

.bread-blackpack__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bread-blackpack__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1.5 var(--primary-font);
  color: #c3c3c3;
}

.bread-blackpack__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 12px;
  margin-left: 8px;
  background-color: #c3c3c3;
  transform: rotate(20deg);
}

.bread-blackpack__item.active {
  font-weight: 600;
  color: #fafafa;
}

.bread-blackpack__item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c3c3c3;
  text-decoration: none;
  transition: 0.3s;
}

.bread-blackpack__item a:hover {
  color: #fafafa;
}

.bread-blackpack__home i {
  font-size: 14px;
}

.bread-blackpack__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #c3c3c3;
}

@media (max-width: 767.98px) {
  .bread-blackpack {
    padding: 100px 0 40px;
  }
  .bread-blackpack__title {
    font-size: 1.8rem;
  }
}

/* seção "Embalagens desenvolvidas para cada necessidade" (black-pack.php) */
.bp-solutions {
  width: 100%;
  padding: 120px 0;
  background-color: #fafafa;
}

.bp-solutions__grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.bp-solutions__card {
  flex: 1 1 0;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 4px rgba(27, 27, 27, 0.05),
    0 1px 4px rgba(27, 27, 27, 0.05);
}

.bp-solutions__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background-image: linear-gradient(180deg, #414141 0%, #1b1919 100%);
}

.bp-solutions__intro--mountpack {
  background-image:
    linear-gradient(
      -86.69deg,
      rgba(50, 106, 169, 0.65) 19.447%,
      rgba(37, 78, 133, 0.65) 44.445%,
      rgba(21, 44, 88, 0.65) 76.001%
    ),
    linear-gradient(90deg, #242424 0%, #242424 100%);
}

.bp-solutions__logo {
  width: auto;
  max-width: 220px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.bp-solutions__title {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fafafa;
}

.bp-solutions__texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bp-solutions__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #c3c3c3;
}

.bp-solutions__list-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
}

.bp-solutions__list-title {
  margin: 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #4a4848;
}

.bp-solutions__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bp-solutions__list li {
  flex: 1 1 260px;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bp-solutions__list img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.bp-solutions__list span {
  font: 500 16px/1.5 var(--primary-font);
  color: #6c6c6c;
}

.bp-solutions__list--compact li {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 308px;
}

.bp-solutions__list--compact img {
  width: 32px;
  height: 32px;
}

.bp-solutions__media {
  position: relative;
  flex: 1 1 0;
  min-width: 320px;
  overflow: hidden;
  border-radius: 12px;
}

.bp-solutions__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.bp-solutions__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  mix-blend-mode: hard-light;
}

.bp-solutions__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    180deg,
    rgba(7, 7, 7, 0) 60%,
    rgba(26, 26, 26, 0.9) 100%
  );
}

@media (max-width: 991.98px) {
  .bp-solutions__grid {
    flex-direction: column;
  }
  .bp-solutions__media {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .bp-solutions {
    padding: 56px 0;
  }
  .bp-solutions__intro,
  .bp-solutions__list-box {
    padding: 24px;
  }
  .bp-solutions__title {
    font-size: 1.8rem;
  }
  .bp-solutions__list li {
    flex-basis: 100%;
  }
}

/* seção "Breadcrumb Mountpack" (inc/breadCrumbMountpack.php) */
.bread-mountpack {
  position: relative;
  width: 100%;
  padding: 140px 0 140px;
  overflow: hidden;
  background-color: #000;
  background-image: linear-gradient(180deg, #414141 0%, #1b1919 100%);
}

.bread-mountpack::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.85) 30%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.1) 78%,
      rgba(0, 0, 0, 0) 100%
    ),
    var(--bread-mountpack-bg);
  background-size: cover, cover;
  background-position: right center, right center;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
}

.bread-mountpack__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.bread-mountpack__title {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fafafa;
}

.bread-mountpack__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bread-mountpack__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1.5 var(--primary-font);
  color: #c3c3c3;
}

.bread-mountpack__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 12px;
  margin-left: 8px;
  background-color: #c3c3c3;
  transform: rotate(20deg);
}

.bread-mountpack__item.active {
  font-weight: 600;
  color: #fafafa;
}

.bread-mountpack__item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c3c3c3;
  text-decoration: none;
  transition: 0.3s;
}

.bread-mountpack__item a:hover {
  color: #fafafa;
}

.bread-mountpack__home i {
  font-size: 14px;
}

.bread-mountpack__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #c3c3c3;
}

@media (max-width: 767.98px) {
  .bread-mountpack {
    padding: 100px 0 40px;
  }
  .bread-mountpack__title {
    font-size: 1.8rem;
  }
}


/* =========================================================
   BLACK PACK & MOUNTPACK
   GALERIA DE IMAGENS
   ========================================================= */

.bp-gallery {
  position: relative;
  width: 100%;
  padding: 80px 0 90px;
  background: #fff;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.bp-gallery__header {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.bp-gallery__eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;

  color: #777;
}

.bp-gallery__title {
  margin: 0 0 15px;

  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;

  color: #111;
}

.bp-gallery__text {
  max-width: 680px;
  margin: 0 auto;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;

  color: #666;
}


/* =========================================================
   GRID
   ========================================================= */

.bp-gallery__grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}


/* =========================================================
   CARD
   ========================================================= */

.bp-gallery__item {
  position: relative;

  display: block;

  width: 100%;
  padding: 0;

  overflow: hidden;

  border: 1px solid #e7e7e7;
  border-radius: 16px;

  background: #fff;

  text-align: left;

  cursor: pointer;

  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.bp-gallery__item:hover {
  transform: translateY(-5px);

  border-color: #d5d5d5;

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.11);
}

.bp-gallery__item:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}


/* =========================================================
   IMAGEM
   ========================================================= */

.bp-gallery__image-wrap {
  position: relative;

  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #111;
}

.bp-gallery__img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.45s ease;
}

.bp-gallery__item:hover
.bp-gallery__img {
  transform: scale(1.045);
}


/* =========================================================
   BOTÃO DE ZOOM
   ========================================================= */

.bp-gallery__zoom {
  position: absolute;

  right: 14px;
  bottom: 14px;

  display: grid;

  width: 38px;
  height: 38px;

  place-items: center;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.78);

  color: #fff;

  font-size: 25px;
  font-weight: 300;
  line-height: 1;

  opacity: 0;

  transform: translateY(5px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.bp-gallery__item:hover
.bp-gallery__zoom,

.bp-gallery__item:focus-visible
.bp-gallery__zoom {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   TÍTULO DA IMAGEM
   ========================================================= */

.bp-gallery__caption {
  display: block;

  min-height: 72px;

  padding: 18px 20px 20px;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;

  color: #161616;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.bp-lightbox {
  position: fixed;

  z-index: 9999;

  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  background:
    rgba(0, 0, 0, 0.88);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.bp-lightbox.is-open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


/* =========================================================
   CONTEÚDO DO LIGHTBOX
   ========================================================= */

.bp-lightbox__figure {
  position: relative;

  width: min(100%, 1100px);

  max-height: 92vh;

  display: flex;

  flex-direction: column;

  align-items: center;
}


/* =========================================================
   IMAGEM GRANDE
   ========================================================= */

.bp-lightbox__img {
  display: block;

  max-width: 100%;
  max-height: 78vh;

  object-fit: contain;

  border-radius: 8px;

  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   LEGENDA DO LIGHTBOX
   ========================================================= */

.bp-lightbox__caption {
  margin: 18px 60px 0;

  text-align: center;

  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;

  color: #fff;
}


/* =========================================================
   BOTÕES DO LIGHTBOX
   ========================================================= */

.bp-lightbox__close,
.bp-lightbox__nav {
  position: absolute;

  z-index: 2;

  display: grid;

  width: 46px;
  height: 46px;

  place-items: center;

  border: 0;
  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.12);

  color: #fff;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.bp-lightbox__close:hover,
.bp-lightbox__nav:hover {
  background:
    rgba(255, 255, 255, 0.25);

  transform: scale(1.05);
}


/* =========================================================
   FECHAR
   ========================================================= */

.bp-lightbox__close {
  top: -12px;
  right: -12px;

  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}


/* =========================================================
   SETAS
   ========================================================= */

.bp-lightbox__nav {
  top: 50%;

  margin-top: -23px;

  font-size: 25px;
}

.bp-lightbox__nav--prev {
  left: -65px;
}

.bp-lightbox__nav--next {
  right: -65px;
}


/* =========================================================
   FOCO
   ========================================================= */

.bp-lightbox__close:focus-visible,
.bp-lightbox__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .bp-gallery {
    padding: 65px 0 75px;
  }

  .bp-gallery__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .bp-lightbox__nav--prev {
    left: 10px;
  }

  .bp-lightbox__nav--next {
    right: 10px;
  }

  .bp-lightbox__close {
    top: 10px;
    right: 10px;
  }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 575px) {

  .bp-gallery {
    padding: 50px 0 60px;
  }

  .bp-gallery__header {
    margin-bottom: 30px;
  }

  .bp-gallery__title {
    font-size: 32px;
  }

  .bp-gallery__text {
    font-size: 15px;
  }

  .bp-gallery__grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .bp-gallery__caption {
    min-height: auto;

    padding: 16px 18px 18px;
  }

  .bp-lightbox {
    padding: 15px;
  }

  .bp-lightbox__img {
    max-height: 70vh;
  }

  .bp-lightbox__caption {
    margin: 15px 50px 0;

    font-size: 15px;
  }

  .bp-lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .bp-lightbox__nav--prev {
    left: 5px;
  }

  .bp-lightbox__nav--next {
    right: 5px;
  }
}
