:root {
  --primary: #00a7ff;
  --primary-dark: #0080c2;
  --accent: #243b53;
  --bg: #f5f7fb;
  --text-nav: #262828;
  --text-main: #1b1f2a;
  --text-muted: #7b8190;
  --badge-green: #00b894;
  --badge-orange: #ff9f1a;
  --badge-blue: #0984e3;
  --card-radius: 14px;
  --shadow-soft: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: white;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

b {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  width: 100%;
  padding: 24px 0 16px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  max-width: 240px;
}

.logo-area::after {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #DEE5EE;
  margin-left: 20px;
}

.logo-mark {
  width: 32px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(180deg, #0f172a, #1e293b);
  position: relative;
  overflow: hidden;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 20% 10%;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-top-width: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--text-muted);
}

.logo-text strong {
  font-size: 13px;
  color: var(--text-main);
}

.ajuste-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.nav {
  width: 70%;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-nav);
  padding-left: 32px;
}

.nav a {
  position: relative;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
}

.cta-proposta {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, #111827, #0f172a);
  color: #f9fafb;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  margin-left: auto;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  display: inline-flex;
}

.cta-proposta:hover {
  background: var(--primary);
}

.hero {
  position: relative;
  padding: 0;
  margin-top: -90px;
  z-index: -10;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr);
  align-items: stretch;
  height: 635px;
  align-items: center;
}

.hero-copy {
  max-width: 512px;
}

.hero-copy-eyebrow {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  margin-bottom: 18px;
}

.hero-title {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 76.8px */
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--primary);
}

.hero-sub {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  color: var(--text-nav);
  max-width: 36ch;
  margin-bottom: 32px;
}


.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 0 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #060A16;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  /* 150% */
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.hero-cta:hover {
  background: #000000;
  color: #ffffff;
}

.hero-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s ease, transform 0.15s ease;
  margin: 4px 4px 4px 12px;
}

.hero-cta-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.hero-cta:hover .hero-cta-icon {
  background: var(--primary);
}

.hero-secondary-info {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 0 0 0 40px;
  overflow: hidden;
  box-shadow: 0 40px 70px rgba(15, 35, 52, 0.35);
}

.hero-image {
  max-width: 542px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 25px 0 0 0;
  z-index: 1;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.15), rgba(0, 167, 255, 0.3));
  mix-blend-mode: multiply;
  left: 63.2%;
  z-index: 0;
}

/* DETALHE DO IMÓVEL */
.detail-hero {
  margin-top: 100px;
}

.detail-hero-inner {
  width: 100%;
  margin: 0 auto;
  height: 568px;
  overflow: hidden;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 8px;
  /* garante que a coluna lateral some exatamente na mesma altura da principal */
  height: 568px;
}

.detail-gallery-main {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery-side {
  display: grid;
  /* cada coluna com 3 linhas; ao adicionar mais imagens,
     vão sendo criadas novas colunas automaticamente */
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 8px;
  height: 568px;
}

.detail-gallery-side button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.detail-gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PÁGINA SOBRE */
.sobre-bloco {
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--text-main);
}

.sobre-bloco p+p {
  margin-top: 10px;
}

.sobre-subtitulo {
  font-size: 20px;
  margin-bottom: 16px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
}

.sobre-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sobre-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.sobre-valor {
  font-size: 15px;
}

.sobre-lista {
  list-style: disc;
  padding-left: 20px;
  font-size: 15px;
}

.proposta-lista-ordenada {
  list-style: decimal;
  padding-left: 20px;
  font-size: 15px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {


  .detail-gallery {
    height: auto;
  }

  .detail-gallery-side {
    grid-template-rows: repeat(4, minmax(0, 1fr));
    height: auto;
  }


  .hero-sub {
    max-width: 100%;

  }

  .sobre-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  z-index: 1;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: -28px;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #111827;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

body.lightbox-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.detail-main {
  padding: 32px 0 40px;
}

.detail-main-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
}

.detail-breadcrumb {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #111414;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-breadcrumb a {
  color: var(--text-muted);
}

.detail-breadcrumb-sep {
  margin: 0 6px;
}

.detail-breadcrumb-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.detail-id-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-id {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  letter-spacing: 0.48px;
  color: #57595A;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--Background-Highlight-Gray, #F9F9F9);
}

.detail-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 14px;
}

