@charset "UTF-8";
/* =========================================================
   FONTES GLOBAIS DO SITE
   ========================================================= */
/* Importa do Google Fonts (adicione no topo do seu main.scss ou no <head> do HTML)
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');
*/
/* ===============================
   BASE
   =============================== */
html,
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wdth" 100;
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===============================
     HEADINGS
     =============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-size: 42px;
}

/* ===============================
     BOTÕES E ELEMENTOS INTERATIVOS
     =============================== */
button,
input[type=submit],
.btn,
a.button,
.cta {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ===============================
     UTILITÁRIOS OPCIONAIS
     =============================== */
/* Força o uso da Inter */
.font-inter {
  font-family: "Inter", sans-serif !important;
}

/* Força o uso da Montserrat */
.font-montserrat {
  font-family: "Montserrat", sans-serif !important;
}

/* Força o uso da Roboto */
.font-roboto {
  font-family: "Roboto", sans-serif !important;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.page-template-blog header {
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.2);
  margin-bottom: 51px;
}

header {
  background: white;
  height: 93px;
  align-items: center;
  display: flex;
}
header .flex {
  justify-content: space-between;
}
header a.link {
  color: #00d4ac;
  border: 1px solid #00d4ac;
  height: 45px;
  width: 201px;
  font-size: 12px;
  letter-spacing: 1.35px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  transition: all 0.4s ease;
}
header a.link:hover {
  background-color: #00d4ac;
  color: white;
}

.ab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg_red {
  background-color: var(--red);
}

*:focus {
  outline: none;
}

.relative {
  position: relative;
}

.all {
  transition: all 0.4s ease;
}

ul li {
  list-style: none;
}

.wpcf7-not-valid {
  background: hsla(0, 100%, 64%, 0.1) !important;
  border: 1px solid #ff4747 !important;
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
}

.wpcf7-not-valid-tip {
  color: #ff4747;
  font-size: 14px;
  margin-top: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: 0;
  color: #ff4747;
  font-size: 14px;
  margin: 10px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
  font-size: 14px;
}

.al-center {
  align-items: center;
}

@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.slick-dots li button:before {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-disabled {
  opacity: 0.4;
}

strong {
  font-weight: var(--semi-bold);
}

html {
  padding: 0;
  margin-top: 0 !important;
}

html,
body {
  overflow-x: hidden;
}

html.is-active {
  overflow: hidden;
}

.menu_img {
  position: fixed;
  right: 0;
  z-index: 8;
  width: 67%;
  background: url(../imgs/menu_img.jpg) no-repeat;
  height: 100vh;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.menu_img.is-active {
  opacity: 1;
  visibility: visible;
}

#menu .logo {
  margin-inline: auto;
  margin-bottom: 3rem;
}
#menu .contato_menu {
  padding-left: 6rem;
  padding-top: 40px;
}
#menu .contato_menu a {
  color: #e5e2dd;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 600;
}
#menu .aviso {
  display: flex;
  font-family: var(--second-font);
  gap: 1.8rem;
  margin-top: 4rem;
}
#menu .aviso a {
  color: #e5e2dd;
  font-weight: 300;
  font-size: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid #d9d9d9;
  padding-inline: 6px;
  padding-bottom: 6px;
}

@media (max-width: 990px) {
  body {
    padding: 0;
    font-size: 14px;
  }
}
p {
  margin: 0.75rem 0;
  line-height: 28px;
}

.container {
  max-width: 1212px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 0.95rem;
  position: relative;
}

@media (max-width: 1190px) {
  .container {
    max-width: 990px;
    padding-inline: 1rem;
  }
}
.container-large {
  max-width: 1400px;
}

@media (max-width: 1390px) {
  .container-large {
    max-width: 1210px;
  }
}
.container-space {
  max-width: 1240px;
}

.container-small {
  max-width: 890px;
}

.container-litle {
  max-width: 840px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.center {
  text-align: center;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

h2 {
  font-weight: initial;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 62px;
  height: 62px;
  z-index: 2;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  display: none;
}

.hamburger {
  position: fixed;
  right: 1rem;
  z-index: 99;
  top: 26px;
  transition: all 0.4s ease;
  padding: 5px;
}
@media (min-width: 990px) {
  .hamburger {
    display: none;
  }
}
.hamburger.ativo {
  top: 15px;
  transform: scale(0.7);
}

.hamburger .line {
  width: 24px;
  height: 2px;
  border-radius: 2rem;
  background-color: #00d4ac;
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line {
  background-color: #00d4ac !important;
}

.hamburger.ativo .line {
  background-color: #00d4ac;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

.hamburger#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-49deg);
}

a.link {
  border: 1px solid white;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px;
  text-align: center;
  color: white;
  display: block;
}

.hero {
  position: relative;
  background: #000;
  color: #ffffff;
}
.hero.interno_empreendimento {
  position: relative;
}
.hero.interno_empreendimento .ver_gal {
  position: absolute;
  top: 60px;
  right: 60px;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  height: 45px;
  width: 166px;
  align-items: center;
  gap: 10px;
  z-index: 99;
  color: white;
  font-weight: 700;
  letter-spacing: 1.35px;
  justify-content: center;
  border-radius: 4px;
}
.hero.interno_empreendimento .emp-badge {
  background-color: #00d4ac;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  height: 61px;
  border: 0;
  color: white;
  gap: 16px;
  width: 230px;
  position: inherit;
  margin-bottom: 30px;
}
.hero.interno_empreendimento .emp-badge img {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}
.hero.interno_empreendimento .box_texto {
  background-color: hsla(185, 50%, 13%, 0.8);
  width: 601px;
  height: 496px;
  color: #f0f1ff;
  border-radius: 0 19rem 0 0;
  display: flex;
  align-items: center;
  padding: 0 91px 0 70px;
  margin-top: 16rem;
}
.hero.interno_empreendimento .box_texto h2 {
  color: #00d4ac;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -1.35px;
  font-weight: 600;
}
.hero.interno_empreendimento .box_texto h3 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1.3px;
}
.hero.interno_empreendimento .box_texto .link {
  width: 195px;
  margin-top: 48px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 1.35px;
}
.hero.interno_empreendimento .box_texto .link:hover {
  background-color: white;
  color: #717171;
}
.hero .hero-slider {
  width: 100%;
  height: 720px;
  position: relative;
  overflow: hidden;
}
.hero .hero-slider .box_texto {
  background-color: hsla(185, 50%, 13%, 0.8);
  width: 601px;
  height: 500px;
  color: #f0f1ff;
  border-radius: 0 19rem 0 0;
  display: flex;
  align-items: center;
  padding: 0 91px 0 70px;
  margin-top: 14rem;
}
.hero .hero-slider .box_texto h2 {
  color: white;
  font-size: 42px;
}
.hero .hero-slider .box_texto .link {
  width: 195px;
  margin-top: 48px;
}
.hero .hero-slider .box_texto .link:hover {
  background-color: white;
  color: #717171;
}
.hero .hero-slider .box_infos {
  color: #717171;
  font-size: 14px;
  background-color: white;
  padding-inline: 72px;
  padding-block: 32px;
  width: 900px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: -10rem;
  position: relative;
  z-index: 9;
}
.hero .hero-slider .box_infos h3 {
  font-size: 14px;
  color: #1f2128;
}
.hero .hero-slider .swiper-wrapper,
.hero .hero-slider .swiper-slide {
  height: 100%;
}
.hero .hero-slider .swiper-slide {
  position: relative;
  background-size: cover;
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-content: center;
}
.hero .hero-slider .swiper-slide img,
.hero .hero-slider .swiper-slide picture,
.hero .hero-slider .swiper-slide video,
.hero .hero-slider .swiper-slide iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero .hero-slider {
  /* CONTROLES */
}
.hero .hero-slider .hero-controls {
  position: absolute;
  right: clamp(16px, 6vw, 80px);
  bottom: clamp(18px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 13px);
  z-index: 5;
  pointer-events: none;
  width: 263px;
}
.hero .hero-slider .hero-controls .hero-fraction {
  font-weight: 300;
  font-size: clamp(12px, 3.6vw, 16px);
  letter-spacing: 0.5px;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}
.hero .hero-slider .hero-controls .hero-fraction .sep {
  opacity: 0.85;
  margin: 0 0.15em;
}
.hero .hero-slider .hero-controls .hero-progress {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35));
  position: relative;
  overflow: hidden;
}
.hero .hero-slider .hero-controls .hero-progress .bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #ffffff;
  border-radius: inherit;
  transition: width 600ms ease;
}
.hero .hero-slider .hero-controls .hero-next {
  pointer-events: auto;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.hero .hero-slider .hero-controls .hero-next:hover {
  transform: translateY(-2px) scale(1.03);
}
.hero .hero-slider .hero-controls .hero-next:active {
  transform: translateY(0) scale(0.98);
}
.hero .hero-slider .hero-controls .hero-next svg {
  display: block;
}
.hero_blog {
  margin-bottom: 0;
}
.hero_blog .hero-slider {
  height: 570px;
}
.hero_blog .hero-meta__cat {
  position: absolute;
  background-color: white;
  top: 0;
  right: 0;
  color: black;
  font-size: 12px;
  padding: 10px 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.hero_blog .swiper-slide h2 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: white;
  margin-bottom: 2px;
}
.hero_blog .swiper-slide:after {
  content: "";
  position: absolute;
  background: url(../imgs/gradient.svg) no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: 2;
}
.hero_blog .texto {
  z-index: 9;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.hero_blog .texto .hero-meta__date {
  font-size: 12px;
}

/* Responsivo leve: quando a largura for bem pequena, encolhe a fração */
@media (max-width: 480px) {
  .hero .hero-slider .hero-controls .hero-fraction {
    font-size: 14px;
  }
}
#empreendimento.empreendimento-home {
  margin-top: 105px;
  text-align: center;
  color: #717171;
}
#empreendimento.empreendimento-home .tt {
  margin-bottom: 40px;
}
#empreendimento.empreendimento-home h2 {
  width: min(100%, 551px);
  font-size: 42px;
  margin-inline: auto;
  color: #1b1b1b;
}

/* GRID com variações por quantidade */
.emp-grid {
  display: grid;
  gap: 24px;
}

/* 1 item: 100% */
.emp-grid--cols-1 {
  grid-template-columns: 1fr;
}

/* 2 itens: 50/50 no desktop */
.emp-grid--cols-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .emp-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 3 itens: 3 colunas no desktop */
.emp-grid--cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .emp-grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .emp-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* CARD base */
.emp-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  min-height: 326px;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 21px;
}

.emp-card__media {
  position: relative;
  display: block;
  padding: 11px;
  height: 270px;
}

.emp-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}

.emp-badge {
  position: absolute;
  top: 21px;
  left: 16px;
  background: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #474747;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.emp-card__body {
  padding: 0 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.emp-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.emp-card__title a {
  color: inherit;
  text-decoration: none;
}

.emp-card__subtitle {
  margin: 0 0 16px;
  color: #7a7a7a;
  font-size: 15px;
}

.emp-grid--cols-1 .emp-hero__media img {
  width: 100%;
  height: 306px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.emp-grid--cols-1 .emp-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
}
.emp-grid--cols-1 .emp-card__media--placeholder {
  width: 100%;
  height: 306px;
  background: #cfcfcf;
}

.emp-grid--cols-2 .emp-card__media img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.emp-grid--cols-2 .emp-card__media {
  position: relative;
  display: block;
  aspect-ratio: 19/9;
}
.emp-grid--cols-2 .emp-card__media--placeholder {
  width: 100%;
  height: 271px;
  background: #cfcfcf;
}

/* pílulas */
.emp-specs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.emp-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.emp-specs li .img {
  border: 1px solid #eaeaea;
  width: 24px;
  border-radius: 100px;
  padding: 2px;
  display: inline-block;
  height: 24px;
  display: flex;
}
.emp-specs li .img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 14px;
  margin-inline: auto;
}

.emp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fafafa;
  border: 1px solid #eee;
  font-size: 14px;
  color: #222;
}

/* ícones (troque pelos seus SVGs) */
.emp-ico {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
  mask-size: cover;
  -webkit-mask-size: cover;
}

.emp-ico--bed {
  mask-image: url("/path/ico-bed.svg");
  -webkit-mask-image: url("/path/ico-bed.svg");
}

.emp-ico--bath {
  mask-image: url("/path/ico-bath.svg");
  -webkit-mask-image: url("/path/ico-bath.svg");
}

.emp-ico--area {
  mask-image: url("/path/ico-area.svg");
  -webkit-mask-image: url("/path/ico-area.svg");
}

.emp-ico--garage {
  mask-image: url("/path/ico-stairs.svg");
  -webkit-mask-image: url("/path/ico-stairs.svg");
}

/* botão */
.emp-btn {
  align-self: flex-start;
  display: inline-block;
  padding: 14px 22px;
  border-radius: 4px;
  border: 2px solid #00d4ac;
  background: #fff;
  color: #00d4ac;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  font-size: 12px;
  letter-spacing: 1.35px;
  width: 89%;
  text-align: center;
  margin-inline: auto;
}

.emp-btn:hover {
  background: #2ecc9a;
  color: #fff;
}

/* HERO (quando 1 item) */
.emp-card--hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 18px;
}

@media (min-width: 992px) {
  .emp-card--hero {
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
  }
}
.emp-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 16px 24px 24px;
}

.emp-hero__media {
  position: relative;
  display: block;
  border-radius: 18px;
  background: #d1d1d1;
  overflow: hidden;
}

.emp-hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.emp-hero__media .emp-badge {
  position: absolute;
  top: 21px;
  left: 16px;
  background: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #474747;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: -moz-max-content;
  width: max-content;
}
.emp-hero__media .emp-badge img {
  width: 16px;
  height: auto;
}

.featured-slider {
  position: relative;
  margin-top: 6rem;
}
.featured-slider .swiper {
  width: 100%;
}
.featured-slider .swiper-slide {
  display: flex;
}
.featured-slider .card {
  display: grid;
  grid-template-columns: minmax(520px, 760px) 1fr;
  align-items: stretch;
  width: 100%;
  min-height: 560px;
  background: transparent;
  border-radius: 28px;
  color: white;
}
.featured-slider .card h2 {
  margin-left: 24px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  color: white;
}
.featured-slider .card p {
  margin-left: 24px;
  max-width: 410px;
  line-height: 1.75;
  color: white;
}
.featured-slider .card__left {
  position: relative;
  padding: 56px 40px 40px;
  background: #3a7e77;
  color: #eaf1f0;
  border-radius: 28px 28px 0 0;
  width: 771px;
  height: 675px;
  border-radius: 28px 18rem 28px 28px;
}
.featured-slider .card__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 20px;
  width: 592px;
  background: url(../imgs/bg_line_slider.svg) no-repeat left;
  pointer-events: none;
}
.featured-slider .card__right {
  position: relative;
  min-height: 560px;
  width: 567px;
  border-radius: 18rem 28px 28px 28px;
}
.featured-slider .card__right .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 18rem 28px 28px 28px;
  filter: contrast(1) saturate(1.05);
}
.featured-slider .card .badge {
  display: block;
  margin-left: 24px;
  margin-bottom: 42px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #bdffe4;
}
.featured-slider .card__features {
  margin: 42px 0 42px 24px;
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  color: #f0f1ff;
}
.featured-slider .card__feature {
  color: #f0f1ff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  opacity: 0.98;
}
.featured-slider .card__feature svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.featured-slider .card .card__actions {
  display: flex;
  gap: 18px;
  margin-left: 24px;
  align-items: center;
}
.featured-slider .card .card__actions .link {
  font-size: 12px;
  padding-block: 12px;
  padding-inline: 21px;
  letter-spacing: 2px;
  width: 221px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-slider .card .btn-ghost {
  background: transparent;
  color: #fff;
  border: 0;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 12px;
  text-decoration: underline;
  text-transform: uppercase;
}
.featured-slider .card .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}
.featured-slider .slider-ctrl {
  position: absolute;
  left: initial;
  right: 5rem;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 50;
  pointer-events: none;
  width: 430px;
  pointer-events: none;
}
.featured-slider .slider-ctrl > * {
  pointer-events: auto;
}
.featured-slider .ctrl__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  color: #fff;
  backdrop-filter: blur(2px);
  transition: transform 0.18s ease;
}
.featured-slider .ctrl__btn.swiper-button-prev {
  left: -50px;
}
.featured-slider .ctrl__btn.swiper-button-next {
  right: -50px;
}
.featured-slider .ctrl__btn svg {
  width: 26px;
  height: 26px;
}
.featured-slider .ctrl__btn:hover {
  transform: translateY(-1px);
}
.featured-slider .ctrl__btn.is-hidden {
  opacity: 0.35;
  pointer-events: none;
}
.featured-slider .ctrl__center {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}
.featured-slider .ctrl__fraction .curr,
.featured-slider .ctrl__fraction .tot {
  display: inline-block;
  min-width: 0.6em;
  text-align: center;
}
.featured-slider .ctrl__progress {
  position: relative;
  height: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
}
.featured-slider .ctrl__progress .ctrl__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #fff;
  border-radius: 999px;
  transition: width 0.28s ease;
}
@media (max-width: 1024px) {
  .featured-slider .card {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .featured-slider .card__left {
    border-radius: 28px 28px 0 0;
  }
  .featured-slider .card__right {
    height: 360px;
    border-radius: 0 0 28px 28px;
  }
  .featured-slider .slider-ctrl {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .featured-slider .ctrl__btn {
    width: 62px;
    height: 62px;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

#geral {
  background-color: #113033;
  padding-top: 600px;
  margin-top: -31rem;
}
#geral * {
  color: white;
}
#geral {
  /* ---- CONTEÚDO GENÉRICO ANTES/DEPOIS PARA TESTE ---- */
  /* Container que desliza verticalmente entre os painéis */
}
#geral .snap-section .slides {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  display: block;
  transform: translate3d(0, 0, 0);
  transition: transform 650ms ease; /* duração da troca */
  will-change: transform;
}
#geral {
  /* Cada painel ocupa a tela inteira */
}
#geral .snap-section .panel {
  height: 100vh;
  width: 100%;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(24px, 6vw, 64px);
}
#geral {
  /* Exemplos de fundos diferentes para visualizar as telas */
}
#geral .panel:nth-child(1) {
  background: linear-gradient(180deg, #171923 0%, #0e0e12 100%);
}
#geral .panel:nth-child(2) {
  background: linear-gradient(180deg, #202433 0%, #0e0e12 100%);
}
#geral .panel:nth-child(3) {
  background: linear-gradient(180deg, #1a2b3c 0%, #0e0e12 100%);
}
#geral .panel:nth-child(4) {
  background: linear-gradient(180deg, #12303f 0%, #0e0e12 100%);
}
#geral {
  /* ---- PAGINAÇÃO (bolinhas) ---- */
}
#geral .pagination {
  position: absolute;
  right: clamp(12px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
}
#geral .pagination li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
#geral .pagination li.active {
  background: #fff;
  transform: scale(1.2);
}
#geral {
  /* Acessibilidade visual opcional para foco por teclado */
}
#geral .pagination li:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.snap-section:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../imgs/dots.svg) no-repeat;
  width: 273px;
  height: 135px;
  z-index: 3;
  pointer-events: none;
}
.snap-section .slides:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #113033;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(17, 48, 51, 0.5) 0%, rgb(17, 48, 51) 100%);
}

