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


header {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  header:not(.headerFixed) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
  }

}

@media screen and (max-width: 820px) {
  header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--secondary-color);
  }

  .bg-white-mobile {
    background-color: var(--light);
  }
}

header.headerFixed {
  background-color: var(--secondary-color);
}

@media screen and (min-width: 1024px) {
  .navbar-nav .nav-link {
    color: var(--light);
    transition: 0.3s;
    margin: 0 2px;
    position: relative;
  }

  .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.375rem;
    width: 0;
    height: 0.125rem;
    background-color: var(--light);
    border-radius: 6.25rem;
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link.active {
    color: var(--light);
  }

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

  .navbar-nav .nav-link.active::before {
    width: 100%;
  }
}

header #menu>ul>li>a.active-menu-topo {
  color: var(--primary-color);
}

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

/* FOOTER */
footer {
  background-color: #fff;
}

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

footer h3 {
  margin-top: 0;
  font-size: 1.125rem;
  color: var(--dark);
}

.h3-span {
  margin-top: 0;
  font-size: 1.125rem;
  color: var(--dark);
}

footer .footer__nav li a:not(.btn) {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  color: var(--dark);
  transition: 0.3s;
}

footer .footer__nav li a i {
  font-size: 0.625rem;
}

footer .footer__nav li a:hover {
  color: #f0f0f0;
}

footer .address :is(span, a):not(.btn) {
  color: var(--dark);
  font-size: 0.875rem;
  line-height: 25px;
  transition: 0.3s;
}

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

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

@media screen and (max-width: 992.05px) {
  footer .social {
    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 .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: .5rem .75rem;
  font-size: .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: .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, .25) 0 2px 5px -1px, rgba(0, 0, 0, .3) 0 1px 3px -1px
}

.title-subtitle {
  margin-bottom: 0
}

.title-subtitle span {
  display: block;
  font-size: .9rem;
  color: #000;
  line-height: 1rem;
  letter-spacing: .25rem;
  text-transform: uppercase
}

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

/* BANNER MOBILE */
.banner-mobile {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-mobile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  z-index: 1;
  pointer-events: none;
}

.banner-mobile img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-mobile__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 2;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.diferenciais-section {
  background: var(--secondary-color);
  color: #ffffff;
  padding: 80px 0;
}

.diferenciais-section .container {
  max-width: 1080px;
}

.section-label {
  display: block;
  font-size: 12px;
  color: #8aa3ad;
  font-weight: 600;
  margin-bottom: 6px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #f3f8fa;
  margin: 0;
}

.diferencial-card {
  background: #0d2b39;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 22px 18px;
  min-height: 150px;
  height: 100%;
  transition: 0.25s ease;
}

.diferencial-card:hover {
  transform: translateY(-4px);
  background: #103545;
}

.diferencial-card .icon {
  font-size: 20px;
  color: #9bb9c5;
  margin-bottom: 22px;
}

.diferencial-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.diferencial-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #b7c7cd;
  margin: 0;
}

@media (max-width: 768px) {
  .diferenciais-section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .diferencial-card {
    min-height: auto;
  }
}

.brand-line {
  position: relative;
  color: #0f5f86;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding-top: 12px;
}

.brand-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 3px;
  background-color: #0f5f86;
}

.brand-line-light {
  position: relative;
  color: #8FB1C4;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding-top: 12px;
}

.brand-line-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 3px;
  background-color: #8FB1C4;
}

.brand-line-light-center {
  text-align: center;
}

.brand-line-light-center::before {
  left: 50%;
  transform: translateX(-50%);
}

.contato-hero {
  position: relative;
  min-height: 390px;
  padding: 78px 0 70px;
  background-image:
    url("../imagens/contato-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.contato-hero__header {
  margin-bottom: 28px;
}

.contato-hero__header span {
  display: block;
  font-weight: 500;
  color: #d5e4ea;
  margin-bottom: 8px;
}

.contato-hero__header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.contato-hero__form-box {
  max-width: 570px;
  margin: 0 auto;
  padding: 22px;
  background: rgba(5, 16, 22, 0.88);
  border-radius: 5px;
}

.contato-hero .form-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.contato-hero .form-control {
  height: 34px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  color: #1f1f1f;
  font-size: 12px;
  padding: 8px 10px;
}

.contato-hero textarea.form-control {
  min-height: 78px;
  resize: none;
}

.contato-hero .form-control::placeholder {
  color: #777;
}

.contato-hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.contato-hero__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 280px;
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  color: #c6d2d6;
}

