/* ================================================================
   BROMBERG CONSTRUTORA — Stylesheet
   WordPress Classic Theme Ready
   Medidas e cores extraídas do layout Figma (frame 1920w)
   ================================================================ */

/* ── Custom Properties ────────────────────────────────────────── */
:root {
  --clr-bg:          #12181D;
  --clr-bg-2:        #2A323A;
  --clr-footer:      #1F2A33;
  --clr-gold:        #D4A373;
  --clr-gold-light:  #EBCFA7;
  --clr-white:       #FFFFFF;
  --clr-text:        #D8DBDC;
  --clr-text-muted:  rgba(255, 255, 255, 0.55);
  --clr-divider:     rgba(255, 255, 255, 0.45);
  --clr-card-border: rgba(18, 34, 59, 0.19);

  /* Onest para títulos e botões; Montserrat para textos e corpo */
  --font-sans:       'Montserrat', sans-serif;
  --font-display:    'Onest', sans-serif;
  --font-heading:    'Onest', sans-serif;
  --font-strong:     'Onest', sans-serif;
  --font-alt:        'Montserrat', sans-serif;
  --font-footer:     'Montserrat', sans-serif;

  --container:       1348px; /* 1300px de conteúdo + 24px de respiro lateral */
  --transition:      0.3s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--clr-bg);
  color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Botões (pílula) ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding-inline: 36px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-footer);
}
.btn--gold:hover { background: var(--clr-gold-light); }
.btn--white {
  background: var(--clr-white);
  color: var(--clr-bg);
}
.btn--white:hover { background: var(--clr-gold-light); }

/* ── Section Tag ──────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 18px;
}
.section-tag__logo {
  width: 24px;
  height: auto;
  display: block;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 20px 10px;
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(18, 24, 29, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-block: 10px;
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  height: 65px;
  display: flex;
  align-items: center;
}
.header-logo img {
  width: 230px;
  height: auto;
  /* versão branca do logotipo sobre a foto do hero */
  filter: brightness(0) invert(1);
}

/* Menu pílula translúcida */
.header-nav { margin-inline: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 45px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 35px;
  padding-inline: 15px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-white);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.nav-item--active .nav-link,
.nav-link:hover {
  background: var(--clr-white);
  color: var(--clr-footer);
}

.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 35px; height: 35px;
  border-radius: 50%;
  background: var(--clr-white);
  transition: background var(--transition);
}
.header-search:hover { background: var(--clr-gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 35px; height: 35px;
  border-radius: 50%;
  background: var(--clr-gold);
  margin-left: 12px;
  padding-right: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--clr-gold-light); }
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger span:nth-child(1) { width: 18px; }
.hamburger span:nth-child(2) { width: 22px; }
.hamburger span:nth-child(3) { width: 12px; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 63vw;              /* 1200px @ 1905px de largura */
  min-height: 620px;
  max-height: 1200px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 35%);
}
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 33.5%;             /* 400px @ hero de 1200px */
  background: linear-gradient(180deg, rgba(18, 24, 29, 0) 0%, var(--clr-bg) 100%);
}
.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content { flex: 0 1 auto; max-width: 950px; }
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.2vw, 80px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: var(--clr-white);
  margin-bottom: 42px;
}
.hero-heading__gold { color: var(--clr-gold-light); }

.hero-stats {
  flex: 0 0 auto;
  max-width: 380px;
  margin-top: 150px;          /* bloco fica abaixo do eixo do título, como no layout */
}
.hero-stats__label {
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.75;
  color: var(--clr-white);
  margin-bottom: 36px;
}
.hero-stats__grid { display: flex; }
.hero-stat { padding-inline: 20px; text-align: center; }
.hero-stat:first-child { padding-left: 10px; }
.hero-stat--border { border-left: 1px solid rgba(255, 255, 255, 0.43); }
.hero-stat__number {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.1;
}
.hero-stat__desc {
  display: block;
  font-size: 15px;
  line-height: 1.15;
  max-width: 90px;
  color: rgba(255, 255, 255, 0.85);
  margin: 6px auto 0;
}

/* ================================================================
   PARCEIROS
   ================================================================ */
.partners {
  background: var(--clr-bg);
  padding-block: 56px 40px;
  overflow: hidden;
}
.partners-track {
  display: flex;
  gap: 72px;
  min-width: max-content;
  animation: partners-scroll 30s linear infinite;
  align-items: center;
  padding-inline: 24px;
}
.partners-slide {
  display: flex;
  gap: 56px;
  align-items: center;
}
.partners-slide img {
  height: 64px;
  width: auto;
  opacity: 0.92;
  filter: brightness(1.1);
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   PROPERTIES / EMPREENDIMENTOS
   ================================================================ */
.properties {
  background: var(--clr-bg);
  padding-block: 15px 20px;
}
.properties-slider-wrap { position: relative; }
.properties-slider-wrap .container { overflow: hidden; }
.properties-grid {
  display: flex;
  gap: 29px;
  transition: transform 0.45s ease;
}
.properties-grid .property-card {
  flex: 0 0 calc((100% - 58px) / 3);
}

/* Setas do slider — flutuam fora do grid */
.slider-arrow {
  position: absolute;
  top: 250px;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(18, 24, 29, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity var(--transition), background var(--transition);
}
.slider-arrow:hover { opacity: 1; background: var(--clr-gold); }
.slider-arrow--prev { left: max(8px, calc(50% - 760px)); }
.slider-arrow--next { right: max(8px, calc(50% - 760px)); }

/* Card de empreendimento */
.property-card { position: relative; }
.property-card__media {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 407 / 500;
}
.property-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-card__media img { transform: scale(1.04); }
.property-card__location {
  position: absolute;
  top: 20px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 25px;
  padding-inline: 12px;
  background: var(--clr-white);
  border-radius: 50px;
  font-size: 13px;
  color: var(--clr-bg);
  white-space: nowrap;
}

/* Caixa branca que "vaza" abaixo da foto */
.property-card__info {
  position: relative;
  background: var(--clr-white);
  border-radius: 10px;
  margin: -50px 10px 0;
  padding: 18px 20px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.property-card__specs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.property-spec {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-bg-2);
}
.property-spec img { width: 18px; height: 18px; object-fit: contain; }
.property-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 13px;
}
.property-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
  color: #000000;
  max-width: 230px;
}
.property-card__price-box { flex-shrink: 0; }
.property-card__from {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-bg);
  line-height: 1.1;
}
.property-card__price {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-gold);
  border-bottom: 1px solid var(--clr-bg-2);
  padding-bottom: 1px;
}

/* ================================================================
   ABOUT / INOVAÇÃO EM CADA DETALHE
   ================================================================ */
.about {
  position: relative;
  padding-block: 240px 130px;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 29, 0.5);
}
.about-fade {
  position: absolute;
  left: 0; right: 0;
  height: 140px;
}
.about-fade--top    { top: 0;    background: linear-gradient(180deg, var(--clr-bg) 0%, rgba(18, 24, 29, 0) 100%); }
.about-fade--bottom { bottom: 0; background: linear-gradient(0deg,   var(--clr-bg) 0%, rgba(18, 24, 29, 0) 100%); }

.about-container { position: relative; z-index: 1; }
.about-icon { margin-bottom: 20px; }
.about-icon svg { width: 66px; height: 82px; }
.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.31vw, 44px);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.22;
  margin-bottom: 24px;
}
.about-lead {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.26vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--clr-white);
  max-width: 960px;
}

.about-row {
  display: flex;
  align-items: flex-start;
  margin-top: 72px;
}
.about-stat {
  position: relative;
  flex: 0 0 334px;
  padding: 26px 24px 0 28px;
}
.about-stat__star {
  position: absolute;
  top: 8px; left: 8px;
}
.about-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: var(--clr-white);
  padding-left: 18px;
}
.about-stat__label {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-top: 6px;
  max-width: 180px;
  line-height: 1.2;
}

