header {
  background: rgba(251, 249, 246, 0.918);
  border-bottom: 1px solid rgba(33, 31, 30, 0.07);
}
header .logo-desktop,
header .logo-mobile-menu {
  width: 80px;
  margin: 0.8rem 0;
}

/* FOOTER */
footer {
  background-color: #1d1a18;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    rgb(13, 187, 180) 0px,
    rgb(13, 187, 180) 18px,
    rgb(248, 184, 49) 18px,
    rgb(248, 184, 49) 36px,
    rgb(251, 140, 76) 36px,
    rgb(251, 140, 76) 54px,
    rgb(251, 104, 76) 54px,
    rgb(251, 104, 76) 72px,
    rgb(153, 51, 102) 72px,
    rgb(153, 51, 102) 90px
  );
}
footer .logo-desktop {
  max-width: 200px;
}
footer h3 {
  margin-top: 0;
  font-size: 1.125rem;
  color: var(--light);
}
footer .footer__nav li a:not(.btn) {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  color: var(--light);
  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) {
  display: block;
  margin: 10px 0;
  color: var(--light);
  font-size: 0.875rem;
  line-height: 25px;
  transition: 0.3s;
}
footer .address :is(span, a).footer-endereco {
  color: var(--grey-light);
}
footer .address a:not(.btn):hover {
  color: var(--primary-color-light);
}

footer .btn-social {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px !important;
  color: var(--light);
}
footer .btn-social:hover {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--light);
  transform: translateY(-4px);
}

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

.card.card--23 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: column nowrap;
  gap: var(--space-4);
  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: var(--space-4);
  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);
}

.card--blog {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgb(237, 231, 224);
  border-top: 4px solid var(--cardColor);
  padding: 28px 26px;
}
.card--blog:hover {
  box-shadow: rgba(33, 31, 30, 0.1) 0px 20px 44px;
}

/* POST DESTACADO */
:root {
  --coral: #f3654a;
  --coral-dark: #ef5138;
  --stripe: rgba(255, 255, 255, 0.14);
  --page-bg: #f7f5f0;
}

.post-destaque {
  margin: 60px auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background: #fff;
  transition: all 0.3s ease;
}
.post-destaque:hover {
  box-shadow: rgba(33, 31, 30, 0.12) 0px 24px 52px;
}

.post-destaque .row {
  --bs-gutter-x: 0;
}
.blog-pagination .btn-group button.active,
.blog-pagination .btn-group button:hover {
  color: var(--light);
}

