/* Fonts moved to HTML for performance */

:root {
  --black:        #1A1A1A;
  --black-deep:   #0F0F0E;
  --black-mid:    #141412;
  --white:        #F7F5F2;
  --bronze:       #8B7355;
  --bronze-light: #B09A7A;
  --bronze-dim:   rgba(139, 115, 85, 0.25);
  --white-dim:    rgba(247, 245, 242, 0.5);
  --white-mid:    rgba(247, 245, 242, 0.65);
}

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img, video {
  max-width: 100%;
  display: block;
}

/* 1. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 64px;
  background: linear-gradient(to bottom, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0) 100%);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(139,115,85,0.2);
  padding: 20px 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-zilar {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: 0.34em;
  font-size: 16px;
  line-height: 1;
}

.nav-brand-imoveis {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  letter-spacing: 0.4em;
  font-size: 8px;
  color: var(--bronze);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.55);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bronze-light);
}

.nav-links a.active {
  color: var(--bronze);
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--black-deep);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-overlay a {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.nav-mobile-overlay.active a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-overlay a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile-overlay a:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile-overlay a:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile-overlay a:nth-child(4) { transition-delay: 0.4s; }

/* 2. HERO - SCROLL-DRIVEN VIDEO */
.hero-container {
  height: 500vh;
  position: relative;
}

.hero-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.80);
  z-index: 1;
  transition: background 0.05s linear;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 300;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

.hero-eyebrow span {
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--bronze);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 200;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

.hero-title .highlight {
  font-weight: 100;
  color: var(--bronze-light);
  font-size: 0.82em;
  letter-spacing: 0.14em;
}

.hero-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(247,245,242,0.55);
  font-weight: 300;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.75s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  width: 100%;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.6s forwards;
}

.scroll-hint span {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-right: -0.4em;
}

.scroll-hint-line {
  width: 0.5px;
  height: 44px;
  background: var(--bronze);
}

.progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 1px;
  background: rgba(247,245,242,0.08);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--bronze);
  transition: width 0.05s linear;
}

.timestamp {
  position: absolute;
  bottom: 52px;
  right: 56px;
  z-index: 10;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(247,245,242,0.25);
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.5s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3. SOBRE - A ZILAR */
.sobre-section {
  background: var(--black);
  padding: 110px 64px;
}

.sobre-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 88px;
  align-items: center;
}

.sobre-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--bronze);
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.sobre-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 0.5px;
  background: var(--bronze);
  margin-left: 16px;
}

.sobre-title {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.sobre-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--white-dim);
}

.sobre-stats {
  display: flex;
  margin-top: 52px;
}

.stat-item {
  border-right: 0.5px solid rgba(139,115,85,0.2);
  padding-right: 32px;
  margin-right: 32px;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.stat-number {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  font-size: 38px;
  color: #B09A7A;
  line-height: 1;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.4);
  margin-top: 8px;
}

.sobre-image-col {
  position: relative;
}

.sobre-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  background: #252218;
}

.sobre-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-decor {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 60px;
  height: 60px;
  border-top: 0.5px solid var(--bronze-dim);
  border-left: 0.5px solid var(--bronze-dim);
}

.sobre-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--bronze);
  color: var(--black);
  padding: 12px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
}

/* 4. PORTFÓLIO */
.portfolio-section {
  background: var(--black-mid);
  padding: 110px 64px;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  letter-spacing: 0.42em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portfolio-title {
  font-size: 36px;
}

.portfolio-link {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bronze);
}

.portfolio-link:hover {
  color: var(--bronze-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 2px;
  max-width: 1240px;
  margin: 0 auto;
  aspect-ratio: 2.1/1;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.card-large {
  grid-row: span 2;
  grid-column: 1 / 2;
}

.card-top-1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.card-top-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.card-bottom-1 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.card-bottom-2 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.94) 0%, rgba(26,26,26,0.2) 55%, transparent 100%);
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card:hover .card-overlay {
  background: linear-gradient(0deg, rgba(26,26,26,0.98) 0%, rgba(26,26,26,0.4) 55%, transparent 100%);
}

