@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 25px;
}

:root {
  /* --color1: #00BF63 !important; */
  --color1: #e0a652 !important;
  --color2: #000000 !important;
  --color3: #333333 !important;
  --color4: #161616 !important;
  --color5: #e0a652 !important;
  --color6: #1C1C1C !important;
  --accent-color: #e0a652;
  --primary-color: #d1d1d1;
  --text-color: #a0a0a0;
  --default-font: "Nata Sans", Arial, sans-serif;
  --body-font: "Nata Sans", Arial, sans-serif;

  /* White ========================================= */
  --white-005: rgba(255, 255, 255, 0.05);
  --white-01: rgba(255, 255, 255, 0.1);
  --white-02: rgba(255, 255, 255, 0.2);
  --white-03: rgba(255, 255, 255, 0.3);
  --white-04: rgba(255, 255, 255, 0.4);
  --white-05: rgba(255, 255, 255, 0.5);
  --white-06: rgba(255, 255, 255, 0.6);
  --white-07: rgba(255, 255, 255, 0.7);
  --white-08: rgba(255, 255, 255, 0.8);
  --white-09: rgba(255, 255, 255, 0.9);
  --white: #ffffff;

  /* Black ======================================== */
  --black-005: rgba(0, 0, 0, 0.05);
  --black-01: rgba(0, 0, 0, 0.1);
  --black-02: rgba(0, 0, 0, 0.2);
  --black-03: rgba(0, 0, 0, 0.3);
  --black-04: rgba(0, 0, 0, 0.4);
  --black-05: rgba(0, 0, 0, 0.5);
  --black-06: rgba(0, 0, 0, 0.6);
  --black-07: rgba(0, 0, 0, 0.7);
  --black-08: rgba(0, 0, 0, 0.8);
  --black-09: rgba(0, 0, 0, 0.9);
  --black: #0c0c0c !important;
}

/* White ========================================== */
.white-005 {
  color: var(--white-005);
}

.white-01 {
  color: var(--white-01);
}

.white-02 {
  color: var(--white-02);
}

.white-03 {
  color: var(--white-03);
}

.white-04 {
  color: var(--white-04);
}

.white-05 {
  color: var(--white-05);
}

.white-06 {
  color: var(--white-06);
}

.white-07 {
  color: var(--white-07);
}

.white-08 {
  color: var(--white-08);
}

.white-09 {
  color: var(--white-09);
}

.white {
  color: var(--white);
}

/* Black ========================================== */
.black-005 {
  color: var(--black-005);
}

.black-01 {
  color: var(--black-01);
}

.black-02 {
  color: var(--black-02);
}

.black-03 {
  color: var(--black-03);
}

.black-04 {
  color: var(--black-04);
}

.black-05 {
  color: var(--black-05);
}

.black-06 {
  color: var(--black-06);
}

.black-07 {
  color: var(--black-07);
}

.black-08 {
  color: var(--black-08);
}

.black-09 {
  color: var(--black-09);
}

.black {
  color: var(--black);
}

/* Colors ========================================= */
.color1 {
  color: var(--color1);
}

.color2 {
  color: var(--color2);
}

.color3 {
  color: var(--color3);
}

.color4 {
  color: var(--color4);
}

.color5 {
  color: var(--color5);
}

.bgcolor1 {
  background: var(--color1);
}

.bgcolor2 {
  background: var(--color2);
}

.bgcolor3 {
  background: var(--color3);
}

.bgcolor4 {
  background: var(--color4);
}

.bgcolor5 {
  background: var(--color5);
}

.bgcolor6 {
  background: var(--color6);
}

/* Default =============================================================================================================== */

.home {
  height: 600px;
}

.preloader {
  background-color: var(--color2) !important;
}

#loading-icon {
  top: 10% !important;
  left: 25% !important;
  width: 60px !important;
  animation: pulse 0.7s infinite ease-in-out !important;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.loading {
  border: 2px solid transparent;
}

a.navbar-brand {
  min-width: 220px;
}

.main-menu .nav-menu-wrapper {
  text-align: end;
}