/* PAINEL ESQUERDO */
.post-destaque__left {
  position: relative;
  min-height: 380px;
  height: 100%;
  background-color: var(--coral);
  background-image: repeating-linear-gradient(
    -45deg,
    var(--stripe) 0px,
    var(--stripe) 14px,
    transparent 14px,
    transparent 32px
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
}

.post-destaque__logo {
  color: #fff;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

/* PAINEL DIREITO */
.post-destaque__right {
  padding: var(--space-12) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-destaque__meta {
  color: #9b948c;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.post-destaque__heading {
  line-height: 1.18;
  margin-bottom: 18px;
}

.post-destaque__desc {
  color: #55575c;
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 46ch;
}

.post-destaque__link {
  color: var(--coral-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s ease;
}

.post-destaque__link:hover {
  color: var(--coral-dark);
  gap: 10px;
}

.post-destaque__link-arrow {
  display: inline-block;
}

@media (max-width: 767.98px) {
  .post-destaque__left {
    min-height: 260px;
  }
  .post-destaque__right {
    padding: 36px 28px;
  }
  .post-destaque__heading {
    font-size: 1.6rem;
  }
  .post-destaque__logo {
    font-size: 2.1rem;
  }
}

.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: #000;
  line-height: 1rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

/* ================= CLIENTES ================= */
.clientes .clientes__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-4);
  background-color: #fff;
  border: 1px solid #ede7e0;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  border-radius: 14px;
}
.clientes .clientes__item img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: contain;
  max-width: 100px;
  margin: 0 auto;
  opacity: 0.75;
  border-radius: var(--bs-border-radius-sm);
  transition: opacity var(--transition);
}
.clientes .clientes__item:hover img {
  opacity: 1;
}

/* CONTENT BOX */
.content-box {
  position: relative;
  width: 100%;
  padding: clamp(36px, 5vw, 64px);
  background: var(--background, #f0f0f0);
  border-radius: var(--borderRadius, 24px);
  border: var(--border);
  overflow: hidden;
  border-left: var(--borderLeft);
}

.content-before {
  position: relative;
}

.content-before::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  right: 0px;
  height: 5px;
  background: repeating-linear-gradient(
    135deg,
    rgb(13, 187, 180) 0px,
    rgb(13, 187, 180) 16px,
    rgb(248, 184, 49) 16px,
    rgb(248, 184, 49) 32px,
    rgb(251, 140, 76) 32px,
    rgb(251, 140, 76) 48px,
    rgb(251, 104, 76) 48px,
    rgb(251, 104, 76) 64px,
    rgb(153, 51, 102) 64px,
    rgb(153, 51, 102) 80px
  );
}

.contact-box {
  width: 100%;
  padding: clamp(36px, 5vw, 64px);
  background: var(--background, #f0f0f0);
  border-radius: var(--borderRadius, 24px);
  border: var(--border);
}

.box-form label {
  color: var(--dark);
  font-size: 0.8125rem;
  font-weight: 600;
}
.box-form :is(input, textarea, select) {
  background: rgb(251, 249, 246);
  border: 1.5px solid rgb(229, 222, 213);
  padding: 13px var(--space-4);
  border-radius: 11px;
  color: var(--grey);
  font-size: 0.9375rem;
}

/* ================= DEPOIMENTOS ================= */
.testimonial .testimonial-author-image {
  width: 100%;
  max-width: 64px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 999px;
}

/* CARD E BOX */
.box--base {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  padding: var(--padding, 24px 22px);
  background: var(--background, #fafafa);
  border: var(--border);
  border-radius: var(--borderRadius, 24px);
  border-top: var(--borderTop, var(--border));
  box-shadow: transparent 0 16px 36px;
  transition: all 0.3s ease;
}
.box__actions {
  margin-top: auto;
  padding-top: var(--space-6);
}
.box__divisor {
  width: 100%;
  height: 1px;
  background-color: rgb(237, 231, 224);
}
.box__number {
  width: 46px;
  height: 46px;
  background: var(--background);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box__number-dotted {
  position: relative;
}
.box__number-dotted::before {
  content: "";
  width: calc(100% - 50px);
  height: 1px;
  border-bottom: 2px dotted var(--primary-color);
  position: absolute;
}
.box--hover-1:hover {
  box-shadow: rgba(33, 31, 30, 0.09) 0px 16px 36px;
}
.box-decoration-top {
  position: relative;
  overflow: hidden;
}
.box-decoration-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--borderHeight, 5px);
  background: repeating-linear-gradient(
    135deg,
    rgb(13, 187, 180) 0px,
    rgb(13, 187, 180) 14px,
    rgb(248, 184, 49) 14px,
    rgb(248, 184, 49) 28px,
    rgb(251, 104, 76) 28px,
    rgb(251, 104, 76) 42px
  );
}

.line-dotted {
  width: calc(100% - 70px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #ded6cc 0px,
    #ded6cc 6px,
    transparent 6px,
    transparent 12px
  );

  margin-left: var(--space-2);
}

.plano-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid #e5ded8;
  padding: var(--space-8);
  height: 100%;
  transition: 0.3s;
}

.plano-card--light {
  background: #fff;
  color: #191919;
  border: 1px solid rgb(237, 231, 224);
  border-radius: 18px;
  border-top: 4px solid var(--plano-accent, var(--primary-color));
}

.row.g-4.mt-5 > div:nth-child(1) .plano-card {
  --plano-accent: var(--primary-color);
}
.row.g-4.mt-5 > div:nth-child(2) .plano-card {
  --plano-accent: #0dbab4;
}
.row.g-4.mt-5 > div:nth-child(3) .plano-card {
  --plano-accent: var(--secondary-color);
}

.btn-outline-dark {
  border: 1.5px solid rgb(222, 214, 204);
}

.plano-card--dark {
  background: #23201d;
  color: #fff;
  border-color: #23201d;
}

.plano-card--dark .plano-card__price--consulta {
  color: var(--secondary-color);
}

.plano-card--dark p,
.plano-card--dark small,
.plano-card--dark hr {
  color: rgba(255, 255, 255, 0.75);
}

.plano-card__badge {
  position: absolute;
  top: -13px;
  left: 30px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(33, 31, 30);
  background: rgb(248, 184, 49);
  padding: 6px 14px;
  border-radius: 999px;
}

.plano-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  margin-top: 0;
}