.about-philosophy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.about-philosophy__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 1.84vw, 35px);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 22px;
}
.about-philosophy__text {
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.55;
  color: var(--clr-white);
  max-width: 868px;
  margin-left: 34px;
}
.about-btn {
  align-self: flex-end;
  margin-top: 22px;
  height: 54px;
  padding-inline: 35px;
}

/* ================================================================
   SERVICES / SERVIÇOS
   ================================================================ */
.services {
  background: var(--clr-bg);
  overflow: hidden;
}
.services-inner {
  display: grid;
  grid-template-columns: 54.5% 1fr;
}
.services-img { overflow: hidden; }
.services-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.services-content {
  padding: 94px 8px 90px 0;
  display: flex;
  flex-direction: column;
}
.services-content .section-tag,
.services-heading { margin-left: 14.6%; }
.services-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.36vw, 45px);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.24;
  max-width: 560px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}
.service-card {
  min-height: 291px;
  padding: 40px 48px;
  text-align: center;
}
.service-card:nth-child(1) { border-bottom: 1px solid var(--clr-divider); }
.service-card:nth-child(2) { border-bottom: 1px solid var(--clr-divider); border-left: 1px solid var(--clr-divider); }
.service-card:nth-child(4) { border-left: 1px solid var(--clr-divider); }
.service-card__icon {
  height: 80px;
  width: auto;
  margin-inline: auto;
}
.service-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1;
  margin-top: 28px;
}
.service-card__text {
  font-size: 16px;
  line-height: 1.44;
  color: rgba(255, 255, 255, 0.8);
  max-width: 330px;
  margin: 14px auto 0;
}

/* ================================================================
   WHY CHOOSE / POR QUE SOMOS SUA MELHOR ESCOLHA
   ================================================================ */
.why-choose {
  background: var(--clr-bg);
  padding-block: 53px 96px;
}
.why-choose__heading {
  font-family: var(--font-strong);
  font-size: clamp(30px, 2.94vw, 56px);
  font-weight: 800;
  color: var(--clr-white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 66px;
}
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 29px;
}
.why-card {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 407 / 495;
}
.why-card--image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-card--text {
  border: 1px solid var(--clr-card-border);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.why-card__body {
  flex: 1;
  border-bottom: 1px solid var(--clr-card-border);
}
.why-card__icon { display: block; }
.why-card__title {
  font-family: var(--font-strong);
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.375;
  margin-top: 29px;
}
.why-card__text {
  font-size: 18px;
  line-height: 1.53;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
}
.why-card__stat { padding-top: 20px; }
.why-card__number {
  display: block;
  font-family: var(--font-strong);
  font-size: 56px;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1.2;
}
.why-card__label {
  display: block;
  font-size: 18px;
  color: var(--clr-gold);
  margin-top: 4px;
}

/* ================================================================
   NEWSLETTER
   ================================================================ */
.newsletter {
  position: relative;
  padding-block: 200px 230px;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 29, 0.45);
}
.newsletter-container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.67vw, 70px);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.24;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 35px;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 720px;
  margin-inline: auto;
  padding: 9px 9px 9px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 60px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.newsletter-form:focus-within {
  border-color: rgba(212, 163, 115, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(212, 163, 115, 0.12);
}
.newsletter-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
  min-width: 0;
}
.newsletter-field__icon { flex-shrink: 0; color: var(--clr-gold); }
.newsletter-input {
  width: 100%;
  height: 54px;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--clr-white);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-divider { width: 1px; height: 30px; background: rgba(255, 255, 255, 0.18); flex-shrink: 0; }
.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding-inline: 28px;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-bg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.newsletter-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212, 163, 115, 0.35); filter: brightness(1.05); }
.newsletter-submit svg { transition: transform 0.3s ease; }
.newsletter-submit:hover svg { transform: translateX(4px); }

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
  }
  .newsletter-field {
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
  }
  .newsletter-divider { display: none; }
  .newsletter-submit { width: 100%; justify-content: center; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  position: relative;
  background:
    radial-gradient(900px 320px at 85% -10%, rgba(212, 163, 115, 0.10), transparent 70%),
    var(--clr-footer);
  padding-block: 64px 28px;
  border-top: 1px solid rgba(212, 163, 115, 0.28);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1.1fr 1.1fr;
  gap: 48px;
  padding-bottom: 36px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo img {
  width: 240px;
  height: auto;
  margin-bottom: 22px;
}
.footer-desc {
  font-family: var(--font-footer);
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-text-muted);
  max-width: 360px;
}
.footer-nav, .footer-projects, .footer-contact { padding-top: 6px; }
.footer-col-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 22px;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--clr-gold);
}
.footer-list li { margin-bottom: 11px; }
.footer-list a {
  font-family: var(--font-footer);
  font-size: 14px;
  color: var(--clr-text-muted);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-list a:hover { color: var(--clr-gold); padding-left: 5px; }
.footer-list--projects a { color: var(--clr-text-muted); }
.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--clr-gold); }
.footer-email {
  display: inline-block;
  font-family: var(--font-footer);
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 26px;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--clr-gold); }
.footer-social { display: flex; gap: 10px; }
.footer-social__link {
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
}
.footer-social__link svg { display: block; width: 17px; height: 17px; }
.footer-social__label {
  display: inline-block;
  font-family: var(--font-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.footer-social__link:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-footer);
  transform: translateY(-3px);
}
.footer-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  text-align: center;
  font-family: var(--font-footer);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-credit a {
  color: var(--clr-gold);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--clr-gold-light); text-decoration: underline; }

/* ================================================================
   PÁGINAS INTERNAS — HERO
   ================================================================ */
.page-hero {
  position: relative;
  height: 51vw;               /* 973px @ 1905px */
  min-height: 480px;
  max-height: 973px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.55);
}
.page-hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 41%;                /* 400px @ hero de 973px */
  background: linear-gradient(180deg, rgba(18, 24, 29, 0) 0%, var(--clr-bg) 100%);
}
.page-hero__content {
  position: absolute;
  top: 36%;
  left: clamp(24px, 3.15vw, 60px);
  right: clamp(24px, 3.15vw, 60px);
  z-index: 1;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 80px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clr-white);
  line-height: 1.03;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.page-hero__bar {
  width: 156px;
  height: 4px;
  background: var(--clr-gold);
  margin: 14px 0 12px 4px;
}
.page-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.52vw, 48px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--clr-white);
  line-height: 1.1;
}
.page-hero__note {
  position: absolute;
  right: 24px;
  bottom: 100px;
  z-index: 1;
  font-family: var(--font-alt);
  font-size: clamp(15px, 1.2vw, 23px);
  line-height: 1.48;
  text-transform: uppercase;
  color: var(--clr-white);
  max-width: 644px;
}

/* ================================================================
   EMPREENDIMENTOS — FILTROS E LISTAGEM
   ================================================================ */
.filter-tabs {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.filter-tabs__wrap {
  display: flex;
  background: rgba(31, 42, 51, 0.53);
  border-radius: 50px;
}
.filter-tab {
  width: 202px;
  height: 72px;
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.filter-tab:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.filter-tab--active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
}

.container--wide { max-width: 1751px; }
.listing { padding: 75px 0 170px; }
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 37px 40px;
}

/* Card grande das páginas internas */
.property-card--lg .property-card__media {
  aspect-ratio: 541 / 665;
  border-radius: 20px;
}
.property-card--lg .property-card__location {
  top: 27px;
  left: 14px;
  height: 33px;
  padding-inline: 14px;
  gap: 8px;
  font-size: 16px;
}
.property-card--lg .property-card__info {
  margin: -67px 14px 0;
  border-radius: 13px;
  padding: 24px 16px 22px;
}
.property-card--lg .property-card__specs { gap: 14px; }
.property-card--lg .property-spec {
  font-size: 15px;
  gap: 6px;
}
.property-card--lg .property-spec img { width: 16px; height: 16px; }
.property-card--lg .property-card__row { margin-top: 16px; }
.property-card--lg .property-card__name {
  font-size: clamp(22px, 1.55vw, 29px);
  max-width: 300px;
}
.property-card--lg .property-card__from { font-size: 18px; }
.property-card--lg .property-card__price { font-size: 24px; }