i.brasil {
  width: 30px;
  height: 14px;
  margin-right: 5px;
  background: url(../images/icons/brasil.svg) no-repeat center;
  display: inline-block;
}

i.usa {
  width: 30px;
  height: 14px;
  margin-right: 5px;
  background: url(../images/icons/usa.svg) no-repeat center;
  display: inline-block;
}

.how-it-work {
  background-color: var(--secondary-color);
  padding: 100px 0;
  margin: 100px auto 0px auto;
  margin-bottom: 100px;
}

.section-title h1 {
  line-height: 1.2em;
}

.footer-box {
  background: #1c1c1c;
  margin-bottom: 0px;
}

.footer-logo img {
  max-width: 220px;
}

.footer-links ul li a,
.footer-social-links ul li a i,
.footer-info-box .icon-box i,
.footer-box p {
  color: var(--primary-color);
}

.footer-links ul li a:hover {
  font-weight: 700;
}

.footer-social-links ul li a:hover i {
  color: var(--color1);
}

.footer-links h3,
.footer-contact h3 {
  color: var(--primary-color);
}

.cta-box {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.simbolo-sobre {
  transform-box: fill-box;
  transform-origin: center;
  animation: jt-pulse 1.8s ease-in-out infinite;
  will-change: transform, opacity;
  width: 170px;
  height: 170px;
}

@keyframes jt-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.88;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.main-menu ul ul {
  border-radius: 8px;
}

.btn-default {
  border-radius: 6px;
  padding: 16px 52px 18px 24px;
  /* background: #d7d7d7; */
}

.main-menu ul li:hover>ul {
  padding: 10px 0;
}

.hero {
  padding: 270px 0 240px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icons/icon-title.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 18px;
  height: 18px;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/arrow-btn.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-20px, -50%);
  transition: all 0.4s ease-in-out;
}

/* .btn-default:hover::before {
    background-image: url(../images/icons/arrow-btn.svg);
} */
.faq-catagery-list ul li a::before {
  background-image: url(../images/icons/arrow-btn-w.svg);
}

.btn-default::after {
  transform: skew(0deg);
  transition: all 0.5s ease-in-out;
  background: var(--color5);
}

.readmore-btn:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/icons/arrow-btn-g.svg) no-repeat;
  background-position: right center;
  background-size: cover;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.achievements-item h3 {
  text-transform: none;
  padding-left: 0px;
}

.achievements-item h3::before {
  content: none;
  display: none;
}

.achievements-item h2 {
  text-transform: none;
  line-height: 1.3;
}

.author-content p,
.cta-counter-item p {
  text-transform: none;
}

.termos a {
  color: var(--text-color);
}

.termos a:hover {
  color: var(--white);
}

.page-contact-us {
  padding: 100px 0;
}

.icon-box i {
  color: var(--color2);
  font-size: 16px;
}

.sidebar-cta-box .icon-box img {
  width: 90px;
  height: 90px;
}

.faq-catagery-list {
  margin-bottom: 35px;
}

.page-header-box ol li.breadcrumb-item,
.contact-info-content h3,
.contact-form .form-label,
.footer-links h3,
.footer-contact h3,
.work-content h3,
.section-title h3 {
  text-transform: none;
}

.contact-form .form-control:focus {
  border-color: var(--color1);
}

.contact-info-item .icon-box::before {
  z-index: -1;
}

.post-social-sharing ul li a {
  border-radius: 50px;
}

.post-entry a {
  color: var(--color2);
}

.compartilhe {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
}

.work-image {
  overflow: hidden;
}

.work-image img {
  width: 100%;
  display: block;
  filter: grayscale(100%) brightness(0.85);
  transition: all 0.6s ease;
}

.work-image:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.post-featured-image {
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85);
  transition:
    filter 0.5s ease,
    transform 0.5s ease;
}

.post-item:hover .post-featured-image img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.work-content h3 {
  margin-bottom: 5px;
}

.work-body {
  gap: 10px;
  align-items: start;
}

.work-content {
  width: calc(100% - 60px);
}

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

.mb-100-2 {
  margin-bottom: 100px;
}