.plano-card__description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.plano-card__price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.plano-card__currency {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.plano-card__value {
  font-size: 2.875rem;
  font-weight: 800;
  line-height: 1;
}
.plano-card__price--consulta {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
}

.plano-card__month {
  margin-bottom: 0.7rem;
}

.plano-card__price-desc {
  color: #8a8a8a;
  margin: 0.5rem 0;
  display: block;
}

.plano-card hr {
  margin: 0.9rem 0;
  opacity: 0.2;
}

.plano-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
}

.plano-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: var(--space-4);
}

.plano-card__list i {
  color: #00c2c7;
  margin-top: var(--space-1);
}

.plano-card--dark .plano-card__list i {
  color: #f8b533;
}

.plano-card .btn {
  border-radius: 12px;
  padding: 0.95rem;
  font-weight: 700;
}

.plano-card--dark .btn-primary {
  background: #f8b831;
  border-color: #f8b831;
}

.plano-card--dark .btn-primary:hover {
  background: #f8b533;
  border-color: #f8b533;
}

/* Primeiro card do grupo: botão sólido usando a cor de destaque da posição */
.row.g-4.mt-5 > div:nth-child(1) .plano-card--light .btn {
  color: #fff;
  background-color: var(--plano-accent, var(--primary-color));
  border-color: var(--plano-accent, var(--primary-color));
}

.row.g-4.mt-5 > div:nth-child(1) .plano-card--light .btn:hover {
  filter: brightness(0.94);
  color: #fff;
}

/* Demais cards do grupo: botão outline neutro (padrão) */
.row.g-4.mt-5
  > div:nth-child(n + 2)
  .plano-card--light
  .btn-outline-dark:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .plano-card {
    padding: 1.5rem;
  }

  .plano-card__title {
    font-size: 1rem;
  }

  .plano-card__value {
    font-size: 2.8rem;
  }

  .plano-card__price--consulta {
    font-size: 2.4rem;
  }
}

/* PACOTES (escritórios virtuais) */
.pacote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-8);
  border-radius: 20px;
  background: #23201d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--pacote-accent, var(--tertiary-color));
  transition: 0.3s;
}

#pacotes .row > div:nth-child(1) .pacote-card {
  --pacote-accent: var(--tertiary-color);
}
#pacotes .row > div:nth-child(2) .pacote-card {
  --pacote-accent: var(--secondary-color);
}
#pacotes .row > div:nth-child(3) .pacote-card {
  --pacote-accent: var(--primary-color);
}

.pacote-card__title {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.pacote-card__description {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  font-size: 15px;
}

.pacote-card hr {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 0 0 1.5rem;
  opacity: 1;
}

.pacote-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
}

.pacote-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 13.5px;
  line-height: 1.1;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.pacote-card__list i {
  color: var(--pacote-accent, var(--tertiary-color));
  margin-top: var(--space-1);
}

.pacote-card .btn {
  border-radius: 12px;
  padding: 0.95rem;
  font-weight: 700;
}

.btn-pacote {
  background: var(--pacote-accent, var(--secondary-color));
  border: 1px solid var(--pacote-accent, var(--secondary-color));
  color: #1d1a18;
}

@media (max-width: 991px) {
  .pacote-card {
    padding: 1.5rem;
  }
}

/* CONTATO */
.interest-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.interest-group input {
  display: none;
}

.interest-btn {
  padding: 10px 18px;
  border: 1px solid #d7cfc6;
  border-radius: 999px;
  background: #fff;
  color: #232323;
  cursor: pointer;
  transition: 0.25s;
  user-select: none;
}

.interest-btn:hover {
  border-color: var(--primary-color);
}

.interest-group input:checked + .interest-btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* COUNTER */
.counter-box {
  border-left: var(--borderLeft, unset);
}