.card-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--bronze);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.card-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 0.5px;
  background: var(--bronze);
  margin-right: 12px;
}

.card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.card-large .card-title {
  font-size: 24px;
}

.card-price {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bronze-light);
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}

.card-details {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  color: rgba(247,245,242,0.35);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  bottom: 16px;
}

.portfolio-card:hover .card-price {
  margin-bottom: 20px;
}

.portfolio-card:hover .card-details {
  opacity: 1;
  transform: translateY(0);
}

/* 5. DIFERENCIAIS */
.diferenciais-section {
  background: var(--black);
  padding: 110px 64px;
}

.diff-header {
  max-width: 1240px;
  margin: 0 auto 64px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 0 auto;
}

.diff-card {
  padding: 44px 38px;
  border: 0.5px solid rgba(139,115,85,0.14);
  position: relative;
  transition: background 0.5s ease;
  border-right: none;
  border-bottom: none;
}
.diff-card:nth-child(3n) { border-right: 0.5px solid rgba(139,115,85,0.14); }
.diff-card:nth-child(n+4) { border-bottom: 0.5px solid rgba(139,115,85,0.14); }

.diff-card:hover {
  background: rgba(139,115,85,0.035);
}

.diff-card::after {
  content: '';
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 0;
  height: 0.5px;
  background: var(--bronze);
  transition: width 0.5s ease;
  z-index: 2;
}

.diff-card:hover::after {
  width: 100%;
}

.diff-num {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bronze);
  margin-bottom: 24px;
}

.diff-title {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.diff-text {
  font-size: 12px;
  line-height: 1.85;
  color: var(--white-dim);
}

/* 6. LAGOA SANTA */
.lagoa-section {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 580px;
}

.lagoa-img-col {
  background: #1c2218;
  overflow: hidden;
  position: relative;
}

.lagoa-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.lagoa-img-col:hover img {
  transform: scale(1.05);
}

.lagoa-content-col {
  background: var(--black-mid);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lagoa-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--bronze);
  margin-bottom: 16px;
}

.lagoa-title {
  font-size: 42px;
}

.lagoa-quote {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: var(--bronze-light);
  border-left: 1px solid var(--bronze-dim);
  padding-left: 24px;
  margin: 36px 0;
  line-height: 1.6;
}

.lagoa-list {
  list-style: none;
}

.lagoa-list li {
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.lagoa-list li::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 0.5px;
  background: var(--bronze);
  margin-right: 16px;
}

/* 7. CONTATO */
.contato-section {
  background: var(--black);
  padding: 120px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contato-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,115,85,0.04) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.contato-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.contato-title {
  margin: 16px auto 24px;
}

.contato-sub {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 48px;
}

.form-group {
  position: relative;
  margin-bottom: 32px;
  text-align: left;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(139,115,85,0.2);
  color: var(--white);
  padding: 12px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 300;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: rgba(139,115,85,0.65);
}

.form-label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 13px;
  color: var(--white-dim);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -12px;
  font-size: 10px;
  color: var(--bronze-light);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 24px;
  cursor: pointer;
}

select.form-control option {
  background: var(--black);
  color: var(--white);
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 16px;
  width: 10px;
  height: 6px;
  border-left: 0.5px solid var(--bronze);
  border-bottom: 0.5px solid var(--bronze);
  transform: rotate(-45deg);
  pointer-events: none;
}

.btn-submit {
  background: transparent;
  border: 0.5px solid var(--bronze);
  color: var(--bronze);
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  padding: 16px 40px;
  cursor: pointer;
  width: 100%;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: -1;
}

.btn-submit:hover {
  color: var(--black);
}

.btn-submit:hover::before {
  transform: scaleX(1);
}

/* 8. FOOTER */
.footer {
  background: var(--black-deep);
  border-top: 0.5px solid rgba(139,115,85,0.14);
  padding: 44px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-wordmark {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: rgba(247,245,242,0.45);
}

.footer-copy {
  font-size: 10px;
  color: rgba(247,245,242,0.2);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247,245,242,0.3);
}