/* ---- CONTEÚDO GENÉRICO ANTES/DEPOIS PARA TESTE ---- */
.spacer {
  padding: 600px 0 0;
  background-color: #113033;
  margin-top: -32rem;
}

/* ---- SEÇÃO DO SLIDER ---- */
.snap-section {
  height: calc(var(--vh, 1vh) * 100);
  /* ocupa a janela inteira */
  overflow: hidden;
  /* evita vazamento enquanto navega entre painéis */
  position: relative;
  background: #0e0e12;
  color: #fff;
  /* Dica: se existir algum ancestor com overflow/transform pode afetar a visibilidade */
}

/* Container que desliza verticalmente entre os painéis */
.snap-section .slides {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  display: block;
  transform: translate3d(0, 0, 0);
  transition: transform 650ms ease;
  /* duração da troca */
  will-change: transform;
}

/* Cada painel ocupa a tela inteira */
.snap-section .panel {
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(24px, 6vw, 64px);
}

/* Exemplos de fundos diferentes para visualizar as telas */
.panel:nth-child(1) {
  background: linear-gradient(180deg, #171923 0%, #0e0e12 100%);
}

.panel:nth-child(2) {
  background: linear-gradient(180deg, #202433 0%, #0e0e12 100%);
}

.panel:nth-child(3) {
  background: linear-gradient(180deg, #1a2b3c 0%, #0e0e12 100%);
}

.panel:nth-child(4) {
  background: linear-gradient(180deg, #12303f 0%, #0e0e12 100%);
}

/* ---- PAGINAÇÃO (bolinhas) ---- */
.pagination {
  position: absolute;
  right: clamp(22px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination li {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3rem;
  position: relative;
  margin-bottom: 30px;
}
.pagination li:after {
  opacity: 0;
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #00d4ac;
  position: absolute;
  border-radius: 10rem;
  left: -12px;
  top: -14px;
  transition: all 0.4s ease;
}

.pagination li.active {
  background-color: #00d4ac;
}
.pagination li.active:after {
  opacity: 1;
}

/* Container dos painéis (FADE: sem translate) */
.snap-section .slides {
  height: 100%;
  width: 100%;
  position: relative;
  inset: 0;
  display: block;
}

/* Cada painel ocupa a tela inteira e fica empilhado */
.snap-section .panel {
  position: absolute;
  inset: 0;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(24px, 6vw, 64px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease; /* duração do fade */
}

/* Painel ativo aparece */
.snap-section .panel.active {
  opacity: 1;
  pointer-events: auto;
}

.snap-section .text {
  position: relative;
  z-index: 4;
  color: white;
  width: 600px;
}
.snap-section .text h3 {
  font-size: 18px;
  color: #bdffe4;
  text-transform: uppercase;
  margin-bottom: 42px;
}
.snap-section .text .link {
  margin-top: 42px;
  display: flex;
  height: 45px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}
.snap-section .text .link:hover {
  background-color: #00d4ac;
}
.snap-section h2 {
  color: white;
  font-size: 42px;
  letter-spacing: 1px;
}

#oq {
  margin-top: 143px;
  position: relative;
}
#oq:after {
  content: "";
  background: url(../imgs/line1.svg) no-repeat;
  position: absolute;
  top: -40px;
  left: 1rem;
  height: 140px;
  width: 100%;
}
#oq h2 {
  font-size: 42px;
  margin-bottom: 7rem;
}
#oq .grid {
  margin-top: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}
#oq .grid .box {
  border: 1px solid #f3f3f3;
  border-radius: 12px;
  padding: 24px;
  color: #717171;
}
#oq .grid .box img {
  margin-bottom: 24px;
}
#oq .grid h3 {
  font-size: 18px;
  color: black;
  letter-spacing: 1px;
  font-weight: 400;
}

/* === seu CSS atual de desktop permanece === */
/* MOBILE: quando viramos Swiper */
@media (max-width: 768px) {
  #oq .grid.is-mobile {
    display: block; /* override do display:grid */
    padding-left: 20px; /* “respiro” à esquerda como no layout */
    padding-right: 8px;
    padding-bottom: 3rem;
  }
  /* largura: 1 card inteiro + ~metade do próximo */
  #oq .grid.is-mobile .swiper-slide {
    width: 72%; /* ajuste 68–78% conforme mock */
    height: auto;
    padding-right: 16px; /* gap entre cards */
  }
  #oq .grid.is-mobile .box {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 24px;
  }
  #oq .grid.is-mobile .box img {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
  }
  #oq .grid.is-mobile .box h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px;
  }
  #oq .grid.is-mobile .box p {
    font-size: 16px;
    line-height: 1.6;
    color: #8a8a8a;
    margin: 0;
  }
  /* paginação (opcional) */
  .oq-pagination {
    margin: 14px 20px 0;
    text-align: left;
  }
  .oq-pagination .swiper-pagination-bullet {
    background: #cfd8d6;
    opacity: 1;
    width: 6px;
    height: 6px;
    margin: 0 3px !important;
  }
  .oq-pagination .swiper-pagination-bullet-active {
    background: #2fa38b;
  }
}
.content-cards {
  padding: clamp(24px, 5vw, 56px) 0;
  margin-top: 80px;
}
.content-cards__title {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.1;
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 36px);
  letter-spacing: 0.02em;
}
.content-cards {
  /* ——— CARD ——— */
}
.content-cards .post-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #f5f5f5;
  transition: transform 0.2s ease;
}
.content-cards .post-card:hover {
  transform: translateY(-2px);
}
.content-cards .post-card__media {
  position: relative;
  background: #e9e9e9;
  aspect-ratio: 16/11; /* altura como no layout */
  display: grid;
  place-items: center;
}
.content-cards .post-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.content-cards .post-card__placeholder {
  width: 100%;
  height: 100%;
  background: #ddd;
  display: grid;
  place-items: center;
}
.content-cards .post-card__placeholder .post-card__ph-icon {
  width: 56px;
  height: 56px;
  border: 2px solid #c9c9c9;
  border-radius: 6px;
  position: relative;
}
.content-cards .post-card__placeholder .post-card__ph-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 16px;
  border-top: 2px solid #c9c9c9;
  transform: skewX(-12deg);
}
.content-cards .post-card__date {
  position: absolute;
  left: 20px;
  bottom: -24px;
  background: #347e73;
  color: #fff;
  border-radius: 5px;
  padding: 21px 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  min-width: 92px;
}
.content-cards .post-card__date .day {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.content-cards .post-card__date .mon {
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-top: 4px;
}
.content-cards .post-card__body {
  padding: 50px 24px 24px; /* 40 para acomodar o “badge” que desce */
  background-color: #f5f5f5;
}
.content-cards .post-card__title {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 12px;
}
.content-cards .post-card__title a {
  color: inherit;
  text-decoration: none;
}
.content-cards .post-card__excerpt {
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.content-cards {
  /* ——— GRID no desktop ——— */
  /* Quando o Swiper está desabilitado, colocamos a classe .is-grid via JS */
}
.content-cards .posts-swiper.is-grid .swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}
.content-cards .posts-swiper.is-grid .swiper-slide {
  width: auto !important;
}
.content-cards {
  /* deixar o grid controlar */
  /* ——— Mobile (Swiper ativo) ——— */
}
@media (max-width: 767.98px) {
  .content-cards .posts-swiper {
    padding-bottom: 28px;
  }
  .content-cards {
    /* espaço para os bullets */
  }
  .content-cards .swiper-pagination-bullets .swiper-pagination-bullet {
    opacity: 0.35;
  }
  .content-cards .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

.cta-invest {
  margin-top: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  width: 1007px;
  height: 305px;
  margin-inline: auto;
  /* fundo: degradê + vinheta diagonal */
  background: #113033 url(../imgs/mask_invista.png) no-repeat center;
  background-size: cover;
  padding-right: 62px;
  /* padding global; nos breakpoints ajusto via grid */
  padding-block: 20px;
}
.cta-invest .link {
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.cta-invest .link:hover {
  background-color: white;
  color: #00d4ac;
}
.cta-invest__left {
  padding-left: 7rem;
}
.cta-invest__corner {
  position: absolute;
  top: clamp(14px, 2.5vw, 28px);
  left: clamp(14px, 2.5vw, 28px);
  width: clamp(120px, 18vw, 220px);
  height: clamp(90px, 12vw, 160px);
  pointer-events: none;
  opacity: 0.9;
}
.cta-invest__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  min-height: 280px;
}
.cta-invest__title {
  font-weight: 700;
  color: white;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(28px, 4.4vw, 42px);
}
.cta-invest__text {
  font-size: clamp(16px, 1.4vw, 16px);
  line-height: 1.7;
  margin: 0 0 clamp(18px, 2.2vw, 28px) 0;
  max-width: 45ch;
}
.cta-invest .btn {
  --radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s ease;
}
.cta-invest .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.cta-invest .btn-outline:hover {
  border-color: #fff;
  transform: translateY(-1px);
}
.cta-invest {
  /* ——— MOBILE (layout da segunda imagem) ——— */
}
@media (max-width: 768px) {
  .cta-invest .cta-invest {
    border-radius: 20px;
  }
  .cta-invest .cta-invest__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding: 20px; /* “respiro” interno como no mock */
  }
  .cta-invest .cta-invest__title {
    margin-top: clamp(40px, 10vw, 56px); /* espaço sob o canto em L */
    font-size: clamp(30px, 7vw, 40px);
  }
  .cta-invest .cta-invest__text {
    max-width: none;
  }
  .cta-invest .cta-invest .btn {
    width: 100%;
    padding: 16px 22px;
    border-radius: 10px;
  }
}

/* botão */
.consultor {
  position: relative;
  padding: 48px 0 24px;
  background: #fff;
  margin-top: 100px;
}
.consultor .title {
  position: absolute;
  top: -17rem;
}
.consultor__curve {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 220px; /* ajusta a altura do SVG decorativo */
  pointer-events: none;
}
.consultor__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.consultor__title {
  font-size: clamp(32px, 5.4vw, 42px);
  line-height: 1.05;
  margin: 28px 0 24px;
  color: black;
  font-weight: 600;
}
.consultor__lead {
  color: #7a7a7a;
  max-width: 38ch;
  margin: 0 0 36px;
}
.consultor__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

/* contato item */
.contact {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
}
.contact__icon {
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1f2937;
}
.contact__icon svg {
  width: 48px;
  height: 48px;
}
.contact__text small {
  display: block;
  color: hsla(0, 0%, 12%, 0.6);
  margin-bottom: 4px;
}
.contact__text a {
  color: black;
}
.contact__text strong {
  color: black;
  font-weight: 700;
}

/* form */
.form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.field__label {
  font-weight: 700;
  font-size: 18px;
}
.field__control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: #f5f5f5;
  border: 0;
  border-radius: 10px;
  padding: 16px 14px;
  font-size: 16px;
  color: #1f2937;
  outline: none;
  transition: box-shadow 0.15s ease, background 0.15s ease;
}
.field__control:focus {
  box-shadow: 0 0 0 3px rgba(46, 176, 140, 0.25);
  background: #f9f9f9;
}
.field select.field__control {
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 24px) calc(1em + 2px), calc(100% - 18px) calc(1em + 2px), 100% 0;
  background-size: 6px 6px, 6px 6px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 142px;
  height: 45px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-send {
  background: #fff;
  color: #00d4ac;
  border: 1px solid #00d4ac;
  max-width: 180px;
}
.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* responsivo */
@media (max-width: 980px) {
  .consultor {
    padding-top: 36px;
  }
  .consultor__curve {
    height: 200px;
  }
  .consultor__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .consultor__lead {
    max-width: none;
  }
  .consultor .btn-send {
    max-width: 100%;
  }
}
footer.footer-cta {
  background-color: #113033;
  border-radius: 20rem 0 0 0;
  min-height: 250px;
  margin-top: 200px;
  padding-top: 110px;
  padding-bottom: 110px;
}
footer.footer-cta .contact__text {
  color: white;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 32px;
}
footer.footer-cta .contact__text.end {
  width: 300px;
}
footer.footer-cta .contact__text small,
footer.footer-cta .contact__text a {
  color: white;
  margin-bottom: 0;
}
footer.footer-cta .contact__text a {
  display: block;
  font-weight: 500;
  letter-spacing: 1.3px;
}
footer.footer-cta .link {
  width: 240px;
  border: 1px solid #00d4ac;
  color: #00d4ac;
  height: 45px;
  font-size: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
}
footer.footer-cta .link:hover {
  background-color: #00d4ac;
  color: white;
}
footer.footer-cta .footer-cta {
  background: #142b2c; /* verde-azulado bem escuro do layout */
  color: #eaf4f2;
  padding: clamp(28px, 4vw, 56px) 0;
}
footer.footer-cta .footer-cta__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
}
footer.footer-cta .footer-cta {
  /* ——— Esquerda ——— */
}
footer.footer-cta .footer-cta .brand {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
  text-decoration: none;
}
footer.footer-cta .footer-cta .brand__box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #9bf2c9;
  color: #0f2728;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
footer.footer-cta .footer-cta .brand small {
  color: #a6d7cc;
  margin-left: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
footer.footer-cta .footer-cta__title {
  font-size: clamp(32px, 5.5vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  margin: 24px 0;
  color: #f3fbfa;
  letter-spacing: 1.3px;
}
footer.footer-cta .footer-cta {
  /* ——— Navegação ——— */
}
footer.footer-cta .footer-cta__nav-title {
  color: #fff;
  font-size: 21px;
  margin: 4px 0 16px;
}
footer.footer-cta .footer-cta__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
footer.footer-cta .footer-cta__links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.15s;
  font-size: 14px;
  letter-spacing: 1.58px;
}
footer.footer-cta .footer-cta__links a:hover {
  color: #eaf4f2;
}
footer.footer-cta .footer-cta {
  /* ——— Sociais ——— */
}
footer.footer-cta .footer-cta__social {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
}
footer.footer-cta .footer-cta .social {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #cfe7e1;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
footer.footer-cta .footer-cta .social a {
  color: white;
}
footer.footer-cta .footer-cta .social svg {
  width: 20px;
  height: 20px;
}
footer.footer-cta .footer-cta .social:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
footer.footer-cta .footer-cta {
  /* ——— Responsivo ——— */
}
@media (max-width: 980px) {
  footer.footer-cta .footer-cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  footer.footer-cta .footer-cta__social {
    flex-direction: row;
    justify-content: flex-end;
  }
}
@media (max-width: 680px) {
  footer.footer-cta .footer-cta__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  footer.footer-cta .footer-cta__links {
    grid-template-columns: 1fr;
  }
  footer.footer-cta .footer-cta .btn-outline {
    width: 100%;
    max-width: 320px;
  }
  footer.footer-cta .footer-cta__social {
    justify-content: flex-start;
  }
}

.main-nav {
  --gap: 40px;
  --txt: #111827;
  --muted: #6b7280;
}
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
}

.menu {
  display: flex;
  gap: var(--gap);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu > li > a,
.menu .trigger {
  font: 600 16px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--txt);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 10px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* dropdown container */
.has-sub {
  position: relative;
}

.submenu {
  position: absolute;
  top: 44px;
  left: -12px;
  min-width: 220px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 30;
}

.has-sub.open .submenu {
  display: block;
}

/* itens do dropdown (estilo do mock) */
.submenu > li {
  list-style: none;
}

.submenu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.1s ease, color 0.15s ease;
}

.submenu a:hover,
.submenu a:focus {
  background: #f3f4f6; /* “pílula” cinza claro */
}

/* micro-interação: leve destaque ao pairar no trigger */
.has-sub.open > .trigger .chev {
  transform: rotate(180deg);
}

.main-nav {
  position: relative;
  z-index: 20;
}

.main-nav .has-sub {
  position: relative;
}

.main-nav .submenu {
  position: absolute;
  top: 100%; /* encosta logo abaixo do item */
  left: -12px;
  margin-top: 8px; /* pequeno espaçamento visual */
  z-index: 50;
  border-radius: 12px;
}
.main-nav .submenu a {
  font-size: 14px;
}

/* cria uma “ponte” clicável entre o trigger e o submenu */
.main-nav .submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px; /* cobre o “gap” */
  height: 12px;
  /* transparente, só serve para manter o hover */
}