/* Badge de situação (Entregue / Lançamento / Revenda) */
.property-card__status {
  position: absolute;
  top: 20px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 25px;
  padding-inline: 13px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-bg);
  background: var(--clr-gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.property-card__status--lancamento,
.property-card__status--entregue,
.property-card__status--revenda { background: var(--clr-gold); color: var(--clr-bg); }
/* nos cards grandes da listagem, situação à direita e localização à esquerda */
.property-card--lg .property-card__status { top: 27px; right: 14px; left: auto; height: 33px; font-size: 14px; padding-inline: 16px; }
.property-card--lg .property-card__location { left: 14px; right: auto; }

/* ================================================================
   QUEM SOMOS
   ================================================================ */
.qs-about {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
.listing-grid > * {
  min-width: 0;
}

.page-hero[aria-label="Empreendimentos"] .page-hero__title {
  white-space: nowrap;
}
  max-width: 1750px;
.property-card {
  position: relative;
  min-width: 0;
  width: 100%;
}
  margin-inline: auto;
  padding-inline: 24px;
}
.qs-about__img { flex: 0 0 41%; }
.qs-about__img img {
  width: 100%;
  min-width: 0;
  height: auto;
  object-fit: cover;
}
.qs-about__content {
  flex: 1;
  padding: 10px 0 0;
}
.qs-about__tag {
  min-width: 0;
  display: block;
  font-family: var(--font-strong);
  font-size: 16px;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
  .page-hero[aria-label="Empreendimentos"] .page-hero__content {
    left: 16px;
    right: 16px;
  }
  .page-hero[aria-label="Empreendimentos"] .page-hero__title {
    font-size: clamp(24px, 6.2vw, 32px);
    letter-spacing: 0.06em;
  }
.qs-about__title {
  font-size: clamp(28px, 2.06vw, 39px);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.18;
  max-width: 610px;
  margin-bottom: 31px;
}
.qs-about__text {
  .page-hero[aria-label="Empreendimentos"] .page-hero__title {
    font-size: 24px;
    letter-spacing: 0.045em;
  }
  font-size: clamp(17px, 1.47vw, 28px);
  font-weight: 300;
  line-height: 1.43;
  color: var(--clr-white);
  max-width: 852px;
  margin-bottom: 10px;
}
.qs-about__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.qs-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding-inline: 32px;
  background: var(--clr-gold);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--clr-footer);
  transition: background var(--transition);
}
.qs-about__btn:hover { background: var(--clr-gold-light); }
.qs-about__phone {
  display: flex;
  align-items: center;
  gap: 20px;
}
.qs-about__phone-text { display: flex; flex-direction: column; }
.qs-about__phone-text small {
  font-family: var(--font-strong);
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-white);
}
.qs-about__phone-text strong {
  font-family: var(--font-strong);
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-white);
}

/* Propósito / Inovação / Qualidade */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1781px;
  margin: 115px auto 0;
  padding-inline: 24px;
}
.mvv__item { max-width: 510px; }
.mvv__icon { display: block; }
.mvv__title {
  font-family: var(--font-strong);
  font-size: clamp(24px, 1.7vw, 32px);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.3;
  margin-top: 39px;
}
.mvv__text {
  font-size: clamp(16px, 1.26vw, 24px);
  font-weight: 300;
  line-height: 1.46;
  color: var(--clr-white);
  max-width: 490px;
  margin-top: 16px;
}

/* Banner com logo / vídeo */
.video-band {
  position: relative;
  height: 630px;
  margin-top: 111px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.video-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 29, 0.45);
}
.video-band__logo {
  position: relative;
  z-index: 1;
  width: min(1200px, 80vw);
  height: auto;
  margin-top: 60px;
}
.video-band__play {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
  transition: background var(--transition), transform var(--transition);
}
.video-band__play:hover {
  background: var(--clr-gold-light);
  transform: translate(-50%, -50%) scale(1.06);
}

/* Nossos Números */
.numbers { padding-top: 88px; }
.numbers__heading {
  font-size: clamp(26px, 2.06vw, 39px);
  font-weight: 800;
  color: var(--clr-white);
  text-align: center;
  margin-bottom: 56px;
}
.numbers-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.numbers-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  min-height: 100%;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(212, 163, 115, 0.22), transparent 45%),
    linear-gradient(155deg, rgba(18, 24, 29, 0.78), rgba(18, 24, 29, 0.9)),
    url('../images/img-1.jpg') center / cover no-repeat;
  border: 1px solid rgba(212, 163, 115, 0.2);
  overflow: hidden;
}
.numbers-story::after {
  content: '';
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.18) 0%, rgba(212, 163, 115, 0) 72%);
  pointer-events: none;
}
.numbers-story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
}
.numbers-story__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
}
.numbers-story__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--clr-white);
}
.numbers-story__text {
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}
.numbers-story__quote {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
  color: var(--clr-white);
}
.numbers-story__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--clr-gold), rgba(212, 163, 115, 0.1));
}
.numbers-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.numbers-metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 180px;
  padding: 24px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}
.numbers-metric--featured {
  grid-column: span 2;
  min-height: 220px;
  background:
    linear-gradient(140deg, rgba(212, 163, 115, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 163, 115, 0.24);
}
.numbers-metric__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--clr-gold-light);
}
.numbers-metric__value small {
  font-size: 0.48em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.numbers-metric__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-white);
}
.numbers-metric__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

/* CTA final */
.cta-band {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 29, 0.68);
}
.cta-band__heading {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.67vw, 70px);
  font-weight: 600;
  color: var(--clr-white);
  text-align: center;
  line-height: 1.24;
  max-width: 1032px;
  padding-inline: 24px;
}

/* ================================================================
   PÁGINA CONTATO + FORMULÁRIO (compartilhado com pág. de imóvel)
   ================================================================ */
.page-hero__title--cap {
  text-transform: capitalize;
  letter-spacing: 0.1em;
  max-width: 1240px;
  line-height: 1.14;
}
.page-hero__sub--cap { text-transform: capitalize; }

.contact-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1921px;
  margin-inline: auto;
  padding: 96px clamp(24px, 8.3vw, 158px) 115px;
}
.contact-info { flex: 1; padding-top: 40px; }
.contact-info__heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 67px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 34px;
}
.contact-info__text {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.46vw, 28px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--clr-white);
  max-width: 653px;
  margin-bottom: 60px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}
