header .logo-desktop,
header .logo-mobile-menu {
  width: 160px;
  margin: 1rem 0;
}

header .nav-link {
  position: relative;
  padding: 0;
}

header .nav-link:hover {
  color: var(--primary-color);
}
header .nav-link::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  background-color: var(--primary-color);
  transition: 0.3s ease;
  height: 2px;
}

header .nav-link:hover::before {
  width: 100%;
}

@media screen and (max-width: 992px) {
  header {
    background-color: var(--light);
  }
}

@media screen and (min-width: 992px) {
  .custom-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .custom-header .nav-link {
    color: var(--light);
  }

  .custom-header .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    color: var(--light);
  }
}

/* FOOTER */
footer {
  border-top: 1px solid #f1f1f1;
  background: #f6f6f6;
  margin-top: 3rem;
}

footer .logo-desktop {
  max-width: 200px;
}

footer h3 {
  margin: 0 0 22px 0;
  color: #2b2d2d;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

footer p {
  color: #969696;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  margin: 0;
}

footer .footer__nav li a:not(.btn) {
  color: #393c3c;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.6px;
  text-transform: capitalize;
}

footer .footer__nav li a i {
  font-size: 10px;
}

footer .footer__nav li a:hover {
  color: var(--primary-color-light);
}

footer .address :is(span, a):not(.btn),
footer span {
  transition: 0.3s;
  color: #393c3c;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

footer i {
  color: var(--primary-color);
}

footer iframe {
  border-radius: 1rem;
  width: 100%;
}

footer .address a:not(.btn):hover {
  color: var(--primary-light-color);
}

.copyright-footer {
  background: #222424;
}

.copyright-footer .btn.selos {
  min-height: unset;
}

.copyright-footer p {
  color: #fafafa;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

@media screen and (max-width: 992.05px) {
  footer .social {
    justify-content: center;
  }
}

.card.card--23 {
  all: unset;
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  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;
  float: unset;
}

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

/* ==================== CUSTOM ==================== */

.ls-6 {
  letter-spacing: 1.8px;
}

.custom-bg {
  background: url("../imagens/custom-bg/bg.webp") no-repeat;
  background-size: cover;
  background-color: var(--secondary-color);
}

@media screen and (max-width: 992px) {
  .custom-bg {
    background: url("../imagens/custom-bg/mobile.webp") no-repeat;
    background-size: cover;
    background-color: var(--secondary-color);
  }
}

/* ================== FIM CUSTOM ================== */

/* ==================== SERVICES-CONTAIENR ==================== */

.custom-card {
  display: flex;
  width: 342px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid #e7e7e7;
  background: #fafafa;
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
  overflow: hidden;
}

.custom-card .content {
  padding: 0 16px 24px 16px;
}

.custom-card h3 {
  color: #3d3d3d;
  text-align: start;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.custom-card p {
  overflow: hidden;
  color: #454545;
  text-align: start;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.custom-card a {
  display: flex;
  padding: 11px 16px;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  flex: 1 0 0;
  border-radius: 32px;
  background: transparent;
  color: var(--primary-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.2px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
}

.custom-card .container-img {
  width: 100%;
  height: 231px;
  border-radius: 0.5rem;
  overflow: hidden;
}

.custom-card:hover img {
  transform: scale(1.1);
}

.custom-card:hover {
  border-color: var(--primary-color);
}

.custom-card:hover a {
  background-color: var(--primary-color);
  color: #fafafa;
}

.custom-card:hover h3 {
  color: var(--primary-color);
}

.custom-card .container-img img,
.custom-card a,
.custom-card,
.custom-card h3 {
  transition: 0.3s ease;
}

/* ================== FIM SERVICES-CONTAIENR ================== */

/* ==================== CUSTOM-CTA ==================== */

.custom-cta {
  background: url("../imagens/cta/cta.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.custom-cta h2 {
  color: #fafafa;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.528px;
  letter-spacing: 6.24px;
  text-transform: uppercase;
  margin: 0;
}

.custom-cta h2 > span {
  color: #fafafa;
  text-align: center;
  font-family: Montserrat;
  font-size: 56px;
  font-style: normal;
  font-weight: 900;
  line-height: 55.44px;
  text-transform: uppercase;
  display: block;
}

.custom-cta p {
  color: #fafafa;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin: 5px 0 15px 0;
}

@media screen and (max-width: 992px) {
  .custom-cta {
    background: url("../imagens/cta/mobile.webp") no-repeat;
    background-size: cover;
  }
}

/* ================== FIM CUSTOM-CTA ================== */

/* ==================== MVV-CONTAINER ==================== */

.mvv-container img {
  height: 50px;
  width: 50px;
}

/* ================== FIM MVV-CONTAINER ================== */

/* ==================== ASIDE ==================== */

.aside-title a {
  color: #3d3d3d;
  text-align: start;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  position: relative;
  display: block;
}

.aside-title a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.125rem;
  width: 100%;
  background-color: #d1d1d1;
}

.aside__nav .sub-menu a {
  padding: 8px 16px;
  color: #333;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 34.6px;
  text-transform: capitalize;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}

.aside__nav .sub-menu a.active,
.aside__nav .sub-menu a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* ================== FIM ASIDE ================== */

.tabela-container {
  border: 1px solid #f36f21;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

thead {
  background-color: #f9f9f9;
}

thead th {
  padding: 1rem;
  font-weight: 600;
  color: #333;
}

tbody td {
  padding: 1rem;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

tbody td:last-child {
  border-right: none;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* ==================== CERTIFICATIONS__CARD ==================== */

.certifications__card h3 {
  color: #585858;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  margin: 0;
}

.certifications__card p {
  color: #707070;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 16px 0 32px 0;
}

.certifications__card a {
  display: flex;
  padding: 11px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: var(--primary-color);
  color: #fafafa;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
}

/* ================== FIM CERTIFICATIONS__CARD ================== */

/* ==================== GPTW-CONTAINER ==================== */

.gptw-container .subtitle {
  color: var(--primary-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 21.6px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.gptw-container h2 {
  color: #2b2d2d;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  margin: 0 0 24px 0;
}

.gptw-container p {
  color: #393c3c;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

/* ================== FIM GPTW-CONTAINER ================== */

.who-we-are-image {
  position: relative;
  display: inline-block;
}

.img-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.who-we-are-image::after {
  content: "";
  position: absolute;

  top: -30px;
  left: -30px;

  width: 120px;
  height: 120px;

  background: url("../imagens/who-we-are/experiencia.webp") no-repeat
    center/cover;

  border-radius: 50%;
  z-index: 3;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bread__title{
  text-align: center;
  color: var(--primary-color);
}
.servico-icone{
  height: 70px;
  object-fit: contain;
}
/* UTILS */
.fs-14{
  font-size: 0.875rem;
}