/* garante que nada do header esteja por cima do dropdown */
header,
.site-header {
  position: relative;
  z-index: 10;
}

.filtro-emp {
  --h: 72px;
  --pad: 28px;
  --sep: #e5e5e5;
  --ring: #d3d3d3;
  --green: #57d6b0;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  border: 1px solid var(--ring);
  border-radius: 999px;
  padding: 0 var(--h) 0 var(--pad);
  height: var(--h);
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding-inline-end: 6px;
  margin-bottom: 60px;
  margin-top: 50px;
}

.filtro-emp__item {
  font-weight: 500;
  text-transform: lowercase;
  color: black;
  text-align: left;
}

.filtro-emp__item > span {
  pointer-events: none;
  font-size: 18px;
  display: block;
}

.filtro-emp select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: #717171;
  min-width: 160px;
  outline: none;
}

.filtro-emp select:disabled {
  color: #9ca3af;
}

.filtro-emp__div {
  width: 1px;
  height: 100%;
  background: var(--sep);
}

.filtro-emp__submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(var(--h) - 12px);
  height: calc(var(--h) - 12px);
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(87, 214, 176, 0.35);
}

.filtro-emp__submit svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 960px) {
  .filtro-emp {
    flex-wrap: wrap;
    border-radius: 24px;
    height: auto;
    padding: 12px 12px 74px 12px;
    gap: 12px;
  }
  .filtro-emp__div {
    display: none;
  }
  .filtro-emp__submit {
    right: 12px;
    bottom: 12px;
    top: auto;
    transform: none;
  }
  .filtro-emp__item {
    width: calc(50% - 6px);
    justify-content: space-between;
  }
  .filtro-emp select {
    min-width: auto;
    width: 58%;
  }
}
@media (min-width: 1100px) {
  .mob.box_infos {
    display: none;
  }
}
@media (max-width: 1100px) {
  .hero .hero-slider .swiper-slide {
    align-content: start;
  }
  .hero .hero-slider .box_texto {
    border-radius: 0 0 19rem 0;
  }
  .hero .hero-slider .box_infos {
    display: none;
  }
  .mob.box_infos {
    color: #717171;
    font-size: 14px;
    background-color: white;
    padding-inline: 72px;
    padding-block: 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 0;
    position: relative;
    z-index: 9;
  }
  .mob.box_infos h3 {
    font-size: 14px;
    color: #1f2128;
  }
}
@media (max-width: 640px) {
  h2 {
    font-size: 24px !important;
  }
  #empreendimento.empreendimento-home {
    margin-top: 35px;
  }
  .hero .hero-slider {
    height: 278px;
  }
  .hero .hero-slider .box_texto h2 {
    font-size: 24px;
  }
  a.link {
    font-size: 12px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
  }
  .hero .hero-slider .box_texto {
    height: auto;
    min-height: 251px;
    width: 340px;
    padding: 1rem 28px 1rem 20px;
    border-radius: 0 0 96px 0;
    margin-top: 0;
  }
  .hero .hero-slider .box_texto a.link {
    font-size: 12px;
    height: 32px;
    width: 195px;
  }
  .hero .hero-slider .hero-controls {
    width: 90%;
  }
  #infosSwiper {
    --gap: 16px;
    padding: 20px;
    background: #fff;
  }
  #infosSwiper .swiper-wrapper {
    align-items: stretch;
  }
  /* 1 card inteiro + metade do próximo */
  #infosSwiper .swiper-slide {
    width: 66.666%; /* ajuste p/ ver ~1.5 cards */
    height: auto;
  }
  #infosSwiper .text {
    background: #fff;
    border-radius: 16px;
    padding-right: 6px; /* só ajuste fino visual */
  }
  /* esconder barra de rolagem */
  #infosSwiper {
    scrollbar-width: none;
  }
  #infosSwiper::-webkit-scrollbar,
  .featured-slider .card__left::before {
    display: none;
  }
  .featured-slider .card__right {
    order: 1;
    min-height: 230px;
  }
  .featured-slider .card__left {
    order: 2;
    margin-top: -4rem;
    z-index: -1;
    height: auto;
    width: 63%;
  }
  .featured-slider .card .card__actions {
    display: block;
  }
  .featured-slider .card__right .photo,
  .featured-slider .card__right {
    border-radius: 79px 30px 30px 30px;
    width: 100%;
  }
  .featured-slider .card .badge,
  .featured-slider .card__title,
  .featured-slider .card__desc,
  .featured-slider .card__features,
  .featured-slider .card .card__actions {
    margin-left: 0;
  }
  .featured-slider .card__left {
    padding: 6rem 0 40px;
    padding-inline: 24px;
    border-radius: 30px;
    width: 100%;
  }
  .featured-slider .card .card__actions .link {
    width: 100%;
    margin-bottom: 1rem;
  }
  .featured-slider .card .btn-ghost {
    text-align: center;
    width: 100%;
    display: block;
  }
  .spacer {
    padding: 100px 0 0;
    background-color: #113033;
    margin-top: -7rem;
  }
  .featured-slider .slider-ctrl {
    left: 34%;
    right: 16px;
    bottom: initial;
    top: 314px;
    width: 59%;
    transform: translate(-50px, 0);
  }
  .featured-slider .ctrl__btn {
    width: 40px;
    height: 40px;
  }
}
/* DESKTOP/TABLET (Swiper desligado, vira grade) */
@media (min-width: 769px) {
  #infosSwiper {
    padding: 32px 72px;
    background: #fff;
  }
  #infosSwiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
  }
  #infosSwiper .swiper-slide {
    width: auto !important;
  }
  .box_infos .text h3 {
    font-size: 28px;
  }
  .box_infos .text p {
    font-size: 18px;
  }
}
.interna_empreendimento h2 {
  width: min(100%, 500px);
  margin-inline: auto;
  margin-top: 83px;
}
.interna_empreendimento h2.mob_t_b {
  font-size: 24px;
  margin-top: 0;
  display: none;
}
@media (max-width: 990px) {
  .interna_empreendimento h2.mob_t_b {
    display: block;
  }
}

.mob_t_b {
  font-size: 24px;
  margin-top: 0;
  display: none;
}
@media (max-width: 990px) {
  .mob_t_b {
    display: block;
  }
}

#banner_interno.quem-somos {
  height: 365px;
  background-size: cover;
  display: flex;
  align-items: center;
}
#banner_interno.quem-somos .intro {
  position: relative;
  z-index: 9;
}
#banner_interno.quem-somos .intro h2 {
  color: white;
}
#banner_interno.quem-somos:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: url(../imgs/linear.png) no-repeat left;
  pointer-events: none;
}
#banner_interno.enviado {
  height: 547px;
}
#banner_interno.enviado:after {
  content: "";
  width: 70%;
  height: 100%;
  background: url(../imgs/deg_msg.svg) no-repeat left;
}
#banner_interno.enviado p {
  color: white;
  width: 50%;
  font-size: 24px;
}

#sobre {
  margin-top: 155px;
}
#sobre .grid {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
#sobre .grid h2 {
  color: #1b1b1b;
  font-weight: 600;
}
#sobre .grid .text h3 {
  font-weight: 300;
  color: #1b1b1b;
  font-size: 24px;
  text-transform: uppercase;
}
#sobre .boxes {
  grid-template-columns: minmax(654px, 1fr) minmax(500px, 1fr);
  margin-top: 110px;
}
#sobre .boxes .box_g {
  background-color: #113033;
  border-radius: 16px;
  height: 443px;
}
#sobre .boxes .box_g a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sobre .boxes .box_g img {
  -o-object-fit: cover;
     object-fit: cover;
}
#sobre .boxes img {
  width: 100%;
  height: 443px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

#pilares {
  margin-top: 202px;
}
#pilares h2 {
  font-weight: 600;
}
#pilares h3 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
#pilares .box {
  color: hsla(0, 0%, 12%, 0.6);
  position: relative;
}
#pilares .box:after {
  content: "";
  background: url(../imgs/lin2_m.svg) no-repeat;
  position: absolute;
  left: 67%;
  transform: translate(-50%, -50%);
  width: 1044px;
  height: 988px;
  top: 57%;
}
#pilares .box .tt {
  margin-bottom: 42px;
  text-align: center;
}
#pilares .box .cc {
  width: 510px;
  margin-inline: auto;
  padding-top: 92px;
}
#pilares .box .cc .ct {
  border-left: 1px solid hsla(169, 71%, 85%, 0.85);
  padding-left: 32px;
  margin-bottom: 40px;
  margin-left: 4rem;
  width: 369px;
}

.why-ctc {
  padding: 80px 0;
  background: #ffffff;
  margin-top: 202px;
}
.why-ctc .swiper-slide {
  opacity: 0 !important; /* Hide all slides by default */
}
.why-ctc .swiper-slide-active {
  opacity: 1 !important; /* Make the active slide visible */
}
.why-ctc__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}
.why-ctc__title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  color: #111111;
  max-width: 420px;
}

.why-menu {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.why-menu__item {
  border: none;
  background: none;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #8b8b8b;
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}
.why-menu__item::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #1e1e1e;
  transition: width 0.2s ease;
}
.why-menu__item.is-active {
  color: #1e1e1e;
}
.why-menu__item.is-active::before {
  width: 32px;
}

.why-ctc__body {
  margin-bottom: 24px;
}

.why-swiper {
  width: 100%;
  overflow: hidden;
}
.why-swiper .swiper-wrapper {
  display: flex;
}
.why-swiper .swiper-slide {
  width: 100% !important;
  flex: 0 0 100%;
  position: relative;
}

.why-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: center;
}
.why-card__media {
  overflow: hidden;
  align-self: stretch;
  display: flex;
  width: 500px;
  height: 500px;
}
.why-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
.why-card__content {
  color: #111111;
}
.why-card__title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 16px;
}
.why-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.why-ctrl {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
}
.why-ctrl__fraction {
  font-size: 14px;
  color: #6e6e6e;
  min-width: -moz-max-content;
  min-width: max-content;
}
.why-ctrl__fraction .curr,
.why-ctrl__fraction .tot {
  display: inline-block;
}
.why-ctrl__bar {
  flex: 1 1 auto;
  height: 2px;
  background: #e0e0e0;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.why-ctrl__bar-fill {
  display: block;
  width: 0;
  height: 100%;
  background: #6e6e6e;
  transition: width 0.25s ease;
}
.why-ctrl__next {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.page-template-minha-casa .why-card__content ul li {
  list-style: disc !important;
}
.page-template-minha-casa .why-ctrl {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 346px;
  margin-left: 0;
}

@media (max-width: 900px) {
  .why-ctc__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .why-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-card__media {
    max-height: 320px;
  }
  .why-ctrl {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .why-ctc {
    padding: 56px 0;
  }
  .why-ctc__title {
    font-size: 32px;
  }
  .why-menu {
    gap: 20px;
  }
  .why-card__title {
    font-size: 28px;
  }
}
.testi {
  padding: clamp(48px, 6vw, 96px) 0;
  background: hsla(0, 0%, 80%, 0.15);
}
.testi .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.testi__title {
  text-align: center;
  line-height: 1.2;
  margin: 0 0 48px;
  color: #1e1e1e;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.testi {
  /* Swiper wrapper */
}
.testi__slider {
  max-width: 920px;
  margin: 0 auto;
}
.testi {
  /* Fade “estável” via CSS */
}
.testi .swiper {
  overflow: hidden;
}
.testi .swiper-slide {
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.testi .swiper-slide.swiper-slide-active,
.testi .swiper-slide.swiper-slide-duplicate-active {
  opacity: 1;
  pointer-events: auto;
}
.testi {
  /* Conteúdo do depoimento */
}
.testi__item {
  margin: 0;
  text-align: center;
}
.testi__mark {
  --size: 56px;
  width: var(--size);
  height: var(--size);
  margin: 0 auto 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0f0f0f;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.testi__text {
  margin: 0 auto 28px;
  max-width: 880px;
  color: hsla(0, 0%, 12%, 0.6);
  font-size: 24px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
.testi__text p {
  line-height: 46px;
}
.testi__text strong {
  color: black;
  display: block;
  margin-top: 28px;
}
.testi__author {
  font-weight: 700;
  color: #1e1e1e;
  font-size: 20px;
  margin-bottom: 40px;
}
.testi {
  /* Controles */
}
.testi__ctrl {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}
.testi__fraction {
  font-size: 14px;
  color: #8a8a8a;
}
.testi__fraction .curr {
  color: #1a1a1a;
}
.testi__progress {
  height: 3px;
  background: #e6e6e6;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.testi__progress, .testi__bar {
  width: 100%;
}
.testi__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #bcbcbc;
  position: relative;
}
.testi {
  /* indicador com cor mais forte no comecinho */
}
.testi__bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 54px;
  height: 9px;
  border-radius: 9px;
  background: rgba(26, 26, 26, 0.062745098);
  pointer-events: none;
}
.testi__next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #222;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.testi__next:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.testi__next:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 640px) {
  .testi__author {
    margin-bottom: 28px;
  }
  .testi__ctrl {
    max-width: 100%;
  }
}

/* Container do seu slider (ex.: .testi ou .why-ctc) */
.stackfade {
  /* Swiper básico */
}
.stackfade .swiper {
  position: relative;
  overflow: hidden;
  height: auto;
}
.stackfade .swiper-wrapper {
  position: relative;
  height: auto;
}
.stackfade {
  /* Todos os slides empilhados e invisíveis por padrão */
}
.stackfade .swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.stackfade {
  /* Apenas o slide ativo “entra” no fluxo, visível e clicável */
}
.stackfade .swiper-slide.swiper-slide-active {
  position: relative; /* volta ao fluxo p/ medir a altura correta */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.stackfade {
  /* Evita qualquer clique em duplicados de loop (se usar loop) */
}
.stackfade .swiper-slide.swiper-slide-duplicate {
  pointer-events: none;
}

@media (min-width: 1024px) {
  .partners__swiper .swiper-slide {
    /* width:auto;  <- opcional */
  }
}
/* Ajustes responsivos do “peek” no mobile */
@media (max-width: 767px) {
  .partners__swiper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* Core mínimo para o Swiper funcionar se você não importar o CSS oficial */
.partners__swiper {
  position: relative; /* como .swiper */
  overflow: visible; /* queremos “peek” no mobile */
}

.partners__swiper .swiper-wrapper {
  display: flex; /* sem isso os slides empilham */
  align-items: center;
  will-change: transform;
}

.partners__swiper .swiper-slide {
  flex-shrink: 0; /* cada slide mantém sua largura */
}

.partners {
  padding: 77px 0 0;
}
.partners__title {
  text-align: center;
  line-height: 1.1;
  margin: 0 0 clamp(24px, 4vw, 56px);
}
.partners__swiper {
  overflow: visible;
}
.partners__swiper .swiper-wrapper {
  /* display:flex já está no bloco “core mínimo” */
  align-items: center;
}
.partners__swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.partners__swiper .swiper-slide:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}
.partners__swiper .swiper-slide img {
  display: block;
  height: clamp(28px, 4vw, 56px);
  width: 100%;
}
.partners__nav {
  display: none;
  margin-top: 16px;
  gap: 12px;
  justify-content: center;
}
.partners__nav button {
  width: 36px;
  height: 36px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #fff;
  position: relative;
}
.partners__nav button:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(-45deg);
}
.partners__nav .partners__next:before {
  transform: rotate(135deg);
}

/* Peek no mobile: margem lateral para mostrar parte do próximo */
@media (max-width: 767px) {
  .partners__swiper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* (Opcional) desktop não precisa mexer em largura do slide */
@media (min-width: 1024px) {
  /* nada aqui que force width nos slides */
}
/* ====== BASE ====== */
.steps {
  padding-block: clamp(24px, 6vw, 70px);
  --mint: #00d4ac;
  --axis: #e8e8e8;
  --title: #0f0f0f;
  --text: #6f6f6f;
  position: relative;
}
.steps:after {
  content: "";
  background: url(../imgs/dots_line.svg) repeat;
  width: 1px;
  height: 90%;
  position: absolute;
  top: 90px;
  left: 50%;
}
.steps__slider {
  padding-top: 5rem;
}

/* ====== LISTA / GRID DESKTOP ====== */
.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(40px, 7vw, 96px);
}

.steps__item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr; /* mídia | eixo | texto */
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: relative;
}
.steps__item .steps__axis {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  height: 100%;
}
.steps__item .steps__num {
  position: absolute;
  top: -90px;
  display: inline-block;
  color: var(--mint);
  background: #fff;
  padding: 0.25em 0.35em;
  border-radius: 0.25em;
  font-size: 42px;
  font-weight: 600;
  z-index: 1;
}
.steps__item .steps__col {
  width: 100%;
}
.steps__item .steps__col--media {
  justify-self: center;
}
.steps__item .steps__media {
  margin: 0;
  border-radius: 16px;
  display: flex;
  justify-content: flex-end;
}
.steps__item .steps__media img {
  display: block;
  width: 280px;
  height: 333px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.steps__item .steps__text h3 {
  font-size: 24px;
  margin: 0 0 12px;
}
.steps__item .steps__text p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  max-width: 34ch;
}
.steps__item.is-reverse .steps__col--text {
  order: 1;
  display: flex;
  justify-content: flex-end;
}
.steps__item.is-reverse .steps__axis {
  order: 2;
}
.steps__item.is-reverse .steps__col--media {
  order: 3;
}
.steps__item.is-reverse .steps__media {
  justify-content: flex-start;
}
.steps__item.is-reverse .steps__text p {
  max-width: 42ch;
}

/* ====== CONTROLES (apenas mobile) ====== */
.steps__nav {
  display: none;
}

/* ====== MOBILE: vira SLIDER/CARD ====== */
@media (max-width: 900px) {
  .steps {
    padding-block: 40px;
  }
  .steps:after {
    display: none;
  }
  .steps__slider {
    overflow: hidden;
  }
  .steps__list {
    display: flex; /* Swiper vai posicionar via transform */
    gap: 0;
  }
  .steps__item {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 32px 20px 36px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    min-height: 100%;
  }
  .steps__axis {
    order: 0;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }
  .steps__axis::before {
    content: "";
    flex: 1;
    height: 2px;
    background: #f0f0f0;
    margin-left: 12px;
  }
  .steps__num {
    position: static;
    font-size: 40px;
    background: none;
    padding: 0;
  }
  .steps__col--media {
    order: 1;
  }
  .steps__media {
    justify-content: center;
  }
  .steps__media img {
    width: 100%;
    height: auto;
    border-radius: 24px;
  }
  .steps__col--text {
    order: 2;
  }
  .steps__text h3 {
    font-size: 20px;
    margin: 24px 0 12px;
  }
  .steps__text p {
    max-width: 100%;
    font-size: 15px;
  }
  .steps__item.is-reverse .steps__col--text,
  .steps__item.is-reverse .steps__col--media {
    order: initial; /* no mobile não alterna, segue o fluxo acima */
  }
  .steps__nav {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .steps__fraction {
    font-size: 14px;
    color: #6f6f6f;
    min-width: 48px;
  }
  .steps__fraction .curr,
  .steps__fraction .tot {
    display: inline-block;
  }
  .steps__bar {
    flex: 1 1 auto;
    height: 2px;
    background: #ededed;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
  }
  .steps__bar-fill {
    display: block;
    width: 0;
    height: 100%;
    background: #6f6f6f;
    transition: width 0.25s ease;
  }
  .steps__next {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
  }
}
@media (min-width: 901px) {
  .steps__nav {
    display: none;
  }
}
.income {
  padding: clamp(32px, 6vw, 96px) 0;
}
.income .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}
.income {
  /* Cabeçalho: título à esquerda / texto à direita */
}
.income__head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.9fr);
  gap: clamp(16px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(24px, 5vw, 48px);
}
.income__head p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: hsla(0, 0%, 12%, 0.6);
}
@media (max-width: 900px) {
  .income__head {
    grid-template-columns: 1fr;
  }
}
.income__title {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
}
.income {
  /* Grid de cards */
}
.income__grid {
  list-style: none;
  padding: 0;
  margin: 100px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 1100px) {
  .income__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .income__grid {
    grid-template-columns: 1fr;
  }
}
.income__card {
  background: #f0f4f6;
  border-radius: 16px;
  padding: 30px 24px;
  min-height: 252px;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.income__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.income__card-title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 48px;
}
.income p {
  margin: 0;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: hsla(0, 0%, 12%, 0.6);
}
.income p strong {
  font-weight: 600;
}
.income__note {
  display: block;
  margin-top: clamp(16px, 2vw, 24px);
  opacity: 0.8;
  font-size: 12px;
}