.detail-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  color: #262828;
  margin-bottom: 24px;
}

.detail-address-icon {
  font-size: 14px;
}

.detail-meta-list {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.detail-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.4);
  margin-bottom: 24px;
}

.detail-meta-row {
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  justify-content: space-between;
  color: #262828;
  align-items: center;
}

.detail-meta-row dt {
  min-width: 150px;
}

.detail-meta-row dd {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  color: #7A7F83;
}

.detail-status {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
}

.detail-status--vago {
  color: #158A19 !important;
}

.detail-offer {
  align-self: flex-start;
  justify-content: end;
  display: flex;
}

.detail-offer-card {
  width: 384px;
  padding: 18px 21px;
  border-radius: var(--Corner-radius-12, 12px);
  border: 1px solid var(--Stroke-Card-e-Divider, #D3D8DB);
  background: #FFF;
  gap: 10px;
}

.detail-offer-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  color: #7A7F83;
  margin-bottom: 10px;
}

.detail-offer-list {
  font-size: 14px;
}

.detail-offer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 14px;
  font-style: normal;
  line-height: 21px;
}

.detail-offer-row:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;

}

.detail-offer-row dt {
  font-weight: 600;
  color: #7A7F83;
}

.detail-offer-row dd {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.detail-offer-value {
  color: #158A19;
}

.section {
  padding: 64px 0;
}

.section-listings {
  background: #f5f7fb;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.section-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.section-eyebrow {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  color: #111414;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  /* 150% */
}

.section-tabs {
  display: flex;
  align-items: center;
  gap: 12px;

}

.section-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
  border-bottom: 1px solid var(--Stroke-Card-e-Divider, #D3D8DB);
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.15s ease;
  height: 48px;
}

.tab-label {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.tab-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.tab-icon-image {
  width: 20px;
  height: 20px;
  display: block;
}

.tab-icon-home {
  border-color: var(--primary);
}

.tab.active {
  color: var(--text-main);
  border-bottom-color: var(--primary);
}

.tab .tab-icon-image {
  filter: grayscale(1);
  opacity: 0.5;
}

.tab.active .tab-icon-image {
  filter: none;
  opacity: 1;
}

.tab:not(.active):hover {
  color: var(--text-main);
  background-color: rgba(148, 163, 184, 0.08);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  color: #111414;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.section-link-mobile {
  display: none !important;
}

.section-link:hover {
  color: var(--primary-dark);
}

.section-link-icon {
  font-size: 18px;
}

.cards-row {
  margin-top: 12px;
  position: relative;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 960px) {

  .section-title {
    color: #111414;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
  }


  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.cards-carousel-viewport {
  overflow: hidden;
}

.cards-row-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.cards-row-carousel .card {
  flex: 0 0 calc(100% / 3.5);
}

.cards-tab {
  display: none;
}

.cards-tab-active {
  display: block;
}

.card {
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border: 1px solid #f5f7fb;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 16.8px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 2;
  pointer-events: none;
}

.badge-transfer {
  background: #FFF1C9;
  color: #765B00;
}

.badge-open {
  background: #E1FFE2;
  color: #0D5710;
}

.badge-sold {
  background: #EFF3F8;
  color: #57595A;
}

.badge-sold+.card-image {
  opacity: 0.5;
  filter: grayscale(100%);
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 16.8px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}

.detail-badge-transfer {
  background: #FFF1C9;
  color: #765B00;
}

.card-image-wrapper {
  position: relative;
  height: 316px;
  overflow: hidden;
  transform: scale(1.05);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d0e0ff;
  transition: transform 0.3s ease;
}

.card:hover {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 8px 24px -4px rgba(54, 56, 67, 0.15);
}

.card:hover .card-image {
  transform: scale(1.06);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.card-title {
  color: #111414;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 4px;
}

.card-meta {
  color: #262828;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 4px;
  display: flex;
}

.card-footer {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.card-status {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.card-status--vago {
  color: #158A19;
}

.card-status--ocupado {
  color: #E63535;
}

.card-meta-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
  filter: grayscale(1);
  opacity: 0.7;
}

.card-meta-icon-area {
  border: none;
  background: url("../img/icon/areas.svg") center center / contain no-repeat;
}

.card-meta-icon-address {
  border: none;
  background: url("../img/icon/casa.svg") center center / contain no-repeat;
}

.card-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-location-icon {
  font-size: 12px;
}

.card-id {
  font-weight: 500;
}

.cards-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 6px;
  gap: 16px;
}

.cards-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(15, 35, 52, 0.08);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.circle-btn:hover {
  background: #f3f4f6;
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

.circle-btn.is-disabled {
  opacity: 0.4;
  cursor: default;
}

.cards-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 35, 52, 0.18);
  opacity: 0.6;
  transform: scale(1);
  transition: width 0.4s ease-in-out, background-color 0.4s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.dot.active {
  width: 18px;
  background: var(--primary);
  opacity: 1;
  transform: scale(1.05);
}

.portfolio-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.portfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #cbd5f5;
  height: 317px;
  border-radius: 12px;
  border-bottom: 3px solid #0CF;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #cbd5f5;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.2);
  transition: 3s;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.65));
}

.portfolio-label {
  position: absolute;
  left: 33px;
  bottom: 76px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-title {
  position: absolute;
  left: 33px;
  bottom: 38px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  color: #ffffff;
}

.portfolio-btn {
  display: none;
  opacity: 0;
  position: absolute;
  right: 33px;
  bottom: 38px;
  border-radius: 999px;
  background: #FFF;
  display: inline-flex;
  height: 48px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  color: #060A16;
  cursor: pointer;
}

.portfolio-btn:hover {
  background: #F3F3F3;
}

.portfolio-card:hover .portfolio-btn {
  display: block;
  opacity: 1;
}


.footer {
  margin-top: auto;
  background: #013247;
  color: #e5e7eb;
  padding: 72px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5e7eb;
}

.footer-nav {
  display: flex;
  gap: 48px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.footer-nav a {
  color: #e5e7eb;
}

@media (max-width: 1280px) {

  .nav {
    width: 75%;
  }

  .hero-image-overlay {
    margin-top: 0%;
    left: 70.8%;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

}

@media (max-width: 1123px) {

  .nav {
    width: 70%;
  }

}


@media (max-width: 960px) {
  .section {
    padding: 56px 0;
  }

  .ajuste-nav {
    width: auto;
    display: flex;
    justify-content: space-between;
  }

  .header {
    position: relativee;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0 16px;
    z-index: 20;
  }

  .hero {
    display: block;
    margin-top: 50px;
  }

  .hero-inner {
    height: auto;
  }

  .hero-image {
    max-width: 542px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    z-index: 1;
  }

  .hero-image-overlay {
    margin-top: 0%;
    left: 72.4%;
    height: 406px;

  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero-title {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
  }

  .section-listings {
    margin-top: 0px;
    display: block;
  }

  .cards-row-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cards-row-carousel::-webkit-scrollbar {
    display: none;
  }

  .cards-row-carousel .card {
    flex: 0 0 calc(100% / 2.5);
  }

  .section-link {
    display: none !important;
  }

  .section-link-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    width: 100%;
  }

  .nav {
    width: auto;
    padding-left: 0;
  }

  .tab {
    padding: 12px 8px;
  }


  .portfolio-label {
    bottom: 135px;
  }

  .portfolio-title {
    bottom: 97px;
  }

  .portfolio-btn {
    display: block;
    opacity: 1;
    bottom: 32px;
    left: 32px;
    width: 141px;

  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 30px;
  }



  .detail-main-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

}

@media (max-width: 460px) {
  .section {
    padding: 56px 0px;
  }

  .header {
    display: block;
    width: 100%;
    padding: 24px 0 16px;
  }

  .hero {
    display: block;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-wrapper {
    height: 260px;
    border-radius: 24px;
  }

  .hero-image-overlay {
    margin-top: 307px;
    left: 46.7%;

  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
  }

  .section-listings {
    display: block;
  }

  .cards-row-carousel .card {
    flex: 0 0 calc(100% / 2.5);
  }

  .section-link {
    display: none !important;
  }

  .section-link-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    width: 100%;
  }

  .nav {
    display: none;
  }

  .tab {
    padding: 12px 8px;
  }

  .cards-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-label {
    bottom: 135px;
  }

  .portfolio-title {
    bottom: 97px;
  }

  .portfolio-btn {
    display: block;
    opacity: 1;
    bottom: 32px;
    left: 32px;
    width: 141px;

  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .cards-row-carousel .card {
    flex: 0 0 calc(100% / 1.2);
  }

  .detail-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* SUBMENU DESKTOP */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  z-index: 50;
  margin-top: 24px;
}

/* bridge gap */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 24px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s ease, color 0.1s ease;
}

.nav-dropdown-menu a:hover {
  background: #f5f7fb;
  color: var(--primary);
}

.nav-dropdown-menu a::after {
  display: none !important;
}

/* SUBMENU MOBILE */
.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-dropdown-toggle {
  background: none;
  border: none;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-main);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.mobile-nav-dropdown.is-open .mobile-nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-nav-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding-left: 16px;
  border-left: 2px solid #E5E7EB;
}

.mobile-nav-dropdown.is-open .mobile-nav-dropdown-menu {
  display: flex;
}

.mobile-nav-dropdown-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #57595A;
}

/* MOBILE MENU */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  padding: 24px 20px 48px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.is-active {
  transform: translateY(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

body:has(.mobile-menu-overlay.is-active)::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mobile-menu-close {
  background: #00c2ff;
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.mobile-nav a.active {
  color: var(--text-main);
}

.mobile-cta-proposta {
  margin-top: 24px;
  background: #060A16;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 16px 24px;
  text-align: center;
  justify-content: center !important;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .nav {
    display: none !important;
  }

  .d-mobile {
    display: none !important;
  }

  .logo-area::after {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* PROPOSTA PAGE ENHANCEMENT */
.content-box-proposta {
  margin: 48px 0;

}

.proposta-box-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
  color: #262828;
}

.proposta-steps {
  list-style: none;
  margin-bottom: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #262828;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proposta-steps strong {
  font-weight: 600;
}

.proposta-mail-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proposta-mail-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-decoration: underline;
  color: #262828;
}

.proposta-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 48px 0;
}

.proposta-grid-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}


.proposta-h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: end;
  gap: 8px;
  color: #111414;
}

@media (max-width: 768px) {
  .proposta-grid-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proposta-footer-block {
    flex-direction: column;
  }

  .proposta-h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: end;
    gap: 8px;
    color: #111414;
  }
}

.blue-dot {
  width: 8px;
  height: 4px;
  background-color: #13C5FB;
  margin-bottom: 8px;
}

.proposta-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proposta-icon-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: 111414;
}