.contact-item__icon {
  width: 50px; height: 47px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item__label {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 4px;
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: #B4B4B4;
}

.contact-form-wrap {
  flex: 0 0 auto;
  width: min(720px, 100%);
}
.cform--bare { width: 100%; }
.cform {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 45px;
  padding: clamp(24px, 2.9vw, 55px) clamp(24px, 2.9vw, 55px) clamp(28px, 3vw, 58px);
}
.cform__label {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 200;
  color: #B4B4B4;
  margin: 26px 0 10px;
}
.cform__label:first-child { margin-top: 0; }
.cform__chips { display: flex; gap: 13px; flex-wrap: wrap; }
.cform__chip {
  height: 55px;
  padding-inline: 21px;
  border-radius: 50px;
  background: #1C2127;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-white);
  transition: background var(--transition), color var(--transition);
}
.cform__chip:hover { color: var(--clr-gold); }
.cform__chip--active {
  background: var(--clr-gold);
  color: #000000;
}
/* chip já selecionado mantém o texto preto ao passar o mouse */
.cform__chip--active:hover { color: #000000; background: var(--clr-gold-light); }
.cform__input, .cform__textarea {
  width: 100%;
  background: rgba(27, 35, 43, 0.69);
  border: none;
  border-radius: 15px;
  height: 48px;
  padding: 0 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 200;
  color: var(--clr-white);
  outline: none;
}
.cform__input:focus, .cform__textarea:focus { background: rgba(27, 35, 43, 1); }
.cform__input::placeholder, .cform__textarea::placeholder { color: rgba(255, 255, 255, 0.19); }
.cform__textarea { height: 165px; padding: 13px 16px; resize: vertical; }
.cform__row { display: flex; gap: 50px; }
.cform__row > div { flex: 1; }
.cform__check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 200;
  line-height: 1.45;
  color: #B4B4B4;
}
.cform__check input {
  width: 14px; height: 14px;
  margin-top: 3px;
  accent-color: var(--clr-gold);
  flex-shrink: 0;
}
.cform__actions { display: flex; justify-content: flex-end; margin-top: 40px; }
.cform__submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 55px;
  padding-inline: 33px;
  background: var(--clr-gold);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  transition: background var(--transition);
}
.cform__submit:hover { background: var(--clr-gold-light); }

/* ================================================================
   PÁGINA DE EMPREENDIMENTO (MM536)
   ================================================================ */
.page-hero__sub--address {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.28vw, 24px);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.prop-hero-specs {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 3.35vw, 64px);
  right: 24px;
  bottom: 70px;
  display: flex;
  gap: clamp(20px, 3vw, 56px);
  flex-wrap: wrap;
}
.prop-spec__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.prop-spec__value {
  font-family: var(--font-sans);
  font-size: clamp(19px, 1.48vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-white);
  max-width: 230px;
}

.gold { color: var(--clr-gold); }
.prop-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
.prop-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 67px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--clr-white);
}
.prop-text {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.46vw, 28px);
  font-weight: 300;
  line-height: 1.42;
  color: var(--clr-white);
  margin-top: 28px;
}

/* Intro: texto à esquerda + torre à direita (sobrepõe o hero) */
.prop-intro {
  display: flex;
  gap: clamp(32px, 4vw, 78px);
}
.prop-intro__content {
  flex: 1;
  padding: 205px 0 120px clamp(24px, 2.6vw, 50px);
  max-width: 880px;
}
.prop-intro__img {
  flex: 0 0 51.8%;
  margin-top: -50px;
  position: relative;
  z-index: 1;
  display: flex;
}
.prop-intro__img img {
  width: 100%;
  height: 100%;
  max-height: 1076px;
  object-fit: cover;
}
.prop-intro__video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.prop-intro__video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prop-intro__video:hover img {
  transform: scale(1.02);
}
.prop-intro__video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.24);
  transition: background 0.3s ease;
}
.prop-intro__video-play::before {
  content: "";
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(10, 14, 18, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.prop-intro__video:hover .prop-intro__video-play {
  background: rgba(0, 0, 0, 0.34);
}
.prop-intro__video-play svg {
  position: absolute;
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

/* Faixa de amenidades / galeria */
.amenities {
  position: relative;
  overflow: visible;
  margin-top: 20px;
  padding: 0 0 20px;
}
.amenities__inner { position: relative; z-index: 1; }
/* Círculos das amenidades — ficam ACIMA da faixa de imagem, sem cobri-la */
.amenities__row {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: -123px;
}
.amenity { width: clamp(130px, 11vw, 190px); text-align: center; cursor: pointer; }
.amenity__circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #181A1E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.amenity:hover .amenity__circle {
  transform: translateY(-6px);
  background-color: #20262c;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}
/* Quando ativo, o círculo mostra a 1ª imagem do slider (definida via JS) */
.amenity.is-active .amenity__circle {
  transform: translateY(-6px);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 200px rgba(8, 12, 16, 0.32), 0 14px 30px rgba(0, 0, 0, 0.45);
}
.amenity.is-active .amenity__circle::after { border-color: var(--clr-gold); }
.amenity.is-active .amenity__label {
  background: var(--clr-gold);
  color: var(--clr-bg);
}
.amenity__circle::after {
  content: '';
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.amenity__label {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 20px;
  border-radius: 45px;
  background: rgba(0, 0, 0, 0.17);
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.26vw, 24px);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--clr-white);
  transition: background var(--transition), color var(--transition);
}
/* Faixa (banda) da imagem do slider — altura fixa */
.amenities__band {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.amenities__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.amenities__bg--layer {
  opacity: 1;
  transition: opacity 0.9s ease;
  will-change: opacity;
}
.amenities__overlay {
  position: absolute;
  inset: 0;
  
  cursor: pointer;
}
/* progresso do slider — no canto inferior do overlay (0 → 100%) */
.amenities__progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 5px;
  width: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
}
.amenities__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: background var(--transition), opacity var(--transition);
}
.amenities__arrow:hover { opacity: 1; background: rgba(0, 0, 0, 0.55); }
.amenities__arrow--prev { left: clamp(16px, 4vw, 40px); }
.amenities__arrow--next { right: clamp(16px, 4vw, 40px); }
/* CTA abaixo da faixa, fora da caixa do slider */
.amenities__cta-row { display: flex; justify-content: center; margin-top: 30px; }
.amenities__cta {
  display: inline-flex;
  padding: 18px 30px;
  border-radius: 45px;
  background: var(--clr-gold);
  border: 1px solid var(--clr-gold);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-footer);
  transition: background var(--transition);
}
.amenities__cta:hover { background: var(--clr-gold-light); border-color: var(--clr-gold-light); }

/* Galeria completa (modal) */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 14, 18, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gallery-modal.open { display: flex; }
.gallery-modal__panel {
  position: relative;
  width: min(1200px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--clr-footer);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 56px);
}
.gallery-modal__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.gallery-modal__close:hover { background: var(--clr-gold); color: var(--clr-bg); }
.gallery-modal__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 28px;
  padding-right: 56px;
}
.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-modal__item { margin: 0; }
.gallery-modal__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-modal__item:hover img { transform: scale(1.03); }
.gallery-modal__item img, .work-pair__item img, .plans-slider__track img { cursor: zoom-in; }