/* Se sua página usa um .container centralizado, este hack garante full-bleed */
.banks {
  /* full-bleed: ocupa a largura total da viewport */
  width: 100vw;
  position: relative;
  margin-top: 50px;
  padding: clamp(24px, 6vw, 72px) 0;
}
.banks__title {
  text-align: center;
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1.1;
  margin: 0 0 clamp(12px, 4vw, 40px);
  font-weight: 600;
}
.banks {
  /* Swiper */
}
.banks__swiper {
  /* Importante para o "peek" nas laterais: */
  overflow: visible;
}
.banks__swiper .swiper-wrapper {
  align-items: center;
}
.banks__swiper .swiper-slide {
  /* Largura dos cards de logo; o Swiper respeita quando usamos slidesPerView numérico */
  width: clamp(120px, 18vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 1vw, 10px);
}
.banks__swiper .swiper-slide img {
  display: block;
  height: clamp(24px, 4.5vw, 48px);
  width: auto;
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.banks__swiper .swiper-slide:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.page-template-minha-casa .why-ctc {
  position: relative;
  margin-top: 80px;
}
.page-template-minha-casa .why-ctc:after {
  content: "";
  background-color: #113033;
  height: 600px;
  width: 300px;
  position: absolute;
  left: 0;
  top: 5rem;
  border-radius: 0 100px 0 0;
}
.page-template-minha-casa .why-panels {
  color: hsla(0, 0%, 12%, 0.6);
}
.page-template-minha-casa .why-panels h2 {
  margin-bottom: 49px;
}
.page-template-minha-casa .why-panels h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
.page-template-minha-casa .why-card {
  gap: 45px;
}
.page-template-minha-casa .why-card__media {
  border-radius: 0;
}
.page-template-minha-casa .why-card__media img {
  border-radius: 0 100px 0 0;
}
.page-template-minha-casa .empreendimento-home .tt {
  margin-bottom: 70px;
}
.page-template-minha-casa .empreendimento-home .tt h2 {
  margin-bottom: 10px;
}
.page-template-minha-casa .empreendimento-home .tt p {
  margin-top: 0;
}
.page-template-minha-casa .empreendimento-home p {
  text-align: center;
  color: hsla(0, 0%, 12%, 0.6);
}

.financing-slider {
  max-width: 1180px;
  margin: 0 auto;
  margin-top: 185px;
}
.financing-slider .play {
  display: flex;
  justify-content: center;
  align-items: center;
}
.financing-slider h2 {
  font-weight: 700;
  margin-bottom: 50px;
}
.financing-slider {
  /* — Slides — */
}
.financing-slider .swiper {
  overflow: visible;
}
.financing-slider .swiper-slide {
  /* largura do slide ativo para criar o “peek” do próximo */
  width: clamp(560px, 62vw, 760px);
  border-radius: 18px;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}
.financing-slider .swiper-slide img {
  display: block;
  width: 500px !important;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.financing-slider .swiper-slide {
  /* estado base dos não-ativos */
  opacity: 0.35;
  transform: scale(0.94);
  filter: saturate(0.3);
  /* o próximo fica ainda mais claro, como no layout */
}
.financing-slider .swiper-slide.swiper-slide-next {
  opacity: 0.14;
  transform: scale(0.92);
  filter: saturate(0);
}
.financing-slider .swiper-slide {
  /* ativo grande e nítido */
}
.financing-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.financing-slider {
  /* — Controles — */
}
.financing-slider .slider-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}
.financing-slider .swiper-fraction {
  font-size: 14px;
  color: #222;
  min-width: 36px;
}
.financing-slider {
  /* progressbar nativo do Swiper, estilizado como linha fina */
}
.financing-slider .swiper-progress {
  height: 4px;
  background: #e9e9e9;
  border-radius: 999px;
  overflow: hidden;
}
.financing-slider .swiper-progress .swiper-pagination-progressbar-fill {
  background: #222;
  transform-origin: left center;
}
.financing-slider .swiper-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #222;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.financing-slider {
  /* Responsivo: ajusta o “peek” em telas menores */
}
@media (max-width: 1024px) {
  .financing-slider .swiper-slide {
    width: clamp(440px, 78vw, 600px);
  }
}
@media (max-width: 640px) {
  .financing-slider .swiper-slide {
    width: 86vw;
  }
  .financing-slider .slider-controls {
    gap: 14px;
  }
}

.financing-slider .slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.financing-slider .swiper-fraction {
  font-size: 16px;
  color: #6e6e6e;
}
.financing-slider .swiper-progress {
  position: static !important;
  width: 204px !important;
  height: 2px; /* espessura da barra */
  background: #e6e6e6; /* trilho claro */
  border-radius: 999px;
  overflow: hidden;
  /* a classe abaixo é criada pelo Swiper dentro do progressbar */
}
.financing-slider .swiper-progress .swiper-pagination-progressbar-fill {
  background: #5c5c5c; /* preenchimento mais escuro (como no layout) */
  transform-origin: left center;
  border-radius: 999px; /* cantos arredondados no preenchimento */
  height: 100%;
}
.financing-slider .swiper-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  line-height: 1;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.08s ease;
}
.financing-slider .swiper-next:active {
  transform: scale(0.98);
}

.info-section {
  position: relative;
  padding: 56px 0 24px;
  margin-top: 4rem;
}
.info-section .eqd-accordion__heading {
  margin-bottom: 0;
}
.info-section .content-container {
  padding-top: 3rem;
}
.info-section .eqd-accordion__button {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  justify-content: normal;
  text-align: left;
  padding: 0;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin: 0;
  text-decoration: none;
  width: 100%;
  font-size: 18px;
  text-transform: none;
  position: relative;
}
.info-section .eqd-accordion__button:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  background-image: url(../imgs/arrow_acc.svg);
  width: 12px;
  height: 8px;
  transform: rotate(180deg);
}
.info-section .eqd-accordion__item {
  border-bottom: 1px solid #e3e8ef;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.info-section .eqd-accordion__button[aria-expanded=false]:after,
.info-section .eqd-accordion__button[aria-expanded=false]:hover:after {
  content: "";
  transform: rotate(0);
}
.info-section .eqd-accordion__button[aria-expanded=false] {
  background-size: 1.5rem;
}
.info-section .eqd-accordion__content p {
  color: hsla(0, 0%, 12%, 0.6);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ESQUERDA */
.info-left {
  position: relative;
  padding-top: 16px;
  margin-top: 5rem;
}
.info-left p {
  font-size: 18px;
  color: hsla(0, 0%, 12%, 0.6);
}

.info-title {
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.05;
  color: #101010;
  margin: 0 0 28px;
  font-weight: 500;
}

.accent-path {
  position: absolute;
  left: 0;
  top: 3rem;
  background: url(../imgs/line_accordion.svg) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 261px;
  pointer-events: none;
}

.contact-card {
  margin-top: 140px;
}
.contact-card .link {
  color: #00d4ac;
  border: 1px solid #00d4ac;
  width: 239px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.35px;
}
.contact-card .link:hover {
  color: white;
  background-color: #00d4ac;
}

.contact-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #000;
}

.contact-desc {
  color: #677489;
  margin: 0 0 16px;
  max-width: 360px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid #56d2b2;
  color: #56d2b2;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn-outline:hover {
  background: #56d2b2;
  color: #fff;
  box-shadow: 0 6px 18px rgba(86, 210, 178, 0.25);
}

/* DIREITA — Acordeão */
.accordion {
  border-top: 1px solid #e9ecef;
}

.acc-item {
  border-bottom: 1px solid #e9ecef;
}

.acc-trigger {
  width: 100%;
  text-align: left;
  padding: 20px 8px;
  background: #fff;
  border: 0;
  font-size: 20px;
  color: #101010;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.acc-trigger .chev {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  transition: transform 0.2s ease;
}

.acc-panel {
  grid-column: 1/-1;
  padding: 0 8px 18px;
  color: #47505c;
  font-size: 16px;
  line-height: 1.65;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.acc-panel > * {
  overflow: hidden;
}

/* Aberto */
.acc-item.is-open .acc-trigger .chev {
  transform: rotate(180deg);
}
.acc-item.is-open .acc-panel {
  grid-template-rows: 1fr;
}

/* Responsivo */
@media (max-width: 1024px) {
  .accent-path {
    left: 0;
    width: 72%;
  }
  .contact-card {
    margin-top: 80px;
  }
}
@media (max-width: 640px) {
  .accent-path {
    display: none;
  }
}
#oq_in {
  margin-block: 170px;
}
#oq_in .grid {
  grid-template-columns: 1fr 1fr;
}
#oq_in .grid h2 {
  font-weight: 600;
}
#oq_in .grid .text {
  color: hsla(0, 0%, 12%, 0.6);
}

.mb-large {
  margin-bottom: 106px;
}

.lojas-filtro {
  margin-bottom: 60px;
}

.lojas-filtro__wrap {
  display: grid;
  grid-template-columns: 1fr 1px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 6px 10px 6px 24px;
  border: 1px solid #d3d3d3;
  border-radius: 999px;
  width: 560px;
  margin-inline: auto;
}

#filtro_loja {
  margin-top: 70px;
}
#filtro_loja h2 {
  font-weight: 500;
  margin-bottom: 28px;
}
#filtro_loja {
  color: hsla(0, 0%, 12%, 0.6);
}
#filtro_loja p {
  width: 618px;
  margin-inline: auto;
}
#filtro_loja .intro {
  margin-bottom: 70px;
}

.lojas-filtro__field {
  display: block;
}

.lojas-filtro__label {
  display: block;
  font-weight: 700;
  color: #111;
  font-size: 16px;
  margin-bottom: 2px;
}

.lojas-filtro__field select {
  border: 0;
  outline: none;
  background: #fff;
  color: #777;
  font-size: 16px;
  width: 100%;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.lojas-filtro__divider {
  width: 1px;
  height: 36px;
  background: #ddd;
}

.lojas-filtro__submit {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
}

.loja-card.is-hidden {
  display: none !important;
}

.lojas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.loja-card {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 10px 24px 33px;
  color: #1e1e1e;
}
.loja-card img {
  width: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.loja-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.loja-card .flex {
  justify-content: space-between;
  align-items: center;
}
.loja-card .mapa a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00d4ac;
}
.loja-card .funcionamento {
  background-color: #f8f8f8;
  text-align: center;
  padding-block: 16px;
  border-radius: 16px;
  margin-block: 32px;
}
.loja-card .funcionamento p {
  margin-bottom: 0;
  width: 100% !important;
}
.loja-card .funcionamento h4 {
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.loja-card .contato h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.loja-card .contato .loja-card__whatsapp {
  color: #1e1e1e;
}
.loja-card .contato .link_whats {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #00d4ac;
  letter-spacing: 1.35px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #00d4ac;
  height: 45px;
}
.loja-card .cc {
  padding-inline: 20px;
}

/* seção */
.atendimento {
  padding-top: 64px;
  padding-bottom: 64px;
  color: #101010;
  margin-top: 100px;
  /* bloco superior: título + texto */
}
.atendimento__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .atendimento__header {
    grid-template-columns: 1fr;
  }
}
.atendimento__title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}
.atendimento__textcol {
  /* limita largura do parágrafo para não ficar largo demais em telas grandes */
  max-width: 640px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: hsla(0, 0%, 12%, 0.6); /* cinza texto descritivo do print */
  margin: 0;
}
.atendimento {
  /* grid de cards */
}
.atendimento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 70px;
}
@media (max-width: 1100px) {
  .atendimento__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .atendimento__grid {
    grid-template-columns: 1fr;
  }
}

/* cards */
.atendimento-card {
  background: #f0f4f6; /* cinza claro parecido com o print */
  border-radius: 12px; /* canto suave */
  padding: 30px 24px;
  color: #111;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  /* tipografia */
}
.atendimento-card p {
  margin: 0;
  color: #111;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.atendimento-card p strong {
  font-weight: 700;
}
@media (max-width: 1100px) {
  .atendimento-card {
    font-size: 22px;
    padding: 28px;
  }
}
@media (max-width: 600px) {
  .atendimento-card {
    font-size: 20px;
    padding: 24px;
  }
}

.consultor__right {
  margin-top: -5rem;
}

