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

/* FOOTER */
footer .logo-desktop {
  max-width: 200px;
}
footer h3 {
  margin-top: 0;
  font-size: 18px;
  color: var(--dark);
}
footer p {
  font-size: 14px;
}
footer .footer__nav li a:not(.btn) {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--dark);
  transition: 0.3s;
}
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) {
  color: var(--dark);
  font-size: 14px;
  line-height: 25px;
  transition: 0.3s;
}
footer .address a:not(.btn):hover {
  color: var(--primary-light-color);
}
footer .social__icon {
  color: var(--dark);
  border-color: var(--dark);
}
footer .social__icon:hover {
  background-color: var(--dark);
  color: white;
}
footer .contato-map {
  height: 150px;
  min-height: auto;
}
.copyright-footer .btn.selos {
  min-height: unset;
}
@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;
  line-height: 1rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

.card-03 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  aspect-ratio: 3/4;
  padding: 1.25rem;
  border-radius: 0rem;
  background-color: var(--dark, #080808);
  overflow: hidden;
}

.card-03 > * {
  position: relative;
  z-index: 1;
}

.card-03 .card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: 0.3s ease-in-out;
  opacity: 0.4;
}

.card-03:hover .card__image {
  opacity: 0.5;
  transform: scale(1.1);
}

.card-03 .card__title {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.card-03 .card__title::after {
  content: "";
  display: block;
  width: 25%;
  height: 0.125rem;
  background-color: currentColor;
  margin: 0.75rem auto;
  transition: 0.3s ease-in-out;
}

.card-03 .card__text {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  height: calc((1rem * 4) * 1.4);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s ease-in-out;
}

.card-03 .card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  height: 2.5rem;
  color: #fff;
  background-color: var(--primary-color, #0096dd);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.card-03 .card__button:hover {
  filter: brightness(1.25);
}

@media screen and (min-width: 768.05px) {
  .card-03 .card__title::after {
    width: 0;
    height: 0;
    background-color: currentColor;
    margin: 0 auto;
  }

  .card-03:focus-within .card__title::after,
  .card-03:hover .card__title::after {
    margin: 0.75rem auto;
    width: 50%;
    height: 0.125rem;
    border-radius: 9999px;
  }

  .card-03 .card__text {
    height: 0rem;
    transform: translateY(4rem);
    opacity: 0;
  }

  .card-03:focus-within .card__text,
  .card-03:hover .card__text {
    height: calc((1rem * 4) * 1.4);
    transform: translateY(0);
    opacity: 1;
  }

  .card-03 .card__button {
    height: 0;
    transform: translateY(4rem);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }

  .card-03:focus-within .card__button,
  .card-03:hover .card__button {
    height: 2.5rem;
    transform: translateY(0);
    opacity: 1;
  }
}

.bg__linear {
  background: linear-gradient(
    289deg,
    #0a0a0a 67.92%,
    #00a849 125.25%,
    #00a849 152.17%
  );
}
.card__image--galery {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .flex__mobile--reverse {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
  }
}