/* Modal de vídeo (YouTube na própria página) */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 360;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 11, 14, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.video-modal.open { display: flex; }
.video-modal__frame {
  position: relative;
  width: min(1000px, 94vw);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close {
  position: absolute;
  top: 22px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.video-modal__close:hover { background: var(--clr-gold); color: var(--clr-bg); }

/* Lightbox — uma imagem por vez, com navegação lateral */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: rgba(8, 11, 14, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox__stage { margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; display: flex; }
.lightbox__img { max-width: 100%; max-height: 86vh; object-fit: contain; border-radius: 10px; }
.lightbox__close {
  position: absolute;
  top: 22px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.lightbox__close:hover { background: var(--clr-gold); color: var(--clr-bg); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.lightbox__nav:hover { background: var(--clr-gold); color: var(--clr-bg); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__counter {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 600px) {
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* Amenidades no mobile — banda mais alta + fileira vira slider horizontal */
@media (max-width: 768px) {
  .amenities__band { height: 500px; }
  .amenities__row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin-bottom: -168px;
    padding: 0 16px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .amenities__row::-webkit-scrollbar { display: none; }
  .amenity {
    flex: 0 0 58%;
    width: auto;
    scroll-snap-align: center;
  }
}

/* Plantas: imagem à esquerda + texto à direita */
.prop-plans {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 7.6vw, 145px);
  padding: 20px clamp(24px, 2.6vw, 50px) 0;
}
.prop-plans__img { flex: 0 0 47.5%; }
.prop-plans__img img { width: 100%; border-radius: 15px; }
.prop-plans__content { flex: 1; padding: 20px clamp(24px, 2.6vw, 50px) 0; max-width: 760px; }

/* Texto à esquerda + imagem à direita — blocos encaixados, mesma altura */
.prop-vert {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: 0;
}
.prop-vert__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4.5vw, 90px) clamp(32px, 4vw, 80px);
  max-width: none;
}
.prop-vert__img { flex: 0 0 50%; align-self: stretch; }
.prop-vert__img img { width: 100%; height: 100%; max-height: none; object-fit: cover; display: block; }

/* Imagem à esquerda + texto/POIs à direita — encaixa com a prop-vert acima
   formando uma "tabela" 2x2 (texto | imagem / imagem | texto). */
.prop-loc {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: 0;
}
.prop-loc__img { flex: 0 0 50%; align-self: stretch; }
.prop-loc__img img { width: 100%; height: 100%; max-height: none; object-fit: cover; display: block; }
.prop-loc__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4.5vw, 90px) clamp(32px, 4vw, 80px);
  max-width: none;
}
.poi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 44px;
  width: 100%;
}
.poi {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 79px;
  background: #161D24;
  border-radius: 15px;
  padding: 0 12px 0 7px;
}
.poi__icon {
  width: 50px; height: 47px;
  flex-shrink: 0;
  background: #25272A;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.poi__name {
  display: block;
  font-size: 15px;
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1.15;
}
.poi__sub {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: #B4B4B4;
  line-height: 1.2;
}
.poi__dist {
  margin-left: auto;
  font-size: 12px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* CTA final com formulário */
.prop-cta {
  max-width: 1731px;
  margin: 20px auto 35px;
  padding-inline: 24px;
}
.prop-cta__card {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 4vw, 90px);
  border-radius: 45px;
  background: radial-gradient(closest-side at 50% 35%, rgba(56, 72, 87, 0.55) 0%, rgba(24, 32, 39, 0.35) 100%);
  padding: clamp(28px, 4vw, 78px);
}
.prop-cta__left { flex: 1; padding-top: 75px; }
.prop-cta__left .prop-heading { max-width: 770px; font-size: clamp(30px, 3.5vw, 67px); }
.prop-cta__text {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.46vw, 28px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--clr-white);
  max-width: 653px;
  margin-top: 32px;
}
.prop-cta__stats { display: flex; gap: 24px; margin-top: 38px; }
.prop-cta__stat { max-width: 200px; }
.prop-cta__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--clr-gold);
  margin-bottom: 8px;
}
.prop-cta__stat span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: #B4B4B4;
}
.prop-cta__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.prop-cta__whats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 55px;
  padding-inline: 18px;
  background: var(--clr-gold);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: #000000;
  transition: background var(--transition);
}
.prop-cta__whats:hover { background: var(--clr-gold-light); }
.prop-cta__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 55px;
  padding-inline: 16px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--clr-white);
}
.prop-cta__email:hover { color: var(--clr-gold); }
.prop-cta__card .cform { flex: 0 0 min(667px, 100%); }

/* ================================================================
   VALORES / TIPOLOGIAS (páginas de empreendimento)
   ================================================================ */
.prop-prices {
  max-width: 1400px;
  margin-inline: auto;
  padding: 20px clamp(24px, 2.6vw, 50px) 0;
}
.prop-prices__head { max-width: 820px; }
.prop-prices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(56, 72, 87, 0.28), rgba(24, 32, 39, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), border-color 0.4s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(212, 163, 115, 0.4); }
.price-card--featured {
  border-color: rgba(212, 163, 115, 0.55);
  background: linear-gradient(160deg, rgba(212, 163, 115, 0.16), rgba(24, 32, 39, 0.25));
}
.price-card__tag {
  position: absolute;
  top: -12px; left: 24px;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card__type {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-white);
}
.price-card__meta {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 6px 0 22px;
}
.price-card__from {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #B4B4B4;
}
.price-card__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 700;
  color: var(--clr-gold);
  margin-top: 4px;
}
.prop-prices__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.prop-prices__note {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
}
@media (max-width: 600px) {
  .prop-prices__cta { flex-direction: column; align-items: stretch; text-align: left; }
  .prop-prices__cta .btn { width: 100%; }
}

/* ================================================================
   EMPREENDIMENTO EM CONSTRUÇÃO (Emilio 1120)
   ================================================================ */

/* Selo de status no hero */
.prop-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(212, 163, 115, 0.16);
  border: 1px solid rgba(212, 163, 115, 0.55);
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
}
.prop-status__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--clr-gold);
  box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.6);
  animation: prop-status-pulse 1.8s ease-out infinite;
}
@keyframes prop-status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(212, 163, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0); }
}

/* Andamento da obra — visão geral + cards de etapas */
.prop-progress {
  max-width: 1400px;
  margin-inline: auto;
  padding: 20px clamp(24px, 2.6vw, 50px) 20px;
}
.prop-progress__head { max-width: 820px; }

/* Visão geral com anel de progresso */
.progress-overview {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  flex-wrap: wrap;
  margin-top: 44px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(56, 72, 87, 0.35), rgba(24, 32, 39, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@property --pct {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}
.progress-ring {
  --pct: 0;
  position: relative;
  width: 168px; height: 168px;
  flex-shrink: 0;
  border-radius: 50%;
  background: conic-gradient(var(--clr-gold) calc(var(--pct) * 1%), rgba(255, 255, 255, 0.1) 0);
  animation: progress-ring-in 1.6s cubic-bezier(.2, .8, .2, 1) both;
}
@keyframes progress-ring-in { from { --pct: 0; } }
.progress-ring::after {
  content: '';
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: var(--clr-bg);
}
.progress-ring__center {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.progress-ring__center strong {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}
.progress-ring__center strong i { font-style: normal; font-size: 22px; color: var(--clr-gold); }
.progress-ring__center span {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #B4B4B4;
  margin-top: 4px;
}
.progress-overview__meta {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}
.progress-meta { display: flex; flex-direction: column; }
.progress-meta__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1.1;
}
.progress-meta__label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Cards de etapa da obra */
.progress-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.pstep {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), border-color 0.4s ease, background 0.4s ease;
}
.pstep::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.12);
}
.pstep:hover { transform: translateY(-6px); border-color: rgba(212, 163, 115, 0.35); background: rgba(255, 255, 255, 0.05); }
.pstep--done::before { background: var(--clr-gold); }
.pstep--current::before { background: linear-gradient(180deg, var(--clr-gold), transparent); }
.pstep--current { box-shadow: 0 0 0 1px rgba(212, 163, 115, 0.18); }
.pstep__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pstep__num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.22);
}
.pstep--done .pstep__num, .pstep--current .pstep__num { color: var(--clr-gold); }
.pstep__status {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pstep--done .pstep__status { color: var(--clr-bg); background: var(--clr-gold); border-color: var(--clr-gold); }
.pstep--current .pstep__status { color: var(--clr-gold-light); background: rgba(212, 163, 115, 0.16); border-color: rgba(212, 163, 115, 0.5); }
.pstep__date {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #B4B4B4;
}
.pstep__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-white);
  margin: 6px 0 10px;
}
.pstep__text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
  margin-bottom: 18px;
}
.pstep__bar {
  height: 7px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.pstep__bar span {
  display: block;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  animation: pstep-grow 1.4s cubic-bezier(.2, .8, .2, 1) both;
}
@keyframes pstep-grow { from { width: 0 !important; } }
.pstep__pct {
  align-self: flex-end;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-gold);
}

/* Vídeo da obra */
.prop-video {
  max-width: 1400px;
  margin-inline: auto;
  padding: 20px clamp(24px, 2.6vw, 50px) 0;
}
.prop-video__inner { max-width: 980px; margin-inline: auto; text-align: center; }
.prop-video .prop-text { margin-bottom: 32px; }
.prop-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #0c1115;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.prop-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .progress-overview { gap: 24px; }
}