#cols {
  margin-top: 160px;
  margin-bottom: 190px;
}
#cols.empreendimento {
  background-color: #fafafa;
  margin: 0;
  padding-block: 70px;
}
#cols.empreendimento p {
  margin: 0.75rem 0 !important;
}
#cols.empreendimento .intro h2 {
  margin-bottom: 16px;
}
#cols.empreendimento .intro .end {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #1b1b1b;
}
#cols .grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
#cols .intro h2 {
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 0;
}
#cols .text {
  color: hsla(0, 0%, 12%, 0.6);
  font-size: 18px;
}
#cols .text p {
  margin: 0;
}

.indicacao {
  padding: 80px 0;
}
.indicacao__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .indicacao__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.indicacao {
  /* coluna da imagem */
}
.indicacao__imagecol {
  position: relative;
}
.indicacao__imgwrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.indicacao__imgwrap::before {
  content: "";
  position: absolute;
  left: -116px;
  bottom: -40px;
  width: 223px;
  height: 600px;
  background: #113033;
  border-top-right-radius: 100px;
  z-index: 1;
}
.indicacao__imgwrap img {
  position: relative;
  width: 100%;
  display: block;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 0;
  z-index: 2;
}
.indicacao {
  /* coluna dos passos */
}

/* ======= BLOCOS DE PASSO ======= */
.steps-vertical {
  position: relative;
  padding-left: 34px;
  max-width: 360px;
}

/* traço pontilhado da timeline */
.steps-vertical::before {
  content: "";
  background: url(../imgs/dots_line.svg) repeat;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 28px;
  left: 0%;
}

/* cada passo */
.step {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 110px;
}
.step:last-child {
  margin-bottom: 0;
}

.step__num {
  position: absolute;
  left: -58px;
  top: 0;
  font-size: 42px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #44c7a6;
  background: #fff;
  padding-right: 6px;
}

.step__content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  color: #1b1b1b;
}
.step__content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: hsla(0, 0%, 12%, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
  .step {
    grid-template-columns: 40px 1fr;
  }
  .step__num {
    font-size: 22px;
  }
}
.download-block {
  display: flex;
  align-items: center;
  width: 628px;
  margin-inline: auto;
  gap: 26px;
  background: #fafafa;
  border-radius: 16px;
  padding: 30px 28px;
  text-decoration: none;
  position: relative;
  min-height: 90px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: #111;
  margin-top: 80px;
  /* barrinha verde na esquerda */
}
.download-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: #00d4ac;
  border-radius: 999px;
}
.download-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.download-block__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.download-block__text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.download-block__cta {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.download-block__cta-icon {
  font-size: 28px;
  line-height: 1;
  color: #43c6a9;
}

/* responsivo */
@media (max-width: 640px) {
  .download-block {
    gap: 16px;
    padding: 18px 20px;
    width: 100%;
  }
  .download-block__cta {
    width: 58px;
    height: 58px;
  }
}
.area-cliente {
  position: relative;
  padding: 85px 0 0;
  margin-top: 90px;
}
.area-cliente:after {
  content: "";
  width: 100%;
  background: url(../imgs/line_b.svg) no-repeat;
  height: 269px;
  position: absolute;
  top: 0;
  left: 0;
}
.area-cliente__content {
  margin: 0 auto;
  background: #e9f8f5; /* verde claro de fundo */
  border-radius: 32px;
  text-align: center;
  padding: 32px;
  margin: 0 auto;
  position: relative;
  width: 860px;
}
.area-cliente__title {
  font-size: clamp(28px, 1vw + 26px, 42px);
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 20px;
  width: 580px;
  margin-inline: auto;
}
.area-cliente p {
  font-size: 16px;
  line-height: 1.6;
  color: #717171;
  margin-bottom: 36px;
}
.area-cliente__button {
  display: inline-block;
  border: 1px solid #00d4ac;
  color: #00d4ac;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 1.35px;
  width: 289px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.area-cliente__button:hover {
  background: #00d4ac;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 640px) {
  .area-cliente {
    padding: 48px 20px;
  }
  .area-cliente__title {
    font-size: 26px;
  }
  .area-cliente__text {
    font-size: 15px;
  }
  .area-cliente__button {
    font-size: 15px;
    padding: 12px 28px;
  }
}

.beneficios {
  padding: 70px 0 90px;
  text-align: center;
}
.beneficios__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.beneficios__title {
  font-size: clamp(32px, 1.2vw + 28px, 42px);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 46px;
  color: #111;
}
.beneficios {
  /* área que contém colunas + imagem */
}
.beneficios__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
@media (max-width: 992px) {
  .beneficios__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.beneficios {
  /* colunas laterais */
}
.beneficios__col {
  display: flex;
  flex-direction: column;
  gap: 132px;
  align-items: flex-start;
}
.beneficios__col--right {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .beneficios__col {
    align-items: center;
    text-align: left;
  }
}
.beneficios {
  /* bloco central com o personagem */
}
.beneficios__center {
  position: relative;
  display: flex;
  justify-content: center;
}
.beneficios__imgwrap {
  position: relative;
  width: 550px;
  z-index: 2;
}
.beneficios__imgwrap img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
.beneficios {
  /* faixa verde atrás */
}
.beneficios__base {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 420px;
  height: 140px;
  background: #9ff5dc;
  border-radius: 32px 32px 0 0;
  z-index: 1;
}
@media (max-width: 480px) {
  .beneficios__base {
    width: 100%;
  }
}

/* item de benefício */
.beneficio-item {
  display: grid;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  grid-template-columns: 60px auto;
}
.beneficio-item__icon {
  width: 60px;
  height: 60px;
  border: 1px solid #edf1f1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
}
.beneficio-item .icon-line {
  width: 24px;
  height: 24px;
}
.beneficio-item__text h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1b;
}
.beneficio-item__text p {
  margin: 0;
  font-size: 14px;
  color: #888;
  max-width: 220px;
  line-height: 1.4;
}

/* mobile */
@media (max-width: 992px) {
  .beneficio-item {
    justify-content: center;
  }
}
#inv_video a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
#inv_video a img {
  background-color: rgba(255, 255, 255, 0.262);
  border-radius: 100px;
  padding: 15px;
}

#form_investidor {
  position: relative;
}
#form_investidor:after {
  content: "";
  background: url(../imgs/line_investidor.svg) no-repeat;
  width: 100%;
  height: 705px;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
#form_investidor .grid {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
#form_investidor .text {
  padding-right: 5rem;
  color: #717171;
}
#form_investidor .text h2 {
  margin-bottom: 24px;
  color: black;
}
#form_investidor .text .box {
  margin-top: 68px;
  background-color: #eafffb;
  display: flex;
  flex-direction: column;
  padding-block: 25px;
  padding-inline: 24px;
  gap: 10px;
  font-size: 22px;
  color: #1b1b1b;
  font-family: "Inter", sans-serif;
}
#form_investidor .ctc-form {
  max-width: 620px;
  padding-top: 2rem;
}
#form_investidor .ctc-form__group {
  margin-bottom: 22px;
}
#form_investidor .ctc-form__group label {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  letter-spacing: 1.3px;
}
#form_investidor .ctc-form__optional {
  font-size: 13px;
  color: #9d9d9d;
  font-weight: 400;
  margin-left: 4px;
}
#form_investidor .ctc-form input[type=text],
#form_investidor .ctc-form input[type=tel],
#form_investidor .ctc-form textarea {
  width: 100%;
  background: #f4f4f4;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: #000;
  outline: none;
  transition: box-shadow 0.15s ease;
}
#form_investidor .ctc-form input[type=text]::-moz-placeholder, #form_investidor .ctc-form input[type=tel]::-moz-placeholder, #form_investidor .ctc-form textarea::-moz-placeholder {
  color: #b0b0b0;
}
#form_investidor .ctc-form input[type=text]::placeholder,
#form_investidor .ctc-form input[type=tel]::placeholder,
#form_investidor .ctc-form textarea::placeholder {
  color: #b0b0b0;
}
#form_investidor .ctc-form input[type=text]:focus,
#form_investidor .ctc-form input[type=tel]:focus,
#form_investidor .ctc-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(66, 198, 167, 0.25);
}
#form_investidor .ctc-form textarea {
  min-height: 140px;
  resize: vertical;
}
#form_investidor .ctc-form__actions {
  margin-top: 28px;
}
#form_investidor .ctc-form input[type=submit] {
  background: transparent;
  border: 1.5px solid #00d4ac;
  color: #00d4ac;
  border-radius: 4px;
  letter-spacing: 1.3px;
  padding: 15px 41px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
#form_investidor .ctc-form input[type=submit]:hover {
  background: #42c6a7;
  color: #fff;
}

.most-read {
  padding: 32px 0;
}
.most-read__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
}
.most-read .swiper {
  overflow: visible;
}
.most-read {
  /* cada slide contém 2 itens empilhados */
}
.most-read__slide {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.most-read__item {
  display: grid;
  grid-template-columns: 54px 220px 1fr;
  gap: 18px;
  align-items: start;
}
.most-read__num {
  font-size: 42px;
  font-weight: 500;
  text-align: end;
  color: #00d4ac;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
.most-read__thumb {
  width: 213px;
  height: 147px;
  border-radius: 4px;
  overflow: hidden;
}
.most-read__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.most-read__content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}
.most-read__content h3 a {
  color: #1b1b1b;
  text-decoration: none;
}
.most-read__content .most-read__excerpt {
  margin: 0;
  color: #666;
  line-height: 1.5;
  font-size: 14px;
}
.most-read__controls {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 60px;
  width: 317px;
}
.most-read__fraction {
  font-size: 16px;
  color: #6e6e6e;
}
.most-read__progress {
  flex: 1;
  height: 2px;
  background: hsla(0, 0%, 43%, 0.2);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}
.most-read__progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #6e6e6e;
  transition: width 0.25s ease;
}
.most-read__next {
  width: 40px;
  height: 40px;
  border: 0;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
@media (max-width: 820px) {
  .most-read__item {
    grid-template-columns: 55px 1fr;
    grid-template-rows: auto auto;
    display: block;
  }
  .most-read__thumb {
    width: 100%;
    height: 160px;
    grid-column: 2/3;
  }
}

.recent-posts {
  padding: 36px 0;
}
.recent-posts__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
}
.recent-posts .swiper {
  overflow: visible;
}
.recent-posts__slide {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recent-posts__thumb {
  width: 100%;
  height: 196px;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  position: relative;
}
.recent-posts__cat {
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 24px 10px 18px;
  border-bottom-left-radius: 6px;
  text-transform: uppercase;
}
.recent-posts__date {
  font-size: 12px;
  color: #999;
}
.recent-posts__post-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  font-family: "Roboto", sans-serif;
  margin-bottom: 12px;
}
.recent-posts__post-title a {
  color: #000;
  text-decoration: none;
}
.recent-posts__excerpt {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
}
.recent-posts {
  /* controles */
}
.recent-posts__controls {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  width: 317px;
}
.recent-posts__fraction {
  font-size: 16px;
  color: #6e6e6e;
}
.recent-posts__progress {
  flex: 1;
  height: 2px;
  background: hsla(0, 0%, 43%, 0.2);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}
.recent-posts__progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #6e6e6e;
  transition: width 0.25s ease;
}
.recent-posts__next {
  width: 40px;
  height: 40px;
  border: 0;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
@media (max-width: 720px) {
  .recent-posts__thumb {
    height: 180px;
  }
  .recent-posts__post-title {
    font-size: 20px;
  }
}

.blog-section {
  padding: 60px 0;
}
.blog-section__container {
  display: grid;
  grid-template-columns: 603px 405px;
  gap: 80px;
  align-items: start;
}
.blog-section__col {
  display: flex;
  flex-direction: column;
}
.blog-section {
  /* 🔧 Aqui está o truque: isola o Swiper */
}
.blog-section .slider-wrapper {
  display: block; /* ou flex se quiser centralizar conteúdo */
  width: 100%;
}
.blog-section {
  /* Agora o Swiper não quebra mais */
}
.blog-section .swiper {
  width: 100%;
  overflow: hidden;
}
.blog-section .swiper-wrapper {
  display: flex; /* obrigatório para o Swiper funcionar corretamente */
}
.blog-section .swiper-slide {
  flex-shrink: 0;
  width: 100%; /* Swiper calcula com base nisso */
}
.blog-section {
  /* responsivo */
}
@media (max-width: 980px) {
  .blog-section__container {
    grid-template-columns: 1fr;
    gap: 60px;
    display: block;
  }
}

.blog-grid {
  padding: 0 0 60px;
}
.blog-grid__container {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: flex-start;
}
.blog-grid__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}
.blog-grid {
  /* coluna de posts */
}
.blog-grid__posts {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.blog-grid {
  /* sidebar */
}
.blog-grid__sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* card de post */
.blog-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-card:hover .blog-card__thumb {
  filter: grayscale(1);
}

.blog-card__thumb {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.4s ease;
}

.blog-card__cat {
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  padding: 10px 18px 10px 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: black;
}

.blog-card__date {
  font-size: 12px;
  color: #999;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.blog-card__title a {
  color: #000;
  text-decoration: none;
}

.blog-card__excerpt {
  margin: 0;
  color: #666;
  line-height: 1.3;
  font-size: 14px;
}

/* box categorias */
.blog-cats {
  background: #fff;
  border: 1px solid #ededed;
  padding: 18px 18px 6px;
}

.blog-cats h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 18px;
}

.blog-cats__item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 10px 12px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: color 0.15s ease;
  text-transform: initial;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 4px;
}

.blog-cats__item:last-child {
  border-bottom: none;
}

.blog-cats__item.is-active,
.blog-cats__item:hover {
  color: #1a1a1a;
  font-weight: 500;
  background-color: #fafafa;
}

/* box newsletter */
.blog-newsletter {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 0;
  padding: 47px 20px 22px;
  text-align: left;
}
.blog-newsletter h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 16px;
  font-family: "Roboto", sans-serif;
}
.blog-newsletter p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}
.blog-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-newsletter form input[type=email] {
  width: 100%;
  background: #f6f6f6;
  border: 0;
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
}
.blog-newsletter form input[type=submit] {
  background: #fff;
  border: 1px solid #00d4ac;
  border-radius: 6px;
  padding: 9px 0;
  height: 45px;
  font-weight: 600;
  color: #00d4ac;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1.35px;
  transition: all 0.15s ease;
}
.blog-newsletter form input[type=submit]:hover {
  background: #00d4ac;
  color: #fff;
}

/* responsivo */
@media (max-width: 980px) {
  .blog-grid__container {
    grid-template-columns: 1fr;
  }
}
.blog-grid__posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.blog-card {
  width: 100%;
}

.single-wrap {
  padding: 50px 0;
}

.single-wrap__container {
  display: grid;
  grid-template-columns: 1.9fr 0.65fr;
  gap: 50px;
  align-items: flex-start;
}
.single-wrap__container h1 {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  color: black;
}

/* CONTEÚDO */
.single-main__date {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 12px;
}
.single-main__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 18px;
}
.single-main__thumb {
  margin-bottom: 22px;
}
.single-main__thumb img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  display: block;
}
.single-main__content {
  line-height: 1.7;
  color: #666666;
}
.single-main__content h3 {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}
.single-main__content .wp-block-image img {
  margin-block: 4rem;
}
.single-main__content ul {
  margin-block: 2rem;
}
.single-main__content ul li {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #000000;
  font-weight: 500;
}
.single-main__content ul li:before {
  content: "";
  background-color: #eeeeee;
  width: 8px;
  height: 8px;
  border-radius: 10rem;
}
.single-main__content p {
  margin-bottom: 16px;
}
.single-main__content h2,
.single-main__content h3,
.single-main__content h4 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-family: "Roboto", sans-serif;
}

/* SIDEBAR */
.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.single-box {
  background: #fff;
  border: 1px solid #eeeeee;
  padding: 18px 18px 16px;
  width: 288px;
}
.single-box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 18px;
}

.single-box--cats h3,
.single-box--featured h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* categorias */
.single-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-cats a {
  display: block;
  padding: 9px 0;
  color: #555;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 10px 12px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: color 0.15s ease;
  text-transform: initial;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 4px;
}
.single-cats a.is-current-cat {
  color: #1a1a1a;
  font-weight: 500;
  background-color: #fafafa;
}
.single-cats a:hover {
  color: #111;
}

.single-box--cats {
  width: 100%;
}

