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

/* FOOTER */
footer {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url('../imagens/banners/bg-footer.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 3rem;
}

footer .logo-desktop {
  max-width: 200px;
  filter: brightness(0) invert(1)
}

footer h3 {
  margin-top: 0;
  font-size: 18px;
  color: var(--light)
}

footer .footer__nav li a:not(.btn) {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  color: var(--light);
  transition: .3s;
  text-transform: uppercase;
  font-weight: 600;
}

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

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

footer .address :is(span, a):not(.btn) {
  color: var(--light);
  font-size: 14px;
  line-height: 25px;
  transition: .3s
}

footer .address a:not(.btn):hover {
  color: #eee;
  opacity: .8;
}

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

/* ORGANICTABS */
/* -------------- ORGANIC TABS - MENU -------------- */
.organictabs-3 a {
  text-decoration: none;
}

.organictabs-3 {
  display: flex;
  flex-direction: column;
}

.organictabs-3__menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  width: 100%;
  padding: 8px 0;
  margin-top: 20px;
  background: #F5F5F5;
  border-radius: 5px;
}

.organictabs-3__main {
  width: 100%;
}

.organictabs-3__link {
  cursor: pointer;
  border-radius: 4px;
  background: transparent;
  padding: 14px 80px;
  transition: all 0.3s ease;
}


.organictabs-3__link.active,
.organictabs-3__link:hover {
  background-color: #fff;
  color: var(--primary-color);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
}


/* -------------- ORGANIC TABS - CONTEÚDO -------------- */
.organictabs-3__row {
  width: 100%;
  display: flex;
  gap: 20px;
  --spacing: 20px;
}

.organictabs-3__item {
  width: 100%;
}

.organictabs-3__content {
  padding: 40px;
  background-color: #fff;
}

.organictabs-3__title {
  color: var(--primary-color);
  font-size: 1.75rem;
  position: relative;
  margin-bottom: 40px;
}

.organictabs-3__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--secondary-color, #7FC52F);
}

.organictabs-3__title span {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #747474;
  font-weight: 600;
}

.organictabs-3__text {
  color: var(--grey);
}

.organic-tabs-3__btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color, #9B3BD0);
  border-radius: 10px;
  color: var(--light, #fff);
  margin-top: 16px;
  transition: all 0.3s ease;
}

.organic-tabs-3__btn:hover {
  background-color: var(--secondary-color, #a84dda);
}

.organictabs-3__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

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

  .organictabs-3__content {
    width: 60%;
  }

  .organictabs-3__thumb {
    width: 40%;
    max-height: 400px;
  }

}

@media only screen and (max-width: 765px) {
  .organictabs-3__menu {
    flex-direction: column;
  }

  .organictabs-3__row {
    flex-direction: column;
  }

  .organictabs-3__thumb {
    display: flex;
    justify-content: center;
  }
}

/* HEADER E BREADCRUMB */



.bread {
  background-image: url('../imagens/banners/bg-bread.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0 30px 0;
}

.bread__title {
  color: var(--light);
}

/* BOX */
.box-contact {
  background-color: var(--background);
  border-radius: 20px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-contact__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-contact__address {
  display: block;
  text-align: center;
}



.thumb--1 {
  width: 100%;
  height: 530px;
  position: relative;
  border-radius: 20px;
  background-color: var(--secondary-color);
  padding: 20px;
}

.thumb--1 .thumb__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial {
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  margin: 10px 0;
  position: relative;
  background-color: #fff;
}

.testimonial__title {
  color: #525252;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
}

.testimonial__hate i {
  color: #ffa500;
}


.box-form {
  filter: drop-shadow(0 69px 42px rgba(200, 200, 200, 0.25));
  box-shadow: 0 40px 60px -20px rgba(204, 41, 41, 0.35);
  /* sombra vermelha difusa */
  background-color: #fff;
  padding: 120px 40px;
  border-radius: 20px;
}

.box-form .form--contato label {
  color: var(--dark);
  font-weight: 600;
}

.box-form .form--contato :is(input, textarea, select) {
  border-radius: 20px;
  border: 1px solid #DCDCDC;
  padding: 16px;
}

.box-form .form__button {
  min-width: unset !important;
  max-width: unset !important;
  display: inline-block;
  background-color: #2F2F2F;
  color: var(--light);
  padding: 25px 64px 26px 64px;
  border-radius: 50px;
}

.box-form .form__button:hover {
  background-color: var(--primary-color);
}


/* FORMULÁRIO DE COTAÇÃO */
.box--form-2 {
  width: 100%;
  max-width: 900px;
  margin: 10px auto;
  filter: drop-shadow(0 69px 42px rgba(200, 200, 200, 0.25));
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.10);
  background-color: #fff;
  padding: 120px 40px;
  border-radius: 15px;
}

.box--form-2 .form label {
  color: #1A1A1A;
  font-weight: 500;
}

.box--form-2 .form :is(input, textarea, select) {
  border: 1px solid #DDD;
  padding: 14px 24px;
}

.dados-carga__content {
  padding: 16px;
  border: 1px solid #e0e0e0;
  margin-top: 20px;
  border-radius: 8px;
  position: relative;
}

.add-carga {
  background-color: #f5f5f5;
  text-transform: unset;
}

.add-carga:hover {
  background-color: #e8e8e8;
}

.dados-carga__close {
  background-color: transparent;
  border: 0;
  color: var(--dark);
  position: absolute;
  top: 10px;
  right: 10px;
}

.step {
  text-align: center;
  padding: 10px;
  border-bottom: 3px solid #ddd;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--dark);
  display: flex;
  justify-content: center;
  margin: 0 0 40px 0;
  font-size: 0.895rem;
}

.step.active {
  border-color: #e53935;
  color: #e53935;
  font-weight: 600;
}

.step__number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark);
}

