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

header {
  width: 100%;
}

header .container {
  max-width: 1300px;
}

header .nav-link {
  font-size: 13px;
}

@media screen and (min-width: 1920px) {

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


  header .container {
    max-width: 1716px;
  }


  header .nav-link {
    font-size: 16px;
  }

}

@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(--dark);
  }
}

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

@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(--primary-color);
    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%;
  }
}

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

footer h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--light);
  font-weight: 600;
}

footer .footer__nav li a:not(.btn) {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--light);
  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(--light);
  font-size: 14px;
  line-height: 25px;
  transition: 0.3s;
}

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

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

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

footer .contato-footer {
  min-height: 200px;
  border-radius: 1rem;
}

footer .social__icon {
  background-color: #4A4848;
  border: 1px solid #4A4848;
  color: var(--primary-color);
  font-size: 1.2rem;
  border-radius: 8px !important;
}

footer i:not(.social__icon i):not(.btn.selos i) {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background-color: #4A4848;
  font-size: 1rem;
  padding: 1rem;
  margin-right: 5px;
  color: var(--primary-color);
  border-radius: 8px;
}

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

.title-01 {
  position: relative;
  font-size: .9rem;
}

.title-01::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url('../imagens/icones/icone-title.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.375rem;
  height: 1rem;
}

.prod-inc-custom-cover .splide__slide {
  max-height: 400px;
}


p {
  text-align: justify !important;
}


#dropdown-custom {
  display: flex;
}

/* Home */
#dropdown-custom > li:nth-child(1) {
  order: 1;
}

/* Quem Somos */
#dropdown-custom > li:nth-child(2) {
  order: 2;
}

/* Galpões em Lona */
#dropdown-custom > li:nth-child(7) {
  order: 3;
}

/* Circos & Projetos Especiais */
#dropdown-custom > li:nth-child(5) {
  order: 4;
}

/* Eventos */
#dropdown-custom > li:nth-child(3) {
  order: 5;
}

/* Compra de Estruturas */
#dropdown-custom > li:nth-child(4) {
  order: 6;
}

/* Serviços */
#dropdown-custom > li:nth-child(6) {
  order: 7;
}

/* Blog */
#dropdown-custom > li:nth-child(8) {
  order: 8;
}

/* Contato */
#dropdown-custom > li:nth-child(9) {
  order: 9;
}

/* Informações */
#dropdown-custom > li:nth-child(10) {
  order: 10;
}

/* Informações */

.cta-default.secondary {
  background: url('../imagens/cta.webp') no-repeat;
  background-size: cover;
  padding: 72px 12px;
}

/* ==================== STRUCTURE-CONTAINER ==================== */

.structure-container {
  background: #DEECBA;
  padding: 68px 24px;
}

.structure-container .container {
  max-width: 1068px;
}

.structure-container .title {
  color: #242424;
  text-align: center;
  font-family: Rubik;
  font-size: 22.5px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.4px;
  margin: 0 0 46px 0;
}

.structure-container .card {
  border-radius: 16px;
  border: 1px solid rgba(63, 81, 13, 0.20);
  background: #CEE298;

  height: 100%;
  width: 100%;
  padding: 18px 17px;
}

.structure-container .card .title {
  color: #6A8916;

  font-family: Inter;
  font-size: 15.7px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.4px;
  margin: 0;
  text-align: start;
}

.structure-container .card p,
.structure-container .card li {
  color: #6C6C6C;
  font-family: Inter;
  font-style: normal;
  font-weight: 350;
}

.structure-container .card p {
  font-size: 13px;
  line-height: 17.2px;
  margin: 17px 0 14px 0;
  text-align: start !important;
}

.structure-container .card .list {
  display: flex;
  flex-direction: column;
  gap: 2px;

  margin: 0;
}

.structure-container .card li {
  list-style: inside;
  font-size: 11px;
  line-height: 17px;
  margin: 0;
}

@media screen and (min-width: 1920px) {
  .structure-container {
    padding: 120px 24px;
  }

  .structure-container .container {
    max-width: 1486px;
  }

  .structure-container .title {
    font-size: 32px;
    font-weight: 500;
    line-height: 38.4px;
    margin: 0 0 64px 0;
  }

  .structure-container .card {
    border-radius: 16px;
    border: 1px solid rgba(63, 81, 13, 0.20);

    height: 100%;
    width: 100%;
    padding: 32px 24px;
  }

  .structure-container .card .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
    margin: 0;
  }

  .structure-container .card p,
  .structure-container .card li {
    font-weight: 350;
  }

  .structure-container .card p {
    font-size: 18px;
    line-height: 25.2px;
    margin: 24px 0 24px 0;
  }

  .structure-container .card .list {
    gap: 5px;

    margin: 0;
  }

  .structure-container .card li {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
  }
}

/* ================== FIM STRUCTURE-CONTAINER ================== */

/* ==================== BENEFITS-CONTAINER ==================== */

.benefits-container {
  padding: 68px 24px;
}

.benefits-container .title {
  color: #242424;
  font-family: Rubik;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.4px;
  margin: 0 0 46px 0;
  text-align: center;
}

.benefits-container .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
}

.benefits-container .card svg {
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.benefits-container .card .title {
  color: #4A4848;
  text-align: center;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 350;
    line-height: 17.2px;
    margin: 8px 0 0 0;
}

@media screen and (min-width: 1920px) {
  .benefits-container {
    padding: 120px 24px;
  }

  .benefits-container .title {
    font-size: 32px;
    font-weight: 500;
    line-height: 38.4px;
    margin: 0 0 56px 0;
  }


  .benefits-container .card svg {
    width: 56px;
    height: 56px;
    aspect-ratio: 1/1;
  }

  .benefits-container .card .title {
    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
    margin: 12px 0 0 0;
  }
}

/* ================== FIM BENEFITS-CONTAINER ================== */

.title.default {
font-weight: 700;
color:  var(--primary-color);
}


.sticky-image{
    position: sticky;
    top: 100px; /* altura do seu header */
}

.sticky-image img{
    width:100%;
    display:block;
}