/* destaques */
.single-box--featured .single-box__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.single-box--featured .single-box__head {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.single-box--featured .single-box__head h3 {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-box--featured .featured-nav {
  display: flex;
  gap: 4px;
}
.single-box--featured .featured-nav button {
  width: 26px;
  height: 26px;
  border: 0;
  background: #fff;
  line-height: 1;
  font-size: 15px;
  cursor: pointer;
}
.single-box--featured .swiper {
  width: 100%;
}
.single-box--featured .featured-item__thumb {
  width: 100%;
  height: 150px;
  overflow: hidden;
  margin-bottom: 10px;
}
.single-box--featured .featured-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-box--featured .featured-item__date {
  font-size: 13px;
  color: #a5a5a5;
  display: block;
  margin-bottom: 6px;
}
.single-box--featured .featured-item__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.single-box--featured .featured-item__title a {
  color: #111;
  text-decoration: none;
}

/* newsletter */
.single-box--newsletter .icon {
  font-size: 20px;
  margin-bottom: 8px;
}
.single-box--newsletter h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.single-box--newsletter p {
  font-size: 14px;
  color: #6f6f6f;
  margin-bottom: 14px;
}
.single-box--newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single-box--newsletter form input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 14px;
}
.single-box--newsletter form button {
  border: 1.5px solid #42c6a7;
  background: #fff;
  color: #42c6a7;
  border-radius: 6px;
  padding: 9px 0;
  font-weight: 600;
  cursor: pointer;
}
.single-box--newsletter form button:hover {
  background: #42c6a7;
  color: #fff;
}

/* responsivo */
@media (max-width: 980px) {
  .single-wrap__container {
    grid-template-columns: 1fr;
  }
}
.related-posts {
  margin-top: 60px;
}
.related-posts .related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.related-posts .related-header h2 {
  font-size: 22px;
  font-weight: 600;
}
.related-posts .related-header .related-nav {
  display: flex;
  gap: 6px;
}
.related-posts .related-header .related-nav button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
.related-posts {
  /* cada slide agora é um grid 2x2 */
}
.related-posts .related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.related-posts .related-card {
  display: flex;
  flex-direction: column;
}
.related-posts .related-card:hover .related-card__thumb img {
  filter: grayscale(1);
}
.related-posts .related-card__thumb {
  position: relative;
  margin-bottom: 10px;
  height: 280px;
  transition: all 0.4s ease;
}
.related-posts .related-card__thumb img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
}
.related-posts .related-card__thumb .related-card__cat {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  text-transform: uppercase;
}
.related-posts .related-card__date {
  font-size: 13px;
  color: #949494;
  margin-bottom: 4px;
}
.related-posts .related-card__title {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}
.related-posts .related-card__title a {
  color: #111;
  text-decoration: none;
}
.related-posts .related-card__excerpt {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .related-posts .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ====== Variáveis simples ====== */
/* ====== Layout ====== */
.contact_int {
  padding: 2rem 1rem 0;
}
.contact_int h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact_int__wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.contact_int__aside {
  max-width: 520px;
margin-top:2rem;
}
.contact_int__badge {
  color: #00d4ac;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0.5rem 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}
.contact_int__title {
  font-size: clamp(2rem, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0.25rem 0 1rem;
  width: 70%;
}
.contact_int__desc {
  color: #717171;
  margin-bottom: 2rem;
  width: 70%;
}
.contact_int__phones {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.contact_int__phone {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 360px;
}
.contact_int__phoneIcon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}
.contact_int__phoneLabel {
  display: block;
  font-size: 0.85rem;
  color: #717171;
  line-height: 1.1;
}
.contact_int__phoneValue {
  font-weight: 600;
}
/* ====== Abas ====== */
.tabs {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto; /* mobile: slider horizontal */
  padding: 0 0.75rem;
  margin: 0 -0.75rem; /* estica até as bordas no mobile */
  scroll-snap-type: x mandatory;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tabs__btn {
  flex: 0 0 50%; /* MOBILE: mostra 2 por vez */
  scroll-snap-align: start;
  white-space: nowrap;
  border: 0;
  background: transparent;
  color: #717171;
  border-radius: 999px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  transition: all 0.4s ease;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  gap: 42px;
}
.tabs__btn:after {
  content: "";
  width: 1px;
  height: 17px;
  background-color: #717171;
  display: block;
}
.tabs__btn:first-child {
  padding-inline-start: 3rem;
}
.tabs__btn:last-child:after {
  display: none;
}
.tabs__btn:hover {
  background: #f3f4f6;
}
.tabs__btn.is-active {
  background: #00d4ac;
  color: #fff;
  border: 1px solid #00d4ac;
  transition: all 0.4s ease;
  width: 324px;
  font-weight: 600;
  height: 100%;
}
.tabs__btn.is-active:after {
  display: none;
}
.tabs__btn.is-active:first-child {
  padding-inline-start: 0;
}
.tabs__divider {
  display: none; /* só desktop */
  width: 1px;
  height: 20px;
  background: #e5e7eb;
}

/* ====== Painéis ====== */
.tabpanels {
  margin-top: 1.5rem;
}

.tabpanel {
  display: none;
}
.tabpanel.is-visible {
  display: block;
}

/* ====== Form ====== */
.form {
  display: grid;
  gap: 1rem;
  background: transparent;
  padding: 1rem;
  border: 0;
  border-radius: 0.75rem;
}
.form__grid {
  display: grid;
  gap: 1rem;
}
.form__label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  letter-spacing: 1.3px;
}
.form__input, .form__textarea {
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  background: #f7f8f9;
  padding: 0.75rem 0.85rem;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.form__input:focus, .form__textarea:focus {
  outline: 2px solid rgba(0, 212, 172, 0.35);
  border-color: #00d4ac;
  background: #fff;
}
.form__textarea {
  min-height: 9rem;
  resize: vertical;
}
.form__submit {
  justify-self: start;
  background: transparent;
  border: 1px solid #00d4ac;
  color: #00d4ac;
  border-radius: 4px;
  padding: 0.8rem 1.25rem;
  font-weight: 800 !important;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: "Inter", sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 1.35px !important;
  height: 45px;
  width: 142px;
}
.form__submit:hover {
  background: #00d4ac;
  color: white;
}

/* ====== BREAKPOINTS ====== */
@media (min-width: 768px) {
  .contact__wrap {
    grid-template-columns: 5fr 7fr; /* esquerda/direita */
    align-items: center;
    display: grid;
  }
  .contact__headline {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .tabs {
    overflow: visible; /* desktop sem slider */
    padding: 0;
    margin: 0;
    gap: 0.75rem;
    overflow: visible;
    padding-inline-end: 3rem;
    margin: 0;
    gap: 0.75rem;
    border-radius: 2rem;
    height: 49px;
    justify-content: space-between;
  }
  .tabs__btn {
    flex: 0 0 auto;
  }
  .tabs__divider {
    display: inline-block;
  }
  .form__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.feat-gallery {
  padding: 80px 0 48px;
}
.feat-gallery h2 {
  width: 50%;
  margin-bottom: 3rem;
}
.feat-gallery .feat-list {
  counter-reset: featcount;
}
.feat-gallery .feat-card {
  counter-increment: featcount;
  width: 100%;
}
.feat-gallery .feat-card:nth-child(2n) {
  margin-top: 100px;
}
@media (max-width: 720px) {
  .feat-gallery .feat-card:nth-child(2n):nth-child(2n) {
    margin-top: 0;
  }
}
.feat-gallery .feat-card .feat-card__media {
  margin-bottom: 18px;
  border-radius: 15px;
  overflow: hidden;
}
.feat-gallery .feat-card .feat-card__media img {
  display: block;
  width: 100%;
  height: 333px;
  -o-object-fit: cover;
     object-fit: cover;
}
.feat-gallery .feat-card .feat-card__title {
  position: relative;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 400;
  color: #1b1b1b;
  padding-left: 50px;
}
.feat-gallery .feat-card .feat-card__title::before {
  content: counter(featcount, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  font-weight: 500;
  color: #1b1b1b;
}
.feat-gallery .feat-swiper {
  overflow: visible;
  padding-right: 24px;
}
@media (min-width: 1024px) {
  .feat-gallery .feat-swiper {
    padding-right: 0;
  }
  .feat-gallery .feat-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .feat-gallery .feat-card {
    max-width: none;
  }
}

.hero-planejado {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}
.hero-planejado__slider .swiper-slide {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  padding-bottom: 1rem;
  align-items: center;
  justify-content: flex-end;
  padding-right: 64px;
  position: relative;
}
.hero-planejado__play {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  cursor: pointer;
}
.hero-planejado__content {
  background: #fff;
  border-radius: 114px 0 0 0;
  width: 449px;
  padding: 82px 35px;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  height: 550px;
  box-shadow: 5px 6px 25px 0px hsla(0, 0%, 68%, 0.1);
  -webkit-box-shadow: 5px 6px 25px 0px rgba(174, 174, 174, 0.1);
  -moz-box-shadow: 5px 6px 25px 0px rgba(174, 174, 174, 0.1);
}
.hero-planejado__content h2 {
  font-size: 42px;
  color: #111;
  margin-bottom: 36px;
  font-weight: 600;
  line-height: 1.1;
}
.hero-planejado__slide img.img_bg {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 114px 0 0 0;
}
.hero-planejado__features {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}
.hero-planejado__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-planejado__features li .icon {
  width: 60px;
  height: 60px;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-planejado__features li .text {
  display: grid;
}
.hero-planejado__features li .text .label {
  font-weight: 600;
  color: #111;
}
.hero-planejado__features li .text .value {
  font-size: 16px;
  color: #a5a5a5;
  font-weight: 500;
}
.hero-planejado__controls {
  position: absolute;
  bottom: 30px;
  right: 155px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  padding: 8px 16px;
  z-index: 9;
}
.hero-planejado__controls .hero-planejado__fraction {
  font-weight: 600;
  color: #6e6e6e;
}
.hero-planejado__controls .hero-planejado__progress {
  flex: 1;
  height: 2px;
  background: transparent;
  position: relative;
  background-color: hsla(0, 0%, 43%, 0.2);
  width: 160px;
}
.hero-planejado__controls .hero-planejado__progress .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #6e6e6e;
  transition: width 0.25s ease;
}
.hero-planejado__controls .hero-planejado__next {
  border: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 992px) {
  .hero-planejado__slider .swiper-slide {
    flex-direction: column;
    padding: 0;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .hero-planejado__content {
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px;
  }
  .hero-planejado__controls {
    position: relative;
    margin: 24px auto 0;
    background: transparent;
  }
}

.cta-tiles {
  display: grid;
  gap: 40px;
  align-items: stretch;
  margin-top: 120px;
}
.cta-tiles--1 {
  grid-template-columns: 1fr;
}
.cta-tiles--2 {
  grid-template-columns: repeat(2, 1fr);
}
.cta-tiles--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
  .cta-tiles--2, .cta-tiles--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-tiles--1 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .cta-tiles--1, .cta-tiles--2, .cta-tiles--3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.cta-tiles__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "bar icon cta" "bar body cta";
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 12px;
  padding: 36px 0;
  padding-inline-end: 30px;
  background: #fafafa;
  border-radius: 16px;
  text-decoration: none;
  color: #111;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-tiles__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.cta-tiles__bar {
  grid-area: bar;
  position: absolute;
  left: 0;
  width: 1px;
  height: 100%;
  background: #00d4ac;
  align-self: stretch;
}
.cta-tiles__icon {
  grid-area: icon;
  width: 32px;
  height: 32px;
  align-self: start;
}
.cta-tiles__body {
  grid-area: body;
}
.cta-tiles__title {
  margin: 0 0 10px 0;
  color: #1e1e1e;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .cta-tiles__title {
    font-size: 22px;
  }
}
.cta-tiles__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: hsla(0, 0%, 12%, 0.6);
}
@media (max-width: 768px) {
  .cta-tiles__desc {
    font-size: 18px;
  }
}
.cta-tiles__cta {
  grid-area: cta;
  align-self: center;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
}
.cta-tiles__cta svg path[stroke="#48C7A9"] {
  transition: transform 0.2s ease;
  transform-origin: center;
}
.cta-tiles__item:hover .cta-tiles__cta svg path[stroke="#48C7A9"] {
  transform: translateX(2px);
}

.m-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}
.m-modal.is-open {
  display: block;
}
.m-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.m-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 28px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.m-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}
.m-modal__titlewrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.m-modal__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.m-modal__close {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.m-modal__close:hover {
  background: #f2f2f2;
}
.m-modal__body {
  padding: 12px 16px 16px;
}
.m-modal__media {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.m-modal__media iframe,
.m-modal__media video,
.m-modal__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-modal__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.m-modal__play .ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
}
.m-modal__play .triangle {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}
.m-modal__caption {
  margin: 10px 4px 0;
  font-size: 14px;
  color: #6b6b6b;
}

/* ========== MODAL GALERIA ========== */
.g-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
}
.g-modal.open {
  display: flex;
}
.g-modal__overlay {
  position: absolute;
  inset: 0;
}
.g-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  max-height: 640px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.g-modal {
  /* HEADER */
}
.g-modal__header {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.g-modal__titlewrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.g-modal__titlewrap svg {
  flex-shrink: 0;
}
.g-modal__titlewrap h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #282a2f;
}
.g-modal__close {
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  line-height: 0;
}
.g-modal__close svg {
  display: block;
}
.g-modal {
  /* BODY: imagem grande + thumbs */
}
.g-modal__body {
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  flex: 1 1 auto;
  overflow: hidden;
}
.g-modal__main {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.g-modal__main .g-main-swiper {
  width: 100%;
  height: 100%;
  min-height: 360px;
}
.g-modal__main .g-main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.g-modal__main .g-main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.g-modal__thumbs {
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
}
.g-modal__thumbs .g-thumbs-swiper {
  width: 100%;
  height: 100%;
}
.g-modal__thumbs .swiper-slide {
  width: 100%;
  height: 110px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
.g-modal__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.g-modal__thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  box-shadow: 0 0 0 2px #48c7a9;
}
.g-modal {
  /* FOOTER: fração + barra + botão */
}
.g-modal__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr 340px;
  padding-block: 10px;
}
.g-modal__fraction {
  font-size: 14px;
  font-weight: 500;
  color: #6e6e6e;
  min-width: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline-end: 24px;
}
.g-modal__fraction .g-current,
.g-modal__fraction .g-total {
  display: inline-block;
}
.g-modal__progress {
  flex: 1 1 auto;
  height: 2px;
  background: hsla(0, 0%, 43%, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  width: 204px;
}
.g-modal__progress .g-bar {
  position: absolute;
  inset: 0;
  width: 0%;
  background: #6e6e6e;
  transition: width 0.25s ease;
}
.g-modal__next {
  border: none;
  background: transparent;
  cursor: pointer;
}
.g-modal {
  /* LEGENDA */
}
.g-modal__caption {
  margin: 0 24px 16px;
  font-size: 14px;
  color: #666;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
  .g-modal {
    padding: 12px;
  }
  .g-modal__dialog {
    max-height: 100vh;
    border-radius: 0;
  }
  .g-modal__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .g-modal__main .g-main-swiper {
    min-height: 260px;
    max-height: 55vh;
  }
  .g-modal__thumbs {
    margin-top: 10px;
    height: 120px;
  }
  .g-modal__thumbs .swiper-slide {
    height: 100%;
  }
}
@media (max-width: 640px) {
  .g-modal__header {
    padding: 10px 16px;
  }
  .g-modal__body {
    padding: 12px 16px;
    gap: 10px;
  }
  .g-modal__footer {
    padding: 8px 16px 10px;
  }
  .g-modal__caption {
    margin: 0 16px 12px;
  }
}
/* trava scroll quando o modal está aberto */
.has-m-modal-open {
  overflow: hidden;
}

.m-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.55);
}
.m-modal.is-open {
  display: flex;
}
@media (max-width: 768px) {
  .m-modal {
    padding: 16px;
  }
}
.m-modal__overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.m-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  max-height: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.m-modal__header {
  padding: 16px 24px;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.m-modal__titlewrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.m-modal__titleicon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f4f4f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.m-modal__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}
.m-modal__close {
  border: 0;
  background: transparent;
  padding: 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.m-modal__close:hover {
  background: #f3f3f3;
}
.m-modal__body {
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-modal__media {
  position: relative;
  width: 100%;
  flex: 1;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-modal__media-el {
  max-width: 100%;
  max-height: calc(100vh - 210px);
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  /* se quiser diferenciar vídeo/iframe, pode adicionar classes extras no JS */
}
.m-modal__caption {
  margin: 0;
  font-size: 14px;
  color: #555;
}
@media (max-width: 768px) {
  .m-modal__dialog {
    max-height: calc(100% - 16px);
  }
  .m-modal__body {
    padding-inline: 16px;
  }
  .m-modal__media-el {
    max-height: calc(100vh - 230px);
  }
}

.obra-status {
  padding: 80px 0 180px;
  background: #fafafa;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 100px;
}
.obra-status:after {
  content: "";
  background: url(../imgs/line_obra.svg) no-repeat;
  position: absolute;
  width: 100%;
  height: 679px;
  left: 0;
  top: 55px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .obra-status:after {
    left: -7rem;
  }
}
.obra-status__container {
  display: grid;
  grid-template-columns: minmax(0, 436px) minmax(0, 483px);
  -moz-column-gap: 170px;
       column-gap: 170px;
  position: relative;
}
.obra-status__left {
  display: flex;
  flex-direction: column;
}
.obra-status__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 26px;
  border-radius: 40px;
  border: 0.5px solid hsla(0, 0%, 12%, 0.5);
  font-size: 14px;
  text-transform: uppercase;
  color: #292929;
  width: -moz-max-content;
  width: max-content;
  font-family: var("Inter", sans-serif);
}
.obra-status__title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 20px;
  margin-top: 28px;
}
.obra-status__text p {
  font-size: 18px;
  line-height: 1.6;
  color: hsla(0, 0%, 12%, 0.6);
  max-width: 340px;
}
.obra-status__total {
  margin-top: 60px;
}
.obra-status__total-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.obra-status__total-label {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  color: hsla(0, 0%, 12%, 0.6);
}
.obra-status__total-value {
  font-size: 24px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #1e1e1e;
}
.obra-status__total-value .js-counter {
  display: inline-block;
  min-width: 2ch;
  text-align: right;
  color: #1e1e1e;
}
.obra-status__progress {
  width: 100%;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #00d4ac;
  background: #e6f5f0;
  overflow: hidden;
}
.obra-status__progress-inner {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: #00d4ac;
  transition: width 1.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.obra-status__gallery-card {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 34px;
  border-radius: 16px;
  height: 116px;
  position: relative;
  background: #fff;
  text-decoration: none;
  color: #111111;
  transition: box-shadow 0.25s ease-out, transform 0.25s ease-out;
}
.obra-status__gallery-card:after {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 65%;
  background: #00d4ac;
  align-self: stretch;
}
.obra-status__gallery-card:hover {
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.obra-status__gallery-icon {
  width: 24px;
  height: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.obra-status__gallery-icon svg {
  width: 24px;
  height: 24px;
}
.obra-status__gallery-text {
  flex: 1;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1e1e1e;
  font-weight: 600;
}
.obra-status {
  /* Coluna direita */
}
.obra-status__right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 62px;
  -moz-column-gap: 125px;
       column-gap: 125px;
  align-content: flex-start;
  padding-top: 100px;
}
.obra-status__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.obra-status__percent {
  font-size: 72px;
  font-weight: 600;
  color: #111111;
  line-height: 1;
}
.obra-status__percent .js-counter {
  color: #00d4ac;
  min-width: 2ch;
  text-align: right;
  display: inline-block;
}
.obra-status__label {
  margin-top: 4px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #1b1b1b;
  font-weight: 400;
}
.obra-status {
  /* Responsivo */
}
@media (max-width: 900px) {
  .obra-status__container {
    padding: 32px 20px;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .obra-status__right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .obra-status__right {
    grid-template-columns: 1fr;
  }
  .obra-status__title {
    font-size: 26px;
  }
}

.condicoes {
  padding: 80px 0;
  position: relative;
}
.condicoes:after {
  content: "";
  background-color: #113033;
  border-radius: 0 100px 0 0;
  min-height: 600px;
  width: 398px;
  height: auto;
  position: absolute;
  left: 0;
  top: 15rem;
}
.condicoes__container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media (max-width: 992px) {
  .condicoes__container {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 40px;
  }
}
.condicoes__left {
  position: relative;
}
.condicoes__title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 114px;
  color: #1b1b1b;
}
@media (max-width: 768px) {
  .condicoes__title {
    font-size: 36px;
  }
}
.condicoes {
  /* WRAPPER DA IMAGEM */
}
.condicoes__imagewrap {
  position: relative;
  max-width: 520px;
}
.condicoes {
  /* O BLOCO VERDE ESCURO */
}
.condicoes__bgshape {
  width: 260px;
  height: 100%;
  background: #0c2e2e;
  border-radius: 0 0 0 60px;
  position: absolute;
  left: -40px;
  bottom: -40px;
  z-index: 0;
}
@media (max-width: 992px) {
  .condicoes__bgshape {
    left: 50%;
    transform: translateX(-50%);
  }
}
.condicoes {
  /* IMAGEM PRINCIPAL */
}
.condicoes__image {
  width: 100%;
  height: 492px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 100px 0 0;
  display: block;
  position: relative;
  z-index: 2;
}
.condicoes {
  /* PARTE DIREITA */
}
.condicoes__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.condicoes {
  /* ITEM */
}
.condicoes__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.condicoes__item h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 6px;
  color: black;
  display: flex;
  align-items: center;
  gap: 16px;
}
.condicoes__item p {
  color: #888;
  font-size: 14px;
  max-width: 420px;
}
.condicoes__icon {
  min-width: 34px;
  height: 34px;
}

.plantas {
  padding: 80px 0;
}
.plantas__title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #1b1b1b;
}
.plantas {
  /* TABS */
}
.plantas__tabs {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
}
.plantas__tabs .planta-tab {
  background: transparent;
  border: none;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-family: var("Inter", sans-serif);
  position: relative;
  display: flex;
  align-items: center;
  color: hsla(0, 0%, 12%, 0.6);
  text-transform: none;
  margin-bottom: 16px;
  gap: 10px;
}
.plantas__tabs .planta-tab:before {
  content: "";
  width: 32px;
  height: 1px;
  background-color: #1e1e1e;
  display: none;
  opacity: 0;
}
.plantas__tabs .planta-tab.active {
  font-weight: 600;
  color: #1e1e1e;
}
.plantas__tabs .planta-tab.active:before {
  display: block;
  opacity: 1;
}
.plantas .flex {
  justify-content: end;
}
.plantas .swiper {
  overflow: hidden;
  width: 1200px;
  display: flex;
  justify-content: end;
  margin-left: inherit;
  margin-right: inherit;
}
.plantas .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.85);
  opacity: 0.3;
}
.plantas .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.plantas {
  /* CARD */
}
.plantas .planta-card {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.plantas .planta-card:after {
  content: "";
  background: 11eE1E;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 16px;
}
.plantas .planta-card img {
  width: 680px;
  border-radius: 20px;
  display: block;
  height: 454px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.plantas .planta-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px;
  width: 100%;
  border-radius: 0 0 20px 20px;
  z-index: 9;
}
.plantas .planta-card__info h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 12px;
}
.plantas .planta-card__info p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: -0.8;
}
.plantas {
  /* NAVEGAÇÃO GLOBAL */
}
.plantas__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  width: 317px;
  margin-inline: auto;
}
.plantas__fraction {
  font-size: 16px;
  font-weight: 500;
  color: #6e6e6e;
}
.plantas__progress {
  flex: 1;
  height: 4px;
  background: hsla(0, 0%, 43.14%, 0.33);
  border-radius: 4px;
  overflow: hidden;
}
.plantas__progress .plantas__progress-bar {
  height: 100%;
  width: 0%;
  background: #6e6e6e;
  transition: width 0.3s ease;
}
.plantas__next {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.localizacao {
  padding: 80px 0 60px;
}
.localizacao__title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 32px;
  color: #1b1b1b;
}
.localizacao__tabs {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.localizacao__tab {
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  padding: 0 40px;
  border-radius: 999px;
  text-transform: initial;
  font-size: 14px;
  cursor: pointer;
  color: #717171;
  width: 250px;
  height: 49px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.localizacao__tab.is-active {
  background: #00d4ac;
  font-weight: 600;
  color: #ffffff;
  width: 324px;
}
.localizacao__mapwrap {
  position: relative;
  margin-bottom: 40px;
}
.localizacao__map {
  display: none;
  position: relative;
}
.localizacao__map.is-active {
  display: block;
}
.localizacao__map iframe {
  width: 100%;
  height: 470px;
  border: 0;
  display: block;
}
.localizacao__features {
  width: 100%;
  max-width: 1175px;
  margin-inline: auto;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
}
.localizacao__features.is-active {
  display: grid;
}
.localizacao__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: black;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
.localizacao__icon {
  width: 25px;
  height: 28px;
  display: inline-block;
}
@media (max-width: 992px) {
  .localizacao__title {
    font-size: 36px;
  }
  .localizacao__card {
    right: 50%;
    transform: translate(50%, -50%);
    min-width: 280px;
  }
  .localizacao__features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .localizacao__container {
    padding: 0 20px;
  }
  .localizacao__tabs {
    flex-direction: column;
    gap: 12px;
  }
  .localizacao__map iframe {
    height: 320px;
  }
  .localizacao__card {
    position: static;
    transform: none;
    margin-top: -40px;
    margin-bottom: 16px;
  }
  .localizacao__mapwrap {
    margin-bottom: 24px;
  }
}

.localizacao__map {
  display: none;
}

.localizacao__map.is-active {
  display: block;
}

.localizacao__features {
  display: none;
}

.localizacao__features.is-active {
  display: grid;
}

.footer-cta {
  position: relative;
}
.footer-cta .flo_whats {
  position: fixed;
  top: 28rem;
  right: 2rem;
  z-index: 9999;
}

.footer-cta__nav a {
  color: white;
}

#conhecer {
  margin-top: 92px;
}
#conhecer .box {
  background: url(../imgs/bg_venha.png) center no-repeat;
  background-size: cover;
  min-height: 305px;
  width: 1000px;
  margin-inline: auto;
  padding-inline: 77px;
  border-radius: 20px;
  padding-block: 30px;
}
@media (max-width: 770px) {
  #conhecer .box {
    background: url(../imgs/bg_venha_mob.png) center no-repeat;
    background-size: cover;
    padding-block-start: 60px;
    width: 100%;
    padding-inline: 16px;
  }
}
#conhecer .grid {
  grid-template-columns: 1fr 325px;
  align-items: center;
  gap: 150px;
}
@media (max-width: 770px) {
  #conhecer .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#conhecer h2 {
  color: white;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 770px) {
  #conhecer h2 {
    font-size: 32px;
  }
}
#conhecer .text {
  letter-spacing: 0.53px;
  color: white;
}
#conhecer .text .link {
  color: white;
  border: 1px solid white;
  font-size: 12px;
  letter-spacing: 1.35px;
  border-radius: 4px;
  margin-top: 4px;
  height: 45px;
}
#conhecer .text .link:hover {
  background: white;
  color: #00d4ac;
}