.proposta-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proposta-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #262828;
}

.proposta-check-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.proposta-h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 24px;
  color: #262828;
}

.proposta-numbered-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proposta-numbered-list li {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #262828;
}

.proposta-numbered-list strong {
  font-weight: 600;
}

.proposta-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #262828;
  margin-bottom: 16px;
}

.proposta-footer-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.proposta-footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}



.proposta-logo-box {
  background: #1B2129;
  border-radius: 12px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proposta-logo-box img {
  width: 90px;
  height: auto;
}

@media (max-width: 768px) {

  .proposta-footer-left {
    display: block;
    align-items: center;
    gap: 24px;
  }

  .proposta-logo-box {
    margin-bottom: 24px;
  }

}

.proposta-address-info {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #111414;
}

.proposta-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #111414;
}

.proposta-contact-line a {
  text-decoration: none;
  color: inherit;
}

/* SOBRE PAGE LAYOUT (SIDEBAR + MAIN) */
.sobre-layout-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

@media (max-width: 960px) {
  .sobre-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Sidebar */
.sobre-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111414;
}

.sobre-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sobre-sidebar-nav a {
  text-decoration: none;
  color: #4B5563;
  font-size: 14px;
  transition: color 0.2s;
}

.sobre-sidebar-nav a:hover,
.sobre-sidebar-nav a:active {
  color: #13C5FB;
}