.footer-links a:hover {
  color: var(--bronze);
}


/* ANIMATIONS GLOBAIS - SCROLL REVEAL*/
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.rv.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.38s; }


/* RESPONSIVO */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: auto;
  }
  .card-large { grid-column: span 2; aspect-ratio: 16/9; }
  .card-top, .card-bottom-1, .card-bottom-2 { grid-column: span 1; aspect-ratio: 4/3; }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diff-card:nth-child(even) { border-right: none; }
  .diff-card:nth-child(odd) { border-right: 0.5px solid rgba(139,115,85,0.14); }
}

@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  
  .hero-container { height: 350vh; }
  .hero-title { font-size: clamp(34px, 8vw, 42px); }
  .hero-tagline { font-size: 12px; }
  
  .sobre-container { grid-template-columns: 1fr; gap: 48px; }
  .sobre-title { font-size: 34px; }
  .sobre-section, .portfolio-section, .diferenciais-section, .contato-section { padding: 80px 24px; }
  
  .portfolio-grid { grid-template-columns: 1fr; gap: 24px; }
  .card-large, .card-top-1, .card-top-2, .card-bottom-1, .card-bottom-2 { 
    grid-column: 1 / -1; 
    grid-row: auto;
    aspect-ratio: 4/3; 
  }
  
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .portfolio-title { font-size: 28px; }
  
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { border-right: none !important; border-bottom: 0.5px solid rgba(139,115,85,0.14) !important; }
  
  .lagoa-section { grid-template-columns: 1fr; }
  .lagoa-img-col { height: 280px; }
  .lagoa-title { font-size: 32px; }
  .lagoa-content-col { padding: 60px 24px; }
  
  .contato-title { font-size: 32px; }
  
  .footer { flex-direction: column; gap: 32px; text-align: center; padding: 60px 24px; }
  .footer-links { flex-direction: column; gap: 16px; align-items: center; }

  .whatsapp-btn { bottom: 20px !important; right: 20px !important; padding: 12px 18px !important; }
  .whatsapp-btn span { display: none !important; }
}
/* =========================================================
   PORTFOLIO PAGE STYLES
   ========================================================= */

/* Hero */
.ptf-hero {
  background-color: var(--black-mid);
  padding: 160px 64px 80px;
  border-bottom: 0.5px solid var(--bronze-dim);
  position: relative;
  overflow: hidden;
}

.ptf-hero-decor {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139,115,85,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ptf-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.ptf-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--bronze);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.ptf-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 0.5px;
  background: var(--bronze);
  margin-left: 16px;
}

.ptf-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 32px;
}

.ptf-subtext {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(247,245,242,0.5);
  max-width: 480px;
}

/* Grid */
.ptf-grid-section {
  background-color: var(--black);
  padding: 72px 64px 100px;
}

.ptf-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1240px;
  margin: 0 auto 2px;
}

.ptf-grid-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Cards Disponíveis */
.prop-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #111;
}

.prop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.15) 52%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s ease;
}

.prop-card:hover img {
  transform: scale(1.04);
}

.prop-card:hover .prop-card-overlay {
  background: linear-gradient(0deg, rgba(26,26,26,0.98) 0%, rgba(26,26,26,0.2) 52%, transparent 100%);
}

.prop-status {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--bronze);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.prop-status::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 0.5px;
  background: var(--bronze);
  margin-right: 12px;
}

.prop-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.prop-price {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #B09A7A;
  margin-bottom: 2px;
}

.prop-detail {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(247,245,242,0.28);
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}

.prop-cta {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bronze);
  display: flex;
  align-items: center;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  bottom: 24px;
}

.prop-cta::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 0.5px;
  background: var(--bronze);
  margin-right: 12px;
}

.prop-card:hover .prop-detail {
  margin-bottom: 24px;
}

.prop-card:hover .prop-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Cards Em Curadoria */
.prop-card-curadoria {
  position: relative;
  aspect-ratio: 4/2.2;
  background: #111;
  opacity: 0.45;
}

.curadoria-bg {
  position: absolute;
  inset: 0;
  background: #0F0F0E;
}