/* Responsivo — contato e página de imóvel */
@media (max-width: 1280px) {
  .contact-section { flex-direction: column; padding: 80px clamp(20px, 5vw, 60px) 90px; }
  .contact-form-wrap { width: 100%; }
  .prop-cta__card { flex-direction: column; }
  .prop-cta__card .cform { flex: none; width: 100%; }
  .prop-cta__left { padding-top: 0; }
}
@media (max-width: 600px) {
  .contact-section { padding: 56px 16px 72px; gap: 28px; }
  .contact-info { padding-top: 0; }
  .cform { border-radius: 22px; padding: 22px 18px 26px; }
}
@media (max-width: 1024px) {
  .prop-intro { flex-direction: column-reverse; }
  .prop-intro__img { margin-top: 0; flex: none; }
  .prop-intro__content { padding: 56px 24px; }
  .prop-hero-specs { position: static; padding: 20px 24px 0; }
  .prop-plans { flex-direction: column; }
  .prop-plans__img { flex: none; width: 100%; }
  .prop-loc { flex-direction: column; }
  .prop-vert { flex-direction: column-reverse; }
  .prop-vert__img, .prop-loc__img { flex: none; width: 100%; }
  .prop-vert__content, .prop-loc__content { padding: 40px 24px; }
  .prop-vert__img img, .prop-loc__img img { max-height: 460px; }
  .poi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenities__arrow { display: none; }
}
@media (max-width: 640px) {
  .cform__row { flex-direction: column; gap: 0; }
  .poi-grid { grid-template-columns: 1fr; }
  .prop-cta__stats { flex-direction: column; }
}

/* ================================================================
   CARD CLICÁVEL (link cobrindo todo o card)
   ================================================================ */
.property-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 15px;
}
.property-card--lg .property-card__link { border-radius: 20px; }
.property-card { cursor: pointer; }

/* ================================================================
   BUSCA DE EMPREENDIMENTOS (overlay)
   ================================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 18vh 24px 0;
  background: rgba(10, 14, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.search-overlay.open { display: flex; }
.search-box {
  width: min(640px, 100%);
}
.search-box__input {
  width: 100%;
  height: 64px;
  padding: 0 28px;
  border: none;
  border-radius: 50px;
  background: var(--clr-white);
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--clr-bg);
  outline: none;
}
.search-box__input::placeholder { color: rgba(18, 24, 29, 0.45); }
.search-box__results {
  margin-top: 14px;
  background: var(--clr-footer);
  border-radius: 24px;
  overflow: hidden;
}
.search-box__results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--clr-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition), color var(--transition);
}
.search-box__results a:last-child { border-bottom: none; }
.search-box__results a:hover { background: rgba(212, 163, 115, 0.15); color: var(--clr-gold); }
.search-box__results a small {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--clr-text-muted);
}
.search-box__empty {
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--clr-text-muted);
}
.search-overlay__close {
  position: absolute;
  top: 28px; right: 36px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-overlay__close:hover { background: var(--clr-gold); color: var(--clr-bg); }

/* ================================================================
   PORTFÓLIO
   ================================================================ */
.portfolio {
  padding: 90px 0 140px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
}
.portfolio-grid[hidden] {
  display: none !important;
}
.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 407 / 500;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item__name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(18, 24, 29, 0) 45%, rgba(18, 24, 29, 0.88) 100%);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-white);
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-item:hover .portfolio-item__name,
.portfolio-item:focus-visible .portfolio-item__name { opacity: 1; }

/* Painel/modal da obra */
.work-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 14, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.work-modal.open { display: flex; }
.work-modal__panel {
  position: relative;
  width: min(1100px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--clr-footer);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 60px);
}
.work-modal__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.work-modal__close:hover { background: var(--clr-gold); color: var(--clr-bg); }
.work-modal__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 18px;
  padding-right: 56px;
}
.work-modal__text {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-text);
  max-width: 880px;
  margin-bottom: 36px;
}
/* Vários pares antes/depois empilhados (rolam dentro do painel) */
.work-modal__pairs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* Cabeçalho único ANTES / DEPOIS no topo das imagens */
.work-pair__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 0 4px;
}
.work-pair__head span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clr-gold);
  text-transform: uppercase;
}
.work-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work-pair__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .work-pair, .work-pair__head { gap: 12px; }
  .portfolio-item__name { opacity: 1; font-size: 20px; }
}

/* ================================================================
   SLIDER DE PLANTAS
   ================================================================ */