/* ITEM BOX */
.item-box {
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--background);
  border: var(--border);
  border-radius: var(--borderRadius);
  padding: var(--padding);
  margin: var(--space-5) 0;
}
.item-box__topic {
  position: relative;
}
.item-box__topic::before {
  content: "";
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--topicBG);
  margin-right: 6px;
}

.content-split {
  overflow: hidden;
  border-radius: 32px;
  background: var(--background, #211f1d);
  border-top: var(--borderTop, var(--border, unset));
}

.content-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: clamp(40px, 6vw, 72px);
}

.content-split__media {
  min-height: 520px;
  height: 100%;
}

.content-split__content h3 {
  max-width: 480px;
  line-height: 1.05;
}

.content-split__content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.75);
}

.content-split .btn {
  width: fit-content;
}

@media (max-width: 991px) {
  .content-split {
    border-radius: 24px;
  }

  .content-split__content {
    padding: 36px 28px;
  }

  .content-split__media {
    min-height: 320px;
  }
}

/* THUMB */
.thumb--base {
  width: 100%;
  height: var(--height, 230px);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.thumb--base .thumb__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb--base .thumb__content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: var(--space-2) 14px;
  border-radius: 9px;
  background: var(--background);
}
.thumb__content--2 {
  left: 10px;
  right: 10px;
  bottom: 10px;
}

.thumb-1,
.thumb-oferta {
  position: relative;
  width: 100%;
  height: clamp(320px, 40vw, 480px);
  border-radius: 24px;
}

.thumb-1__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: rgba(33, 31, 30, 0.18) 0px 24px 60px;
}
.thumb-1__box,
.thumb-oferta {
  width: 100%;
  padding: 54px;
  height: 100%;
  border-radius: 28px;
  background: var(--background);
}
.thumb-oferta {
  width: 100%;
  padding: 54px;
  height: auto;
  border-radius: 28px;
  background: var(--background);
}
.oferta__price {
  font-size: clamp(64px, 7vw, 92px);
}

.thumb-2 {
  width: 100%;
  background-color: var(--white);
  border: var(--border);
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumb-2__image {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .thumb-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
      135deg,
      rgb(13, 187, 180) 0px,
      rgb(13, 187, 180) 22px,
      rgb(248, 184, 49) 22px,
      rgb(248, 184, 49) 44px,
      rgb(251, 140, 76) 44px,
      rgb(251, 140, 76) 66px,
      rgb(251, 104, 76) 66px,
      rgb(251, 104, 76) 88px,
      rgb(153, 51, 102) 88px,
      rgb(153, 51, 102) 110px
    );
    border-radius: 24px;
    z-index: -1;
    transform: translateX(16px) translateY(16px);
  }
  .thumb-oferta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
      135deg,
      rgb(13, 187, 180) 0px,
      rgb(13, 187, 180) 22px,
      rgb(248, 184, 49) 22px,
      rgb(248, 184, 49) 44px,
      rgb(251, 140, 76) 44px,
      rgb(251, 140, 76) 66px,
      rgb(251, 104, 76) 66px,
      rgb(251, 104, 76) 88px,
      rgb(153, 51, 102) 88px,
      rgb(153, 51, 102) 110px
    );
    border-radius: 24px;
    z-index: -1;
    transform: translateY(-8px);
  }
  /* HEADER */
  .menu-subtitle {
    display: block;
    font-size: 12px;
    color: #9b948c;
    font-weight: 400;
  }

  .menu-title {
    font-weight: 600;
    display: block;
    width: 100%;
  }
  .menu-badge {
    padding: 3px 9px;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 999px;
    background-color: var(--primary-color);
    font-family: var(--secondary-font);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.07em;
  }
}

/* FORMULÁRIO */
.form--newsletter :is(input, .btn-send) {
  padding: 14px var(--space-4);
}
.form--newsletter input {
  background: rgba(255, 255, 255, 0.07);
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.form--newsletter input::placeholder {
  color: var(--grey-light);
}

/* Accordion */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  overflow: hidden;

  background-color: #fff;
  border: 1px solid #e7e0d9;
  border-radius: 16px;

  transition: border-color 0.25s ease;
}

.faq-item:has(.accordion-collapse.show) {
  border-color: #e7e0d9;
}

.faq-question {
  margin: 0;
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);

  width: 100%;
  padding: 23px;

  color: #111827;
  background: transparent;
  border: 0;

  font-size: 15px;
  font-weight: 700;
  text-align: left;

  box-shadow: none !important;
}