/* ==== FORM ==== */
.contact-options {
	display: flex;
	gap: 12px;
}

.contact-option input[type="radio"] {
	opacity: 0;
}

.contact-option .option {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 70px;
	border: 2px solid #ccc;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
	transition: 0.3s ease;
  pointer-events: all;
}

/* Efeito hover */
.contact-option .option:hover {
	border-color: var(--primary-color);
}

/* Quando o radio está marcado */
.contact-option input[type="radio"]:checked + .option {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}


/* Estilo quando o radio estiver selecionado */
.contact-option input[type="radio"]:checked + .option {
  background: #fff;
  color: #c00;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.input-error {
	border: 2px solid red !important;
}

.img-full{
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
}


.field-radio{
  display: flex;
  align-items: center;
}
.field-radio input{
  width: 20px;
}


.form-step {
  display: none;
  animation: fade 0.3s ease;
}

.form-step.active {
  display: block;
}

.radio-group {
  display: flex;
  gap: 0;
  background: #f6f6f6;
  border-radius: 8px;
  overflow: hidden;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group label {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  background: transparent;
  transition: all 0.3s ease;
}

.radio-group input[type="radio"]:checked+label {
  background: #fff;
  color: #d32f2f;
  /* vermelho */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}




@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-navigation {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.btn-next,
.btn-prev {
  background: #e53935;
  border: none;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-next:hover,
.btn-prev:hover {
  background: #c62828;
}


.card--servico {
  border: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 16px;
  background-color: #FAFAFA;
  border-radius: 16px;
}

.card--servico .card-img-top {
  border-radius: 16px;
}

.card--servico .card-title {
  font-size: 1.4375rem;
}





/* BANNER */
.banner__title {
  font-size: 56px;
}

.banner .splide__content {
  max-width: unset;
}

@media (max-width: 1400px) {
  .banner__title {
    font-size: 40px;
  }
}


/* SLIDER */
.depoimentos-content{
position: relative;
}


.depoimentos-content::before {
  content: '';
  position: absolute;
  bottom: -12%;
  left: 18%;
  width: 160px;
  height: 110px;
  background-image: url('../imagens/icones/decoration.svg');
  background-size: contain;
  transform: rotate(180deg);
  background-repeat: no-repeat;
  z-index: -1 !important;
  /* fica atrás */
}

.depoimentos-content::after {
  content: '';
  position: absolute;
  top: -22%;
  left: 61%;
  width: 160px;
  height: 110px;
  background-image: url('../imagens/icones/decoration.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1 !important;
  /* idem */
}
.depoimentos-content .slider-depoimentos{
  position: relative;
  z-index: 10 !important;
}

.slider-depoimentos .testimonial {
  position: relative;
  z-index: 5;
  /* garante que o card fica acima */
}


.slider-depoimentos .testimonial__body {
  height: 140px;
  overflow-y: auto;
}

.slider-depoimentos .splide__pagination {
  position: unset;
}

.slider-depoimentos .splide__arrow {
  top: unset;
  bottom: 0;
  background-color: transparent;
}

.slider-depoimentos .splide__pagination__page.is-active {
  transform: unset !important;
}

.slider-depoimentos .splide__arrow svg {
  fill: var(--primary-color);
}

.slider-depoimentos .splide__arrow--next {
  left: 60%;
  transform: unset;
}

.slider-depoimentos .splide__arrow--prev {
  left: unset;
  right: 60%;
  transform: unset;
}


/* UTILS */
body {
  background-color: #fafafa;
}

.bg {
  background: var(--background);
}

.bg-center {
  background-position: center center;
}

.bg-cover {
  background-size: cover;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-100 {
  margin-top: 100px;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-13 {
  font-size: 0.8125rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-16 {
  font-size: 1rem;
}

.fs-17 {
  font-size: 1.0625rem;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-28 {
  font-size: 1.75rem;
}

.fs-30 {
  font-size: 1.875rem;
}

.fs-32 {
  font-size: 2rem;
}

.fs-38 {
  font-size: 2.375rem;
}

.fs-40 {
  font-size: 2.5rem;
}

.pt-30 {
  padding-top: 30px;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.bg {
  background: var(--background);
}

.bg-cta {
  background: var(--background);
  border-radius: 16px;
}

.bg-center {
  background-position: center center;
}

.bg-cover {
  background-size: cover;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

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

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

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

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

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

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

.btn-outline-light {
  border: 2px solid var(--light);
  border-radius: 30px;
}

.btn-black {
  background-color: #000;
  color: var(--light);
}

.btn-black:hover {
  background-color: var(--light);
  color: var(--dark);
}

.title-line-center,
.title-line-center--secondary {
  position: relative;
}

.title-line-center::after,
.title-line-center--secondary::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.title-line-center--secondary::after {
  background-color: var(--primary-color-light);
}

@media (max-width:965px){
  header{
    background-image: url('../imagens/banners/bg-bread.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .navbar-toggler{
    border-color: #fff !important;
  }
  #dropdown-custom>.nav-item>.nav-link{
    color: var(--dark) !important;
  }
}

@media screen and (min-width: 768.05px) {
  header:not(.headerFixed) {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 9999;
  }

  header:not(.headerFixed) #menu>ul>li>a {
    color: #FFF;
  }

  header.headerFixed {
    background-image: url('../imagens/banners/bg-bread.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (min-width:992px) {
  header .nav-link {
    color: var(--light);
    text-transform: uppercase;
  }

  header .nav-link.active {
    color: #f4f4f4 !important;
  }

  .thumb--1 .thumb__image {
    position: absolute;
    top: -20px;
    left: -20px;
  }
}