/* =============================== HEADER =============================== */
/* MENU */
header {
  background: #fff;
  position: relative;
}
.headerFixed {
  background-color: var(--primary-color);
}
.headerScroll {
  background-color: #fff;
}
.nav-link {
  text-transform: uppercase;
  padding: 0.5rem 1.5rem !important;
}
.nav-link:not(.active-menu-topo),
.widget__cart--btn {
  color: var(--dark);
}
.nav-link:hover,
.widget__cart--btn:hover {
  color: var(--primary-color);
}
.active-menu-topo {
  color: var(--primary-color);
}
.dropdown-item,
.dropdown-item {
  background-color: white;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--light);
}
header .logo-desktop,
header .logo-mobile-menu {
  width: 130px;
  margin: 0 1rem 1rem 0;
}
#topo-bootstrap a {
  transition: 0.3s;
}
#topo-bootstrap a:hover {
  color: var(--secondary-color);
}

@media screen and (min-width: 992px) {
  header {
    background: var(--primary-color);
    position: relative;
  }
  #topo-bootstrap,
  header .offcanvas-body {
    position: relative;
  }
  #topo-bootstrap::before {
    content: "";
    width: 36px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #bebebe;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
  }
  .navbar-brand,
  header .offcanvas-body {
    background: #fafafa;
  }
  header .offcanvas-body::after {
    content: "";
    width: 36px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
  header .offcanvas::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background: #fafafa;
  }
}

/* FOOTER */
.bg-copy {
  background-color: #f6f6f6;
}
footer {
  background-color: #f6f6f6;
}
footer .logo-desktop {
  max-width: 200px;
}
footer h3 {
  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: var(--primary-color-light);
}
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(--primary-color-light);
}

footer iframe {
  border-radius: 1rem;
  width: 100%;
}
.copyright-footer .btn.selos {
  min-height: unset;
}
@media screen and (max-width: 992.05px) {
}

.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: var(--primary-color);
  line-height: 1rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

.fw-900 {
  font-weight: 900;
}

.card-empresa {
  border-radius: 16px;
  border: 1px solid var(--Black-100, #e7e7e7);
  background: #f6f6f6;
  display: flex;
  gap: 5px;
  padding: 3px;
}
.card-empresa img {
  object-fit: contain;
}

.card-empresa h3 {
  font-size: 14px;
}

.card-mvv {
  border: 1px solid #e7e7e7;
  background-color: #fafafa;
  padding: 8px;
  border-radius: 8px;
  height: 100%;
}
.card-mvv img {
  object-fit: contain;
}
.card-mvv h3 {
  text-transform: uppercase;
}

.fs-7 {
  font-size: 13px !important;
}

.card-11 {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 16px 16px 24px 16px;
  background-color: #fafafa;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.card-11__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.card-11,
.card-11__image {
  border-radius: 15px;
}
.card-11__title {
  font-size: 1.4375rem;
  color: var(--grey, #606062);
  margin-top: 16px;
}
.card-11__text {
  font-size: 16px;
  color: var(--grey, #606062);
}
.btn-right {
  text-align: right;
}
.card-11__btn {
  color: var(--dark, #333);
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 11px 16px;
  background-color: transparent;
  transition: all 0.4s ease;
  border-radius: 10px;
}
.card-11__btn:hover {
  color: var(--light, #fff);
}
.card-11:hover {
  background-color: #e7e7e7;
}
.card-11:hover .card-11__btn {
  background-color: var(--primary-color, #26306d);
  color: var(--light);
}
.card-11:hover .card-11__title {
  color: var(--primary-color, #26306d);
}

.header-shape {
  width: 100%;
  height: 70px; /* ajuste conforme o design */
  background-color: #2f4625; /* o verde escuro da imagem */

  /* CLIP-PATH fazendo os cortes diagonais nos cantos */
  clip-path: polygon(
    0 0,
    /* canto superior esquerdo */ 100% 0,
    /* canto superior direito */ calc(100% - 20px) 100%,
    /* diagonal direita pra cima */ 20px 100% /* diagonal esquerda pra cima */
  );

  position: relative;
  z-index: 2;
}
.fs-13 {
  font-size: 13px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  margin: 40px auto;
  max-height: 300px;
  height: 100%;
}

.testimonial-photo {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-photo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 20px;
}

.testimonial-stars {
  color: #f6aa1c;
  font-size: 18px;
  letter-spacing: 3px;
}

@media screen and (max-width: 576px) {
  .testimonial-photo {
    display: none;
  }
}