.faq-button:hover,
.faq-button:focus {
  color: #111827;
  background: transparent;
}

.faq-icon {
  position: relative;

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

  width: 18px;
  height: 18px;

  color: #fb684c;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}

.faq-icon-plus,
.faq-icon-minus {
  position: absolute;
  transition: opacity 0.2s ease;
}

.faq-icon-minus {
  opacity: 0;
}

.faq-button:not(.collapsed) .faq-icon-plus {
  opacity: 0;
}

.faq-button:not(.collapsed) .faq-icon-minus {
  opacity: 1;
}

/* Resposta */

.faq-answer {
  padding: 0 23px 23px;

  color: #55545a;
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 0;
}

/* UTILS */
.badge {
  background-color: var(--background);
  color: var(--color);
  font-family: var(--secondary-font);
  border: var(--border, 1px solid rgb(222, 214, 204));
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
}
.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: var(--space-2);
  margin-bottom: var(--space-2);
}

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

.mt-20 {
  margin-top: var(--space-5);
}

.mt-40 {
  margin-top: var(--space-10);
}

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

.mb-20 {
  margin-bottom: var(--space-5);
}

.mb-40 {
  margin-bottom: var(--space-10);
}

.fs-12 {
  font-size: clamp(11px, 0.9vw, 12px);
}

.fs-13 {
  font-size: clamp(13px, 1vw, 13px);
}

.fs-14 {
  font-size: clamp(12px, 1vw, 14px);
}

.fs-15 {
  font-size: clamp(13px, 1.1vw, 15px);
}

.fs-16 {
  font-size: clamp(14px, 1.2vw, 16px);
}

.fs-17 {
  font-size: clamp(14px, 1.3vw, 17px);
}

.fs-18 {
  font-size: clamp(15px, 1.3vw, 18px);
}
.fs-19 {
  font-size: clamp(15px, 1.4vw, 19px);
}

.fs-20 {
  font-size: clamp(16px, 1.5vw, 20px);
}

.fs-21 {
  font-size: clamp(17px, 1.5vw, 21px);
}
.fs-22 {
  font-size: clamp(17px, 1.6vw, 22px);
}
.fs-23 {
  font-size: clamp(18px, 1.7vw, 23px);
}
.fs-24 {
  font-size: clamp(18px, 1.8vw, 24px);
}

.fs-28 {
  font-size: clamp(20px, 2.1vw, 28px);
}

.fs-30 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.fs-32 {
  font-size: clamp(23px, 2.4vw, 32px);
}

.fs-34 {
  font-size: clamp(24px, 2.8vw, 34px);
}

.fs-38 {
  font-size: clamp(26px, 2.8vw, 38px);
}

.fs-40 {
  font-size: clamp(28px, 2.9vw, 40px);
}
.fs-42 {
  font-size: clamp(29px, 3.1vw, 42px);
}
.fs-44 {
  font-size: clamp(30px, 3.2vw, 44px);
}
.fs-46 {
  font-size: clamp(31px, 3.4vw, 46px);
}
.fs-50 {
  font-size: clamp(30px, 3.8vw, 50px);
}
.fs-54 {
  font-size: clamp(32px, 4vw, 54px);
}
.fs-56 {
  font-size: clamp(36px, 4.1vw, 56px);
}
.fs-60 {
  font-size: clamp(38px, 4.4vw, 60px);
}
.fs-72 {
  font-size: clamp(40px, 5.3vw, 72px);
}
.pt-30 {
  padding-top: 30px;
}

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

.my-8 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
}

.my-40 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-10);
}

.py-5-3 {
  padding-top: clamp(38px, 4.5vw, 60px);
  padding-bottom: clamp(38px, 4.5vw, 60px);
}