.page-service-single {
  position: relative;
  padding: 100px 0 70px;
}

.cta-box-content {
  margin-bottom: 0px;
}

.about-us-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 40px;
}

.google-map {
  padding: 0px 0px 100px 0px;
}

.testimonial-author {
  align-items: start;
}

.author-content h3 {
  text-transform: none;
  margin-bottom: 0px;
}

.cta-section-2 {
  background: #121212;
}

.cta-section-2 .cta-box-content p {
  /* color: #a0a0a0; */
  color: var(--white);
}

.work-image,
.work-image a,
.work-image img,
.about-us-img figure,
.about-us-img img {
  border-radius: 6px;
}

.work-item,
.testimonial-item,
.post-item,
.google-map-iframe iframe {
  border-radius: 10px;
}

.bg-section,
.contact-us-form {
  border-radius: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--white);
}

.main-menu .nav-menu-wrapper>ul>li>a {
  position: relative;
  color: var(--white) !important;
}

.main-menu .nav-menu-wrapper>ul>li>a::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 8px;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

.main-menu .nav-menu-wrapper>ul>li>a.active,
.main-menu .nav-menu-wrapper>ul>li>a:hover,
.main-menu .nav-menu-wrapper>ul>li>a:focus {
  color: var(--white) !important;
}

.main-menu .nav-menu-wrapper>ul>li>a.active::before,
.main-menu .nav-menu-wrapper>ul>li>a:hover::before,
.main-menu .nav-menu-wrapper>ul>li>a:focus::before {
  transform: scaleX(1);
}

.main-menu ul ul li a.active {
  color: inherit;
  padding: 8px 20px 8px 22px !important;
}

.slicknav_menu .slicknav_nav a.active {
  color: inherit;
  font-weight: 700;
}

.about-footer {
  max-width: 100%;
}

.contact-form .form-control,
.contact-info-item .icon-box,
.contact-info-item .icon-box::before,
.work-btn a {
  border-radius: 6px;
}

.cta-counter-item p,
.cta-counter-item h3 {
  color: var(--white);
}

.work-faq-accordion .work-accordion-item .accordion-button::after {
  background-image: url(../images/icons/arrow-btn-g.svg);
  background-color: transparent;
}

.work-faq-accordion .work-accordion-item .accordion-button.collapsed::after {
  background-image: url(../images/icons/arrow-btn-w.svg);
  background-color: transparent;
}

.work-2 .work-body {
  gap: 0;
}

.work-2 .work-body .work-content {
  width: 100%;
}

.work-2 .work-content h3 {
  margin-bottom: 15px;
}

.work-2 .work-image {
  margin-bottom: 22px;
}

span.text-style-vons {
  display: inline-block;
  color: var(--color1);
  font-size: 16px !important;
  font-weight: 600;
  margin-top: 100px;
  border-bottom: 2px solid var(--color1);
  letter-spacing: 0.02rem;
  padding-bottom: 4px;
}

.our-faqs-img img,
.our-faqs-img figure {
  border-radius: 8px;
}

.faq-accordion .accordion-item {
  border-radius: 8px;
}

.accordion-button span {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
}

/* Banners de ecossistema — grayscale apenas na foto, gradiente e conteúdo intactos */

/* Fallback estático (usado quando não há imagem dinâmica do banco) */
.hero.banner-jtc-incorporadora {
  --banner-bg: url(../images/banners/banner-jtc-incorporadora.webp);
}

.hero.banner-vons {
  --banner-bg: url(../images/banners/banner-vons.webp);
}

.hero.banner-mea-distressed-assets {
  --banner-bg: url(../images/banners/mea-distressed-assets.webp);
}

.hero.banner-jtc-incorporadora,
.hero.banner-vons,
.hero.banner-mea-distressed-assets,
.hero.banner-ecossistema {
  background: none;
  padding: 256px 0 150px;
}

/* ::after exibe a imagem (dinâmica via --banner-bg) com grayscale, atrás do gradiente */
.hero.banner-jtc-incorporadora::after,
.hero.banner-vons::after,
.hero.banner-mea-distressed-assets::after,
.hero.banner-ecossistema::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--banner-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: 0;
  /* atrás do ::before gradiente (z-index:1) e do conteúdo (z-index:2) */
}