/* Content */
.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: 0;
}

.sobre-section-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  color: #111414;
  margin-bottom: 24px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.sobre-dot {
  width: 8px;
  height: 4px;
  background-color: #13C5FB;
  display: inline-block;
  margin-bottom: 6px;
}

.sobre-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #262828;
  margin-bottom: 16px;
}

.sobre-link {
  color: #13C5FB;
  text-decoration: none;
  font-weight: 600;
}

.sobre-link:hover {
  text-decoration: underline;
}

/* Info Table */
.sobre-info-container {
  border: 1px solid #D3D8DB;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.sobre-info-table {
  width: 100%;
  border-collapse: collapse;
}

.sobre-info-table th,
.sobre-info-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #D3D8DB;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #262828;
  text-align: left;
}

.sobre-info-table tr:last-child th,
.sobre-info-table tr:last-child td {
  border-bottom: none;
}

.sobre-info-table th {
  width: 240px;
  font-weight: 600;
  border-right: 1px solid #D3D8DB;
}

.bg-gray {
  background-color: #F9F9F9 !important;
}

/* Datatable replication */
.sobre-dt-wrapper {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #262828;
  width: 100%;
}

.sobre-dt-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  align-items: center;
}

.sobre-dt-length select {
  padding: 6px 10px;
  border: 1px solid #D3D8DB;
  border-radius: 8px;
  margin-right: 12px;
  color: var(--Text-Caption-Disabled, #7A7F83);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.sobre-dt-filter input {
  padding: 6px 12px;
  border: 1px solid #D3D8DB;
  border-radius: 8px;
  margin-left: 8px;
  color: var(--Text-Caption-Disabled, #7A7F83);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.sobre-dt-table-overflow {
  overflow-x: auto;
}

.sobre-dt-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  border: 1px solid var(--Stroke-Card-e-Divider, #D3D8DB);
  background: var(--Background-Main, #FFF);
  overflow: hidden;
}

.sobre-dt-table th {
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: #111414;
  position: relative;
  white-space: nowrap;
}

.sobre-dt-table th:last-child {
  border-right: none;
}

.sort-icon-ui {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #9CA3AF;
  margin-left: 8px;
  vertical-align: middle;
}

.sort-icon-ui::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #9CA3AF;
  margin-top: 6px;
  margin-left: -4px;
}

.sobre-dt-table td {
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  padding: 24px;
  text-align: center;
  color: #6B7280;
}

.sobre-dt-table td:last-child {
  border-right: none;
}

.sobre-dt-table tr:last-child td {
  border-bottom: none;
}

.sobre-dt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 12px;
}

.sobre-dt-pagination button {
  border: none;
  background: none;
  font-size: 14px;
  color: #D1D5DB;
  cursor: not-allowed;
  padding: 0 4px;
}

@media (max-width: 992px) {
  .sobre-section-title {
    font-size: 24px;
    line-height: 36px;

  }

  .sobre-sidebar {
    display: none;
  }
}

/* RESPONSIVIDADE TABELAS NO MOBILE */
@media (max-width: 768px) {

  .sobre-sidebar {
    display: none;
  }

  /* Tabela de Informações */
  .sobre-info-table,
  .sobre-info-table tbody,
  .sobre-info-table tr,
  .sobre-info-table th,
  .sobre-info-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .sobre-info-table th {
    border-right: none;
    border-bottom: none;
    padding-bottom: 4px;
  }

  .sobre-info-table td {
    padding-top: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid #D3D8DB;
  }

  .sobre-info-table tr:last-child td {
    border-bottom: none;
  }

  /* Controles do Comitê (Pesquisa e Quantidade) */
  .sobre-dt-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sobre-dt-filter,
  .sobre-dt-length {
    width: 100%;
  }

  .sobre-dt-filter input {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    display: block;
    box-sizing: border-box;
  }
}