.py-5-4 {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.py-5-5 {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.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-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

.title-1 {
  font-size: clamp(2.125rem, 4.6vw, 3.75rem);
}

.subtitle-1 {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.16em;
  font-family: var(--secondary-font), sans-serif;
}
.subtitle-1::before {
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: var(--titleBG);
  margin-right: var(--space-3);
}

.primary-color-light {
  color: var(--primary-color-light);
}
.primary-color-dark {
  color: var(--primary-color-dark);
}
.secondary-color-light {
  color: var(--secondary-color-light);
}
.secondary-color-dark {
  color: var(--secondary-color-dark);
}
.tertiary-color {
  color: var(--tertiary-color);
}
.tertiary-color-light {
  color: var(--tertiary-color-light);
}
.tertiary-color-dark {
  color: var(--tertiary-color-dark);
}
.grey-light {
  color: var(--grey-light);
}
.color {
  color: var(--color);
}
.primary-font {
  font-family: var(--primary-font, sans-serif);
}
.secondary-font {
  font-family: var(--secondary-font, sans-serif);
}

.letter-sp-1 {
  letter-spacing: 0.14em;
}

.bar-left {
  position: relative;
  padding: 6px 0 6px var(--space-5);
}
.bar-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--background);
}

body {
  background: #fbf9f6;
}

.btn {
  padding: var(--space-4) 28px;
  font-weight: bold;
  font-family: var(--secondary-font), sans-serif;
  font-size: 1rem;
  border-radius: 12px;
}
.btn-light {
  border: 1.5px solid rgb(222, 214, 204);
  background-color: var(--white);
}
.btn-tertiary {
  background-color: var(--tertiary-color);
  color: var(--light);
}
.blog-tag-list--aside .blog-tag-list__cards {
  overflow-y: auto;
}

.container-custom {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}
.wrapper-small {
  max-width: 500px;
  display: block;
  margin: 0 auto;
}
.wrapper-custom {
  max-width: var(--maxWidth);
  display: block;
  margin: 0 auto;
}
.title-line-top {
  position: relative;
}
.title-line-top::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  background-color: var(--titleLineBg);
  margin-bottom: var(--space-2);
  border-radius: 2px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--primary-font, sans-serif);
}
p {
  font-family: var(--secondary-font, sans-serif);
}
.py-6 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.list-topic,
.list-custom {
  margin: 0;
}
.list-topic li,
.list-custom li {
  position: relative;
  list-style: none;
}
.list-custom li {
  border-bottom: var(--borderBottom, unset);
  padding-bottom: var(--paddingBottom, 0);
}
.list-topic li::before {
  content: "";
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--topicBg);
  margin-right: var(--space-2);
}
.list-custom li::before {
  content: var(--topicType);
  font-family: FontAwesome;
  display: inline-flex;
  color: var(--topicColor);
  margin-right: var(--space-2);
}

.list-fs-15 li {
  font-size: 0.9375rem;
}

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

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

.purple-dark {
  color: var(--purple-dark);
}

.line-divisor {
  width: 100%;
  height: var(--height);
  background: var(--background);
}

.btn-link {
  border-radius: 0;
  background-color: transparent;
  text-decoration: none;
  color: var(--color);
  border-bottom: 1px solid var(--color);
  padding: var(--space-1);
}
.btn-link-2 {
  border-radius: 0;
  background-color: transparent;
  text-decoration: none;
  color: var(--color);
  padding: var(--space-1);
}

.btn-send {
  display: inline-block;
}

.img-1 {
  width: 100%;
  height: var(--height, clamp(220px, 26vw, 320px));
  border-radius: 18px;
  object-fit: cover;
}
.navbar-expand-lg .navbar-nav .nav-link {
  font-size: 0.9375rem;
}
.box__line {
  width: var(--width);
  height: var(--height);
  background: var(--background);
  border-radius: var(--borderRadius, 2px);
}

.border-left {
  border-left: var(--borderLeft);
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  background-color: #fff;
  padding: 10px;
  min-width: 248px;
  max-width: 320px;
  border-radius: 18px;
}
.navbar-nav .nav-link span,
.navbar-nav
  .nav-link:not(.nav-link[title="Informações"], .nav-link[title="Contato"]) {
  font-size: 0.875rem;
  font-family: var(--secondary-font) !important;
  color: rgb(51, 48, 45);
  font-weight: 600;
}

.navbar-nav .nav-link[title="Blog"] + .dropdown-menu {
  display: none !important;
}
.navbar-nav .nav-link[title="Blog"]::after {
  content: "";
  display: none;
}