.prop-card-curadoria .prop-card-overlay {
  background: linear-gradient(0deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.4) 100%);
  align-items: flex-start;
}

.prop-card-curadoria .prop-name {
  color: rgba(247,245,242,0.3);
}

.curadoria-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: rgba(139,115,85,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.curadoria-label::before,
.curadoria-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: rgba(139,115,85,0.28);
}

/* Modal Book */
.ptf-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ptf-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0);
  transition: background 0.45s ease;
}

.ptf-modal.is-open .ptf-modal-overlay {
  background: rgba(10,10,8,0.92);
}

.ptf-modal-content {
  position: relative;
  z-index: 501;
  width: 100%;
  height: 100vh;
  display: flex;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.ptf-modal.is-open .ptf-modal-content {
  opacity: 1;
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  z-index: 510;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.modal-close:hover {
  opacity: 1;
}

/* Coluna Galeria */
.modal-gallery {
  width: 58%;
  display: flex;
  flex-direction: column;
  background: #0a0a08;
  height: 100vh;
}

.gallery-main {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(26,26,26,0.7);
  border: 0.5px solid rgba(139,115,85,0.2);
  color: var(--bronze);
  font-size: 20px;
  cursor: pointer;
  z-index: 505;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: rgba(139,115,85,0.15);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-footer {
  height: 72px;
  background: rgba(10,10,8,0.6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-dots {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(247,245,242,0.25);
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-dot.active {
  background: var(--bronze);
}

.gallery-thumbs {
  display: flex;
  width: 100%;
  height: 100%;
}

.gallery-thumbs img {
  flex: 1;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
  box-sizing: border-box;
  border-top: 1px solid transparent;
}

.gallery-thumbs img:hover {
  opacity: 0.8;
}

.gallery-thumbs img.active {
  opacity: 1;
  border-top: 1px solid var(--bronze);
}

/* Coluna Infos */
.modal-info {
  flex: 1;
  background: #1A1A1A;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.modal-info-scroll {
  flex: 1;
  padding: 56px 52px 40px;
  overflow-y: scroll;
}

.modal-info-scroll::-webkit-scrollbar {
  display: none;
}

.modal-status {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: var(--bronze);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.modal-status::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 0.5px;
  background: var(--bronze);
  margin-left: 16px;
}

.modal-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 2.5vw, 34px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #B09A7A;
  margin-bottom: 8px;
}

.modal-detail-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(247,245,242,0.35);
  margin-bottom: 32px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 48px;
}

.modal-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247,245,242,0.5);
  padding: 6px 12px;
  border: 0.5px solid rgba(139,115,85,0.2);
}

.modal-block-title {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--bronze);
  border-bottom: 0.5px solid rgba(139,115,85,0.15);
  padding-bottom: 10px;
  margin-bottom: 16px;
  margin-top: 32px;
}

.modal-block-item {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(247,245,242,0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.modal-block-item::before {
  content: '';
  flex-shrink: 0;
  display: inline-block;
  width: 18px;
  height: 0.5px;
  background: var(--bronze);
  opacity: 0.45;
  margin-right: 12px;
  margin-top: 8px;
}

.modal-action {
  padding: 24px 52px;
  border-top: 0.5px solid rgba(139,115,85,0.15);
  background: #1A1A1A;
}

.btn-agendar {
  display: inline-block;
  background: var(--bronze);
  color: #1A1A1A;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 15px 32px;
  text-align: center;
  width: 100%;
  transition: background 0.3s ease;
  font-weight: 600;
}

.btn-agendar:hover {
  background: #B09A7A;
}

@media (max-width: 768px) {
  .ptf-grid-main {
    grid-template-columns: 1fr;
  }
  .ptf-grid-secondary {
    grid-template-columns: 1fr;
  }
  .ptf-modal-content {
    flex-direction: column;
    overflow-y: scroll;
  }
  .modal-gallery {
    width: 100%;
    height: 50vh;
  }
  .modal-info {
    width: 100%;
    height: max-content;
  }
}

  .lagoa-content-col { padding: 64px 24px; }
  
  .footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }
}