.cat-track {
  display: none;
}

.buscamobile {
  display: none;
}

.filtro-emp h4 {
  display: none;
}

.filtro-emp .close {
  display: none;
}

@media (max-width: 1100px) {
  .submenu a:hover,
  .submenu a:focus {
    background-color: transparent;
  }
  .main-nav {
    position: relative;
    z-index: 20;
    position: absolute;
    display: none;
    background: white;
    top: 3rem;
    width: 100%;
    left: 0;
    padding-block: 2rem;
  }
  .main-nav.active {
    display: block;
  }
  .main-nav .menu {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
  }
  .main-nav .menu .has-sub {
    position: relative;
    text-align: center;
  }
  .main-nav .has-sub.open .submenu {
    display: block;
    position: inherit;
    border-radius: 0;
    box-shadow: initial;
    border: 0;
    padding: 0 0 0 2rem;
  }
  .page-template-default .hero .hero-slider {
    height: 420px;
  }
  .buscamobile {
    border: 1px solid #d3d3d3;
    border-radius: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline-start: 2rem;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  #empreendimento.empreendimento-home {
    position: relative;
  }
  #filtro-emp {
    display: none;
  }
  .filtro-emp {
    border-radius: 24px;
    height: auto;
    padding: 20px 26px 74px 26px;
    gap: 12px;
    position: absolute;
    z-index: 9;
    display: block;
    width: 90%;
    text-align: left;
    left: 50%;
    transform: translate(-50%);
    top: 0;
  }
  .filtro-emp .mob_t_b {
    font-size: 24px;
    font-family: var(--second-font);
    color: #1F2128;
  }
  .filtro-emp .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: none;
  }
}
@media (max-width: 1100px) and (max-width: 990px) {
  .filtro-emp .close {
    display: block;
  }
}
@media (max-width: 1100px) {
  .filtro-emp h4 {
    font-size: 24px;
    color: #1f2128;
  }
  .filtro-emp label {
    background-color: #f6f6f6;
    display: block;
    border-radius: 100px;
    width: 100%;
    margin-bottom: 8px;
    padding-inline: 24px;
    padding-block: 14px;
  }
  .page-template-enviada #banner_interno.quem-somos {
    height: 291px;
  }
  .page-template-enviada #banner_interno.quem-somos p {
    color: white;
    font-size: 16px;
  }
  .page-template-enviada #banner_interno.enviado p {
    color: white;
    width: 100%;
    font-size: 16px;
  }
  .page-template-enviada #banner_interno.quem-somos .intro h2 {
    font-size: 32px !important;
  }
  .page-template-enviada #banner_interno.quem-somos:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../imgs/llm.svg) no-repeat left;
    pointer-events: none;
  }
  .tabs__btn,
  .tabs__btn.is-active {
    height: 33px;
    width: -moz-max-content;
    width: max-content;
    padding-inline: 20px !important;
  }
  .contact_int__desc,
  .contact_int__aside {
    width: 100%;
  }
  .contact_int__aside {
    margin-top: 2rem;
  }
  .tabs__btn {
    flex: 0 0 30%;
  }
  .tabs {
    background: transparent;
  }
  .tabs__btn:after {
    display: none;
  }
  .single-box {
    width: 390px;
  }
  .hero_blog .swiper-slide h2 {
    font-size: 16px !important;
  }
  .logo img {
    width: 100px;
  }
  .snap-section .text {
    width: 90%;
  }
  .snap-section .text p {
    line-height: 24px;
  }
  .obra-status {
    padding: 0 0 2rem;
    margin-top: 2rem;
  }
  .obra-status__right {
    grid-template-columns: 1fr 1fr;
    gap: 98px;
    -moz-column-gap: 90px;
         column-gap: 90px;
    row-gap: 28px;
  }
  .obra-status__percent {
    font-size: 42px;
  }
  .obra-status__label {
    font-size: 14px;
    letter-spacing: initial;
  }
  .snap-section .text .link {
    width: 110%;
    height: 32px;
  }
  header .flex {
    gap: 20px;
    align-items: center;
  }
  header a.link {
    width: 100px;
    height: 32px;
    font-size: 12px;
    margin-right: 3rem;
  }
  #oq:after {
    background: url(../imgs/line1_mob.svg) no-repeat;
    left: 0;
    background-size: contain;
    top: 2px;
  }
  #oq {
    margin-top: 38px;
  }
  #oq h2 {
    width: 53%;
    text-align: left;
  }
  .content-cards {
    margin-top: 15px;
  }
  .condicoes:after {
    content: "";
    background-color: #113033;
    border-radius: 0 100px 0 0;
    min-height: 312px;
    width: 83%;
    height: auto;
    position: absolute;
    left: 0;
    top: 14rem;
  }
  .condicoes__image {
    width: 100%;
    height: 246px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0 100px 0 0;
    display: block;
    position: relative;
    z-index: 2;
  }
  .condicoes__item {
    text-align: left;
  }
  .condicoes__item h3 {
    font-size: 16px;
  }
  .condicoes__container {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 4rem;
  }
  .cta-invest {
    margin-top: 1rem;
    width: 100%;
    height: 504px;
    background: #113033 url(../imgs/mask_invista_mobile.png) no-repeat center;
    background-size: cover;
    padding-right: 0;
    padding-inline: 40px;
  }
  .cta-invest h2 {
    font-size: 32px !important;
    margin-bottom: 74px;
  }
  .cta-invest__left {
    padding-left: 0;
  }
  .consultor {
    position: relative;
  }
  .consultor:after {
    content: "";
    background: url(../imgs/line1_mob.svg) no-repeat;
    position: absolute;
    top: -40px;
    left: 0;
    height: 140px;
    width: 100%;
    background-size: contain;
  }
  .consultor svg {
    display: none;
  }
  .consultor .title {
    position: absolute;
    top: -8rem;
    width: 78%;
  }
  .consultor__left {
    order: 2;
  }
  .consultor__right {
    order: 1;
    margin-top: 4rem;
  }
  .consultor__list {
    margin-top: 0;
    gap: 15px;
  }
  .consultor__list svg {
    display: block;
    width: 32px;
  }
  .consultor .btn-send {
    width: 100%;
  }
  .contact {
    grid-template-columns: 39px 1fr;
    gap: 10px;
  }
  .consultor__grid {
    gap: 0;
  }
  footer.footer-cta {
    border-radius: 82px 0 0 0;
    margin-top: 4rem;
  }
  footer.footer-cta .footer-cta__links {
    grid-template-columns: 1fr 1fr;
  }
  footer.footer-cta .footer-cta__social {
    justify-content: center;
  }
  footer.footer-cta .link {
    width: 100%;
    height: 35px;
  }
  #banner_interno.quem-somos {
    height: 223px;
  }
  #banner_interno.quem-somos:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: url(../imgs/linear_mobile.png) no-repeat left;
    pointer-events: none;
  }
  #sobre {
    margin-top: 3rem;
  }
  #sobre .grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  #sobre .boxes .box_g img {
    height: 345px;
  }
  #sobre .boxes .box_g {
    height: 345px;
  }
  #sobre .boxes {
    margin-top: 80px;
  }
  #sobre .box_p {
    height: 232px;
  }
  #sobre .box_p img {
    height: 232px;
  }
  .testi__text {
    font-size: 16px;
  }
  .testi__text p {
    line-height: 22px;
  }
  .partners {
    padding: 77px 0 80px;
  }
  #pilares .box .cc {
    width: 100%;
  }
  #pilares .box .cc .ct {
    border-left: 1px solid hsla(169, 71%, 85%, 0.85);
    padding-left: 0;
    margin-bottom: 16px;
    margin-left: 26px;
    padding-inline: 30px;
    width: 100%;
    padding-inline-end: 76px;
  }
  #pilares .box .cc .ct p {
    line-height: 20px;
  }
  #pilares h3 {
    font-size: 16px !important;
  }
  #pilares {
    position: relative;
    margin-bottom: 5rem;
  }
  #pilares:after {
    content: "";
    position: absolute;
    background: url(../imgs/line_priv.svg) no-repeat;
    width: 100%;
    left: 1.5rem;
    transform: initial;
    top: 3rem;
    height: 693px;
  }
  #pilares .box:after {
    display: none;
    background: url(../imgs/line_priv.svg) no-repeat;
    width: 100%;
    left: 0;
    transform: initial;
    top: 0;
  }
  .why-card__content h3 {
    font-size: 24px;
  }
  .why-card__media {
    width: 100%;
    height: 309px;
  }
  #oq_in .grid {
    grid-template-columns: 1fr;
  }
  #oq_in {
    margin-top: 2rem;
    margin-block: 3rem;
  }
  .steps__item .steps__num,
  .steps__item.is-reverse .steps__axis {
    position: absolute;
    top: -25px;
    left: 0;
    display: inline-block;
    color: var(--mint);
    background: initial;
    padding: 0;
    border-radius: 0.25em;
    font-size: 42px;
    font-weight: 600;
    z-index: 1;
  }
  .steps__item .steps__media img {
    width: 100%;
    height: 263px;
  }
  .steps__item .steps__text h3 {
    font-size: 18px;
  }
  .steps__item {
    box-shadow: initial;
  }
  .steps__item .steps__text p {
    line-height: 20px;
  }
  .steps__item.is-reverse .steps__axis {
    order: 0;
  }
  .steps__slider {
    padding-top: 40px;
  }
  .steps__item {
    padding: 0;
  }
  .steps__item .steps__axis,
  .steps__item.is-reverse .steps__axis {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    height: -moz-max-content;
    height: max-content;
    position: absolute;
    top: -31px;
    background: url(../imgs/dot_mob.svg) no-repeat center 8px;
    min-height: 70px;
  }
  .steps__item {
    display: initial;
  }
  .page-template-minha-casa .why-ctc:after {
    top: 2rem;
    height: 295px;
  }
  .page-template-minha-casa .why-card__media {
    height: 295px;
  }
  .page-template-minha-casa .why-card__media img {
    height: 241px;
  }
  .page-template-minha-casa .why-card {
    gap: 20px;
  }
  .page-template-minha-casa .why-panels h3 {
    font-size: 18px;
  }
  .page-template-minha-casa .why-card__text {
    font-size: 14px;
  }
  .page-template-minha-casa .why-ctrl {
    margin-left: 0;
    width: 100%;
  }
  .financing-slider {
    margin-top: 0;
  }
  .financing-slider .swiper-progress {
    width: 100% !important;
  }
  .info-section {
    margin-top: 0;
  }
  .accent-path {
    background: url(../imgs/line1_mob.svg) no-repeat;
    left: 0;
    background-size: contain;
    width: 100%;
    top: 14rem;
    display: block;
  }
  .info-section .content-container {
    padding-top: 0;
  }
  .info-left p {
    font-size: 18px;
    color: hsla(0, 0%, 12%, 0.6);
    width: 88%;
  }
  .localizacao__tabs .as {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .g-modal__thumbs {
    display: none;
  }
  .g-modal__footer {
    padding: 8px 16px 10px;
    display: block;
  }
  .localizacao__tab {
    width: -moz-max-content !important;
    width: max-content !important;
    padding-inline: 23px;
  }
  .g-modal__fraction {
    padding-inline-end: 0;
    width: 100%;
  }
  .localizacao__feature {
    font-size: 16px;
  }
  .hero.interno_empreendimento .ver_gal {
    right: 0;
    top: 25px;
    z-index: 999;
    transform: scale(0.7);
  }
  .info-left {
    padding-top: 2rem;
  }
  #filtro_loja p {
    width: 100%;
    line-height: 20px;
    text-align: left;
    padding-inline: 1rem;
  }
  .lojas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .loja-card .cc {
    padding-inline: 0;
  }
  .atendimento {
    margin-top: 0;
  }
  .atendimento p {
    font-size: 14px;
    line-height: 20px;
  }
  #cols {
    margin-top: 2rem;
  }
  #cols .grid {
    grid-template-columns: 1fr;
  }
  #cols .grid h2 {
    margin-bottom: 16px;
  }
  #cols .grid p {
    font-size: 14px;
    line-height: 20px;
  }
  .indicacao {
    display: none;
  }
  .page-template-indique #cols {
    margin-bottom: 0;
  }
  .area-cliente {
    position: relative;
    padding: 0;
    padding-top: 90px;
  }
  .area-cliente:after {
    background: url(../imgs/line1_mob.svg) no-repeat;
    left: 0;
    background-size: contain;
    width: 100%;
    top: -6rem;
    display: block;
  }
  .area-cliente__content {
    width: 100%;
  }
  .area-cliente__title,
  .area-cliente__button {
    width: 100%;
  }
  .beneficios__center {
    order: 0;
  }
  .beneficios__col {
    order: 1;
  }
  .page-template-investidor #cols {
    margin-bottom: 3rem;
  }
  #inv_video img.bb {
    width: 100%;
    height: 256px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
  }
  label {
    font-size: 14px !important;
  }
  #form_investidor:after {
    background: url(../imgs/line1_mob.svg) no-repeat;
    height: 101px;
    top: 4rem;
  }
  #form_investidor .ctc-form input[type=submit] {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  #form_investidor .text .box {
    display: none;
  }
  #form_investidor .grid {
    grid-template-columns: 1fr;
  }
  .beneficios__imgwrap {
    width: 100%;
  }
  .beneficios__base {
    border-radius: 53px 0 0 0;
    height: 72px;
    background-color: #7cfdd2;
  }
  .beneficios__col {
    gap: 25px;
  }
  .beneficios__content {
    gap: 29px;
  }
  .hero_blog .texto {
    bottom: 4rem;
    left: 1rem;
  }
  .hero-controls {
    position: absolute;
    right: clamp(16px, 6vw, 80px);
    bottom: -60px;
    display: flex;
    align-items: center;
    gap: clamp(12px, 3vw, 13px);
    z-index: 5;
    pointer-events: none;
    width: 263px;
  }
  .hero-controls .hero-fraction {
    font-weight: 300;
    font-size: clamp(12px, 3.6vw, 16px);
    letter-spacing: 0.5px;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
  }
  .hero-controls .hero-fraction .sep {
    opacity: 0.85;
    margin: 0 0.15em;
  }
  .hero-controls .hero-progress {
    flex: 1;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35));
    position: relative;
    overflow: hidden;
  }
  .hero-controls .hero-progress .bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: #ffffff;
    border-radius: inherit;
    transition: width 600ms ease;
  }
  .hero-controls .page-template-blog .hero-next {
    pointer-events: auto;
    flex: 0 0 auto;
    background: transparent;
    border: 0;
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  .hero-controls .page-template-blog .hero-next:hover {
    transform: translateY(-2px) scale(1.03);
  }
  .hero-controls .page-template-blog .hero-next:active {
    transform: translateY(0) scale(0.98);
  }
  .hero-controls .page-template-blog .hero-next svg {
    display: block;
  }
  .most-read__num {
    text-align: start;
    margin-bottom: 4px;
  }
  .most-read__thumb {
    margin-bottom: 16px;
  }
  .most-read__slide {
    gap: 28px;
  }
  .most-read__controls {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
    width: 100%;
  }
  .recent-posts__controls {
    width: 100%;
  }
  .blog-grid__posts {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1100px) {
  /* container */
  .cat-bar {
    margin-bottom: 24px;
    display: block;
  }
  .blog-cats {
    display: none;
  }
  /* título */
  .cat-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  /* trilho scrollável */
  .cat-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  /* esconder scrollbar */
  .cat-track::-webkit-scrollbar {
    display: none;
  }
  .hero.interno_empreendimento .box_texto h3 {
    font-size: 24px;
  }
  .hero.interno_empreendimento .box_texto h2 {
    font-size: 14px !important;
    letter-spacing: initial;
  }
  .feat-gallery {
    padding: 30px 0 48px;
  }
  .feat-gallery h2 {
    width: 90%;
  }
  .hero-planejado__slide img.img_bg {
    height: 458px;
  }
  .hero-planejado__play {
    top: 24%;
    left: 50%;
  }
  .hero-planejado__content {
    width: 100%;
    border-radius: 114px 0 0 0;
    padding: 4rem 24px 0px 4rem;
    position: initial;
    margin-top: -4rem;
    height: -moz-max-content;
    height: max-content;
  }
  .hero-planejado__controls {
    position: initial;
  }
  .hero-planejado {
    margin-top: 30px;
  }
  .cta-tiles__title {
    font-size: 18px;
  }
  .obra-status:after {
    background: url(../imgs/line_dados.svg) no-repeat;
    top: 23rem;
    left: -11px;
  }
  .obra-status__gallery-text {
    font-size: 14px;
  }
  .obra-status__total-label {
    font-size: 16px;
    font-family: "Inter", sans-serif;
  }
  .obra-status__gallery-arrow svg {
    width: 29px;
  }
  #cols.empreendimento {
    background-color: white;
    padding-block-end: 1rem;
  }
  .hero.interno_empreendimento .box_texto {
    width: 90%;
    padding: 30px;
    height: -moz-max-content;
    height: max-content;
    border-radius: 0 0 100px;
    bottom: initial;
  }
  .hero.interno_empreendimento {
    height: 435px;
  }
  .hero.interno_empreendimento .hero-slider {
    height: 435px;
  }
  .hero.interno_empreendimento .emp-badge {
    font-size: 12px;
    width: -moz-max-content;
    width: max-content;
    height: 35px;
  }
  .plantas .swiper {
    display: block;
    width: 100%;
  }
  .plantas__tabs {
    display: block;
    position: initial;
  }
  .plantas .planta-card img {
    width: 100%;
  }
  .plantas .flex {
    justify-content: end;
    padding-inline: 1rem;
  }
  .plantas .planta-card__info h3 {
    font-size: 24px;
  }
  .plantas {
    padding: 0;
  }
  p {
    margin: 0.75rem 0;
    line-height: 23px;
  }
  .cat-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: none;
    border-radius: 999px;
    padding: 6px 16px;
    background: transparent;
    color: #666;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400 !important;
    font-family: "Roboto", sans-serif;
  }
  /* estado ativo do layout */
  .cat-pill.is-active {
    background: #d9d9d9;
    font-weight: 600;
  }
}
.emp-card__subtitle {
  text-align: left !important;
}