.dropdown-item {
  border-radius: 12px;
}
.dropdown-item:hover,
.nav-item.dropdown .dropdown-menu .dropdown-item.active {
  background-color: #fbf1ec;
  color: var(--dark);
}

.dropdown-item .menu-title {
  transition: 0.3s ease-out !important;
}

.dropdown-item:hover .menu-title {
  color: var(--primary-color);
}
.navbar-expand-lg .navbar-nav .nav-link,
.navbar-expand-lg .navbar-nav .nav-link span {
  font-size: 0.9375rem;
  transition: 0.3s ease-out !important;
}

header .nav-item .nav-link {
  border-bottom: 2px solid transparent;
}
header .nav-item .nav-link:not([title="Contato"]).active {
  color: var(--primary-color) !important;
  border-bottom-color: var(--primary-color);
}

@media (max-width: 576px) {
  .row [class*="col-12"] {
    margin: 10px 0;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }

  .navbar-expand-lg .navbar-nav .nav-link[title="Informações"],
  .navbar-expand-lg .navbar-nav .nav-link[title="Contato"] {
    color: var(--light);
    padding: 11px var(--space-5);
    border-radius: 11px;
    margin: 0 var(--space-1) 0 var(--space-1);
    transition: all 0.3s ease;
  }
  .navbar-expand-lg .navbar-nav .nav-link[title="Informações"] {
    background-color: var(--primary-color);
  }
  .navbar-expand-lg .navbar-nav .nav-link[title="Informações"]:hover {
    transform: translateY(-1px);
    box-shadow: rgba(251, 104, 76, 0.35) 0px 12px 28px;
    color: var(--light);
  }
  .navbar-expand-lg .navbar-nav .nav-link[title="Contato"]:hover {
    transform: translateY(-1px);
    box-shadow: rgba(33, 31, 30, 0.28) 0px 8px 20px;
  }
  .navbar-expand-lg .navbar-nav .nav-link[title="Contato"] {
    background-color: var(--dark);
  }
  .navbar-expand-lg .navbar-nav .nav-link[title="Informações"] span,
  .navbar-expand-lg .navbar-nav .nav-link[title="Contato"] span {
    color: var(--light);
  }
}
@media (min-width: 1280px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1280px;
  }
}
img {
  user-select: none;
  -webkit-user-drag: none;
}

.borderTop {
  border-top: var(--borderTop, 1px solid rgba(255, 255, 255, 0.12));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: rgba(251, 104, 76, 0.35) 0px 12px 28px;
}
.btn-secondary:hover {
  background-color: var(--secondary-color);
  box-shadow: rgba(248, 184, 49, 0.35) 0px 12px 28px;
}
.btn-light:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.22) 0px 14px 30px;
}
.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
}
.title-wrapper {
  max-width: var(--maxWidth);
}
.navbar-expand-lg
  .navbar-nav
  .nav-link:not([title="Informações"]):not([title="Contato"]).active
  span {
  color: var(--primary-color);
}
.navbar-expand-lg
  .navbar-nav
  .nav-link:not([title="Informações"]):not([title="Contato"]):hover
  span {
  color: var(--primary-color);
}

header .nav-item .nav-link:hover {
  color: var(--primary-color) !important;
}

header .nav-item .nav-link[title="Informações"]:hover::after {
  color: #fff;
}

.red {
  color: red;
}

.blog-inc__cover {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.blog-inc__content :is(h2, h3, h4) {
  color: #0a0a0a;
  font-weight: 700;
}

/* =============================== CARD =============================== */
.card--mod-16 {
  display: block;
  color: #fff;
  border-radius: 0.7rem;
  background-color: var(--primary-color);
  transition: 0.3s ease-out;
  overflow: hidden;
  transition: 0.4s;
}

.card--mod-16:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(27, 27, 27, 0.18);
  background-color: #343a40;
}

.card--mod-16 .card__image {
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.card--mod-16:hover .card__image {
  opacity: 0.8;
}

.card--mod-16 .card__title {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
  min-height: calc((0.875rem * 3) * 1.3);
  justify-content: center;
  margin: 0;
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.card--mod-16:hover,
.card--mod-16.active,
.card--mod-16:focus,
.card__title {
  color: #fff;
}

.container-800 {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container-800 {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container-800 {
    width: 800px;
  }
}

.list-topic li {
  font-size: 0.9375rem;
}
