/* ? ==================== TOPO ==================== */
header .logo-desktop,
header .logo-mobile-menu {
  width: 160px;
  margin: 1rem 0;
}
@media screen and (min-width: 992px) {
  header {
    background: linear-gradient(90deg, #3a4d2e 0%, #4c643c 100%);
  }
  header .navbar-nav {
    --bs-nav-link-color: #fff;
  }
  header .nav-link.active,
  header .nav-link:hover,
  header .nav-link:focus-visible {
    --bs-navbar-active-color: #000;
    --bs-nav-pills-link-active-bg: #fff;
    background: #fff;
    color: #000;
  }
  header .nav-link:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
  }
}

@media screen and (max-width: 768px) {
  header {
    background: var(--bs-body-bg);
  }
}
/* ? ================== FIM TOPO ================== */

/* ? ==================== FOOTER ==================== */
footer .logo-desktop {
  width: 280px;
}
footer h3 {
  margin-top: 0;
  font-size: 1.125rem;
}
footer .footer__nav li a:not(.btn) {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  transition: 0.3s;
}
footer .footer__nav li a i {
  font-size: 0.625rem;
}
footer .footer__nav li a:hover {
  color: var(--primary-color-light);
}
footer .address :is(span, a):not(.btn) {
  font-size: 0.875rem;
  line-height: 25px;
  transition: 0.3s;
}
footer .address a:not(.btn):hover {
  color: var(--primary-color-light);
}
footer .footer-map {
  height: 220px;
}
.copyright-footer .btn.selos {
  min-height: unset;
}
@media screen and (max-width: 992.05px) {
  footer .social {
    justify-content: center;
  }
}
/* ? ================== FIM FOOTER ================== */

.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-barra-lat {
  position: relative;
  padding-left: 1rem;
}
.title-barra-lat::before {
  content: "";
  width: 8px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
}

.title-subtitle {
  margin-bottom: 0;
}
.title-subtitle span {
  display: block;
  font-size: 1rem;
  line-height: 1rem;
}

/* ================= 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;
}

/* * ==================== PORTFOLIO ==================== */
.iframe-port {
  height: 800px;
}
/* * ================== FIM PORTFOLIO ================== */

/* ? ==================== CARD BLOG ==================== */
.card-blog,
.card-blog * {
  transition: var(--transition);
}
.card-blog:hover,
.card-blog:focus-within {
  color: var(--bs-emphasis-color);
}
.card-blog:hover img,
.card-blog:focus-within img {
  transform: scale(1.1);
}
/* ? ================== FIM CARD BLOG ================== */

/* ? ==================== CARD PORT ==================== */
.card-port {
  height: 320px;
}
.card-port::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      var(--Brand-primary-base, rgba(83, 110, 66, 0.4)) 100%
    ),
    rgba(5, 5, 5, 0.6);
  transition: var(--transition);
}
.card-port .card-title::after {
  content: "";
  z-index: 1;
  background: var(--primary-color-light);
  width: 80px;
  height: 4px;
  border-radius: 0.5rem;
  display: block;
  margin: 0.5rem auto;
}
.card-port .card-title,
.card-port .card-btn {
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  transition: var(--transition);
}
.card-port:hover::after,
.card-port:focus-within::after {
  opacity: 1;
}
.card-port:hover .card-title,
.card-port:focus-within .card-title {
  bottom: 50%;
}
.card-port:hover .card-btn,
.card-port:focus-within .card-btn {
  bottom: 30%;
}
@media screen and (max-width: 768px) {
  .card-port::after,
  .card-port:hover::after,
  .card-port:focus-within::after {
    opacity: 1;
  }
  .card-port .card-title,
  .card-port:hover .card-title,
  .card-port:focus-within .card-title {
    bottom: 50%;
  }
  .card-port .card-btn,
  .card-port:hover .card-btn,
  .card-port:focus-within .card-btn {
    bottom: 30%;
  }
}
/* ? ================== FIM CARD PORT ================== */

/* ? ==================== CARD SERV ==================== */
.card-serv,
.card-serv * {
  transition: var(--transition);
}
.card-serv {
  box-shadow: 0 1px 4px 0 rgba(27, 27, 27, 0.08);
  --bs-card-border-color: #eee;
}
.card-serv .card-img {
  height: 300px;
}
.card-serv:hover,
.card-serv:focus-within {
  color: var(--bs-emphasis-color);
}
.card-serv:hover img,
.card-serv:focus-within img {
  transform: scale(1.1);
}
/* ? ================== FIM CARD SERV ================== */

/* * ==================== A EMPRESA ==================== */
@media screen and (min-width: 992px) {
  .img-empresa {
    height: 560px;
  }
  .img-empresa img {
    width: 270px;
    height: 90%;
    position: absolute;
  }
  .img-empresa .img-top {
    top: 0;
    left: 0;
  }
  .img-empresa .img-bottom {
    bottom: 0;
    right: 0;
  }
}

.card-quality {
  --bs-card-border-color: #eee;
}
.card-quality .card-img {
  width: 50px;
  height: 50px;
}

.card-mvv {
  --bs-card-border-color: #e9e9e9;
}
.card-mvv .card-text {
  font-size: 14px;
}

.card-equipe .card-img {
  height: 350px;
}
/* * ================== FIM A EMPRESA ================== */

/* * ==================== HOME ==================== */
.card-diferencial {
  --bs-card-border-color: #e9e9e9;
}
.card-diferencial .card-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #cad2c4;
  background:
    linear-gradient(
      0deg,
      rgba(250, 250, 250, 0.8) 0%,
      rgba(250, 250, 250, 0.8) 100%
    ),
    #cad2c4;
  box-shadow: 0 1px 4px 0 rgba(27, 27, 27, 0.08);
}
/* * ================== FIM HOME ================== */

/* ? ==================== BANNER ==================== */
.title-banner {
  padding-top: 10rem;
  font-size: 3.5rem;
}
/* ? ================== FIM BANNER ================== */

.institucional-image {
  width: 100%;
  height: 630px;
  object-position: center;
}

.list-none li {
  list-style: none;
}
.navbar.nav-pills {
  background: var(--primary-color);
}


/* ==================== WHO-WE-ARE-CONTAINER ==================== */

.who-we-are-container li {
  margin: 0;
  list-style: none;
}

/* ================== FIM WHO-WE-ARE-CONTAINER ================== */