.financing-slider .swiper .swiper-wrapper {
  margin-left: -13rem;
}
@media (max-width: 1100px) {
  .financing-slider .swiper .swiper-wrapper {
    margin-left: 0;
  }
}

.steps-mobile {
  padding: 32px 16px 40px;
  background: #ffffff;
  display: none;
}
@media (max-width: 1100px) {
  .steps-mobile {
    display: block;
  }
}
.steps-mobile .steps-mobile__slider {
  max-width: 100%;
}
.steps-mobile .swiper-wrapper {
  align-items: stretch;
}
.steps-mobile .swiper-slide {
  display: flex;
}
.steps-mobile .steps-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 20px 28px;
  width: 100%;
}
.steps-mobile .steps-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.steps-mobile .steps-card__num {
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  color: #00d4ac;
  margin-right: 12px;
}
.steps-mobile .steps-card__line {
  flex: 1;
  height: 2px;
  background-image: linear-gradient(to right, #e0e0e0 60%, rgba(224, 224, 224, 0) 0);
  background-position: top;
  background-size: 10px 2px;
  background-repeat: repeat-x;
}
.steps-mobile .steps-card__body h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #111111;
  font-weight: 500;
}
.steps-mobile .steps-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #1e1e1e;
}
.steps-mobile .steps-mobile__nav {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.steps-mobile .steps-mobile__fraction {
  font-size: 16px;
  color: #6e6e6e;
  min-width: -moz-max-content;
  min-width: max-content;
}
.steps-mobile .steps-mobile__fraction .curr,
.steps-mobile .steps-mobile__fraction .tot {
  display: inline-block;
}
.steps-mobile .steps-mobile__bar {
  flex: 1 1 auto;
  height: 2px;
  background: #ededed;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.steps-mobile .steps-mobile__bar .steps-mobile__bar-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: #6f6f6f;
  transition: width 0.25s ease;
}
.steps-mobile .steps-mobile__next {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .steps-mobile {
    max-width: 420px;
  }
}
@media (max-width: 990px) {
  .footer-cta .flo_whats {
    position: fixed;
    top: 32rem;
    right: 1rem;
    z-index: 9999;
  }
  .footer-cta .flo_whats svg {
    width: 50px;
  }
}
.js-dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown__selected {
  font-size: 16px;
  color: #777;
  padding-top: 4px;
}

.dropdown__list {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 220px;
  display: none;
  z-index: 50;
}

.dropdown__list li {
  padding: 12px 18px;
  white-space: nowrap;
}

.dropdown__list li:hover {
  background: #f3f4f6;
}

.js-dropdown.is-open .dropdown__list {
  display: block;
}

.js-dropdown.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.filtro-emp {
  --h: 72px;
  --pad: 28px;
  --sep: #e5e5e5;
  --ring: #d3d3d3;
  --green: #57d6b0;
  position: relative;
  border: 1px solid var(--ring);
  border-radius: 999px;
  background: #fff;
  max-width: 800px;
  margin: 50px auto 60px;
  height: var(--h);
  /* 🔥 grid: 4 campos iguais + botão fixo */
  display: grid;
  grid-template-columns: repeat(4, 1fr) var(--h); /* último é o botão */
  align-items: center;
  padding-left: var(--pad);
  padding-right: 6px; /* respiro do botão */
  overflow: visible;
}

/* divisores ocupam toda a altura e ficam no meio entre as colunas */
.filtro-emp__div {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--sep);
  opacity: 1;
}

/* posiciona os divisores nos limites das colunas (1/2/3) */
.filtro-emp__div:nth-of-type(1) {
  left: calc(var(--pad) + (100% - var(--pad) - var(--h) - 6px) * 0.25);
}

.filtro-emp__div:nth-of-type(2) {
  left: calc(var(--pad) + (100% - var(--pad) - var(--h) - 6px) * 0.5);
}

.filtro-emp__div:nth-of-type(3) {
  left: calc(var(--pad) + (100% - var(--pad) - var(--h) - 6px) * 0.75);
}

/* cada item ocupa a célula inteira */
.filtro-emp__item {
  width: 100%;
  min-width: 0; /* evita estourar com textos */
  display: grid;
  gap: 0;
  padding: 0 0 0 22px; /* espaçamento interno */
}
.filtro-emp__item:first-child {
  padding: 0;
}

.filtro-emp__item > span {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #111;
}

.dropdown__selected {
  font-size: 16px;
  color: #717171;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

/* estado desabilitado */
.js-dropdown.is-disabled .dropdown__selected,
.js-dropdown.is-disabled > span {
  color: #9ca3af;
  cursor: not-allowed;
}

/* botão buscar fica na última coluna do grid */
.filtro-emp__submit {
  grid-column: 5;
  justify-self: end;
  width: calc(var(--h) - 12px);
  height: calc(var(--h) - 12px);
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(87, 214, 176, 0.35);
}

/* dropdown list (se ainda não tiver) */
.js-dropdown {
  position: relative;
}

.js-dropdown .dropdown__list {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 100%;
  max-height: 260px;
  overflow: auto;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  z-index: 50;
}

.js-dropdown.is-open .dropdown__list {
  display: block;
}

.js-dropdown .dropdown__list li {
  padding: 10px 14px;
  cursor: pointer;
  line-height: 1.2;
}

.js-dropdown .dropdown__list li:hover {
  background: #f3f4f6;
}

/* mobile mantém seu comportamento antigo */
@media (max-width: 960px) {
  .filtro-emp {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    border-radius: 24px;
    padding: 12px 12px 74px 12px;
    gap: 12px;
  }
  .filtro-emp__div {
    display: none;
  }
  .filtro-emp__item {
    width: calc(50% - 6px);
    padding-right: 0;
  }
  .filtro-emp__submit {
    position: absolute;
    right: 12px;
    bottom: 12px;
  }
}
@media (max-width: 960px) {
  .filtro-emp {
    position: absolute;
    border-radius: 24px;
    height: auto;
    width: 84%;
    padding: 20px 26px 74px 26px;
    padding-bottom: 92px;
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .filtro-emp__div {
    display: none;
  }
  .filtro-emp__item {
    font-size: 14px;
    width: 100%;
    padding: 14px 24px !important;
    border-radius: 999px;
    background: #f3f3f3;
    margin-bottom: 7px;
  }
  .filtro-emp__item > span {
    margin-bottom: 0;
    font-size: 16px;
  }
  .dropdown__selected {
    font-size: 14px;
  }
  /* dropdown no mobile: abre em cima do card */
  .dropdown__list {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    border-radius: 18px;
  }
  .filtro-emp__submit {
    right: 14px;
    bottom: 14px;
    top: auto;
    transform: none;
    width: 50px;
    height: 50px;
  }
}/*# sourceMappingURL=main.css.map */