.contato-hero__privacy input {
  width: 12px;
  height: 12px;
  margin-top: 2px;
  accent-color: #0b6f9e;
}

.contato-hero__privacy a {
  color: #fff;
  text-decoration: underline;
}

.contato-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  height: 36px;
  border: 0;
  border-radius: 5px;
  background: #086b98;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.contato-hero__button:hover {
  background: #075a81;
}

@media (max-width: 767px) {
  .contato-hero {
    padding: 56px 0;
  }

  .contato-hero__header h2 {
    font-size: 26px;
  }

  .contato-hero__form-box {
    padding: 18px;
  }

  .contato-hero__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contato-hero__privacy {
    max-width: 100%;
  }

  .contato-hero__button {
    width: 100%;
  }
}

.depoimentos-area {
  background: #f7f7f7;
  padding: 70px 0 85px;
}

.depoimentos-area .container {
  max-width: 1100px;
}

.depoimentos-header {
  margin-bottom: 42px;
}


.depoimentos-area {
  background: #f7f7f7;
  padding: 70px 0 85px;
}

.depoimentos-area .container {
  max-width: 1100px;
}

.depoimentos-header {
  margin-bottom: 42px;
}

.depoimentos-title {
  color: #242424;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

/* Faz as colunas esticarem igualmente */
.depoimentos-area .row>[class*="col-"] {
  display: flex;
}

/* Card com conteúdo em coluna */
.depoimento-card {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 28px 22px 24px;

  display: flex;
  flex-direction: column;
}

.depoimento-icon {
  color: #0a668f;
  font-size: 22px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.depoimento-card p {
  color: #6f6f6f;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Empurra a linha e o autor para o final do card */
.depoimento-line {
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  margin: auto 0 18px;
  flex-shrink: 0;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.depoimento-avatar {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 3px;
  background: #075b80;
  color: #fff;
  font-size: 13px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

.depoimento-author strong {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.depoimento-author span {
  display: block;
  color: #8a8a8a;
  font-size: 11px;
  margin-top: 3px;
}

@media (max-width: 767px) {
  .depoimentos-area {
    padding: 50px 0 60px;
  }

  .depoimentos-title {
    font-size: 26px;
  }

  .depoimentos-header {
    margin-bottom: 28px;
  }

  .depoimento-card {
    min-height: 280px;
  }
}

.mvv-card {
  min-height: 150px;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.mvv-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mvv-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 1px solid #d6e5ec;
  background: #f8fbfc;
  color: #0a668f;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-card-icon i {
  font-size: 24px;
}

.mvv-card-title {
  color: #0a668f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}

.mvv-card-content {
  color: #6f6f6f;
  font-size: 16px;
  line-height: 1.55;
}

.mvv-card-content p {
  margin: 0;
}

.mvv-card-content p+p {
  margin-top: 6px;
}

.mvv-card-content ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 16px;
}

.mvv-card-content li {
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .mvv-card {
    min-height: auto;
    padding: 20px;
  }
}

.diferenciais-main {
  background: #021d2a;
  color: #ffffff;
}

.diferenciais-main .container {
  max-width: 1080px;
}

.diferenciais-main-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.diferenciais-main-img {
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
}

.diferenciais-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diferenciais-main-text h3,
.diferenciais-main-services h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.diferenciais-main-text ul,
.diferenciais-main-services ul {
  margin: 0;
  padding-left: 18px;
}

.diferenciais-main-text li,
.diferenciais-main-services li {
  color: #c4d4dc;
  font-size: 12px;
  line-height: 1.55;
}

.diferenciais-main-services {
  margin-top: 24px;
}

.diferenciais-main-card {
  height: 100%;
  min-height: 100px;
  background: #0d2b39;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 5px;
  padding: 20px 18px;
}

.diferenciais-main-card i {
  display: block;
  color: #8fb1c4;
  font-size: 18px;
  margin-bottom: 18px;
}

.diferenciais-main-card h3 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}

.diferenciais-main-card p {
  color: #b8c9d0;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .diferenciais-main-img {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .diferenciais-main-title {
    font-size: 24px;
  }

  .diferenciais-main-img {
    height: 220px;
  }
}

.scroll-button {
  width: 40px;
  height: 40px;
  background-color: #003b8f;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: .3s ease;
}

.scroll-button:hover {
  transform: translateY(-4px);
  background-color: #0047ad;
}

.scroll-button i {
  color: #fff;
  font-size: 20px;
}