.plans-slider {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.plans-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}
.plans-slider__track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plans-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(18, 24, 29, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.plans-slider__arrow:hover { background: var(--clr-gold); }
.plans-slider__arrow--prev { left: 14px; }
.plans-slider__arrow--next { right: 14px; }
.plans-slider__dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.plans-slider__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.plans-slider__dots span.is-active { width: 22px; border-radius: 5px; background: var(--clr-gold); }

/* ================================================================
   AJUSTE DE TIPOGRAFIA (escala mais próxima do padrão web)
   ================================================================ */
.hero-heading       { font-size: clamp(34px, 4vw, 64px); }
.page-hero__title   { font-size: clamp(32px, 3.6vw, 60px); }
.page-hero__sub     { font-size: clamp(18px, 2vw, 30px); }
.newsletter-heading,
.cta-band__heading  { font-size: clamp(26px, 3vw, 46px); }
.contact-info__heading,
.prop-heading,
.prop-cta__left .prop-heading { font-size: clamp(26px, 2.6vw, 44px); }
.why-choose__heading { font-size: clamp(26px, 2.6vw, 40px); }
.services-heading,
.about-heading      { font-size: clamp(24px, 2.4vw, 38px); }
.about-philosophy__title,
.qs-about__title,
.mvv__title,
.work-modal__title  { font-size: clamp(22px, 2vw, 30px); }
.about-stat__number,
.about-philosophy + * .about-stat__number { font-size: 48px; }

/* corpo de texto — alvo ~16–18px */
.prop-text,
.qs-about__text,
.contact-info__text,
.prop-cta__text,
.about-lead,
.mvv__text,
.cform__input, .cform__textarea { font-size: 17px; }
.about-philosophy__text { font-size: 16px; }
.why-card__text,
.service-card__text,
.property-card--lg .property-spec { font-size: 15px; }
.service-card__title,
.why-card__title    { font-size: 18px; }
.prop-tag,
.contact-item__value,
.prop-spec__value,
.filter-tab,
.amenity__label     { font-size: 16px; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ================================================================
   RESPONSIVE — Notebook (max 1440px)
   ================================================================ */
@media (max-width: 1440px) {
  .slider-arrow--prev { left: 0; }
  .slider-arrow--next { right: 0; }
  .hero-stats { margin-top: 110px; }
}

/* ================================================================
   RESPONSIVE — Tablet (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .nav-link { font-size: 14px; padding-inline: 12px; }
  .header-logo img { width: 180px; }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-block: 140px 120px;
  }
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats { margin-top: 40px; }
  .hero-stats__label { text-align: left; }

  .properties { padding-top: 90px; }
  .properties-grid .property-card { flex-basis: calc((100% - 29px) / 2); }

  .about { padding-block: 140px 90px; }
  .about-row { flex-direction: column; gap: 40px; }
  .about-stat { flex-basis: auto; padding-left: 8px; }
  .about-philosophy { border-left: none; padding-left: 8px; }
  .about-philosophy__text { margin-left: 0; }
  .about-btn { align-self: flex-start; }

  .services-inner { grid-template-columns: 1fr; }
  .services-img { max-height: 420px; }
  .services-content { padding: 56px 24px; }
  .services-content .section-tag,
  .services-heading { margin-left: 0; }

  .why-choose__grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { aspect-ratio: auto; min-height: 420px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; }
  .footer-social { justify-content: flex-start; }
}

/* ================================================================
   RESPONSIVE — Mobile (max 768px)
   ================================================================ */
@media (max-width: 768px) {
  /* Header */
  .header-nav { display: none; }
  .header-search { display: flex; margin-left: auto; }
  .hamburger { display: flex; }
  .site-header { padding-block: 10px; }

  .header-nav.open {
    display: block;
    position: fixed;
    top: 85px; left: 0; right: 0;
    background: rgba(18, 24, 29, 0.97);
    padding: 24px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.2);
    margin: 0;
  }
  .header-nav.open .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    height: auto;
    background: none;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
  }

  /* Hero */
  .hero-heading { font-size: 38px; letter-spacing: 4px; }
  .hero-stats { max-width: none; }
  .hero-stats__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .hero-stat {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 6px;
  }
  .hero-stat--border {
    border-left: 1px solid rgba(255, 255, 255, 0.43);
    border-top: none;
    padding-top: 0;
  }
  .hero-stat__desc { max-width: none; }

  /* Parceiros */
  .partners-list { justify-content: center; gap: 28px; }

  /* Properties */
  .properties-grid .property-card { flex-basis: 100%; }
  .slider-arrow { display: block; padding: 6px; }
  .slider-arrow--prev { left: 2px; }
  .slider-arrow--next { right: 2px; }

  /* About */
  .about { padding-block: 120px 70px; }
  .about-lead { font-size: 17px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 32px 16px; }
  .service-card:nth-child(n) { border-left: none; }
  .service-card:nth-child(3) { border-bottom: 1px solid var(--clr-divider); }

  /* Why choose */
  .why-choose__grid { grid-template-columns: 1fr; }
  .why-card { border-radius: 28px; }
  .why-card--image { min-height: 300px; }
  .why-card--text { min-height: 0; }

  /* Newsletter */
  .newsletter { padding-block: 120px; }
  .newsletter-form { flex-wrap: wrap; }
  .newsletter-input { flex: 1 1 100%; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav, .footer-projects, .footer-contact { padding-top: 0; }
}

/* ================================================================
   RESPONSIVE — Páginas internas
   ================================================================ */
@media (max-width: 1024px) {
  .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-tab { width: 160px; height: 56px; font-size: 18px; }
  .qs-about { flex-direction: column; gap: 40px; }
  .qs-about__img { flex: none; width: 100%; max-width: 684px; }
  .qs-about__content { padding-left: 0; }
  .mvv { grid-template-columns: 1fr; }
  .video-band { height: 420px; margin-top: 70px; }
  .numbers__heading { margin-bottom: 56px; }
  .cta-band { height: 480px; }
  .page-hero__note { position: static; padding: 16px 24px 0; max-width: none; }
}
@media (max-width: 768px) {
  .listing-grid { grid-template-columns: minmax(0, 1fr); }
  .listing { padding-bottom: 90px; }
  .filter-tabs { margin-top: 48px; padding-inline: 16px; }
  .filter-tabs__wrap { width: 100%; justify-content: center; }
  .filter-tab { flex: 1; width: auto; }
  .property-card__specs,
  .property-card--lg .property-card__specs {
    gap: 6px;
    overflow: hidden;
  }
  .property-spec,
  .property-card--lg .property-spec {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
    gap: 4px;
  }
  .property-spec img,
  .property-card--lg .property-spec img { width: 14px; height: 14px; }
  .property-card--lg .property-card__location {
    top: 16px;
    left: 12px;
    right: auto;
    max-width: calc(100% - 120px);
    height: 30px;
    padding: 0 12px;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
  }
  .property-card--lg .property-card__status {
    top: 16px;
    right: 12px;
    height: 30px;
    font-size: 12px;
    padding-inline: 12px;
  }
  .numbers-showcase { grid-template-columns: 1fr; }
  .numbers-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .numbers-story { border-radius: 28px; }
  .numbers-metric,
  .numbers-metric--featured { min-height: 170px; border-radius: 24px; }
  .video-band__play { width: 72px; height: 72px; }
  .video-band__play svg { width: 28px; height: 32px; }
  .qs-about__actions { gap: 18px; }
}

/* ================================================================
   RESPONSIVE — Small Mobile (max 480px)
   ================================================================ */
@media (max-width: 480px) {
  .hero-heading { font-size: 32px; }
  .container { padding-inline: 16px; }
  .footer-logo img { width: 220px; }
  .numbers-metrics { grid-template-columns: 1fr; }
  .numbers-metric--featured { grid-column: auto; }
}

/* ================================================================
   ANIMAÇÕES CRIATIVAS & HOVERS
   Tipografia: Onest (títulos/botões) · Montserrat (corpo)
   ================================================================ */

/* Botões em pílula — brilho que desliza + leve elevação */
.btn,
.cform__submit,
.qs-about__btn,
.prop-cta__whats,
.amenities__cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1), box-shadow 0.35s ease, background var(--transition), color var(--transition);
}
.btn::after,
.cform__submit::after,
.qs-about__btn::after,
.prop-cta__whats::after,
.amenities__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::after,
.cform__submit:hover::after,
.qs-about__btn:hover::after,
.prop-cta__whats:hover::after,
.amenities__cta:hover::after { left: 135%; }
.btn:hover,
.cform__submit:hover,
.qs-about__btn:hover,
.prop-cta__whats:hover,
.amenities__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 163, 115, 0.28);
}
.btn:active,
.cform__submit:active,
.qs-about__btn:active { transform: translateY(-1px) scale(0.99); }

/* Seta de envio do formulário acompanha o hover */
.cform__submit svg, .qs-about__btn svg, .prop-cta__whats svg { transition: transform 0.3s ease; }
.cform__submit:hover svg, .qs-about__btn:hover svg, .prop-cta__whats:hover svg { transform: translateX(4px); }

/* Chips — leve crescimento */
.cform__chip { transition: background var(--transition), color var(--transition), transform 0.25s ease; }
.cform__chip:hover { transform: translateY(-2px); }

/* Cards — elevação suave */
.property-card,
.portfolio-item,
.service-card,
.why-card--image,
.why-card--text { transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), box-shadow 0.45s ease, border-color var(--transition); }
.property-card:hover { transform: translateY(-6px); }
.portfolio-item:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.why-card--image { transition: transform 0.5s ease; }
.why-card--image:hover { transform: translateY(-6px) scale(1.01); }
.why-card--image img { transition: transform 0.6s ease; }
.why-card--image:hover img { transform: scale(1.05); }
.why-card--text:hover { transform: translateY(-4px); border-color: rgba(212, 163, 115, 0.4); }
.service-card { transition: transform 0.4s ease, background 0.4s ease; }
.service-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.02); }
.service-card__icon { transition: transform 0.5s ease; }
.service-card:hover .service-card__icon { transform: translateY(-6px) rotate(-4deg); }