/* .form-desk {
  min-height: 600px;
  min-width: 300px;
} */
.lista-home-beneficios ul {
  list-style: none;
  padding: 0;
}

.lista-home-beneficios li span {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 20px !important;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  font-family: var(--default-font);
}

.lista-home-beneficios ul {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.achievements-item {
  padding: 30px;
}

.about-us-image img {
  border-radius: 6px;
}

.contact-info-content h3 {
  margin-bottom: 0px;
}

.contact-info-item .icon-box {
  height: 44px;
  width: 44px;
  margin-right: 15px;
}

.contact-info-item {
  flex-wrap: nowrap;
  align-items: center;
}

.sidebar-cta-box,
.faq-catagery-list {
  border-radius: 8px;
}

.main-menu ul ul {
  background-color: var(--color3);
}

.main-menu ul ul li a {
  color: var(--white);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover {
  font-weight: 600;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--white);
  font-weight: 600;
}

.form-check-input:checked {
  background-color: #b1813f;
  border-color: #b1813f;
}

.form-check-input:focus {
  border-color: #b1813f;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(177, 129, 63, .25);
}

.service-box-item-content h3 {
  text-transform: none;
}

.our-services-nav ul li .nav-link::before {
  background-image: url(../images/icons/arrow-btn-w.svg);
}

.our-services-nav ul li .nav-link {
  border: none;
  border-radius: 8px;
}

.service-box-image figure,
.service-box-item {
  border-radius: 8px;
}

.service-box-image img {
  border-radius: 8px;
  filter: grayscale(100%);
  transition: all 0.5s ease-in-out;
}

.our-service-box:hover .service-box-image img {
  filter: grayscale(0%);
}

.our-services-nav ul li .nav-link.active,
.our-services-nav ul li .nav-link:hover {
  /* background: #d7d7d7; */
}

.hero.hero-slider-layout .hero-slide {
  padding: 300px 0 180px;
}

.page-header {
  padding: 45px 0px 60px 0px;
}

.hero.hero-slider-layout .hero-slide::before {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.4) -7.15%, #1C1C1C 100.25%);
}

.slicknav_btn {
  background: transparent;
}

.slicknav_icon .slicknav_icon-bar {
  background-color: var(--white);
  height: 2px;
  margin: 5px auto !important;
}

.slicknav_menu {
  background-color: #1C1C1C;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  color: #a0a0a0;
}

.service-benefits,
.service-design-process {
  margin-top: 0px;
}

.design-process-item-content h3 {
  text-transform: none;
}

.design-process-item-list {
  margin-top: 0px;
}

.hero-content {
  margin-right: 0;
}

.achievements-item,
.achievements-item:nth-of-type(2n + 2) {
  padding: 50px;
}

/* Responsive ============================================================================================================ */
@media (max-width: 1198px) {}

@media (max-width: 992px) {
  .hero {
    margin-top: -90px;
  }

  .lista-home-beneficios ul {
    flex-direction: column;
  }

  .compartilhe {
    margin-bottom: 20px;
  }

  .post-social-sharing ul {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .design-process-item-list {
    margin-top: 0px;
  }

  .how-it-work {
    margin-bottom: 50px;
  }

  .page-service-single {
    padding: 50px 0 20px;
  }

  .mb-100-2 {
    margin-bottom: 0px;
  }

  .mb-100 {
    margin-bottom: 50px;
  }

  .simbolo-sobre {
    width: 80px;
    height: 80px;
  }

  .btn-default {
    font-size: 14px;
    padding: 14px 40px 16px 20px;
  }

  .btn-default::before {
    width: 20px;
    height: 20px;
    transform: translate(-15px, -50%);
  }
}

@media (max-width: 600px) {

  .slicknav_nav .slicknav_row,
  .slicknav_nav li a {
    padding: 10px 20px;
  }

  header.main-header {
    border: none;
    background: #333333;
  }
}

@media (max-width: 500px) {}