/* POIs e amenidades */
.poi { transition: transform 0.3s ease, background 0.3s ease; }
.poi:hover { transform: translateX(4px); background: #1b242d; }
.amenity__circle { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.amenity:hover .amenity__circle { transform: translateY(-5px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35); }

/* Setas dos sliders deslizam no hover */
.slider-arrow svg, .plans-slider__arrow svg, .amenities__arrow svg { transition: transform 0.3s ease; }
.slider-arrow--next:hover svg, .plans-slider__arrow--next:hover svg, .amenities__arrow--next:hover svg { transform: translateX(4px); }
.slider-arrow--prev:hover svg, .plans-slider__arrow--prev:hover svg, .amenities__arrow--prev:hover svg { transform: translateX(-4px); }

/* Entrada suave do conteúdo ao carregar */
@keyframes fx-fade-up {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fx-fade-up 0.9s cubic-bezier(.2, .8, .2, 1) both; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-stats { animation: fx-fade-up 1s cubic-bezier(.2, .8, .2, 1) 0.25s both; }
.page-hero__content > * { animation: fx-fade-up 0.9s cubic-bezier(.2, .8, .2, 1) both; }
.page-hero__content > *:nth-child(2) { animation-delay: 0.12s; }
.page-hero__content > *:nth-child(3) { animation-delay: 0.22s; }

/* Reveal um pouco mais suave */
.reveal { transition-duration: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .btn, .cform__submit, .qs-about__btn, .prop-cta__whats, .amenities__cta,
  .property-card, .portfolio-item, .service-card, .why-card--image, .why-card--text,
  .hero-content > *, .hero-stats, .page-hero__content > * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* ================================================================
   AJUSTES DE ESPAÇAMENTO E FORMULÁRIOS — MOBILE
   ================================================================ */
@media (max-width: 768px) {
  /* Respiros menores entre seções/textos */
  .about { padding-block: 84px 52px; }
  .properties { padding-top: 64px; }
  .why-choose { padding-block: 44px 60px; }
  .why-choose__heading { margin-bottom: 34px; }
  .numbers { padding-top: 44px; }
  .numbers__heading { margin-bottom: 34px; }
  .mvv { margin-top: 56px; gap: 28px; }
  .video-band { margin-top: 48px; }
  .newsletter { padding-block: 84px; }

  /* Páginas de empreendimento — respiros mínimos entre seções */
  .prop-intro__content { padding: 20px; }
  .prop-plans { padding-top: 20px; padding-inline: 1%; }
  .prop-plans__img { flex: 0 0 auto; width: 98%; margin-inline: auto; }
  .prop-vert, .prop-loc { padding-top: 0; }
  .prop-progress { padding-top: 20px; }
  .prop-prices { padding-top: 20px; }
  .prop-video { padding-top: 20px; }
  .prop-features { padding-top: 20px; }
  .amenities { margin-top: 20px; }
  .prop-cta { margin-top: 20px; }
}

/* Formulário das páginas de empreendimento (prop-cta) no mobile */
@media (max-width: 600px) {
  .prop-cta { padding-inline: 16px; }
  .prop-cta__card {
    gap: 22px;
    padding: 24px 0 0;
    border-radius: 26px;
    overflow: hidden;
  }
  .prop-cta__left {
    padding: 0 16px;
  }
  .prop-cta__card .cform {
    width: 100%;
    padding: 22px 18px 26px;
    border-radius: 24px;
  }
}

/* Services no mobile — conteúdo sobre a imagem (escurecida) + 4 cards em 2x2 */
@media (max-width: 768px) {
  .services { position: relative; }
  .services-inner { display: block; position: relative; }
  .services-img { position: absolute; inset: 0; max-height: none; overflow: hidden; }
  .services-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3); }
  .services-content { position: relative; z-index: 1; padding: 48px 16px; }
  .services-content .section-tag, .services-heading { margin-left: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .service-card { min-height: 0; padding: 22px 12px; text-align: center; }
  .service-card:nth-child(1) { border: 0; border-bottom: 1px solid var(--clr-divider); }
  .service-card:nth-child(2) { border: 0; border-bottom: 1px solid var(--clr-divider); border-left: 1px solid var(--clr-divider); }
  .service-card:nth-child(3) { border: 0; }
  .service-card:nth-child(4) { border: 0; border-left: 1px solid var(--clr-divider); }
  .service-card__icon { height: 52px; }
  .service-card__title { font-size: 15px; margin-top: 16px; }
  .service-card__text {
    font-size: 12.5px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ================================================================
   EMPREENDIMENTOS — LAZER, ACABAMENTOS E BOOK
   ================================================================ */

/* Lazer / diferenciais (grade de itens com ícone) */
.prop-features {
  max-width: 1400px;
  margin-inline: auto;
  padding: 20px clamp(24px, 2.6vw, 50px) 0;
}
.prop-features__head { max-width: 820px; }
.prop-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--clr-white);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(212, 163, 115, 0.4); background: rgba(255, 255, 255, 0.05); }
.feature__ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
}

/* Acabamentos / memorial descritivo (resumo em grupos) */
.spec-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.spec-group {
  position: relative;
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(56, 72, 87, 0.18), rgba(24, 32, 39, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.spec-group::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--clr-gold), transparent);
}
.spec-group:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 163, 115, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.spec-group h4 {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 163, 115, 0.3);
}
.spec-group ul { display: flex; flex-direction: column; gap: 7px; }
.spec-group li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}
.spec-group li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
}

/* Quadro de áreas (linhas) */
.area-table {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.area-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
}
.area-row:nth-child(odd) { background: rgba(255, 255, 255, 0.03); }
.area-row span:first-child { color: rgba(255, 255, 255, 0.8); }
.area-row span:last-child { color: var(--clr-gold); font-weight: 600; white-space: nowrap; }

/* Book do empreendimento (CTA final) */
.prop-book {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 0 clamp(24px, 2.6vw, 50px);
}
.prop-book__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(28px, 3vw, 46px);
  border-radius: 24px;
  background: radial-gradient(closest-side at 50% 35%, rgba(56, 72, 87, 0.5), rgba(24, 32, 39, 0.3));
  border: 1px solid rgba(212, 163, 115, 0.22);
}
.prop-book__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.prop-book__text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}
.prop-book__btn { gap: 11px; }
@media (max-width: 600px) {
  .prop-book__inner { flex-direction: column; align-items: stretch; text-align: left; }
  .prop-book__btn { width: 100%; }
}

/* Book como item de destaque dentro do prop-features__grid */
a.feature { text-decoration: none; }
.feature--book {
  background: rgba(212, 163, 115, 0.14);
  border-color: rgba(212, 163, 115, 0.5);
  color: var(--clr-gold-light);
  font-weight: 600;
}
.feature--book .feature__ico { background: var(--clr-gold); color: var(--clr-bg); }
.feature--book:hover { background: rgba(212, 163, 115, 0.24); border-color: rgba(212, 163, 115, 0.7); }

/* ================================================================
   AJUSTES — QUEM SOMOS, HOME, EMPREENDIMENTOS E PORTFÓLIO
   ================================================================ */

/* Quem Somos — imagem com cantos arredondados (15%) */
.qs-about__img img { border-radius: 15%; }

/* Quem Somos — MVV: borda no hover (igual ao why-card--text) + ícone animado */
.mvv__item {
  border: 1px solid var(--clr-card-border);
  border-radius: 24px;
  padding: clamp(24px, 2.2vw, 36px);
  transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), border-color var(--transition);
}
.mvv__item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 163, 115, 0.4);
}
.mvv__icon {
  display: block;
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(.2, .8, .2, 1), filter 0.5s ease;
}
.mvv__item:hover .mvv__icon {
  transform: rotate(360deg) scale(1.1);
  filter: drop-shadow(0 0 14px rgba(212, 163, 115, 0.55));
}
@media (prefers-reduced-motion: reduce) {
  .mvv__item:hover .mvv__icon { transform: none; }
}

/* Footer — garante que os ícones sociais apareçam (cor/contorno explícitos) */
.footer-social__link { color: #FFFFFF; }
.footer-social__link svg [stroke] { stroke: currentColor; }
.footer-social__link svg [fill]:not([fill="none"]) { fill: currentColor; }

/* Empreendimentos — selo de status (Lançamento / Entregue) */
.property-card__status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-bg);
  background: var(--clr-gold);
}
.property-card__status--lancamento { background: var(--clr-gold-light); }
.property-card__status--entregue { background: rgba(255, 255, 255, 0.92); }

/* Portfólio — aviso "em breve" enquanto os cards ficam ocultos */
.portfolio-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  min-height: 320px;
  padding: clamp(48px, 8vw, 110px) 24px;
}
.portfolio-soon__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-white);
  max-width: 18ch;
}
.portfolio-soon__text {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--clr-gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
